mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-25 11:11:08 +00:00
parse: Add unit test for array parsing in capsfilters
Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/4181>
This commit is contained in:
parent
e4a26238a0
commit
85b0b343db
1 changed files with 4 additions and 0 deletions
|
@ -111,6 +111,10 @@ static const gchar *test_lines[] = {
|
|||
"fakesrc : video/x-all : fakesink", /* linking all matching pads with filter */
|
||||
"fakesrc ! video/x-all : fakesink", /* linking all matching pads with filter */
|
||||
"fakesrc : video/x-all ! fakesink", /* linking all matching pads with filter */
|
||||
"fakesrc ! audio/x-opus, channel-mapping=(int)<0, 1> ! fakesink silent=true", /* array in capsfilter */
|
||||
"fakesrc ! audio/x-opus, channel-mapping=(int)<0,\\ 1> ! fakesink silent=true", /* array in capsfilter with escaped spaces */
|
||||
"fakesrc ! capsfilter caps=\"audio/x-opus, channel-mapping=(int)<0, 1>\" ! fakesink silent=true", /* array in explicit capsfilter */
|
||||
"fakesrc ! capsfilter caps=\"audio/x-opus, channel-mapping=(int)<0,\\ 1>\" ! fakesink silent=true", /* array in explicit capsfilter with escaped spaces */
|
||||
NULL
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in a new issue