qtdemux: add variant field to H.263 caps

avdec_h263 won't get plugged otherwise.
This commit is contained in:
Tim-Philipp Müller 2013-03-02 13:59:52 +00:00
parent 1cff6427f1
commit 677bfecc6f

View file

@ -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'):