mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-18 14:26:43 +00:00
ext/ffmpeg/gstffmpegcodecmap.c: Fix quicktime type recognition in ffmpeg. We returned a bogus caps, which caused ffde...
Original commit message from CVS: * ext/ffmpeg/gstffmpegcodecmap.c: (gst_ffmpeg_formatid_to_caps): Fix quicktime type recognition in ffmpeg. We returned a bogus caps, which caused ffdemux_quicktime to be chosen over qtdemux. This fixes that.
This commit is contained in:
parent
c9b89b2fec
commit
8800cd993d
2 changed files with 11 additions and 1 deletions
|
@ -1,3 +1,10 @@
|
|||
2004-03-04 Ronald Bultje <rbultje@ronald.bitfreak.net>
|
||||
|
||||
* ext/ffmpeg/gstffmpegcodecmap.c: (gst_ffmpeg_formatid_to_caps):
|
||||
Fix quicktime type recognition in ffmpeg. We returned a bogus
|
||||
caps, which caused ffdemux_quicktime to be chosen over qtdemux.
|
||||
This fixes that.
|
||||
|
||||
2004-03-04 Ronald Bultje <rbultje@ronald.bitfreak.net>
|
||||
|
||||
* configure.ac:
|
||||
|
|
|
@ -908,7 +908,7 @@ gst_ffmpeg_formatid_to_caps (const gchar *format_name)
|
|||
} else if (!strcmp (format_name, "au")) {
|
||||
caps = gst_caps_new_simple ("audio/x-au",
|
||||
NULL);
|
||||
} else if (!strcmp (format_name, "mov")) {
|
||||
} else if (!strcmp (format_name, "mov_mp4_m4a_3gp")) {
|
||||
caps = gst_caps_new_simple ("video/quicktime",
|
||||
NULL);
|
||||
} else if (!strcmp (format_name, "dv")) {
|
||||
|
@ -918,6 +918,9 @@ gst_ffmpeg_formatid_to_caps (const gchar *format_name)
|
|||
} else if (!strcmp (format_name, "4xm")) {
|
||||
caps = gst_caps_new_simple ("video/x-4xm",
|
||||
NULL);
|
||||
} else if (!strcmp (format_name, "matroska")) {
|
||||
caps = gst_caps_new_simple ("video/x-matroska",
|
||||
NULL);
|
||||
} else {
|
||||
gchar *name;
|
||||
|
||||
|
|
Loading…
Reference in a new issue