mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-18 22:36:33 +00:00
ext/ffmpeg/gstffmpegcodecmap.c: Add H263p variants as possible format for mov.
Original commit message from CVS: * ext/ffmpeg/gstffmpegcodecmap.c: (gst_ffmpeg_formatid_get_codecids): Add H263p variants as possible format for mov. Fixes #378796.
This commit is contained in:
parent
019c52a459
commit
c9e71601c5
2 changed files with 9 additions and 1 deletions
|
@ -1,3 +1,10 @@
|
|||
2006-12-07 Wim Taymans <wim@fluendo.com>
|
||||
|
||||
* ext/ffmpeg/gstffmpegcodecmap.c:
|
||||
(gst_ffmpeg_formatid_get_codecids):
|
||||
Add H263p variants as possible format for mov.
|
||||
Fixes #378796.
|
||||
|
||||
2006-12-06 Jan Schmidt <thaytan@mad.scientist.com>
|
||||
|
||||
* tests/check/generic/libavcodec-locking.c: (GST_START_TEST):
|
||||
|
|
|
@ -1774,7 +1774,8 @@ gst_ffmpeg_formatid_get_codecids (const gchar *format_name,
|
|||
*audio_codec_list = dv_audio_list;
|
||||
} else if (!strcmp (format_name, "mov")) {
|
||||
static enum CodecID mov_video_list[] = {
|
||||
CODEC_ID_SVQ1, CODEC_ID_SVQ3, CODEC_ID_MPEG4, CODEC_ID_H263,
|
||||
CODEC_ID_SVQ1, CODEC_ID_SVQ3, CODEC_ID_MPEG4,
|
||||
CODEC_ID_H263, CODEC_ID_H263P,
|
||||
CODEC_ID_H264, CODEC_ID_DVVIDEO,
|
||||
CODEC_ID_NONE
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue