summaryrefslogtreecommitdiffstats
path: root/gst
diff options
context:
space:
mode:
authorTim-Philipp Müller <tim@centricular.net>2013-03-02 13:59:52 +0000
committerSebastian Dröge <slomo@circular-chaos.org>2013-08-26 14:31:40 +0200
commit190765fa5cd332e24d124363a1aa552b337fab39 (patch)
treec0469c34380c538d0a93737fd165838f7171f359 /gst
parent23240e1042b592b8827931707f657eeee7a1914f (diff)
downloadgst-plugins-good-190765fa5cd332e24d124363a1aa552b337fab39.tar.gz
gst-plugins-good-190765fa5cd332e24d124363a1aa552b337fab39.tar.xz
qtdemux: add variant field to H.263 caps
avdec_h263 won't get plugged otherwise.
Diffstat (limited to 'gst')
-rw-r--r--gst/isomp4/qtdemux.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/gst/isomp4/qtdemux.c b/gst/isomp4/qtdemux.c
index d7ce4069c..834ea34d8 100644
--- a/gst/isomp4/qtdemux.c
+++ b/gst/isomp4/qtdemux.c
@@ -9502,7 +9502,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'):