ext/ffmpeg/gstffmpegcodecmap.c: Enable MPEG muxer.

Original commit message from CVS:
* ext/ffmpeg/gstffmpegcodecmap.c:
(gst_ffmpeg_formatid_get_codecids):
Enable MPEG muxer.
This commit is contained in:
Ronald S. Bultje 2005-04-21 14:19:21 +00:00
parent fa496b82c7
commit f20095d007
2 changed files with 12 additions and 0 deletions

View file

@ -1,3 +1,9 @@
2005-04-21 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
* ext/ffmpeg/gstffmpegcodecmap.c:
(gst_ffmpeg_formatid_get_codecids):
Enable MPEG muxer.
2005-04-18 Luca Ognibene <luogni@tin.it>
Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>

View file

@ -1337,6 +1337,12 @@ gst_ffmpeg_formatid_get_codecids (const gchar *format_name,
*video_codec_list = mp4_video_list;
*audio_codec_list = mp4_audio_list;
} else if (!strcmp (format_name, "mpeg")) {
static enum CodecID mpeg_video_list[] = { CODEC_ID_MPEG1VIDEO, CODEC_ID_NONE };
static enum CodecID mpeg_audio_list[] = { CODEC_ID_MP2, CODEC_ID_NONE };
*video_codec_list = mpeg_video_list;
*audio_codec_list = mpeg_audio_list;
} else {
GST_WARNING ("Format %s not found", format_name);
return FALSE;