mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 20:21:24 +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->caps = gst_caps_new_simple ("video/mpegts",
|
||||
"systemstream", G_TYPE_BOOLEAN, TRUE,
|
||||
"packetsize", packetsize, NULL);
|
||||
"packetsize", G_TYPE_INT, packetsize, NULL);
|
||||
pos = i;
|
||||
break;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue