mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-19 08:11:16 +00:00
ext/ffmpeg/gstffmpegcodecmap.c: Add MSMPEG4V3 video and MP3 audio to the asf muxer supported formats.
Original commit message from CVS: Patch by: <bram at luon dot net> * ext/ffmpeg/gstffmpegcodecmap.c: (gst_ffmpeg_formatid_get_codecids): Add MSMPEG4V3 video and MP3 audio to the asf muxer supported formats. Fixes #444384.
This commit is contained in:
parent
ddbf1ee10c
commit
7f7a5d9d0b
2 changed files with 11 additions and 2 deletions
|
@ -1,3 +1,12 @@
|
||||||
|
2007-06-05 Wim Taymans <wim@fluendo.com>
|
||||||
|
|
||||||
|
Patch by: <bram at luon dot net>
|
||||||
|
|
||||||
|
* ext/ffmpeg/gstffmpegcodecmap.c:
|
||||||
|
(gst_ffmpeg_formatid_get_codecids):
|
||||||
|
Add MSMPEG4V3 video and MP3 audio to the asf muxer supported formats.
|
||||||
|
Fixes #444384.
|
||||||
|
|
||||||
2007-06-05 Wim Taymans <wim@fluendo.com>
|
2007-06-05 Wim Taymans <wim@fluendo.com>
|
||||||
|
|
||||||
Patch by: Jan Arne Petersen <jpetersen at jpetersen dot org>
|
Patch by: Jan Arne Petersen <jpetersen at jpetersen dot org>
|
||||||
|
|
|
@ -1821,9 +1821,9 @@ gst_ffmpeg_formatid_get_codecids (const gchar * format_name,
|
||||||
*audio_codec_list = flv_audio_list;
|
*audio_codec_list = flv_audio_list;
|
||||||
} else if (!strcmp (format_name, "asf")) {
|
} else if (!strcmp (format_name, "asf")) {
|
||||||
static enum CodecID asf_video_list[] =
|
static enum CodecID asf_video_list[] =
|
||||||
{ CODEC_ID_WMV1, CODEC_ID_WMV2, CODEC_ID_NONE };
|
{ CODEC_ID_WMV1, CODEC_ID_WMV2, CODEC_ID_MSMPEG4V3, CODEC_ID_NONE };
|
||||||
static enum CodecID asf_audio_list[] =
|
static enum CodecID asf_audio_list[] =
|
||||||
{ CODEC_ID_WMAV1, CODEC_ID_WMAV2, CODEC_ID_NONE };
|
{ CODEC_ID_WMAV1, CODEC_ID_WMAV2, CODEC_ID_MP3, CODEC_ID_NONE };
|
||||||
|
|
||||||
*video_codec_list = asf_video_list;
|
*video_codec_list = asf_video_list;
|
||||||
*audio_codec_list = asf_audio_list;
|
*audio_codec_list = asf_audio_list;
|
||||||
|
|
Loading…
Reference in a new issue