mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 04:01:08 +00:00
qtdemux: add variant field to H.263 caps
avdec_h263 won't get plugged otherwise.
This commit is contained in:
parent
1cff6427f1
commit
677bfecc6f
1 changed files with 2 additions and 1 deletions
|
@ -9481,7 +9481,8 @@ qtdemux_video_caps (GstQTDemux * qtdemux, QtDemuxStream * stream,
|
|||
case GST_MAKE_FOURCC ('U', '2', '6', '3'):
|
||||
_codec ("H.263");
|
||||
/* ffmpeg uses the height/width props, don't know why */
|
||||
caps = gst_caps_new_empty_simple ("video/x-h263");
|
||||
caps = gst_caps_new_simple ("video/x-h263",
|
||||
"variant", G_TYPE_STRING, "itu", NULL);
|
||||
break;
|
||||
case GST_MAKE_FOURCC ('m', 'p', '4', 'v'):
|
||||
case GST_MAKE_FOURCC ('M', 'P', '4', 'V'):
|
||||
|
|
Loading…
Reference in a new issue