summaryrefslogtreecommitdiffstats
path: root/gst/mpegdemux/gstmpegtsdemux.c
diff options
context:
space:
mode:
authorEdward Hervey <bilboed@bilboed.com>2009-06-05 10:48:52 +0200
committerEdward Hervey <bilboed@bilboed.com>2009-06-05 20:23:44 +0200
commit22496517e0f8a25202c42659c2720a5924275ab5 (patch)
tree61660118b3cc7e5e9be0333edfd63b3ce84aa139 /gst/mpegdemux/gstmpegtsdemux.c
parentc4ef659ebd9b6360fe2c4e23374ba4484617fd8b (diff)
downloadgst-plugins-bad-22496517e0f8a25202c42659c2720a5924275ab5.tar.gz
gst-plugins-bad-22496517e0f8a25202c42659c2720a5924275ab5.tar.bz2
gst-plugins-bad-22496517e0f8a25202c42659c2720a5924275ab5.zip
mpegtsdemux: Fix HDV private stream definition/caps.
Diffstat (limited to 'gst/mpegdemux/gstmpegtsdemux.c')
-rw-r--r--gst/mpegdemux/gstmpegtsdemux.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/gst/mpegdemux/gstmpegtsdemux.c b/gst/mpegdemux/gstmpegtsdemux.c
index 81f263ee..cb082a2b 100644
--- a/gst/mpegdemux/gstmpegtsdemux.c
+++ b/gst/mpegdemux/gstmpegtsdemux.c
@@ -634,15 +634,15 @@ gst_mpegts_demux_fill_stream (GstMpegTSStream * stream, guint8 id,
caps = gst_caps_new_simple ("private/teletext", NULL);
}
break;
- case ST_HDV_PRIVATE_A0:
+ case ST_HDV_AUX_V:
template = klass->private_template;
name = g_strdup_printf ("private_%04x", stream->PID);
- caps = gst_caps_new_simple ("private/hdv-a0", NULL);
+ caps = gst_caps_new_simple ("hdv/aux-v", NULL);
break;
- case ST_HDV_PRIVATE_A1:
+ case ST_HDV_AUX_A:
template = klass->private_template;
name = g_strdup_printf ("private_%04x", stream->PID);
- caps = gst_caps_new_simple ("private/hdv-a1", NULL);
+ caps = gst_caps_new_simple ("hdv/aux-a", NULL);
break;
case ST_PRIVATE_SECTIONS:
case ST_MHEG: