mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-26 06:54:49 +00:00
check: Fix mpegtsmux caps
Incoming streams need to be parsed. Doesn't fix the test completely though
This commit is contained in:
parent
0ae5c15bf8
commit
1f0a67f295
1 changed files with 4 additions and 2 deletions
|
@ -47,9 +47,11 @@ static GstPad *mysrcpad, *mysinkpad;
|
||||||
#define AUDIO_CAPS_STRING "audio/mpeg, " \
|
#define AUDIO_CAPS_STRING "audio/mpeg, " \
|
||||||
"channels = (int) 1, " \
|
"channels = (int) 1, " \
|
||||||
"rate = (int) 8000, " \
|
"rate = (int) 8000, " \
|
||||||
"mpegversion = (int) 1"
|
"mpegversion = (int) 1, "\
|
||||||
|
"parsed = (boolean) true "
|
||||||
#define VIDEO_CAPS_STRING "video/x-h264, " \
|
#define VIDEO_CAPS_STRING "video/x-h264, " \
|
||||||
"stream-format = (string) byte-stream"
|
"stream-format = (string) byte-stream, " \
|
||||||
|
"parsed = (boolean) true "
|
||||||
|
|
||||||
/* setup and teardown needs some special handling for muxer */
|
/* setup and teardown needs some special handling for muxer */
|
||||||
static GstPad *
|
static GstPad *
|
||||||
|
|
Loading…
Reference in a new issue