mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-23 10:11:08 +00:00
Remove some obsolete FIXMEs
This commit is contained in:
parent
f839a615a0
commit
742816df69
3 changed files with 5 additions and 24 deletions
|
@ -181,9 +181,7 @@ initialize_java_vm (void)
|
|||
options[2].optionString = "-Xcheck:jni";
|
||||
options[3].optionString = "-Xdebug";
|
||||
|
||||
/* FIXME: Do we need any options here? Like exit()
|
||||
* handler, or classpaths? */
|
||||
vm_args.version = JNI_VERSION_1_6;
|
||||
vm_args.version = JNI_VERSION_1_4;
|
||||
vm_args.options = options;
|
||||
vm_args.nOptions = 4;
|
||||
vm_args.ignoreUnrecognized = JNI_TRUE;
|
||||
|
@ -1679,7 +1677,8 @@ scan_codecs (GstPlugin * plugin)
|
|||
}
|
||||
/* FIXME: Non-Google codecs usually just don't work and hang forever
|
||||
* or crash when not used from a process that started the Java
|
||||
* VM via the non-public AndroidRuntime class
|
||||
* VM via the non-public AndroidRuntime class. Can we somehow
|
||||
* initialize all this?
|
||||
*/
|
||||
if (started_java_vm && !g_str_has_prefix (name_str, "OMX.google.")) {
|
||||
GST_INFO ("Skipping non-Google codec in standalone mode");
|
||||
|
|
|
@ -339,16 +339,8 @@ gst_amc_audio_dec_close (GstAudioDecoder * decoder)
|
|||
|
||||
GST_DEBUG_OBJECT (self, "Closing decoder");
|
||||
|
||||
if (self->codec) {
|
||||
/* FIXME: This crashes for some reason, looks like the
|
||||
* MediaCodec API is not threadsafe between stop() and
|
||||
* release()
|
||||
*/
|
||||
#if 0
|
||||
gst_amc_codec_release (self->codec);
|
||||
#endif
|
||||
if (self->codec)
|
||||
gst_amc_codec_free (self->codec);
|
||||
}
|
||||
self->codec = NULL;
|
||||
|
||||
self->started = FALSE;
|
||||
|
@ -880,7 +872,6 @@ gst_amc_audio_dec_set_format (GstAudioDecoder * decoder, GstCaps * caps)
|
|||
GST_DEBUG_OBJECT (self, "Configuring codec with format: %s", format_string);
|
||||
g_free (format_string);
|
||||
|
||||
/* FIXME: Flags? */
|
||||
if (!gst_amc_codec_configure (self->codec, format, 0)) {
|
||||
GST_ERROR_OBJECT (self, "Failed to configure codec");
|
||||
return FALSE;
|
||||
|
|
|
@ -450,16 +450,8 @@ gst_amc_video_dec_close (GstVideoDecoder * decoder)
|
|||
|
||||
GST_DEBUG_OBJECT (self, "Closing decoder");
|
||||
|
||||
if (self->codec) {
|
||||
/* FIXME: This crashes for some reason, looks like the
|
||||
* MediaCodec API is not threadsafe between stop() and
|
||||
* release()
|
||||
*/
|
||||
#if 0
|
||||
gst_amc_codec_release (self->codec);
|
||||
#endif
|
||||
if (self->codec)
|
||||
gst_amc_codec_free (self->codec);
|
||||
}
|
||||
self->codec = NULL;
|
||||
|
||||
self->started = FALSE;
|
||||
|
@ -1240,7 +1232,6 @@ gst_amc_video_dec_set_format (GstVideoDecoder * decoder,
|
|||
GST_DEBUG_OBJECT (self, "Configuring codec with format: %s", format_string);
|
||||
g_free (format_string);
|
||||
|
||||
/* FIXME: Flags? */
|
||||
if (!gst_amc_codec_configure (self->codec, format, 0)) {
|
||||
GST_ERROR_OBJECT (self, "Failed to configure codec");
|
||||
return FALSE;
|
||||
|
|
Loading…
Reference in a new issue