diff options
author | Sebastian Dröge <sebastian.droege@collabora.co.uk> | 2011-05-26 15:09:18 +0200 |
---|---|---|
committer | Sebastian Dröge <sebastian.droege@collabora.co.uk> | 2011-05-26 15:09:18 +0200 |
commit | b8f7aab1ba7ae29de5f13d7c0f0f132eb746db6b (patch) | |
tree | 0d47565a9ebc0669133a601ec67f0a83a444ade9 /ext | |
parent | df40381a8362e1f1fa376bde010c02883904518e (diff) |
ffdec: Always use parser for AAC LATM/LOAS
Diffstat (limited to 'ext')
-rw-r--r-- | ext/ffmpeg/gstffmpegdec.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/ext/ffmpeg/gstffmpegdec.c b/ext/ffmpeg/gstffmpegdec.c index a377a50..71fe9e3 100644 --- a/ext/ffmpeg/gstffmpegdec.c +++ b/ext/ffmpeg/gstffmpegdec.c @@ -832,8 +832,7 @@ gst_ffmpegdec_setcaps (GstPad * pad, GstCaps * caps) || oclass->in_plugin->id == CODEC_ID_AAC_LATM) { const gchar *format = gst_structure_get_string (structure, "stream-format"); - if (format == NULL || strcmp (format, "raw") == 0 || - oclass->in_plugin->id == CODEC_ID_AAC_LATM) { + if (format == NULL || strcmp (format, "raw") == 0) { ffmpegdec->turnoff_parser = TRUE; } } |