mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-18 07:47:17 +00:00
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:
parent
fa496b82c7
commit
f20095d007
2 changed files with 12 additions and 0 deletions
|
@ -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>
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue