mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-31 11:32:38 +00:00
ext/ffmpeg/gstffmpegcodecmap.c: Enable mjpeg-codec in more containers.
Original commit message from CVS: * ext/ffmpeg/gstffmpegcodecmap.c: (gst_ffmpeg_formatid_get_codecids): Enable mjpeg-codec in more containers.
This commit is contained in:
parent
603caa3479
commit
d0920a38d7
2 changed files with 10 additions and 1 deletions
|
@ -1,3 +1,9 @@
|
|||
2007-06-20 Stefan Kost <ensonic@users.sf.net>
|
||||
|
||||
* ext/ffmpeg/gstffmpegcodecmap.c:
|
||||
(gst_ffmpeg_formatid_get_codecids):
|
||||
Enable mjpeg-codec in more containers.
|
||||
|
||||
2007-06-19 Stefan Kost <ensonic@users.sf.net>
|
||||
|
||||
* ext/ffmpeg/gstffmpeg.c: (gst_ffmpeg_log_callback):
|
||||
|
|
|
@ -1766,7 +1766,9 @@ gst_ffmpeg_formatid_get_codecids (const gchar * format_name,
|
|||
|
||||
if (!strcmp (format_name, "mp4")) {
|
||||
static enum CodecID mp4_video_list[] = {
|
||||
CODEC_ID_MPEG4, CODEC_ID_H263, CODEC_ID_H264, CODEC_ID_NONE
|
||||
CODEC_ID_MPEG4, CODEC_ID_H263, CODEC_ID_H264,
|
||||
CODEC_ID_MJPEG,
|
||||
CODEC_ID_NONE
|
||||
};
|
||||
static enum CodecID mp4_audio_list[] = {
|
||||
CODEC_ID_AAC, CODEC_ID_MP3, CODEC_ID_AMR_NB, CODEC_ID_AMR_WB,
|
||||
|
@ -1838,6 +1840,7 @@ gst_ffmpeg_formatid_get_codecids (const gchar * format_name,
|
|||
CODEC_ID_SVQ1, CODEC_ID_SVQ3, CODEC_ID_MPEG4,
|
||||
CODEC_ID_H263, CODEC_ID_H263P,
|
||||
CODEC_ID_H264, CODEC_ID_DVVIDEO,
|
||||
CODEC_ID_MJPEG,
|
||||
CODEC_ID_NONE
|
||||
};
|
||||
static enum CodecID mov_audio_list[] = {
|
||||
|
|
Loading…
Reference in a new issue