mpegtsmux: Require parsed/framed input for most of the supported formats
https://bugzilla.gnome.org/show_bug.cgi?id=719519
This commit is contained in:
parent
c84278ae04
commit
22b6ec3b2f
@ -123,13 +123,17 @@ static GstStaticPadTemplate mpegtsmux_sink_factory =
|
|||||||
GST_PAD_SINK,
|
GST_PAD_SINK,
|
||||||
GST_PAD_REQUEST,
|
GST_PAD_REQUEST,
|
||||||
GST_STATIC_CAPS ("video/mpeg, "
|
GST_STATIC_CAPS ("video/mpeg, "
|
||||||
|
"parsed = (boolean) TRUE, "
|
||||||
"mpegversion = (int) { 1, 2, 4 }, "
|
"mpegversion = (int) { 1, 2, 4 }, "
|
||||||
"systemstream = (boolean) false; "
|
"systemstream = (boolean) false; "
|
||||||
"video/x-dirac;"
|
"video/x-dirac;"
|
||||||
"video/x-h264,stream-format=(string)byte-stream;"
|
"video/x-h264,stream-format=(string)byte-stream,"
|
||||||
|
"parsed = (boolean) TRUE; "
|
||||||
"audio/mpeg, "
|
"audio/mpeg, "
|
||||||
|
"parsed = (boolean) TRUE, "
|
||||||
"mpegversion = (int) { 1, 2 };"
|
"mpegversion = (int) { 1, 2 };"
|
||||||
"audio/mpeg, "
|
"audio/mpeg, "
|
||||||
|
"framed = (boolean) TRUE, "
|
||||||
"mpegversion = (int) 4, stream-format = (string) { raw, adts };"
|
"mpegversion = (int) 4, stream-format = (string) { raw, adts };"
|
||||||
"audio/x-lpcm, "
|
"audio/x-lpcm, "
|
||||||
"width = (int) { 16, 20, 24 }, "
|
"width = (int) { 16, 20, 24 }, "
|
||||||
@ -137,7 +141,9 @@ static GstStaticPadTemplate mpegtsmux_sink_factory =
|
|||||||
"channels = (int) [ 1, 8 ], "
|
"channels = (int) [ 1, 8 ], "
|
||||||
"dynamic_range = (int) [ 0, 255 ], "
|
"dynamic_range = (int) [ 0, 255 ], "
|
||||||
"emphasis = (boolean) { FALSE, TRUE }, "
|
"emphasis = (boolean) { FALSE, TRUE }, "
|
||||||
"mute = (boolean) { FALSE, TRUE }; " "audio/x-ac3;" "audio/x-dts;"
|
"mute = (boolean) { FALSE, TRUE }; "
|
||||||
|
"audio/x-ac3, framed = (boolean) TRUE;"
|
||||||
|
"audio/x-dts, framed = (boolean) TRUE;"
|
||||||
"subpicture/x-dvb;" "application/x-teletext"));
|
"subpicture/x-dvb;" "application/x-teletext"));
|
||||||
|
|
||||||
static GstStaticPadTemplate mpegtsmux_src_factory =
|
static GstStaticPadTemplate mpegtsmux_src_factory =
|
||||||
|
Loading…
x
Reference in New Issue
Block a user