ext/ffmpeg/gstffmpegdec.c: mpeg4 parsing still utterly broken :(

Original commit message from CVS:
* ext/ffmpeg/gstffmpegdec.c: (gst_ffmpegdec_open):
mpeg4 parsing still utterly broken :(
This commit is contained in:
Edward Hervey 2006-06-06 08:31:48 +00:00
parent 721acac889
commit ec9d24a5ef
3 changed files with 8 additions and 2 deletions

View file

@ -1,3 +1,8 @@
2006-06-06 Edward Hervey <edward@fluendo.com>
* ext/ffmpeg/gstffmpegdec.c: (gst_ffmpegdec_open):
mpeg4 parsing still utterly broken :(
2006-06-02 Edward Hervey <edward@fluendo.com>
* ext/ffmpeg/gstffmpegdec.c: (gst_ffmpegdec_chain):

2
common

@ -1 +1 @@
Subproject commit 80b4e2c08717159760ebaa40715f8919b3f77ba9
Subproject commit 4282dfa89d50e80f59d4e1837af95fbf74e75d18

View file

@ -478,7 +478,8 @@ gst_ffmpegdec_open (GstFFMpegDec * ffmpegdec)
/* open a parser if we can - exclude mp3 because it doesn't work (?),
* and mjpeg because ... */
if (oclass->in_plugin->id != CODEC_ID_MJPEG &&
if (oclass->in_plugin->id != CODEC_ID_MPEG4 &&
oclass->in_plugin->id != CODEC_ID_MJPEG &&
oclass->in_plugin->id != CODEC_ID_MP3 &&
oclass->in_plugin->id != CODEC_ID_H264) {
ffmpegdec->pctx = av_parser_init (oclass->in_plugin->id);