mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-28 04:31:06 +00:00
mpegtspacketizer: Don't forget the GType when using caps_new_simple()
This commit is contained in:
parent
d12c42a1da
commit
ee0c9ae2f3
1 changed files with 1 additions and 1 deletions
|
@ -2093,7 +2093,7 @@ mpegts_try_discover_packet_size (MpegTSPacketizer * packetizer)
|
||||||
packetizer->packet_size = packetsize;
|
packetizer->packet_size = packetsize;
|
||||||
packetizer->caps = gst_caps_new_simple ("video/mpegts",
|
packetizer->caps = gst_caps_new_simple ("video/mpegts",
|
||||||
"systemstream", G_TYPE_BOOLEAN, TRUE,
|
"systemstream", G_TYPE_BOOLEAN, TRUE,
|
||||||
"packetsize", packetsize, NULL);
|
"packetsize", G_TYPE_INT, packetsize, NULL);
|
||||||
pos = i;
|
pos = i;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue