mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-20 00:31:13 +00:00
gst/qtdemux/qtdemux.c: Change caps on MJPEG-B so it doesn't interfere with MJPEG/JPEG.
Original commit message from CVS: * gst/qtdemux/qtdemux.c: (qtdemux_video_caps): Change caps on MJPEG-B so it doesn't interfere with MJPEG/JPEG.
This commit is contained in:
parent
e78ca24312
commit
a04dee4a8c
2 changed files with 6 additions and 1 deletions
|
@ -1,3 +1,8 @@
|
|||
2005-02-02 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
|
||||
|
||||
* gst/qtdemux/qtdemux.c: (qtdemux_video_caps):
|
||||
Change caps on MJPEG-B so it doesn't interfere with MJPEG/JPEG.
|
||||
|
||||
2005-02-02 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
|
||||
|
||||
* ext/raw1394/gstdv1394src.c: (gst_dv1394src_change_state):
|
||||
|
|
|
@ -2608,7 +2608,7 @@ qtdemux_video_caps (GstQTDemux * qtdemux, guint32 fourcc,
|
|||
return gst_caps_from_string ("image/jpeg");
|
||||
case GST_MAKE_FOURCC ('m', 'j', 'p', 'b'):
|
||||
/* Motion-JPEG (format B) */
|
||||
return gst_caps_from_string ("image/jpeg");
|
||||
return gst_caps_from_string ("image/jpeg-b");
|
||||
case GST_MAKE_FOURCC ('S', 'V', 'Q', '3'):
|
||||
if (stsd_data != NULL) {
|
||||
gst_getbits_t gb;
|
||||
|
|
Loading…
Reference in a new issue