Skip to content

Instantly share code, notes, and snippets.

@matthijskooijman
Last active September 27, 2022 13:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save matthijskooijman/2441f3db4d0b9bb2543a0037007ba4a1 to your computer and use it in GitHub Desktop.
Save matthijskooijman/2441f3db4d0b9bb2543a0037007ba4a1 to your computer and use it in GitHub Desktop.
GStreamer debugging

Overview

This gist illustrates three problems:

  • Using decodebin insists on producing NV12_32L32 instead of NV12, needing a slow conversion or failing to play without that. Directly connecting v4l2slh264dec to kmssink does negotiate NV12 correctly.
  • Using playbin is slow for an unknown reason. Producing the same pipeline (but flat) runs ok.
  • Using playbin3 runs ok for some files, but for other files it runs for 1-2 seconds and then hangs. decodebin3 is ok for these files.

It seems that decodebin3 does work for all files, so I'll probaly build something with that (but it is still experimental, so maybe this should be fixed in the default versions too?).

Most tests using the https://test-videos.co.uk/vids/bigbuckbunny/mp4/h264/1080/Big_Buck_Bunny_1080_10s_5MB.mp4 file from https://test-videos.co.uk/bigbuckbunny/mp4-h264

This was tested on an Orange Pi PC board running Armbian (based on Ubuntu Jammy).

$ gst-launch-1.0 --version
gst-launch-1.0 version 1.20.3
GStreamer 1.20.3
https://launchpad.net/distros/ubuntu/+source/gstreamer1.0
$ uname -a
Linux orangepipc 5.17.11-sunxi #22.05.1 SMP Sat May 28 08:28:35 UTC 2022 armv7l armv7l armv7l GNU/Linux

decodebin (fails)

This shows that within decodebin, v4l2slh264dec somehow offers NV12_32L32, while kmssink only accepts NV12.

GST_DEBUG_DUMP_DOT_DIR=~/gst-dots/ GST_DEBUG=2,GST_PIPELINE:5,GST_ELEMENT_PADS:5,GST_PADS:5,GST_CAPS:5 gst-launch-1.0 filesrc location=/media/usb/h264/Big_Buck_Bunny_1080_10s_5MB.mp4 ! decodebin ! videoconvert ! kmssink 2>&1 | ansifilter | tee gst-dots/log.txt

Result: Fails to build pipeline
Graph (error): view
Full debug output (below): decodebin.txt
Non-debug output:

Setting pipeline to PAUSED ...
Pipeline is PREROLLING ...
Redistribute latency...
ERROR: from element /GstPipeline:pipeline0/GstDecodeBin:decodebin0/GstQTDemux:qtdemux0: Internal data stream error.
Additional debug info:
../gst/isomp4/qtdemux.c(6749): gst_qtdemux_loop (): /GstPipeline:pipeline0/GstDecodeBin:decodebin0/GstQTDemux:qtdemux0:
streaming stopped, reason not-negotiated (-4)
ERROR: pipeline doesn't want to preroll.
Setting pipeline to NULL ...
Freeing pipeline ...

decodebin with videoconvert (slow as expected)

This circumvents the NV12 vs NV12_32L32 mismatch by conversion, which results in (expected) performance issues.

Result: Plays slowly (1-2FPS)
Graph (PAUSED_PLAYING): view

GST_DEBUG_DUMP_DOT_DIR=~/gst-dots/ gst-launch-1.0 filesrc location=/media/usb/h264/Big_Buck_Bunny_1080_10s_5MB.mp4 ! decodebin ! videoconvert ! kmssink

Manual v4l2slh264dec (ok)

This shows that when manually using v4l2slh264dec (instead of decodebin) and directly connecting it to kmssink does manage to negotiate NV12 without needing conversion.

GST_DEBUG_DUMP_DOT_DIR=~/gst-dots/ gst-launch-1.0 filesrc location=/media/usb/h264/Big_Buck_Bunny_1080_10s_5MB.mp4 ! parsebin ! v4l2slh264dec ! kmssink

Result: Plays ok (slightly jittery from lack of queue before kmssink)
Graph (PAUSED_PLAYING): view
Full debug output (below): v4l2slh264dec_kmssink.txt (CTRL-C as soon as playback started)

decodebin3 (ok)

This shows decodebin3 negotiates ok, so maybe using that is the solution...

GST_DEBUG_DUMP_DOT_DIR=~/gst-dots/ GST_DEBUG=2,GST_PIPELINE:5,GST_ELEMENT_PADS:5,GST_PADS:5,GST_CAPS:5  gst-launch-1.0 filesrc location=/media/usb/h264/Big_Buck_Bunny_1080_10s_5MB.mp4 ! decodebin3 ! kmssink 2>&1 | ansifilter | tee gst-dots/log.txt

Result: Plays ok (slightly jittery from lack of queue before kmssink)
Graph (PAUSED_PLAYING): view
Full debug output (below): decodebin3.txt (CTRL-C as soon as playback started)

playbin (slow)

GST_DEBUG_DUMP_DOT_DIR=~/gst-dots/ gst-launch-1.0 playbin uri=file:///media/usb/h264/Big_Buck_Bunny_1080_10s_5MB.mp4 

Result: Very slow playback (one frame displayed every couple of seconds)
Graph (PAUSED_PLAYING): view
Snippet of output:

WARNING: from element /GstPlayBin:playbin0/GstPlaySink:playsink/GstBin:vbin/GstKMSSink:kmssink0: A lot of buffers are being dropped.
Additional debug info:
../libs/gst/base/gstbasesink.c(3143): gst_base_sink_is_too_late (): /GstPlayBin:playbin0/GstPlaySink:playsink/GstBin:vbin/GstKMSSink:kmssink0:
There may be a timestamping problem, or this computer is too slow.

Manual reproduction of playbin (ok)

This manually produces the same pipeline that the playbin dotfile shows, but as a flat pipeline without bins (except for one capsfilter, since the dotfile has the actual filter description truncated). The resulting content types are the same as with playbin, but this does play smoothly.

GST_DEBUG_DUMP_DOT_DIR=~/gst-dots/ gst-launch-1.0 filesrc location=/media/usb/h264/Big_Buck_Bunny_1080_10s_5MB.mp4 ! typefind ! qtdemux ! multiqueue ! h264parse ! v4
l2slh264dec ! input-selector ! streamsynchronizer ! videoconvert ! deinterlace ! queue ! videoconvert ! videoscale ! videobalance ! videoconvert ! kmssink

Result: Very slow playback (one frame displayed every couple of seconds)
Graph (PAUSED_PLAYING): view

playbin3 (ok)

GST_DEBUG_DUMP_DOT_DIR=~/gst-dots/ gst-launch-1.0 playbin3 uri=file:///media/usb/h264/Big_Buck_Bunny_1080_10s_5MB.mp4

Result: Plays smoothly without problems (but locks up on some other files)
Graph (PAUSED_PLAYING): view

playbin3 with different file (hangs)

This shows that playbin3 with another file plays for 1-2 seconds or so and then locks up. This happens with most of my test files, and it seems to lock at exactly the same point every time.

This uses the 1080p version downloaded from https://vimeo.com/582874101 (which is a recoded version of the original file_example_MP4_1920_18MG.mp4 file, that I previously downloaded but could no longer find for download now. The original file shows the same problem).

GST_DEBUG_DUMP_DOT_DIR=~/gst-dots/ GST_DEBUG=4,GST_PIPELINE:5 gst-launch-1.0 playbin3 uri=file:///media/usb/h264/file_example_mp4_1920_18mg.mp4\ \(1080p\).mp4 2>&1 | ansifilter | tee gst-dots/log.txt

Result: Plays for 1-2 seconds then stalls Graph (error): view
Full debug output (below): playbin3_hangs.txt

The debug output (and when running without debug, the current playback timestamp) also stops when the video hangs. The last couple of lines ( gstkmsallocator.c:553:gst_kms_allocator_dmabuf_import:<KMSMemory::allocator> Failed to close GEM handle: Invalid argument 22) seem to be produced in the 1-2 seconds that video is running and are also produced in the working case with Big Buck Bunny above and decodebin3 below, so I suspect they are not the problem here).

decodebin3 with different file

This shows that decodebin3 works ok with the file that causes playbin3 to hang.

 GST_DEBUG_DUMP_DOT_DIR=~/gst-dots/ GST_DEBUG=4,GST_PIPELINE:5 gst-launch-1.0 filesrc location=/media/usb/h264/Big_Buck_Bunny_1080_10s_5MB.mp4 ! decodebin3 ! kmssink 2>&1 | ansifilter | tee gst-dots/log.txt

Result: ok (slightly jittery from lack of queue before kmssink)
Graph (error): view
Full debug output (below): decodebin3_nohang.txt (CTRL-C'd a few seconds after playback starts)

digraph pipeline {
rankdir=LR;
fontname="sans";
fontsize="10";
labelloc=t;
nodesep=.1;
ranksep=.2;
label="<GstPipeline>\npipeline0\n[-] -> [=]";
node [style="filled,rounded", shape=box, fontsize="9", fontname="sans", margin="0.0,0.0"];
edge [labelfontsize="6", fontsize="9", fontname="monospace"];
legend [
pos="0,0!",
margin="0.05,0.05",
style="filled",
label="Legend\lElement-States: [~] void-pending, [0] null, [-] ready, [=] paused, [>] playing\lPad-Activation: [-] none, [>] push, [<] pull\lPad-Flags: [b]locked, [f]lushing, [b]locking, [E]OS; upper-case is set\lPad-Task: [T] has started task, [t] has paused task\l",
];
subgraph cluster_kmssink0_0xabd2d8 {
fontname="Bitstream Vera Sans";
fontsize="8";
style="filled,rounded";
color=black;
label="GstKMSSink\nkmssink0\n[-] -> [=]\nmax-lateness=5000000\nqos=TRUE\nprocessing-deadline=15000000\ndriver-name=\"sun4i-drm\"\nconnector-id=51\nplane-id=31\ndisplay-width=1360\ndisplay-height=768";
subgraph cluster_kmssink0_0xabd2d8_sink {
label="";
style="invis";
kmssink0_0xabd2d8_sink_0xaa84e0 [color=black, fillcolor="#aaaaff", label="sink\n[>][bfb]", height="0.2", style="filled,solid"];
}
fillcolor="#aaaaff";
}
subgraph cluster_decodebin0_0xaae0e8 {
fontname="Bitstream Vera Sans";
fontsize="8";
style="filled,rounded";
color=black;
label="GstDecodeBin\ndecodebin0\n[=]\ncaps=video/x-raw(ANY); audio/x-raw(ANY); text/x-raw(ANY); subpicture/x-dvd; subpictur…";
subgraph cluster_decodebin0_0xaae0e8_sink {
label="";
style="invis";
_proxypad0_0xab5098 [color=black, fillcolor="#ddddff", label="proxypad0\n[<][bfb]", height="0.2", style="filled,solid"];
decodebin0_0xaae0e8_sink_0xab3030 -> _proxypad0_0xab5098 [style=dashed, minlen=0]
decodebin0_0xaae0e8_sink_0xab3030 [color=black, fillcolor="#ddddff", label="sink\n[<][bfb]", height="0.2", style="filled,solid"];
}
subgraph cluster_decodebin0_0xaae0e8_src {
label="";
style="invis";
_proxypad2_0xab5638 [color=black, fillcolor="#ffdddd", label="proxypad2\n[>][bfb]", height="0.2", style="filled,solid"];
_proxypad2_0xab5638 -> decodebin0_0xaae0e8_src_0_0xabe668 [style=dashed, minlen=0]
decodebin0_0xaae0e8_src_0_0xabe668 [color=black, fillcolor="#ffdddd", label="src_0\n[>][bfb]", height="0.2", style="filled,dotted"];
}
decodebin0_0xaae0e8_sink_0xab3030 -> decodebin0_0xaae0e8_src_0_0xabe668 [style="invis"];
fillcolor="#ffffff";
subgraph cluster_v4l2slh264dec0_0xb442be10 {
fontname="Bitstream Vera Sans";
fontsize="8";
style="filled,rounded";
color=black;
label="v4l2slh264dec\nv4l2slh264dec0\n[=]";
subgraph cluster_v4l2slh264dec0_0xb442be10_sink {
label="";
style="invis";
v4l2slh264dec0_0xb442be10_sink_0xb44112f0 [color=black, fillcolor="#aaaaff", label="sink\n[>][bfb]", height="0.2", style="filled,solid"];
}
subgraph cluster_v4l2slh264dec0_0xb442be10_src {
label="";
style="invis";
v4l2slh264dec0_0xb442be10_src_0xb4411448 [color=black, fillcolor="#ffaaaa", label="src\n[>][bfb]", height="0.2", style="filled,solid"];
}
v4l2slh264dec0_0xb442be10_sink_0xb44112f0 -> v4l2slh264dec0_0xb442be10_src_0xb4411448 [style="invis"];
fillcolor="#aaffaa";
}
v4l2slh264dec0_0xb442be10_src_0xb4411448 -> _proxypad2_0xab5638 [label="video/x-raw\l format: NV12_32L32\l width: 1920\l height: 1080\l interlace-mode: progressive\l multiview-mode: mono\l multiview-flags: 0:ffffffff:/right-view...\l pixel-aspect-ratio: 1/1\l framerate: 60/1\l"]
subgraph cluster_capsfilter0_0xb4420120 {
fontname="Bitstream Vera Sans";
fontsize="8";
style="filled,rounded";
color=black;
label="GstCapsFilter\ncapsfilter0\n[=]\ncaps=video/x-h264, stream-format=(string){ avc, avc3, byte-stream }, alignment=(strin…";
subgraph cluster_capsfilter0_0xb4420120_sink {
label="";
style="invis";
capsfilter0_0xb4420120_sink_0xb4411040 [color=black, fillcolor="#aaaaff", label="sink\n[>][bfb]", height="0.2", style="filled,solid"];
}
subgraph cluster_capsfilter0_0xb4420120_src {
label="";
style="invis";
capsfilter0_0xb4420120_src_0xb4411198 [color=black, fillcolor="#ffaaaa", label="src\n[>][bfb]", height="0.2", style="filled,solid"];
}
capsfilter0_0xb4420120_sink_0xb4411040 -> capsfilter0_0xb4420120_src_0xb4411198 [style="invis"];
fillcolor="#aaffaa";
}
capsfilter0_0xb4420120_src_0xb4411198 -> v4l2slh264dec0_0xb442be10_sink_0xb44112f0 [label="video/x-h264\l stream-format: avc\l alignment: au\l level: 4.2\l profile: high\l codec_data: 0164002affe1001b676400...\l width: 1920\l height: 1080\l framerate: 60/1\l pixel-aspect-ratio: 1/1\l chroma-format: 4:2:0\l bit-depth-luma: 8\l bit-depth-chroma: 8\l parsed: true\l"]
subgraph cluster_h264parse0_0xb44187f8 {
fontname="Bitstream Vera Sans";
fontsize="8";
style="filled,rounded";
color=black;
label="GstH264Parse\nh264parse0\n[=]";
subgraph cluster_h264parse0_0xb44187f8_sink {
label="";
style="invis";
h264parse0_0xb44187f8_sink_0xaa8cf0 [color=black, fillcolor="#aaaaff", label="sink\n[>][bfb]", height="0.2", style="filled,solid"];
}
subgraph cluster_h264parse0_0xb44187f8_src {
label="";
style="invis";
h264parse0_0xb44187f8_src_0xaa8e48 [color=black, fillcolor="#ffaaaa", label="src\n[>][bfb]", height="0.2", style="filled,solid"];
}
h264parse0_0xb44187f8_sink_0xaa8cf0 -> h264parse0_0xb44187f8_src_0xaa8e48 [style="invis"];
fillcolor="#aaffaa";
}
h264parse0_0xb44187f8_src_0xaa8e48 -> capsfilter0_0xb4420120_sink_0xb4411040 [label="video/x-h264\l stream-format: avc\l alignment: au\l level: 4.2\l profile: high\l codec_data: 0164002affe1001b676400...\l width: 1920\l height: 1080\l framerate: 60/1\l pixel-aspect-ratio: 1/1\l chroma-format: 4:2:0\l bit-depth-luma: 8\l bit-depth-chroma: 8\l parsed: true\l"]
subgraph cluster_multiqueue0_0xb4413008 {
fontname="Bitstream Vera Sans";
fontsize="8";
style="filled,rounded";
color=black;
label="GstMultiQueue\nmultiqueue0\n[=]\nmax-size-bytes=8388608\nmax-size-time=0";
subgraph cluster_multiqueue0_0xb4413008_sink {
label="";
style="invis";
multiqueue0_0xb4413008_sink_0_0xab05d8 [color=black, fillcolor="#aaaaff", label="sink_0\ncurrent-level-time=100000000\n[>][bfb]", height="0.2", style="filled,dashed"];
}
subgraph cluster_multiqueue0_0xb4413008_src {
label="";
style="invis";
multiqueue0_0xb4413008_src_0_0xab0738 [color=black, fillcolor="#ffaaaa", label="src_0\ncurrent-level-time=100000000\n[>][bfb][t]", height="0.2", style="filled,dotted"];
}
multiqueue0_0xb4413008_sink_0_0xab05d8 -> multiqueue0_0xb4413008_src_0_0xab0738 [style="invis"];
fillcolor="#aaffaa";
}
multiqueue0_0xb4413008_src_0_0xab0738 -> h264parse0_0xb44187f8_sink_0xaa8cf0 [label="video/x-h264\l stream-format: avc\l alignment: au\l level: 4.2\l profile: high\l codec_data: 0164002affe1001b676400...\l width: 1920\l height: 1080\l framerate: 60/1\l pixel-aspect-ratio: 1/1\l"]
subgraph cluster_qtdemux0_0xaa6b80 {
fontname="Bitstream Vera Sans";
fontsize="8";
style="filled,rounded";
color=black;
label="GstQTDemux\nqtdemux0\n[=]";
subgraph cluster_qtdemux0_0xaa6b80_sink {
label="";
style="invis";
qtdemux0_0xaa6b80_sink_0xaa8638 [color=black, fillcolor="#aaaaff", label="sink\n[<][bfb][t]", height="0.2", style="filled,solid"];
}
subgraph cluster_qtdemux0_0xaa6b80_src {
label="";
style="invis";
qtdemux0_0xaa6b80_video_0_0xaa8b98 [color=black, fillcolor="#ffaaaa", label="video_0\n[>][bfb]", height="0.2", style="filled,dotted"];
}
qtdemux0_0xaa6b80_sink_0xaa8638 -> qtdemux0_0xaa6b80_video_0_0xaa8b98 [style="invis"];
fillcolor="#aaffaa";
}
qtdemux0_0xaa6b80_video_0_0xaa8b98 -> multiqueue0_0xb4413008_sink_0_0xab05d8 [label="video/x-h264\l stream-format: avc\l alignment: au\l level: 4.2\l profile: high\l codec_data: 0164002affe1001b676400...\l width: 1920\l height: 1080\l framerate: 60/1\l pixel-aspect-ratio: 1/1\l"]
subgraph cluster_typefind_0xab0030 {
fontname="Bitstream Vera Sans";
fontsize="8";
style="filled,rounded";
color=black;
label="GstTypeFindElement\ntypefind\n[=]\ncaps=video/quicktime, variant=(string)iso";
subgraph cluster_typefind_0xab0030_sink {
label="";
style="invis";
typefind_0xab0030_sink_0xaa8230 [color=black, fillcolor="#aaaaff", label="sink\n[<][bfb][t]", height="0.2", style="filled,solid"];
}
subgraph cluster_typefind_0xab0030_src {
label="";
style="invis";
typefind_0xab0030_src_0xaa8388 [color=black, fillcolor="#ffaaaa", label="src\n[<][bfb]", height="0.2", style="filled,solid"];
}
typefind_0xab0030_sink_0xaa8230 -> typefind_0xab0030_src_0xaa8388 [style="invis"];
fillcolor="#aaffaa";
}
_proxypad0_0xab5098 -> typefind_0xab0030_sink_0xaa8230 [label="ANY"]
typefind_0xab0030_src_0xaa8388 -> qtdemux0_0xaa6b80_sink_0xaa8638 [labeldistance="10", labelangle="0", label=" ", taillabel="ANY", headlabel="video/quicktime\lvideo/mj2\laudio/x-m4a\lapplication/x-3gp\l"]
}
decodebin0_0xaae0e8_src_0_0xabe668 -> kmssink0_0xabd2d8_sink_0xaa84e0 [labeldistance="10", labelangle="0", label=" ", taillabel="video/x-raw\l format: NV12_32L32\l width: 1920\l height: 1080\l interlace-mode: progressive\l multiview-mode: mono\l multiview-flags: 0:ffffffff:/right-view...\l pixel-aspect-ratio: 1/1\l framerate: 60/1\l", headlabel="video/x-raw\l format: { (string)BGRA, (str... }\l width: [ 1, 2147483647 ]\l height: [ 1, 2147483647 ]\l framerate: [ 0/1, 2147483647/1 ]\l"]
subgraph cluster_filesrc0_0xaa6238 {
fontname="Bitstream Vera Sans";
fontsize="8";
style="filled,rounded";
color=black;
label="GstFileSrc\nfilesrc0\n[=]\nlocation=\"/media/usb/h264/Big_Buck_Bunny_1080_10s_5MB.mp4\"";
subgraph cluster_filesrc0_0xaa6238_src {
label="";
style="invis";
filesrc0_0xaa6238_src_0xaa80d8 [color=black, fillcolor="#ffaaaa", label="src\n[<][bfb]", height="0.2", style="filled,solid"];
}
fillcolor="#ffaaaa";
}
filesrc0_0xaa6238_src_0xaa80d8 -> decodebin0_0xaae0e8_sink_0xab3030 [label="ANY"]
}
0:00:00.004297958 1815 0x1b6a280 DEBUG GST_ELEMENT_PADS gstelement.c:317:gst_element_base_class_init: type GstElement : factory (nil)
0:00:00.005058333 1815 0x1b6a280 DEBUG GST_ELEMENT_PADS gstelement.c:317:gst_element_base_class_init: type GstBin : factory (nil)
0:00:00.012626083 1815 0x1b6a280 DEBUG GST_ELEMENT_PADS gstelement.c:317:gst_element_base_class_init: type GstPipeline : factory 0x1b79890
0:00:00.099323875 1815 0x1b6a280 INFO GST_PIPELINE gstparse.c:344:gst_parse_launch_full: parsing pipeline description 'filesrc location=/media/usb/h264/Big_Buck_Bunny_1080_10s_5MB.mp4 ! decodebin ! kmssink '
0:00:00.099464875 1815 0x1b6a280 DEBUG GST_PIPELINE parse.l:135:priv_gst_parse_yylex: flex: IDENTIFIER: filesrc
0:00:00.105379666 1815 0x1b6a280 DEBUG GST_ELEMENT_PADS gstelement.c:317:gst_element_base_class_init: type GstBaseSrc : factory (nil)
0:00:00.105572125 1815 0x1b6a280 DEBUG GST_ELEMENT_PADS gstelement.c:317:gst_element_base_class_init: type GstFileSrc : factory 0x1c49bf0
0:00:00.106088958 1815 0x1b6a280 DEBUG GST_PADS gstpad.c:1771:gst_pad_set_activatemode_function_full:<'':src> activatemodefunc set to gst_base_src_activate_mode
0:00:00.106137458 1815 0x1b6a280 DEBUG GST_PADS gstpad.c:1912:gst_pad_set_event_function_full:<'':src> eventfunc for set to gst_base_src_event
0:00:00.106171333 1815 0x1b6a280 DEBUG GST_PADS gstpad.c:1992:gst_pad_set_query_function_full:<'':src> queryfunc set to gst_base_src_query
0:00:00.106210000 1815 0x1b6a280 DEBUG GST_PADS gstpad.c:1879:gst_pad_set_getrange_function_full:<'':src> getrangefunc set to gst_base_src_getrange
0:00:00.106245750 1815 0x1b6a280 INFO GST_ELEMENT_PADS gstelement.c:759:gst_element_add_pad:<GstBaseSrc@0x1c84238> adding pad 'src'
0:00:00.106348083 1815 0x1b6a280 DEBUG GST_PIPELINE parse.l:181:priv_gst_parse_yylex: flex: SPACE: [ ]
0:00:00.106391666 1815 0x1b6a280 DEBUG GST_PIPELINE parse.l:93:priv_gst_parse_yylex: flex: ASSIGNMENT: location=/media/usb/h264/Big_Buck_Bunny_1080_10s_5MB.mp4
0:00:00.106572583 1815 0x1b6a280 DEBUG GST_PIPELINE parse.l:181:priv_gst_parse_yylex: flex: SPACE: [ ]
0:00:00.106613083 1815 0x1b6a280 DEBUG GST_PIPELINE parse.l:146:priv_gst_parse_yylex: flex: LINK: !
0:00:00.106670500 1815 0x1b6a280 DEBUG GST_PIPELINE parse.l:181:priv_gst_parse_yylex: flex: SPACE: [ ]
0:00:00.106699875 1815 0x1b6a280 DEBUG GST_PIPELINE parse.l:135:priv_gst_parse_yylex: flex: IDENTIFIER: decodebin
0:00:00.123099125 1815 0x1b6a280 DEBUG GST_ELEMENT_PADS gstelement.c:317:gst_element_base_class_init: type GstDecodeBin : factory 0x1bbb1b0
0:00:00.123841125 1815 0x1b6a280 DEBUG GST_ELEMENT_PADS gstelement.c:317:gst_element_base_class_init: type GstTypeFindElement : factory 0x1c4d120
0:00:00.124301541 1815 0x1b6a280 DEBUG GST_PADS gstpad.c:1736:gst_pad_set_activate_function_full:<'':sink> activatefunc set to gst_type_find_element_activate_sink
0:00:00.124366750 1815 0x1b6a280 DEBUG GST_PADS gstpad.c:1771:gst_pad_set_activatemode_function_full:<'':sink> activatemodefunc set to gst_type_find_element_activate_sink_mode
0:00:00.124407916 1815 0x1b6a280 DEBUG GST_PADS gstpad.c:1806:gst_pad_set_chain_function_full:<'':sink> chainfunc set to gst_type_find_element_chain
0:00:00.124445625 1815 0x1b6a280 DEBUG GST_PADS gstpad.c:1912:gst_pad_set_event_function_full:<'':sink> eventfunc for set to gst_type_find_element_sink_event
0:00:00.124481208 1815 0x1b6a280 INFO GST_ELEMENT_PADS gstelement.c:759:gst_element_add_pad:<GstTypeFindElement@0x1c8d030> adding pad 'sink'
0:00:00.124607208 1815 0x1b6a280 DEBUG GST_PADS gstpad.c:1771:gst_pad_set_activatemode_function_full:<'':src> activatemodefunc set to gst_type_find_element_activate_src_mode
0:00:00.124646958 1815 0x1b6a280 DEBUG GST_PADS gstpad.c:1879:gst_pad_set_getrange_function_full:<'':src> getrangefunc set to gst_type_find_element_getrange
0:00:00.124678458 1815 0x1b6a280 DEBUG GST_PADS gstpad.c:1912:gst_pad_set_event_function_full:<'':src> eventfunc for set to gst_type_find_element_src_event
0:00:00.124714333 1815 0x1b6a280 DEBUG GST_PADS gstpad.c:1992:gst_pad_set_query_function_full:<'':src> queryfunc set to gst_type_find_handle_src_query
0:00:00.124746458 1815 0x1b6a280 INFO GST_ELEMENT_PADS gstelement.c:759:gst_element_add_pad:<GstTypeFindElement@0x1c8d030> adding pad 'src'
0:00:00.125019583 1815 0x1b6a280 INFO GST_ELEMENT_PADS gstelement.c:1016:gst_element_get_static_pad: found pad typefind:sink
0:00:00.125189000 1815 0x1b6a280 DEBUG GST_PADS gstpad.c:2026:gst_pad_set_iterate_internal_links_function_full:<GstProxyPad@0x1c90030> internal link iterator set to gst_proxy_pad_iterate_internal_links_default
0:00:00.125377708 1815 0x1b6a280 DEBUG GST_PADS gstpad.c:1771:gst_pad_set_activatemode_function_full:<GstGhostPad@0x1c90030> activatemodefunc set to gst_ghost_pad_activate_mode_default
0:00:00.125464333 1815 0x1b6a280 DEBUG GST_PADS gstpad.c:1806:gst_pad_set_chain_function_full:<'':sink> chainfunc set to gst_proxy_pad_chain_default
0:00:00.125503291 1815 0x1b6a280 DEBUG GST_PADS gstpad.c:1843:gst_pad_set_chain_list_function_full:<'':sink> chainlistfunc set to gst_proxy_pad_chain_list_default
0:00:00.125591458 1815 0x1b6a280 DEBUG GST_PADS gstpad.c:2026:gst_pad_set_iterate_internal_links_function_full:<GstProxyPad@0x1c92098> internal link iterator set to gst_proxy_pad_iterate_internal_links_default
0:00:00.125658750 1815 0x1b6a280 DEBUG GST_PADS gstpad.c:1879:gst_pad_set_getrange_function_full:<'':proxypad0> getrangefunc set to gst_proxy_pad_getrange_default
0:00:00.125772166 1815 0x1b6a280 DEBUG GST_PADS gstpad.c:1771:gst_pad_set_activatemode_function_full:<sink:proxypad0> activatemodefunc set to gst_ghost_pad_internal_activate_mode_default
0:00:00.125838583 1815 0x1b6a280 DEBUG GST_PADS gstghostpad.c:821:gst_ghost_pad_set_target:<'':sink> set target typefind:sink
0:00:00.125877708 1815 0x1b6a280 DEBUG GST_PADS gstghostpad.c:842:gst_ghost_pad_set_target:<'':sink> connecting internal pad to target <typefind:sink>
0:00:00.125917458 1815 0x1b6a280 INFO GST_PADS gstpad.c:2382:gst_pad_link_prepare: trying to link sink:proxypad0 and typefind:sink
0:00:00.125957583 1815 0x1b6a280 INFO GST_PADS gstpad.c:2590:gst_pad_link_full: linked sink:proxypad0 and typefind:sink, successful
0:00:00.126025541 1815 0x1b6a280 DEBUG GST_PADS gstpad.c:5566:gst_pad_push_event_unchecked:<'':sink> We're flushing
0:00:00.126068833 1815 0x1b6a280 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<sink:proxypad0> sent event, ret error
0:00:00.126099333 1815 0x1b6a280 DEBUG GST_PADS gstpad.c:1098:gst_pad_set_active:<'':sink> activating pad from none
0:00:00.126133666 1815 0x1b6a280 DEBUG GST_PADS gstpad.c:1003:pre_activate:<'':sink> setting pad into push mode, unset flushing
0:00:00.126168833 1815 0x1b6a280 DEBUG GST_PADS gstpad.c:1003:pre_activate:<sink:proxypad0> setting pad into push mode, unset flushing
0:00:00.126205583 1815 0x1b6a280 DEBUG GST_PADS gstpad.c:1330:gst_pad_activate_mode:<'':sink> already activated in push mode
0:00:00.126247250 1815 0x1b6a280 DEBUG GST_PADS gstpad.c:1226:activate_mode_internal:<sink:proxypad0> activated in push mode
0:00:00.126289000 1815 0x1b6a280 DEBUG GST_PADS gstpad.c:1226:activate_mode_internal:<'':sink> activated in push mode
0:00:00.126321750 1815 0x1b6a280 INFO GST_ELEMENT_PADS gstelement.c:759:gst_element_add_pad:<GstDecodeBin@0x1c8b0e8> adding pad 'sink'
0:00:00.126463416 1815 0x1b6a280 DEBUG GST_PIPELINE parse.l:181:priv_gst_parse_yylex: flex: SPACE: [ ]
0:00:00.126552000 1815 0x1b6a280 DEBUG GST_PIPELINE parse.l:146:priv_gst_parse_yylex: flex: LINK: !
0:00:00.126606458 1815 0x1b6a280 DEBUG GST_PIPELINE parse.l:181:priv_gst_parse_yylex: flex: SPACE: [ ]
0:00:00.126640166 1815 0x1b6a280 DEBUG GST_PIPELINE parse.l:135:priv_gst_parse_yylex: flex: IDENTIFIER: kmssink
0:00:00.132784875 1815 0x1b6a280 DEBUG GST_ELEMENT_PADS gstelement.c:317:gst_element_base_class_init: type GstBaseSink : factory (nil)
0:00:00.133068750 1815 0x1b6a280 DEBUG GST_ELEMENT_PADS gstelement.c:317:gst_element_base_class_init: type GstVideoSink : factory (nil)
0:00:00.133147750 1815 0x1b6a280 DEBUG GST_ELEMENT_PADS gstelement.c:317:gst_element_base_class_init: type GstKMSSink : factory 0x1c16da0
0:00:00.134763250 1815 0x1b6a280 DEBUG GST_PADS gstpad.c:1736:gst_pad_set_activate_function_full:<'':sink> activatefunc set to gst_base_sink_pad_activate
0:00:00.134819041 1815 0x1b6a280 DEBUG GST_PADS gstpad.c:1771:gst_pad_set_activatemode_function_full:<'':sink> activatemodefunc set to gst_base_sink_pad_activate_mode
0:00:00.134857666 1815 0x1b6a280 DEBUG GST_PADS gstpad.c:1992:gst_pad_set_query_function_full:<'':sink> queryfunc set to gst_base_sink_sink_query
0:00:00.134890833 1815 0x1b6a280 DEBUG GST_PADS gstpad.c:1912:gst_pad_set_event_function_full:<'':sink> eventfunc for set to gst_base_sink_event
0:00:00.134924041 1815 0x1b6a280 DEBUG GST_PADS gstpad.c:1806:gst_pad_set_chain_function_full:<'':sink> chainfunc set to gst_base_sink_chain
0:00:00.134957041 1815 0x1b6a280 DEBUG GST_PADS gstpad.c:1843:gst_pad_set_chain_list_function_full:<'':sink> chainlistfunc set to gst_base_sink_chain_list
0:00:00.134989291 1815 0x1b6a280 INFO GST_ELEMENT_PADS gstelement.c:759:gst_element_add_pad:<GstBaseSink@0x1c9aed8> adding pad 'sink'
0:00:00.135244000 1815 0x1b6a280 DEBUG GST_PIPELINE parse.l:181:priv_gst_parse_yylex: flex: SPACE: [ ]
0:00:00.135321583 1815 0x1b6a280 DEBUG GST_PIPELINE gst/parse/grammar.y:1226:priv_gst_parse_launch: got 3 elements and 2 links
0:00:00.135782958 1815 0x1b6a280 INFO GST_PIPELINE gst/parse/grammar.y:683:gst_parse_perform_link: linking some pad of GstFileSrc named filesrc0 to some pad of GstDecodeBin named decodebin0 (0/0) with caps "(NULL)"
0:00:00.135839333 1815 0x1b6a280 INFO GST_ELEMENT_PADS gstutils.c:1816:gst_element_link_pads_full: trying to link element filesrc0:(any) to element decodebin0:(any)
0:00:00.135869708 1815 0x1b6a280 DEBUG GST_ELEMENT_PADS gstutils.c:1925:gst_element_link_pads_full: looping through allowed src and dest pads
0:00:00.135899000 1815 0x1b6a280 DEBUG GST_ELEMENT_PADS gstutils.c:1928:gst_element_link_pads_full: trying src pad filesrc0:src
0:00:00.135932666 1815 0x1b6a280 DEBUG GST_ELEMENT_PADS gstutils.c:1148:gst_element_get_compatible_pad: finding pad in decodebin0 compatible with filesrc0:src
0:00:00.135971791 1815 0x1b6a280 INFO GST_PADS gstutils.c:1079:gst_pad_check_link: trying to link filesrc0:src and decodebin0:sink
0:00:00.136009041 1815 0x1b6a280 DEBUG GST_CAPS gstutils.c:3102:gst_pad_query_caps:<filesrc0:src> get pad caps with filter (NULL)
0:00:00.136056208 1815 0x1b6a280 DEBUG GST_PADS gstpad.c:4173:gst_pad_query:<filesrc0:src> doing query 0x1c88460 (caps)
0:00:00.136123500 1815 0x1b6a280 DEBUG GST_PADS gstpad.c:4196:gst_pad_query:<filesrc0:src> sent query 0x1c88460 (caps), result 1
0:00:00.136405041 1815 0x1b6a280 DEBUG GST_CAPS gstutils.c:3109:gst_pad_query_caps:<filesrc0:src> query returned ANY
0:00:00.136459291 1815 0x1b6a280 DEBUG GST_CAPS gstutils.c:3102:gst_pad_query_caps:<decodebin0:sink> get pad caps with filter (NULL)
0:00:00.136501666 1815 0x1b6a280 DEBUG GST_PADS gstpad.c:4173:gst_pad_query:<decodebin0:sink> doing query 0x1c88490 (caps)
0:00:00.136565166 1815 0x1b6a280 DEBUG GST_CAPS gstpad.c:3259:gst_pad_query_caps_default:<decodebin0:sink> query caps caps query: 0x1c88490, GstQueryCaps, filter=(GstCaps)"NULL", caps=(GstCaps)"NULL";
0:00:00.136599791 1815 0x1b6a280 DEBUG GST_PADS gstutils.c:2851:gst_pad_proxy_query_caps:<decodebin0:sink> proxying caps query for decodebin0:sink
0:00:00.136652375 1815 0x1b6a280 DEBUG GST_PADS gstpad.c:4300:gst_pad_peer_query:<sink:proxypad0> peer query 0x1c88490 (caps)
0:00:00.136689958 1815 0x1b6a280 DEBUG GST_PADS gstpad.c:4173:gst_pad_query:<typefind:sink> doing query 0x1c88490 (caps)
0:00:00.136742291 1815 0x1b6a280 DEBUG GST_CAPS gstpad.c:3259:gst_pad_query_caps_default:<typefind:sink> query caps caps query: 0x1c88490, GstQueryCaps, filter=(GstCaps)"NULL", caps=(GstCaps)"NULL";
0:00:00.136769208 1815 0x1b6a280 DEBUG GST_CAPS gstpad.c:3283:gst_pad_query_caps_default:<typefind:sink> trying pad template caps
0:00:00.136802708 1815 0x1b6a280 DEBUG GST_CAPS gstpad.c:3312:gst_pad_query_caps_default:<typefind:sink> using caps 0x1c74118 ANY
0:00:00.136839791 1815 0x1b6a280 DEBUG GST_PADS gstpad.c:3514:gst_pad_query_default:<typefind:sink> not forwarding 0x1c88490 (caps) query
0:00:00.136873291 1815 0x1b6a280 DEBUG GST_PADS gstpad.c:4196:gst_pad_query:<typefind:sink> sent query 0x1c88490 (caps), result 1
0:00:00.136937458 1815 0x1b6a280 DEBUG GST_PADS gstpad.c:3514:gst_pad_query_default:<decodebin0:sink> not forwarding 0x1c88490 (caps) query
0:00:00.136974666 1815 0x1b6a280 DEBUG GST_PADS gstpad.c:4196:gst_pad_query:<decodebin0:sink> sent query 0x1c88490 (caps), result 1
0:00:00.137007458 1815 0x1b6a280 DEBUG GST_CAPS gstutils.c:3109:gst_pad_query_caps:<decodebin0:sink> query returned ANY
0:00:00.137040500 1815 0x1b6a280 DEBUG GST_ELEMENT_PADS gstutils.c:1207:gst_element_get_compatible_pad: found existing unlinked compatible pad decodebin0:sink
0:00:00.137073958 1815 0x1b6a280 INFO GST_PADS gstutils.c:1632:prepare_link_maybe_ghosting: filesrc0 and decodebin0 in same bin, no need for ghost pads
0:00:00.137141375 1815 0x1b6a280 INFO GST_PADS gstpad.c:2382:gst_pad_link_prepare: trying to link filesrc0:src and decodebin0:sink
0:00:00.137177625 1815 0x1b6a280 DEBUG GST_CAPS gstutils.c:3102:gst_pad_query_caps:<filesrc0:src> get pad caps with filter (NULL)
0:00:00.137211125 1815 0x1b6a280 DEBUG GST_PADS gstpad.c:4173:gst_pad_query:<filesrc0:src> doing query 0x1c884c0 (caps)
0:00:00.137253875 1815 0x1b6a280 DEBUG GST_PADS gstpad.c:4196:gst_pad_query:<filesrc0:src> sent query 0x1c884c0 (caps), result 1
0:00:00.137287916 1815 0x1b6a280 DEBUG GST_CAPS gstutils.c:3109:gst_pad_query_caps:<filesrc0:src> query returned ANY
0:00:00.137331708 1815 0x1b6a280 DEBUG GST_CAPS gstutils.c:3102:gst_pad_query_caps:<decodebin0:sink> get pad caps with filter (NULL)
0:00:00.137368958 1815 0x1b6a280 DEBUG GST_PADS gstpad.c:4173:gst_pad_query:<decodebin0:sink> doing query 0x1c884f0 (caps)
0:00:00.137419041 1815 0x1b6a280 DEBUG GST_CAPS gstpad.c:3259:gst_pad_query_caps_default:<decodebin0:sink> query caps caps query: 0x1c884f0, GstQueryCaps, filter=(GstCaps)"NULL", caps=(GstCaps)"NULL";
0:00:00.137449375 1815 0x1b6a280 DEBUG GST_PADS gstutils.c:2851:gst_pad_proxy_query_caps:<decodebin0:sink> proxying caps query for decodebin0:sink
0:00:00.137492208 1815 0x1b6a280 DEBUG GST_PADS gstpad.c:4300:gst_pad_peer_query:<sink:proxypad0> peer query 0x1c884f0 (caps)
0:00:00.137526541 1815 0x1b6a280 DEBUG GST_PADS gstpad.c:4173:gst_pad_query:<typefind:sink> doing query 0x1c884f0 (caps)
0:00:00.137571791 1815 0x1b6a280 DEBUG GST_CAPS gstpad.c:3259:gst_pad_query_caps_default:<typefind:sink> query caps caps query: 0x1c884f0, GstQueryCaps, filter=(GstCaps)"NULL", caps=(GstCaps)"NULL";
0:00:00.137596666 1815 0x1b6a280 DEBUG GST_CAPS gstpad.c:3283:gst_pad_query_caps_default:<typefind:sink> trying pad template caps
0:00:00.137628708 1815 0x1b6a280 DEBUG GST_CAPS gstpad.c:3312:gst_pad_query_caps_default:<typefind:sink> using caps 0x1c74118 ANY
0:00:00.137663833 1815 0x1b6a280 DEBUG GST_PADS gstpad.c:3514:gst_pad_query_default:<typefind:sink> not forwarding 0x1c884f0 (caps) query
0:00:00.137697916 1815 0x1b6a280 DEBUG GST_PADS gstpad.c:4196:gst_pad_query:<typefind:sink> sent query 0x1c884f0 (caps), result 1
0:00:00.137743333 1815 0x1b6a280 DEBUG GST_PADS gstpad.c:3514:gst_pad_query_default:<decodebin0:sink> not forwarding 0x1c884f0 (caps) query
0:00:00.137777125 1815 0x1b6a280 DEBUG GST_PADS gstpad.c:4196:gst_pad_query:<decodebin0:sink> sent query 0x1c884f0 (caps), result 1
0:00:00.137806875 1815 0x1b6a280 DEBUG GST_CAPS gstutils.c:3109:gst_pad_query_caps:<decodebin0:sink> query returned ANY
0:00:00.137837583 1815 0x1b6a280 DEBUG GST_CAPS gstpad.c:2282:gst_pad_link_check_compatible_unlocked:<filesrc0:src> src caps ANY
0:00:00.137864708 1815 0x1b6a280 DEBUG GST_CAPS gstpad.c:2284:gst_pad_link_check_compatible_unlocked:<decodebin0:sink> sink caps ANY
0:00:00.137888500 1815 0x1b6a280 DEBUG GST_CAPS gstpad.c:2302:gst_pad_link_check_compatible_unlocked: caps are compatible
0:00:00.137931416 1815 0x1b6a280 INFO GST_PADS gstpad.c:2590:gst_pad_link_full: linked filesrc0:src and decodebin0:sink, successful
0:00:00.138015458 1815 0x1b6a280 DEBUG GST_ELEMENT_PADS gstutils.c:1948:gst_element_link_pads_full: linked pad filesrc0:src to pad decodebin0:sink
0:00:00.138073500 1815 0x1b6a280 INFO GST_PIPELINE gst/parse/grammar.y:683:gst_parse_perform_link: linking some pad of GstDecodeBin named decodebin0 to some pad of GstKMSSink named kmssink0 (0/0) with caps "(NULL)"
0:00:00.138110583 1815 0x1b6a280 INFO GST_ELEMENT_PADS gstutils.c:1816:gst_element_link_pads_full: trying to link element decodebin0:(any) to element kmssink0:(any)
0:00:00.138146291 1815 0x1b6a280 DEBUG GST_ELEMENT_PADS gstutils.c:1925:gst_element_link_pads_full: looping through allowed src and dest pads
0:00:00.138178000 1815 0x1b6a280 DEBUG GST_ELEMENT_PADS gstutils.c:1928:gst_element_link_pads_full: trying src pad decodebin0:sink
0:00:00.138208083 1815 0x1b6a280 DEBUG GST_ELEMENT_PADS gstutils.c:1991:gst_element_link_pads_full: trying dest pad kmssink0:sink
0:00:00.138239250 1815 0x1b6a280 DEBUG GST_ELEMENT_PADS gstutils.c:1148:gst_element_get_compatible_pad: finding pad in decodebin0 compatible with kmssink0:sink
0:00:00.138279958 1815 0x1b6a280 DEBUG GST_ELEMENT_PADS gstutils.c:1244:gst_element_get_compatible_pad:<decodebin0> Could not find a compatible unlinked always pad to link to kmssink0:sink, now checking request pads
0:00:00.138308833 1815 0x1b6a280 DEBUG GST_CAPS gstutils.c:3102:gst_pad_query_caps:<kmssink0:sink> get pad caps with filter (NULL)
0:00:00.138341916 1815 0x1b6a280 DEBUG GST_PADS gstpad.c:4173:gst_pad_query:<kmssink0:sink> doing query 0x1c88520 (caps)
0:00:00.138386958 1815 0x1b6a280 DEBUG GST_PADS gstpad.c:4196:gst_pad_query:<kmssink0:sink> sent query 0x1c88520 (caps), result 1
0:00:00.138531875 1815 0x1b6a280 DEBUG GST_CAPS gstutils.c:3109:gst_pad_query_caps:<kmssink0:sink> query returned video/x-raw, format=(string){ BGRA, RGBA, P016_LE, P010_10LE, NV24, BGRx, RGBx, RGB, BGR, Y42B, NV61, NV16, UYVY, YVYU, YUY2, I420, YV12, NV21, NV12, RGB16, BGR16 }, width=(int)[ 1, 2147483647 ], height=(int)[ 1, 2147483647 ], framerate=(fraction)[ 0/1, 2147483647/1 ]
0:00:00.138674750 1815 0x1b6a280 DEBUG GST_ELEMENT_PADS gstutils.c:943:gst_element_get_compatible_pad_template: Looking for a suitable pad template in decodebin0 out of 2 templates...
0:00:00.138711958 1815 0x1b6a280 DEBUG GST_CAPS gstutils.c:958:gst_element_get_compatible_pad_template: compatible direction: found src pad template "src_%u"
0:00:00.138788375 1815 0x1b6a280 DEBUG GST_CAPS gstutils.c:963:gst_element_get_compatible_pad_template: intersecting video/x-raw, format=(string){ BGRA, RGBA, P016_LE, P010_10LE, NV24, BGRx, RGBx, RGB, BGR, Y42B, NV61, NV16, UYVY, YVYU, YUY2, I420, YV12, NV21, NV12, RGB16, BGR16 }, width=(int)[ 1, 2147483647 ], height=(int)[ 1, 2147483647 ], framerate=(fraction)[ 0/1, 2147483647/1 ]
0:00:00.138817041 1815 0x1b6a280 DEBUG GST_CAPS gstutils.c:965:gst_element_get_compatible_pad_template: ..and ANY
0:00:00.138842250 1815 0x1b6a280 DEBUG GST_CAPS gstutils.c:971:gst_element_get_compatible_pad_template: caps are compatible
0:00:00.138866333 1815 0x1b6a280 DEBUG GST_ELEMENT_PADS gstutils.c:983:gst_element_get_compatible_pad_template: Returning new pad template 0x1b6cb18
0:00:00.138898458 1815 0x1b6a280 INFO GST_ELEMENT_PADS gstelement.c:1013:gst_element_get_static_pad: no such pad 'src_%u' in element "decodebin0"
0:00:00.138960666 1815 0x1b6a280 INFO GST_ELEMENT_PADS gstutils.c:1270:gst_element_get_compatible_pad:<decodebin0> Could not find a compatible pad to link to kmssink0:sink
0:00:00.138987916 1815 0x1b6a280 DEBUG GST_ELEMENT_PADS gstutils.c:2043:gst_element_link_pads_full: we might have request pads on both sides, checking...
0:00:00.139029125 1815 0x1b6a280 DEBUG GST_ELEMENT_PADS gstutils.c:2097:gst_element_link_pads_full: no link possible from decodebin0 to kmssink0
0:00:00.139073375 1815 0x1b6a280 DEBUG GST_PIPELINE gst/parse/grammar.y:597:gst_parse_perform_delayed_link: trying delayed link some pad of GstDecodeBin named decodebin0 to some pad of GstKMSSink named kmssink0
Setting pipeline to PAUSED ...
0:00:01.537125000 1815 0x1b6a280 DEBUG GST_PADS gstghostpad.c:783:gst_ghost_pad_get_target:<decodebin0:sink> get target typefind:sink
0:00:01.537542417 1815 0x1b6a280 DEBUG GST_CAPS gstpad.c:2737:gst_pad_get_current_caps:<sink:proxypad0> get current pad caps (NULL)
0:00:01.537582500 1815 0x1b6a280 DEBUG GST_CAPS gstpad.c:2737:gst_pad_get_current_caps:<typefind:sink> get current pad caps (NULL)
0:00:01.537848917 1815 0x1b6a280 DEBUG GST_CAPS gstpad.c:2737:gst_pad_get_current_caps:<filesrc0:src> get current pad caps (NULL)
0:00:01.537891667 1815 0x1b6a280 DEBUG GST_CAPS gstpad.c:2737:gst_pad_get_current_caps:<decodebin0:sink> get current pad caps (NULL)
0:00:01.538440250 1815 0x1b6a280 DEBUG GST_ELEMENT_PADS gstelement.c:3227:gst_element_pads_activate:<kmssink0> activate pads
0:00:01.538577250 1815 0x1b6a280 DEBUG GST_PADS gstpad.c:1098:gst_pad_set_active:<kmssink0:sink> activating pad from none
0:00:01.538667334 1815 0x1b6a280 DEBUG GST_PADS gstpad.c:1003:pre_activate:<kmssink0:sink> setting pad into push mode, unset flushing
0:00:01.538724084 1815 0x1b6a280 DEBUG GST_PADS gstpad.c:1226:activate_mode_internal:<kmssink0:sink> activated in push mode
0:00:01.538767459 1815 0x1b6a280 DEBUG GST_ELEMENT_PADS gstelement.c:3246:gst_element_pads_activate:<kmssink0> pad activation successful
0:00:01.538929792 1815 0x1b6a280 DEBUG GST_ELEMENT_PADS gstelement.c:3227:gst_element_pads_activate:<typefind> activate pads
0:00:01.538972334 1815 0x1b6a280 DEBUG GST_PADS gstpad.c:1098:gst_pad_set_active:<typefind:src> activating pad from none
0:00:01.539006250 1815 0x1b6a280 DEBUG GST_PADS gstpad.c:1003:pre_activate:<typefind:src> setting pad into push mode, unset flushing
0:00:01.539041334 1815 0x1b6a280 DEBUG GST_PADS gstpad.c:1226:activate_mode_internal:<typefind:src> activated in push mode
0:00:01.539077334 1815 0x1b6a280 DEBUG GST_PADS gstpad.c:1098:gst_pad_set_active:<typefind:sink> activating pad from none
0:00:01.539136000 1815 0x1b6a280 DEBUG GST_PADS gstpad.c:4300:gst_pad_peer_query:<typefind:sink> peer query 0x1c88120 (scheduling)
0:00:01.539179542 1815 0x1b6a280 DEBUG GST_PADS gstpad.c:4173:gst_pad_query:<sink:proxypad0> doing query 0x1c88120 (scheduling)
0:00:01.539219125 1815 0x1b6a280 DEBUG GST_PADS gstpad.c:3514:gst_pad_query_default:<sink:proxypad0> forwarding 0x1c88120 (scheduling) query
0:00:01.539264584 1815 0x1b6a280 DEBUG GST_PADS gstpad.c:4300:gst_pad_peer_query:<decodebin0:sink> peer query 0x1c88120 (scheduling)
0:00:01.539296667 1815 0x1b6a280 DEBUG GST_PADS gstpad.c:4173:gst_pad_query:<filesrc0:src> doing query 0x1c88120 (scheduling)
0:00:01.539452000 1815 0x1b6a280 DEBUG GST_PADS gstpad.c:6425:gst_pad_stop_task:<filesrc0:src> stop task
0:00:01.539485917 1815 0x1b6a280 DEBUG GST_PADS gstpad.c:6450:gst_pad_stop_task:<filesrc0:src> no task
0:00:01.539534042 1815 0x1b6a280 WARN basesrc gstbasesrc.c:3688:gst_base_src_start_complete:<filesrc0> pad not activated yet
0:00:01.539651750 1815 0x1b6a280 DEBUG GST_PADS gstpad.c:4196:gst_pad_query:<filesrc0:src> sent query 0x1c88120 (scheduling), result 1
0:00:01.539702542 1815 0x1b6a280 DEBUG GST_PADS gstpad.c:4196:gst_pad_query:<sink:proxypad0> sent query 0x1c88120 (scheduling), result 1
0:00:01.539750917 1815 0x1b6a280 DEBUG GST_PADS gstpad.c:1183:activate_mode_internal:<typefind:sink> calling peer
0:00:01.539784250 1815 0x1b6a280 DEBUG GST_PADS gstpad.c:1170:activate_mode_internal:<sink:proxypad0> deactivating pad from push mode
0:00:01.539812584 1815 0x1b6a280 DEBUG GST_PADS gstpad.c:983:pre_activate:<sink:proxypad0> setting PAD_MODE NONE, set flushing
0:00:01.539842417 1815 0x1b6a280 DEBUG GST_PADS gstpad.c:983:pre_activate:<decodebin0:sink> setting PAD_MODE NONE, set flushing
0:00:01.539878042 1815 0x1b6a280 DEBUG GST_PADS gstpad.c:1330:gst_pad_activate_mode:<sink:proxypad0> already deactivated in push mode
0:00:01.539905917 1815 0x1b6a280 DEBUG GST_PADS gstpad.c:1046:post_activate:<decodebin0:sink> stopped streaming
0:00:01.539944042 1815 0x1b6a280 DEBUG GST_PADS gstpad.c:1226:activate_mode_internal:<decodebin0:sink> deactivated in push mode
0:00:01.539971375 1815 0x1b6a280 DEBUG GST_PADS gstpad.c:1046:post_activate:<sink:proxypad0> stopped streaming
0:00:01.540004584 1815 0x1b6a280 DEBUG GST_PADS gstpad.c:1226:activate_mode_internal:<sink:proxypad0> deactivated in push mode
0:00:01.540035917 1815 0x1b6a280 DEBUG GST_PADS gstpad.c:1003:pre_activate:<sink:proxypad0> setting pad into pull mode, unset flushing
0:00:01.540064459 1815 0x1b6a280 DEBUG GST_PADS gstpad.c:1183:activate_mode_internal:<decodebin0:sink> calling peer
0:00:01.540115875 1815 0x1b6a280 DEBUG GST_PADS gstpad.c:1003:pre_activate:<filesrc0:src> setting pad into pull mode, unset flushing
0:00:01.540240459 1815 0x1b6a280 DEBUG GST_PADS gstpad.c:1226:activate_mode_internal:<filesrc0:src> activated in pull mode
0:00:01.540279917 1815 0x1b6a280 DEBUG GST_PADS gstpad.c:1003:pre_activate:<decodebin0:sink> setting pad into pull mode, unset flushing
0:00:01.540313167 1815 0x1b6a280 DEBUG GST_PADS gstpad.c:1015:pre_activate:<decodebin0:sink> reschedule events on peer filesrc0:src
0:00:01.540352375 1815 0x1b6a280 DEBUG GST_PADS gstpad.c:1330:gst_pad_activate_mode:<filesrc0:src> already activated in pull mode
0:00:01.540387000 1815 0x1b6a280 DEBUG GST_PADS gstpad.c:1226:activate_mode_internal:<decodebin0:sink> activated in pull mode
0:00:01.540418709 1815 0x1b6a280 DEBUG GST_PADS gstpad.c:1226:activate_mode_internal:<sink:proxypad0> activated in pull mode
0:00:01.540448875 1815 0x1b6a280 DEBUG GST_PADS gstpad.c:1003:pre_activate:<typefind:sink> setting pad into pull mode, unset flushing
0:00:01.540479542 1815 0x1b6a280 DEBUG GST_PADS gstpad.c:1015:pre_activate:<typefind:sink> reschedule events on peer sink:proxypad0
0:00:01.540513959 1815 0x1b6a280 DEBUG GST_PADS gstpad.c:1226:activate_mode_internal:<typefind:sink> activated in pull mode
0:00:01.540541167 1815 0x1b6a280 DEBUG GST_PADS gstpad.c:6282:gst_pad_start_task:<typefind:sink> start task
0:00:01.540714125 1815 0x1b6a280 INFO GST_PADS gstpad.c:6291:gst_pad_start_task:<typefind:sink> created task 0x1c9e828
0:00:01.540751000 1815 0x1b6a280 DEBUG GST_PADS gstpad.c:6210:do_stream_status:<typefind:sink> doing stream-status 0
0:00:01.540801209 1815 0x1b6a280 DEBUG GST_PADS gstpad.c:6237:do_stream_status:<typefind:sink> posting stream-status 0
0:00:01.541160292 1815 0x1b6a280 DEBUG GST_ELEMENT_PADS gstelement.c:3246:gst_element_pads_activate:<typefind> pad activation successful
0:00:01.541275542 1815 0x1b6a280 DEBUG GST_ELEMENT_PADS gstelement.c:3227:gst_element_pads_activate:<decodebin0> activate pads
0:00:01.541334834 1815 0x1b6a280 DEBUG GST_PADS gstpad.c:1103:gst_pad_set_active:<decodebin0:sink> pad was active in pull mode
0:00:01.541330834 1815 0x1c88a40 DEBUG GST_PADS gstpad.c:6210:do_stream_status:<typefind:sink> doing stream-status 1
0:00:01.541371792 1815 0x1b6a280 DEBUG GST_ELEMENT_PADS gstelement.c:3246:gst_element_pads_activate:<decodebin0> pad activation successful
0:00:01.541446750 1815 0x1c88a40 DEBUG GST_PADS gstpad.c:6237:do_stream_status:<typefind:sink> posting stream-status 1
0:00:01.541449750 1815 0x1b6a280 DEBUG GST_ELEMENT_PADS gstelement.c:3227:gst_element_pads_activate:<filesrc0> activate pads
0:00:01.541536542 1815 0x1b6a280 DEBUG GST_PADS gstpad.c:1103:gst_pad_set_active:<filesrc0:src> pad was active in pull mode
0:00:01.541592292 1815 0x1b6a280 DEBUG GST_ELEMENT_PADS gstelement.c:3246:gst_element_pads_activate:<filesrc0> pad activation successful
0:00:01.541667167 1815 0x1b6a280 DEBUG GST_ELEMENT_PADS gstelement.c:3227:gst_element_pads_activate:<pipeline0> activate pads
0:00:01.541667250 1815 0x1c88a40 INFO GST_ELEMENT_PADS gstelement.c:1016:gst_element_get_static_pad: found pad typefind:sink
0:00:01.541718584 1815 0x1b6a280 DEBUG GST_ELEMENT_PADS gstelement.c:3246:gst_element_pads_activate:<pipeline0> pad activation successful
Pipeline is PREROLLING ...
0:00:01.541825459 1815 0x1c88a40 DEBUG GST_ELEMENT_PADS gstelement.c:2088:gst_element_query: send query on element typefind
0:00:01.541858500 1815 0x1c88a40 DEBUG GST_ELEMENT_PADS gstelement.c:1873:gst_element_get_random_pad: getting a random pad
0:00:01.541889042 1815 0x1c88a40 DEBUG GST_ELEMENT_PADS gstelement.c:1891:gst_element_get_random_pad: checking pad typefind:src
0:00:01.541921584 1815 0x1c88a40 DEBUG GST_ELEMENT_PADS gstelement.c:1903:gst_element_get_random_pad: found pad typefind:src
0:00:01.541964209 1815 0x1c88a40 DEBUG GST_PADS gstpad.c:4173:gst_pad_query:<typefind:src> doing query 0x1c886c0 (uri)
0:00:01.542011459 1815 0x1c88a40 DEBUG GST_PADS gstpad.c:3514:gst_pad_query_default:<typefind:src> forwarding 0x1c886c0 (uri) query
0:00:01.542045542 1815 0x1c88a40 DEBUG GST_PADS gstpad.c:2968:gst_pad_iterate_internal_links_default:<typefind:src> Making iterator
0:00:01.542101875 1815 0x1c88a40 DEBUG GST_PADS gstpad.c:4300:gst_pad_peer_query:<typefind:sink> peer query 0x1c886c0 (uri)
0:00:01.542171625 1815 0x1c88a40 DEBUG GST_PADS gstpad.c:4173:gst_pad_query:<sink:proxypad0> doing query 0x1c886c0 (uri)
0:00:01.542219834 1815 0x1c88a40 DEBUG GST_PADS gstpad.c:3514:gst_pad_query_default:<sink:proxypad0> forwarding 0x1c886c0 (uri) query
0:00:01.542299875 1815 0x1c88a40 DEBUG GST_PADS gstpad.c:4300:gst_pad_peer_query:<decodebin0:sink> peer query 0x1c886c0 (uri)
0:00:01.542467959 1815 0x1c88a40 DEBUG GST_PADS gstpad.c:4173:gst_pad_query:<filesrc0:src> doing query 0x1c886c0 (uri)
0:00:01.542663334 1815 0x1c88a40 DEBUG GST_PADS gstpad.c:4196:gst_pad_query:<filesrc0:src> sent query 0x1c886c0 (uri), result 1
0:00:01.542713792 1815 0x1c88a40 DEBUG GST_PADS gstpad.c:4196:gst_pad_query:<sink:proxypad0> sent query 0x1c886c0 (uri), result 1
0:00:01.542757250 1815 0x1c88a40 DEBUG GST_PADS gstpad.c:4196:gst_pad_query:<typefind:src> sent query 0x1c886c0 (uri), result 1
0:00:01.542924459 1815 0x1c88a40 DEBUG GST_PADS gstpad.c:4105:check_sticky:<typefind:src> pushing all sticky events
0:00:01.542971292 1815 0x1c88a40 DEBUG GST_PADS gstpad.c:5597:gst_pad_push_event_unchecked:<typefind:src> Dropping event stream-start because pad is not linked
0:00:01.543001709 1815 0x1c88a40 DEBUG GST_PADS gstpad.c:4076:push_sticky:<typefind:src> pad was not linked, mark pending
0:00:01.543062292 1815 0x1c88a40 DEBUG GST_PADS gstpad.c:4173:gst_pad_query:<sink:proxypad0> doing query 0x1c886f0 (duration)
0:00:01.543182167 1815 0x1c88a40 DEBUG GST_PADS gstpad.c:3514:gst_pad_query_default:<sink:proxypad0> forwarding 0x1c886f0 (duration) query
0:00:01.543233917 1815 0x1c88a40 DEBUG GST_PADS gstpad.c:4300:gst_pad_peer_query:<decodebin0:sink> peer query 0x1c886f0 (duration)
0:00:01.543269625 1815 0x1c88a40 DEBUG GST_PADS gstpad.c:4173:gst_pad_query:<filesrc0:src> doing query 0x1c886f0 (duration)
0:00:01.543398834 1815 0x1c88a40 DEBUG GST_PADS gstpad.c:4196:gst_pad_query:<filesrc0:src> sent query 0x1c886f0 (duration), result 1
0:00:01.543449500 1815 0x1c88a40 DEBUG GST_PADS gstpad.c:4196:gst_pad_query:<sink:proxypad0> sent query 0x1c886f0 (duration), result 1
0:00:01.543508334 1815 0x1c88a40 DEBUG GST_PADS gstpad.c:4300:gst_pad_peer_query:<typefind:sink> peer query 0x1c88720 (uri)
0:00:01.543546917 1815 0x1c88a40 DEBUG GST_PADS gstpad.c:4173:gst_pad_query:<sink:proxypad0> doing query 0x1c88720 (uri)
0:00:01.543583875 1815 0x1c88a40 DEBUG GST_PADS gstpad.c:3514:gst_pad_query_default:<sink:proxypad0> forwarding 0x1c88720 (uri) query
0:00:01.543626584 1815 0x1c88a40 DEBUG GST_PADS gstpad.c:4300:gst_pad_peer_query:<decodebin0:sink> peer query 0x1c88720 (uri)
0:00:01.543662584 1815 0x1c88a40 DEBUG GST_PADS gstpad.c:4173:gst_pad_query:<filesrc0:src> doing query 0x1c88720 (uri)
0:00:01.543766000 1815 0x1c88a40 DEBUG GST_PADS gstpad.c:4196:gst_pad_query:<filesrc0:src> sent query 0x1c88720 (uri), result 1
0:00:01.543812500 1815 0x1c88a40 DEBUG GST_PADS gstpad.c:4196:gst_pad_query:<sink:proxypad0> sent query 0x1c88720 (uri), result 1
0:00:01.561716292 1815 0x1c88a40 DEBUG GST_PADS gstpad.c:5363:store_sticky_event:<typefind:src> notify caps
0:00:01.561913042 1815 0x1c88a40 INFO GST_ELEMENT_PADS gstelement.c:1016:gst_element_get_static_pad: found pad typefind:src
0:00:01.561957625 1815 0x1c88a40 INFO GST_ELEMENT_PADS gstelement.c:1016:gst_element_get_static_pad: found pad typefind:sink
0:00:01.562160834 1815 0x1c88a40 DEBUG GST_PADS gstpad.c:2026:gst_pad_set_iterate_internal_links_function_full:<GstProxyPad@0x1c9c668> internal link iterator set to gst_proxy_pad_iterate_internal_links_default
0:00:01.562207500 1815 0x1c88a40 DEBUG GST_PADS gstpad.c:1771:gst_pad_set_activatemode_function_full:<GstGhostPad@0x1c9c668> activatemodefunc set to gst_ghost_pad_activate_mode_default
0:00:01.562278334 1815 0x1c88a40 DEBUG GST_PADS gstpad.c:1879:gst_pad_set_getrange_function_full:<'':decodepad0> getrangefunc set to gst_proxy_pad_getrange_default
0:00:01.562333167 1815 0x1c88a40 DEBUG GST_PADS gstpad.c:2026:gst_pad_set_iterate_internal_links_function_full:<GstProxyPad@0x1c92638> internal link iterator set to gst_proxy_pad_iterate_internal_links_default
0:00:01.562387917 1815 0x1c88a40 DEBUG GST_PADS gstpad.c:1806:gst_pad_set_chain_function_full:<'':proxypad1> chainfunc set to gst_proxy_pad_chain_default
0:00:01.562513459 1815 0x1c88a40 DEBUG GST_PADS gstpad.c:1843:gst_pad_set_chain_list_function_full:<'':proxypad1> chainlistfunc set to gst_proxy_pad_chain_list_default
0:00:01.562563875 1815 0x1c88a40 DEBUG GST_PADS gstpad.c:1771:gst_pad_set_activatemode_function_full:<decodepad0:proxypad1> activatemodefunc set to gst_ghost_pad_internal_activate_mode_default
0:00:01.562641459 1815 0x1c88a40 DEBUG GST_PADS gstpad.c:1992:gst_pad_set_query_function_full:<decodepad0:proxypad1> queryfunc set to 0xb6579f01
0:00:01.562680334 1815 0x1c88a40 DEBUG GST_PADS gstpad.c:1912:gst_pad_set_event_function_full:<'':decodepad0> eventfunc for set to 0xb6579d09
0:00:01.562710875 1815 0x1c88a40 DEBUG GST_PADS gstpad.c:1098:gst_pad_set_active:<'':decodepad0> activating pad from none
0:00:01.562743542 1815 0x1c88a40 DEBUG GST_PADS gstpad.c:1003:pre_activate:<'':decodepad0> setting pad into push mode, unset flushing
0:00:01.562829584 1815 0x1c88a40 DEBUG GST_PADS gstpad.c:1003:pre_activate:<decodepad0:proxypad1> setting pad into push mode, unset flushing
0:00:01.562879250 1815 0x1c88a40 DEBUG GST_PADS gstpad.c:1330:gst_pad_activate_mode:<'':decodepad0> already activated in push mode
0:00:01.562920125 1815 0x1c88a40 DEBUG GST_PADS gstpad.c:1226:activate_mode_internal:<decodepad0:proxypad1> activated in push mode
0:00:01.562954250 1815 0x1c88a40 DEBUG GST_PADS gstpad.c:1226:activate_mode_internal:<'':decodepad0> activated in push mode
0:00:01.562988792 1815 0x1c88a40 DEBUG GST_PADS gstghostpad.c:821:gst_ghost_pad_set_target:<'':decodepad0> set target typefind:src
0:00:01.563023625 1815 0x1c88a40 DEBUG GST_PADS gstghostpad.c:842:gst_ghost_pad_set_target:<'':decodepad0> connecting internal pad to target <typefind:src>
0:00:01.563147750 1815 0x1c88a40 INFO GST_PADS gstpad.c:2382:gst_pad_link_prepare: trying to link typefind:src and decodepad0:proxypad1
0:00:01.563199417 1815 0x1c88a40 INFO GST_PADS gstpad.c:2590:gst_pad_link_full: linked typefind:src and decodepad0:proxypad1, successful
0:00:01.563270292 1815 0x1c88a40 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<filesrc0:src> sent event, ret ok
0:00:01.563308125 1815 0x1c88a40 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<sink:proxypad0> sent event, ret ok
0:00:01.563336834 1815 0x1c88a40 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<typefind:src> sent event, ret ok
0:00:01.563448959 1815 0x1c88a40 DEBUG GST_PADS gstpad.c:5363:store_sticky_event:<'':decodepad0> notify caps
0:00:01.563587250 1815 0x1c88a40 DEBUG GST_CAPS gstpad.c:2737:gst_pad_get_current_caps:<typefind:src> get current pad caps video/quicktime, variant=(string)iso
0:00:01.571543875 1815 0x1c88a40 DEBUG GST_PADS gstghostpad.c:821:gst_ghost_pad_set_target:<'':decodepad0> set target typefind:src
0:00:01.571680750 1815 0x1c88a40 INFO GST_ELEMENT_PADS gstpad.c:2137:gst_pad_unlink: unlinking typefind:src(0x1c86388) and decodepad0:proxypad1(0x1c92638)
0:00:01.571770667 1815 0x1c88a40 INFO GST_ELEMENT_PADS gstpad.c:2192:gst_pad_unlink: unlinked typefind:src and decodepad0:proxypad1
0:00:01.571878750 1815 0x1c88a40 DEBUG GST_PADS gstghostpad.c:842:gst_ghost_pad_set_target:<'':decodepad0> connecting internal pad to target <typefind:src>
0:00:01.571942250 1815 0x1c88a40 INFO GST_PADS gstpad.c:2382:gst_pad_link_prepare: trying to link typefind:src and decodepad0:proxypad1
0:00:01.571989292 1815 0x1c88a40 INFO GST_PADS gstpad.c:2590:gst_pad_link_full: linked typefind:src and decodepad0:proxypad1, successful
0:00:01.572063875 1815 0x1c88a40 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<filesrc0:src> sent event, ret ok
0:00:01.572103917 1815 0x1c88a40 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<sink:proxypad0> sent event, ret ok
0:00:01.572183500 1815 0x1c88a40 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<typefind:src> sent event, ret ok
0:00:01.572296459 1815 0x1c88a40 DEBUG GST_PADS gstghostpad.c:823:gst_ghost_pad_set_target:<'':decodepad0> clearing target
0:00:01.572345625 1815 0x1c88a40 INFO GST_ELEMENT_PADS gstpad.c:2137:gst_pad_unlink: unlinking typefind:src(0x1c86388) and decodepad0:proxypad1(0x1c92638)
0:00:01.572401750 1815 0x1c88a40 INFO GST_ELEMENT_PADS gstpad.c:2192:gst_pad_unlink: unlinked typefind:src and decodepad0:proxypad1
0:00:01.580474750 1815 0x1c88a40 DEBUG GST_ELEMENT_PADS gstelement.c:317:gst_element_base_class_init: type GstQTDemux : factory 0x1bd5000
0:00:01.581489917 1815 0x1c88a40 DEBUG GST_PADS gstpad.c:1736:gst_pad_set_activate_function_full:<'':sink> activatefunc set to 0xb4d7d785
0:00:01.581566334 1815 0x1c88a40 DEBUG GST_PADS gstpad.c:1771:gst_pad_set_activatemode_function_full:<'':sink> activatemodefunc set to 0xb4d7ddad
0:00:01.581608042 1815 0x1c88a40 DEBUG GST_PADS gstpad.c:1806:gst_pad_set_chain_function_full:<'':sink> chainfunc set to 0xb4d9c67d
0:00:01.581645459 1815 0x1c88a40 DEBUG GST_PADS gstpad.c:1912:gst_pad_set_event_function_full:<'':sink> eventfunc for set to 0xb4d9cc31
0:00:01.581683875 1815 0x1c88a40 DEBUG GST_PADS gstpad.c:1992:gst_pad_set_query_function_full:<'':sink> queryfunc set to 0xb4d7dac1
0:00:01.581715292 1815 0x1c88a40 INFO GST_ELEMENT_PADS gstelement.c:759:gst_element_add_pad:<GstQTDemux@0x1c84b80> adding pad 'sink'
0:00:01.581871084 1815 0x1c88a40 DEBUG GST_PADS gstpad.c:6425:gst_pad_stop_task:<(NULL):sink> stop task
0:00:01.581903584 1815 0x1c88a40 DEBUG GST_PADS gstpad.c:6450:gst_pad_stop_task:<(NULL):sink> no task
0:00:01.582142334 1815 0x1c88a40 INFO GST_PADS gstpad.c:2382:gst_pad_link_prepare: trying to link typefind:src and qtdemux0:sink
0:00:01.582198209 1815 0x1c88a40 INFO GST_PADS gstpad.c:2590:gst_pad_link_full: linked typefind:src and qtdemux0:sink, successful
0:00:01.582277417 1815 0x1c88a40 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<filesrc0:src> sent event, ret ok
0:00:01.582322709 1815 0x1c88a40 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<sink:proxypad0> sent event, ret ok
0:00:01.582356209 1815 0x1c88a40 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<typefind:src> sent event, ret ok
0:00:01.582577834 1815 0x1c88a40 DEBUG GST_CAPS gstutils.c:3185:gst_pad_query_accept_caps:<qtdemux0:sink> accept caps of video/quicktime, variant=(string)iso
0:00:01.582647000 1815 0x1c88a40 DEBUG GST_PADS gstpad.c:4173:gst_pad_query:<qtdemux0:sink> doing query 0xb5a01af0 (accept-caps)
0:00:01.582726042 1815 0x1c88a40 DEBUG GST_PADS gstpad.c:3200:gst_pad_query_accept_caps_default:<qtdemux0:sink> query accept-caps accept-caps query: 0xb5a01af0, GstQueryAcceptCaps, caps=(GstCaps)"video/quicktime\,\ variant\=\(string\)iso", result=(boolean)false;
0:00:01.582775459 1815 0x1c88a40 DEBUG GST_CAPS gstutils.c:3102:gst_pad_query_caps:<qtdemux0:sink> get pad caps with filter video/quicktime, variant=(string)iso
0:00:01.582820542 1815 0x1c88a40 DEBUG GST_PADS gstpad.c:4173:gst_pad_query:<qtdemux0:sink> doing query 0xb5a01b20 (caps)
0:00:01.582877750 1815 0x1c88a40 DEBUG GST_CAPS gstpad.c:3259:gst_pad_query_caps_default:<qtdemux0:sink> query caps caps query: 0xb5a01b20, GstQueryCaps, filter=(GstCaps)"video/quicktime\,\ variant\=\(string\)iso", caps=(GstCaps)"NULL";
0:00:01.582906625 1815 0x1c88a40 DEBUG GST_CAPS gstpad.c:3283:gst_pad_query_caps_default:<qtdemux0:sink> trying pad template caps
0:00:01.583013292 1815 0x1c88a40 DEBUG GST_CAPS gstpad.c:3305:gst_pad_query_caps_default:<qtdemux0:sink> using caps 0xb5a438f0 video/quicktime; video/mj2; audio/x-m4a; application/x-3gp with filter 0xb5a21340 video/quicktime, variant=(string)iso
0:00:01.583082250 1815 0x1c88a40 DEBUG GST_CAPS gstpad.c:3309:gst_pad_query_caps_default:<qtdemux0:sink> result 0xb5a43990 video/quicktime, variant=(string)iso
0:00:01.583122250 1815 0x1c88a40 DEBUG GST_PADS gstpad.c:3514:gst_pad_query_default:<qtdemux0:sink> not forwarding 0xb5a01b20 (caps) query
0:00:01.583157709 1815 0x1c88a40 DEBUG GST_PADS gstpad.c:4196:gst_pad_query:<qtdemux0:sink> sent query 0xb5a01b20 (caps), result 1
0:00:01.583195542 1815 0x1c88a40 DEBUG GST_CAPS gstutils.c:3109:gst_pad_query_caps:<qtdemux0:sink> query returned video/quicktime, variant=(string)iso
0:00:01.583242625 1815 0x1c88a40 DEBUG GST_PADS gstpad.c:3230:gst_pad_query_accept_caps_default:<qtdemux0:sink> allowed caps subset video/quicktime, variant=(string)iso, caps video/quicktime, variant=(string)iso
0:00:01.583293417 1815 0x1c88a40 DEBUG GST_PADS gstpad.c:3514:gst_pad_query_default:<qtdemux0:sink> not forwarding 0xb5a01af0 (accept-caps) query
0:00:01.583342125 1815 0x1c88a40 DEBUG GST_PADS gstpad.c:4196:gst_pad_query:<qtdemux0:sink> sent query 0xb5a01af0 (accept-caps), result 1
0:00:01.583428459 1815 0x1c88a40 INFO GST_ELEMENT_PADS gstelement.c:1013:gst_element_get_static_pad: no such pad 'video_%u' in element "qtdemux0"
0:00:01.583465792 1815 0x1c88a40 INFO GST_ELEMENT_PADS gstelement.c:1013:gst_element_get_static_pad: no such pad 'audio_%u' in element "qtdemux0"
0:00:01.583496542 1815 0x1c88a40 INFO GST_ELEMENT_PADS gstelement.c:1013:gst_element_get_static_pad: no such pad 'subtitle_%u' in element "qtdemux0"
0:00:01.583576667 1815 0x1c88a40 DEBUG GST_PADS gstpad.c:6425:gst_pad_stop_task:<qtdemux0:sink> stop task
0:00:01.583607750 1815 0x1c88a40 DEBUG GST_PADS gstpad.c:6450:gst_pad_stop_task:<qtdemux0:sink> no task
0:00:01.583659417 1815 0x1c88a40 DEBUG GST_ELEMENT_PADS gstelement.c:3227:gst_element_pads_activate:<qtdemux0> activate pads
0:00:01.583707375 1815 0x1c88a40 DEBUG GST_PADS gstpad.c:1098:gst_pad_set_active:<qtdemux0:sink> activating pad from none
0:00:01.583752125 1815 0x1c88a40 DEBUG GST_PADS gstpad.c:4300:gst_pad_peer_query:<qtdemux0:sink> peer query 0xb5a01b80 (scheduling)
0:00:01.583786875 1815 0x1c88a40 DEBUG GST_PADS gstpad.c:4173:gst_pad_query:<typefind:src> doing query 0xb5a01b80 (scheduling)
0:00:01.583826042 1815 0x1c88a40 DEBUG GST_PADS gstpad.c:4300:gst_pad_peer_query:<typefind:sink> peer query 0xb5a01b80 (scheduling)
0:00:01.583860709 1815 0x1c88a40 DEBUG GST_PADS gstpad.c:4173:gst_pad_query:<sink:proxypad0> doing query 0xb5a01b80 (scheduling)
0:00:01.583898459 1815 0x1c88a40 DEBUG GST_PADS gstpad.c:3514:gst_pad_query_default:<sink:proxypad0> forwarding 0xb5a01b80 (scheduling) query
0:00:01.583942084 1815 0x1c88a40 DEBUG GST_PADS gstpad.c:4300:gst_pad_peer_query:<decodebin0:sink> peer query 0xb5a01b80 (scheduling)
0:00:01.583976792 1815 0x1c88a40 DEBUG GST_PADS gstpad.c:4173:gst_pad_query:<filesrc0:src> doing query 0xb5a01b80 (scheduling)
0:00:01.584029500 1815 0x1c88a40 DEBUG GST_PADS gstpad.c:4196:gst_pad_query:<filesrc0:src> sent query 0xb5a01b80 (scheduling), result 1
0:00:01.584069209 1815 0x1c88a40 DEBUG GST_PADS gstpad.c:4196:gst_pad_query:<sink:proxypad0> sent query 0xb5a01b80 (scheduling), result 1
0:00:01.584103000 1815 0x1c88a40 DEBUG GST_PADS gstpad.c:4196:gst_pad_query:<typefind:src> sent query 0xb5a01b80 (scheduling), result 1
0:00:01.584144625 1815 0x1c88a40 DEBUG GST_PADS gstpad.c:1183:activate_mode_internal:<qtdemux0:sink> calling peer
0:00:01.584175459 1815 0x1c88a40 DEBUG GST_PADS gstpad.c:1170:activate_mode_internal:<typefind:src> deactivating pad from push mode
0:00:01.584202417 1815 0x1c88a40 DEBUG GST_PADS gstpad.c:983:pre_activate:<typefind:src> setting PAD_MODE NONE, set flushing
0:00:01.584232250 1815 0x1c88a40 DEBUG GST_PADS gstpad.c:1046:post_activate:<typefind:src> stopped streaming
0:00:01.584266709 1815 0x1c88a40 DEBUG GST_PADS gstpad.c:458:remove_events:<typefind:src> notify caps
0:00:01.584330084 1815 0x1c88a40 DEBUG GST_PADS gstpad.c:1226:activate_mode_internal:<typefind:src> deactivated in push mode
0:00:01.584365709 1815 0x1c88a40 DEBUG GST_PADS gstpad.c:1003:pre_activate:<typefind:src> setting pad into pull mode, unset flushing
0:00:01.584391959 1815 0x1c88a40 DEBUG GST_PADS gstpad.c:6338:gst_pad_pause_task:<typefind:sink> pause task
0:00:01.584431334 1815 0x1c88a40 DEBUG GST_PADS gstpad.c:1330:gst_pad_activate_mode:<typefind:sink> already activated in pull mode
0:00:01.584464625 1815 0x1c88a40 DEBUG GST_PADS gstpad.c:1226:activate_mode_internal:<typefind:src> activated in pull mode
0:00:01.584497667 1815 0x1c88a40 DEBUG GST_PADS gstpad.c:1003:pre_activate:<qtdemux0:sink> setting pad into pull mode, unset flushing
0:00:01.584529667 1815 0x1c88a40 DEBUG GST_PADS gstpad.c:1015:pre_activate:<qtdemux0:sink> reschedule events on peer typefind:src
0:00:01.584556542 1815 0x1c88a40 DEBUG GST_PADS gstpad.c:6282:gst_pad_start_task:<qtdemux0:sink> start task
0:00:01.584632625 1815 0x1c88a40 INFO GST_PADS gstpad.c:6291:gst_pad_start_task:<qtdemux0:sink> created task 0x1c9eeb8
0:00:01.584664417 1815 0x1c88a40 DEBUG GST_PADS gstpad.c:6210:do_stream_status:<qtdemux0:sink> doing stream-status 0
0:00:01.584712292 1815 0x1c88a40 DEBUG GST_PADS gstpad.c:6237:do_stream_status:<qtdemux0:sink> posting stream-status 0
0:00:01.585071667 1815 0x1c88a40 DEBUG GST_PADS gstpad.c:1226:activate_mode_internal:<qtdemux0:sink> activated in pull mode
0:00:01.585135417 1815 0x1c88a40 DEBUG GST_ELEMENT_PADS gstelement.c:3246:gst_element_pads_activate:<qtdemux0> pad activation successful
0:00:01.585225584 1815 0x1c89170 DEBUG GST_PADS gstpad.c:6210:do_stream_status:<qtdemux0:sink> doing stream-status 1
0:00:01.585360084 1815 0x1c89170 DEBUG GST_PADS gstpad.c:6237:do_stream_status:<qtdemux0:sink> posting stream-status 1
0:00:01.585979167 1815 0x1c89170 DEBUG GST_ELEMENT_PADS gstelement.c:2088:gst_element_query: send query on element qtdemux0
0:00:01.586035542 1815 0x1c89170 DEBUG GST_ELEMENT_PADS gstelement.c:1873:gst_element_get_random_pad: getting a random pad
0:00:01.586062167 1815 0x1c89170 DEBUG GST_ELEMENT_PADS gstelement.c:1873:gst_element_get_random_pad: getting a random pad
0:00:01.586094084 1815 0x1c89170 DEBUG GST_ELEMENT_PADS gstelement.c:1891:gst_element_get_random_pad: checking pad qtdemux0:sink
0:00:01.586123625 1815 0x1c89170 DEBUG GST_ELEMENT_PADS gstelement.c:1903:gst_element_get_random_pad: found pad qtdemux0:sink
0:00:01.586166792 1815 0x1c89170 DEBUG GST_PADS gstpad.c:4173:gst_pad_query:<typefind:src> doing query 0xb5a02380 (uri)
0:00:01.586212625 1815 0x1c89170 DEBUG GST_PADS gstpad.c:3514:gst_pad_query_default:<typefind:src> forwarding 0xb5a02380 (uri) query
0:00:01.586253875 1815 0x1c89170 DEBUG GST_PADS gstpad.c:2968:gst_pad_iterate_internal_links_default:<typefind:src> Making iterator
0:00:01.586323792 1815 0x1c89170 DEBUG GST_PADS gstpad.c:4300:gst_pad_peer_query:<typefind:sink> peer query 0xb5a02380 (uri)
0:00:01.586364792 1815 0x1c89170 DEBUG GST_PADS gstpad.c:4173:gst_pad_query:<sink:proxypad0> doing query 0xb5a02380 (uri)
0:00:01.586401042 1815 0x1c89170 DEBUG GST_PADS gstpad.c:3514:gst_pad_query_default:<sink:proxypad0> forwarding 0xb5a02380 (uri) query
0:00:01.586453625 1815 0x1c89170 DEBUG GST_PADS gstpad.c:4300:gst_pad_peer_query:<decodebin0:sink> peer query 0xb5a02380 (uri)
0:00:01.586549292 1815 0x1c89170 DEBUG GST_PADS gstpad.c:4173:gst_pad_query:<filesrc0:src> doing query 0xb5a02380 (uri)
0:00:01.586613709 1815 0x1c89170 DEBUG GST_PADS gstpad.c:4196:gst_pad_query:<filesrc0:src> sent query 0xb5a02380 (uri), result 1
0:00:01.586654500 1815 0x1c89170 DEBUG GST_PADS gstpad.c:4196:gst_pad_query:<sink:proxypad0> sent query 0xb5a02380 (uri), result 1
0:00:01.586692125 1815 0x1c89170 DEBUG GST_PADS gstpad.c:4196:gst_pad_query:<typefind:src> sent query 0xb5a02380 (uri), result 1
0:00:01.586789417 1815 0x1c89170 WARN qtdemux qtdemux.c:3121:qtdemux_parse_trex:<qtdemux0> failed to find fragment defaults for stream 1
0:00:01.587685500 1815 0x1c89170 DEBUG GST_PADS gstpad.c:1912:gst_pad_set_event_function_full:<'':video_0> eventfunc for set to 0xb4d8d359
0:00:01.587751750 1815 0x1c89170 DEBUG GST_PADS gstpad.c:1992:gst_pad_set_query_function_full:<'':video_0> queryfunc set to 0xb4d8ce49
0:00:01.587784417 1815 0x1c89170 DEBUG GST_PADS gstpad.c:1098:gst_pad_set_active:<'':video_0> activating pad from none
0:00:01.587819417 1815 0x1c89170 DEBUG GST_PADS gstpad.c:1003:pre_activate:<'':video_0> setting pad into push mode, unset flushing
0:00:01.587858000 1815 0x1c89170 DEBUG GST_PADS gstpad.c:1226:activate_mode_internal:<'':video_0> activated in push mode
0:00:01.587928000 1815 0x1c89170 DEBUG GST_PADS gstpad.c:4105:check_sticky:<'':video_0> pushing all sticky events
0:00:01.587965542 1815 0x1c89170 DEBUG GST_PADS gstpad.c:5597:gst_pad_push_event_unchecked:<'':video_0> Dropping event stream-start because pad is not linked
0:00:01.587994875 1815 0x1c89170 DEBUG GST_PADS gstpad.c:4076:push_sticky:<'':video_0> pad was not linked, mark pending
0:00:01.588029167 1815 0x1c89170 DEBUG GST_CAPS gstpad.c:2737:gst_pad_get_current_caps:<'':video_0> get current pad caps (NULL)
0:00:01.588073042 1815 0x1c89170 DEBUG GST_PADS gstpad.c:5363:store_sticky_event:<'':video_0> notify caps
0:00:01.588111792 1815 0x1c89170 DEBUG GST_PADS gstpad.c:4105:check_sticky:<'':video_0> pushing all sticky events
0:00:01.588145959 1815 0x1c89170 DEBUG GST_PADS gstpad.c:4034:push_sticky:<'':video_0> event stream-start was already received
0:00:01.588187042 1815 0x1c89170 DEBUG GST_PADS gstpad.c:5597:gst_pad_push_event_unchecked:<'':video_0> Dropping event caps because pad is not linked
0:00:01.588214375 1815 0x1c89170 DEBUG GST_PADS gstpad.c:4076:push_sticky:<'':video_0> pad was not linked, mark pending
0:00:01.588246542 1815 0x1c89170 INFO GST_ELEMENT_PADS gstelement.c:759:gst_element_add_pad:<qtdemux0> adding pad 'video_0'
0:00:01.588438042 1815 0x1c89170 DEBUG GST_CAPS gstpad.c:2737:gst_pad_get_current_caps:<qtdemux0:video_0> get current pad caps video/x-h264, stream-format=(string)avc, alignment=(string)au, level=(string)4.2, profile=(string)high, codec_data=(buffer)0164002affe1001b6764002aacc8501e0089f97011000003000100000300780f18319601000668e93864b22cfdf8f800, width=(int)1920, height=(int)1080, framerate=(fraction)60/1, pixel-aspect-ratio=(fraction)1/1
0:00:01.588479459 1815 0x1c89170 DEBUG GST_PADS gstghostpad.c:475:gst_ghost_pad_dispose:<'':decodepad0> dispose
0:00:01.588510125 1815 0x1c89170 DEBUG GST_PADS gstghostpad.c:823:gst_ghost_pad_set_target:<'':decodepad0> clearing target
0:00:01.588544709 1815 0x1c89170 DEBUG GST_PADS gstpad.c:1771:gst_pad_set_activatemode_function_full:<decodepad0:proxypad1> activatemodefunc set to (NULL)
0:00:01.588688209 1815 0x1c89170 DEBUG GST_ELEMENT_PADS gstelement.c:317:gst_element_base_class_init: type GstMultiQueue : factory 0x1c4d1b0
0:00:01.589188459 1815 0x1c89170 INFO GST_ELEMENT_PADS gstelement.c:1016:gst_element_get_static_pad: found pad qtdemux0:sink
0:00:01.589260500 1815 0x1c89170 DEBUG GST_PADS gstpad.c:4300:gst_pad_peer_query:<qtdemux0:sink> peer query 0xb4406c00 (seeking)
0:00:01.589300084 1815 0x1c89170 DEBUG GST_PADS gstpad.c:4173:gst_pad_query:<typefind:src> doing query 0xb4406c00 (seeking)
0:00:01.589341125 1815 0x1c89170 DEBUG GST_PADS gstpad.c:3514:gst_pad_query_default:<typefind:src> forwarding 0xb4406c00 (seeking) query
0:00:01.589370292 1815 0x1c89170 DEBUG GST_PADS gstpad.c:2968:gst_pad_iterate_internal_links_default:<typefind:src> Making iterator
0:00:01.589409209 1815 0x1c89170 DEBUG GST_PADS gstpad.c:4300:gst_pad_peer_query:<typefind:sink> peer query 0xb4406c00 (seeking)
0:00:01.589445417 1815 0x1c89170 DEBUG GST_PADS gstpad.c:4173:gst_pad_query:<sink:proxypad0> doing query 0xb4406c00 (seeking)
0:00:01.589481542 1815 0x1c89170 DEBUG GST_PADS gstpad.c:3514:gst_pad_query_default:<sink:proxypad0> forwarding 0xb4406c00 (seeking) query
0:00:01.589524917 1815 0x1c89170 DEBUG GST_PADS gstpad.c:4300:gst_pad_peer_query:<decodebin0:sink> peer query 0xb4406c00 (seeking)
0:00:01.589560042 1815 0x1c89170 DEBUG GST_PADS gstpad.c:4173:gst_pad_query:<filesrc0:src> doing query 0xb4406c00 (seeking)
0:00:01.589607834 1815 0x1c89170 DEBUG GST_PADS gstpad.c:4196:gst_pad_query:<filesrc0:src> sent query 0xb4406c00 (seeking), result 1
0:00:01.589648750 1815 0x1c89170 DEBUG GST_PADS gstpad.c:4196:gst_pad_query:<sink:proxypad0> sent query 0xb4406c00 (seeking), result 1
0:00:01.589696292 1815 0x1c89170 DEBUG GST_PADS gstpad.c:4196:gst_pad_query:<typefind:src> sent query 0xb4406c00 (seeking), result 1
0:00:01.589836917 1815 0x1c89170 DEBUG GST_ELEMENT_PADS gstelement.c:3227:gst_element_pads_activate:<multiqueue0> activate pads
0:00:01.589886625 1815 0x1c89170 DEBUG GST_ELEMENT_PADS gstelement.c:3246:gst_element_pads_activate:<multiqueue0> pad activation successful
0:00:01.590091792 1815 0x1c89170 DEBUG GST_PADS gstpad.c:2026:gst_pad_set_iterate_internal_links_function_full:<GstProxyPad@0x1c9c668> internal link iterator set to gst_proxy_pad_iterate_internal_links_default
0:00:01.590136417 1815 0x1c89170 DEBUG GST_PADS gstpad.c:1771:gst_pad_set_activatemode_function_full:<GstGhostPad@0x1c9c668> activatemodefunc set to gst_ghost_pad_activate_mode_default
0:00:01.590201917 1815 0x1c89170 DEBUG GST_PADS gstpad.c:1879:gst_pad_set_getrange_function_full:<'':decodepad1> getrangefunc set to gst_proxy_pad_getrange_default
0:00:01.590251917 1815 0x1c89170 DEBUG GST_PADS gstpad.c:2026:gst_pad_set_iterate_internal_links_function_full:<GstProxyPad@0x1c92638> internal link iterator set to gst_proxy_pad_iterate_internal_links_default
0:00:01.590307459 1815 0x1c89170 DEBUG GST_PADS gstpad.c:1806:gst_pad_set_chain_function_full:<'':proxypad2> chainfunc set to gst_proxy_pad_chain_default
0:00:01.590341792 1815 0x1c89170 DEBUG GST_PADS gstpad.c:1843:gst_pad_set_chain_list_function_full:<'':proxypad2> chainlistfunc set to gst_proxy_pad_chain_list_default
0:00:01.590374584 1815 0x1c89170 DEBUG GST_PADS gstpad.c:1771:gst_pad_set_activatemode_function_full:<decodepad1:proxypad2> activatemodefunc set to gst_ghost_pad_internal_activate_mode_default
0:00:01.590424167 1815 0x1c89170 DEBUG GST_PADS gstpad.c:1992:gst_pad_set_query_function_full:<decodepad1:proxypad2> queryfunc set to 0xb6579f01
0:00:01.590460334 1815 0x1c89170 DEBUG GST_PADS gstpad.c:1912:gst_pad_set_event_function_full:<'':decodepad1> eventfunc for set to 0xb6579d09
0:00:01.590527542 1815 0x1c89170 DEBUG GST_PADS gstpad.c:1098:gst_pad_set_active:<'':decodepad1> activating pad from none
0:00:01.590568667 1815 0x1c89170 DEBUG GST_PADS gstpad.c:1003:pre_activate:<'':decodepad1> setting pad into push mode, unset flushing
0:00:01.590603625 1815 0x1c89170 DEBUG GST_PADS gstpad.c:1003:pre_activate:<decodepad1:proxypad2> setting pad into push mode, unset flushing
0:00:01.590640000 1815 0x1c89170 DEBUG GST_PADS gstpad.c:1330:gst_pad_activate_mode:<'':decodepad1> already activated in push mode
0:00:01.590677250 1815 0x1c89170 DEBUG GST_PADS gstpad.c:1226:activate_mode_internal:<decodepad1:proxypad2> activated in push mode
0:00:01.590709834 1815 0x1c89170 DEBUG GST_PADS gstpad.c:1226:activate_mode_internal:<'':decodepad1> activated in push mode
0:00:01.590746917 1815 0x1c89170 DEBUG GST_PADS gstghostpad.c:821:gst_ghost_pad_set_target:<'':decodepad1> set target qtdemux0:video_0
0:00:01.590781709 1815 0x1c89170 DEBUG GST_PADS gstghostpad.c:842:gst_ghost_pad_set_target:<'':decodepad1> connecting internal pad to target <qtdemux0:video_0>
0:00:01.590861792 1815 0x1c89170 INFO GST_PADS gstpad.c:2382:gst_pad_link_prepare: trying to link qtdemux0:video_0 and decodepad1:proxypad2
0:00:01.590910792 1815 0x1c89170 INFO GST_PADS gstpad.c:2590:gst_pad_link_full: linked qtdemux0:video_0 and decodepad1:proxypad2, successful
0:00:01.590954250 1815 0x1c89170 DEBUG GST_PADS gstpad.c:2968:gst_pad_iterate_internal_links_default:<qtdemux0:video_0> Making iterator
0:00:01.591016542 1815 0x1c89170 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<filesrc0:src> sent event, ret ok
0:00:01.591056334 1815 0x1c89170 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<sink:proxypad0> sent event, ret ok
0:00:01.591086834 1815 0x1c89170 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<typefind:src> sent event, ret ok
0:00:01.591121209 1815 0x1c89170 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<qtdemux0:video_0> sent event, ret ok
0:00:01.591189042 1815 0x1c89170 DEBUG GST_PADS gstpad.c:5363:store_sticky_event:<'':decodepad1> notify caps
0:00:01.591451292 1815 0x1c89170 DEBUG GST_CAPS gstpad.c:2737:gst_pad_get_current_caps:<qtdemux0:video_0> get current pad caps video/x-h264, stream-format=(string)avc, alignment=(string)au, level=(string)4.2, profile=(string)high, codec_data=(buffer)0164002affe1001b6764002aacc8501e0089f97011000003000100000300780f18319601000668e93864b22cfdf8f800, width=(int)1920, height=(int)1080, framerate=(fraction)60/1, pixel-aspect-ratio=(fraction)1/1
0:00:01.591949875 1815 0x1c89170 DEBUG GST_PADS gstghostpad.c:823:gst_ghost_pad_set_target:<'':decodepad1> clearing target
0:00:01.592020209 1815 0x1c89170 INFO GST_ELEMENT_PADS gstpad.c:2137:gst_pad_unlink: unlinking qtdemux0:video_0(0x1c86b98) and decodepad1:proxypad2(0x1c92638)
0:00:01.592096000 1815 0x1c89170 INFO GST_ELEMENT_PADS gstpad.c:2192:gst_pad_unlink: unlinked qtdemux0:video_0 and decodepad1:proxypad2
0:00:01.592628084 1815 0x1c89170 DEBUG GST_PADS gstpad.c:1806:gst_pad_set_chain_function_full:<'':sink_0> chainfunc set to gst_multi_queue_chain
0:00:01.592685959 1815 0x1c89170 DEBUG GST_PADS gstpad.c:1771:gst_pad_set_activatemode_function_full:<'':sink_0> activatemodefunc set to gst_multi_queue_sink_activate_mode
0:00:01.592721959 1815 0x1c89170 DEBUG GST_PADS gstpad.c:1959:gst_pad_set_event_full_function_full:<'':sink_0> eventfullfunc for set to gst_multi_queue_sink_event
0:00:01.592753917 1815 0x1c89170 DEBUG GST_PADS gstpad.c:1992:gst_pad_set_query_function_full:<'':sink_0> queryfunc set to gst_multi_queue_sink_query
0:00:01.592785667 1815 0x1c89170 DEBUG GST_PADS gstpad.c:2026:gst_pad_set_iterate_internal_links_function_full:<'':sink_0> internal link iterator set to gst_multi_queue_iterate_internal_links
0:00:01.592944667 1815 0x1c89170 DEBUG GST_PADS gstpad.c:1771:gst_pad_set_activatemode_function_full:<'':src_0> activatemodefunc set to gst_multi_queue_src_activate_mode
0:00:01.593006625 1815 0x1c89170 DEBUG GST_PADS gstpad.c:1912:gst_pad_set_event_function_full:<'':src_0> eventfunc for set to gst_multi_queue_src_event
0:00:01.593041375 1815 0x1c89170 DEBUG GST_PADS gstpad.c:1992:gst_pad_set_query_function_full:<'':src_0> queryfunc set to gst_multi_queue_src_query
0:00:01.593074084 1815 0x1c89170 DEBUG GST_PADS gstpad.c:2026:gst_pad_set_iterate_internal_links_function_full:<'':src_0> internal link iterator set to gst_multi_queue_iterate_internal_links
0:00:01.593103917 1815 0x1c89170 DEBUG GST_PADS gstpad.c:1098:gst_pad_set_active:<'':src_0> activating pad from none
0:00:01.593137667 1815 0x1c89170 DEBUG GST_PADS gstpad.c:1003:pre_activate:<'':src_0> setting pad into push mode, unset flushing
0:00:01.593198084 1815 0x1c89170 DEBUG GST_PADS gstpad.c:1226:activate_mode_internal:<'':src_0> activated in push mode
0:00:01.593228667 1815 0x1c89170 DEBUG GST_PADS gstpad.c:1098:gst_pad_set_active:<'':sink_0> activating pad from none
0:00:01.593257459 1815 0x1c89170 DEBUG GST_PADS gstpad.c:1003:pre_activate:<'':sink_0> setting pad into push mode, unset flushing
0:00:01.593291792 1815 0x1c89170 DEBUG GST_PADS gstpad.c:1226:activate_mode_internal:<'':sink_0> activated in push mode
0:00:01.593322959 1815 0x1c89170 INFO GST_ELEMENT_PADS gstelement.c:759:gst_element_add_pad:<multiqueue0> adding pad 'src_0'
0:00:01.593364500 1815 0x1c89170 INFO GST_ELEMENT_PADS gstelement.c:759:gst_element_add_pad:<multiqueue0> adding pad 'sink_0'
0:00:01.593399209 1815 0x1c89170 DEBUG GST_PADS gstpad.c:6282:gst_pad_start_task:<multiqueue0:src_0> start task
0:00:01.593472542 1815 0x1c89170 INFO GST_PADS gstpad.c:6291:gst_pad_start_task:<multiqueue0:src_0> created task 0xb4403978
0:00:01.593506000 1815 0x1c89170 DEBUG GST_PADS gstpad.c:6210:do_stream_status:<multiqueue0:src_0> doing stream-status 0
0:00:01.593555167 1815 0x1c89170 DEBUG GST_PADS gstpad.c:6237:do_stream_status:<multiqueue0:src_0> posting stream-status 0
0:00:01.594006584 1815 0x1c89170 INFO GST_PADS gstpad.c:2382:gst_pad_link_prepare: trying to link qtdemux0:video_0 and multiqueue0:sink_0
0:00:01.594084542 1815 0x1c89170 INFO GST_PADS gstpad.c:2590:gst_pad_link_full: linked qtdemux0:video_0 and multiqueue0:sink_0, successful
0:00:01.594157334 1815 0x1c89170 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<qtdemux0:video_0> data is passed
0:00:01.594175542 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:6210:do_stream_status:<multiqueue0:src_0> doing stream-status 1
0:00:01.594204250 1815 0x1c89170 DEBUG GST_PADS gstpad.c:2968:gst_pad_iterate_internal_links_default:<qtdemux0:video_0> Making iterator
0:00:01.594283834 1815 0x1c89170 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<filesrc0:src> sent event, ret ok
0:00:01.594334000 1815 0x1c89170 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<sink:proxypad0> sent event, ret ok
0:00:01.594298042 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:6237:do_stream_status:<multiqueue0:src_0> posting stream-status 1
0:00:01.594369834 1815 0x1c89170 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<typefind:src> sent event, ret ok
0:00:01.594407959 1815 0x1c89170 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<qtdemux0:video_0> sent event, ret ok
0:00:01.594549709 1815 0x1c89170 DEBUG GST_PADS gstpad.c:5363:store_sticky_event:<multiqueue0:src_0> notify caps
0:00:01.594629917 1815 0x1c89170 DEBUG GST_PADS gstghostpad.c:821:gst_ghost_pad_set_target:<'':decodepad1> set target multiqueue0:src_0
0:00:01.594674125 1815 0x1c89170 DEBUG GST_PADS gstghostpad.c:842:gst_ghost_pad_set_target:<'':decodepad1> connecting internal pad to target <multiqueue0:src_0>
0:00:01.594735625 1815 0x1c89170 INFO GST_PADS gstpad.c:2382:gst_pad_link_prepare: trying to link multiqueue0:src_0 and decodepad1:proxypad2
0:00:01.594780125 1815 0x1c89170 INFO GST_PADS gstpad.c:2590:gst_pad_link_full: linked multiqueue0:src_0 and decodepad1:proxypad2, successful
0:00:01.594823750 1815 0x1c89170 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<multiqueue0:sink_0> data is passed
0:00:01.594857292 1815 0x1c89170 DEBUG GST_PADS gstpad.c:3713:probe_hook_marshal:<multiqueue0:sink_0> probe returned OK
0:00:01.594885584 1815 0x1c89170 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<qtdemux0:video_0> data is passed
0:00:01.594916459 1815 0x1c89170 DEBUG GST_PADS gstpad.c:2968:gst_pad_iterate_internal_links_default:<qtdemux0:video_0> Making iterator
0:00:01.594969500 1815 0x1c89170 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<filesrc0:src> sent event, ret ok
0:00:01.595005000 1815 0x1c89170 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<sink:proxypad0> sent event, ret ok
0:00:01.595035375 1815 0x1c89170 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<typefind:src> sent event, ret ok
0:00:01.595067250 1815 0x1c89170 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<qtdemux0:video_0> sent event, ret ok
0:00:01.595098792 1815 0x1c89170 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<multiqueue0:src_0> sent event, ret ok
0:00:01.595152000 1815 0x1c89170 DEBUG GST_PADS gstpad.c:5363:store_sticky_event:<'':decodepad1> notify caps
0:00:01.595194625 1815 0x1c89170 DEBUG GST_PADS gstghostpad.c:821:gst_ghost_pad_set_target:<'':decodepad1> set target multiqueue0:src_0
0:00:01.595234125 1815 0x1c89170 INFO GST_ELEMENT_PADS gstpad.c:2137:gst_pad_unlink: unlinking multiqueue0:src_0(0x1c8d738) and decodepad1:proxypad2(0x1c92638)
0:00:01.595284959 1815 0x1c89170 INFO GST_ELEMENT_PADS gstpad.c:2192:gst_pad_unlink: unlinked multiqueue0:src_0 and decodepad1:proxypad2
0:00:01.595342792 1815 0x1c89170 DEBUG GST_PADS gstghostpad.c:842:gst_ghost_pad_set_target:<'':decodepad1> connecting internal pad to target <multiqueue0:src_0>
0:00:01.595389792 1815 0x1c89170 INFO GST_PADS gstpad.c:2382:gst_pad_link_prepare: trying to link multiqueue0:src_0 and decodepad1:proxypad2
0:00:01.595428209 1815 0x1c89170 INFO GST_PADS gstpad.c:2590:gst_pad_link_full: linked multiqueue0:src_0 and decodepad1:proxypad2, successful
0:00:01.595460125 1815 0x1c89170 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<multiqueue0:sink_0> data is passed
0:00:01.595487625 1815 0x1c89170 DEBUG GST_PADS gstpad.c:3713:probe_hook_marshal:<multiqueue0:sink_0> probe returned OK
0:00:01.595513709 1815 0x1c89170 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<qtdemux0:video_0> data is passed
0:00:01.595541667 1815 0x1c89170 DEBUG GST_PADS gstpad.c:2968:gst_pad_iterate_internal_links_default:<qtdemux0:video_0> Making iterator
0:00:01.595584584 1815 0x1c89170 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<filesrc0:src> sent event, ret ok
0:00:01.595616792 1815 0x1c89170 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<sink:proxypad0> sent event, ret ok
0:00:01.595646500 1815 0x1c89170 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<typefind:src> sent event, ret ok
0:00:01.595679250 1815 0x1c89170 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<qtdemux0:video_0> sent event, ret ok
0:00:01.595709250 1815 0x1c89170 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<multiqueue0:src_0> sent event, ret ok
0:00:01.595816292 1815 0x1c89170 DEBUG GST_PADS gstghostpad.c:823:gst_ghost_pad_set_target:<'':decodepad1> clearing target
0:00:01.595859000 1815 0x1c89170 INFO GST_ELEMENT_PADS gstpad.c:2137:gst_pad_unlink: unlinking multiqueue0:src_0(0x1c8d738) and decodepad1:proxypad2(0x1c92638)
0:00:01.595909459 1815 0x1c89170 INFO GST_ELEMENT_PADS gstpad.c:2192:gst_pad_unlink: unlinked multiqueue0:src_0 and decodepad1:proxypad2
0:00:01.603429625 1815 0x1c89170 DEBUG GST_ELEMENT_PADS gstelement.c:317:gst_element_base_class_init: type GstBaseParse : factory (nil)
0:00:01.603582209 1815 0x1c89170 DEBUG GST_ELEMENT_PADS gstelement.c:317:gst_element_base_class_init: type GstH264Parse : factory 0x1c38bf0
0:00:01.603975417 1815 0x1c89170 DEBUG GST_PADS gstpad.c:1912:gst_pad_set_event_function_full:<'':sink> eventfunc for set to gst_base_parse_sink_event
0:00:01.604025000 1815 0x1c89170 DEBUG GST_PADS gstpad.c:1992:gst_pad_set_query_function_full:<'':sink> queryfunc set to gst_base_parse_sink_query
0:00:01.604060417 1815 0x1c89170 DEBUG GST_PADS gstpad.c:1806:gst_pad_set_chain_function_full:<'':sink> chainfunc set to gst_base_parse_chain
0:00:01.604092625 1815 0x1c89170 DEBUG GST_PADS gstpad.c:1736:gst_pad_set_activate_function_full:<'':sink> activatefunc set to gst_base_parse_sink_activate
0:00:01.604129459 1815 0x1c89170 DEBUG GST_PADS gstpad.c:1771:gst_pad_set_activatemode_function_full:<'':sink> activatemodefunc set to gst_base_parse_sink_activate_mode
0:00:01.604162875 1815 0x1c89170 INFO GST_ELEMENT_PADS gstelement.c:759:gst_element_add_pad:<GstBaseParse@0xb4416968> adding pad 'sink'
0:00:01.604251167 1815 0x1c89170 DEBUG GST_PADS gstpad.c:1912:gst_pad_set_event_function_full:<'':src> eventfunc for set to gst_base_parse_src_event
0:00:01.604300375 1815 0x1c89170 DEBUG GST_PADS gstpad.c:1992:gst_pad_set_query_function_full:<'':src> queryfunc set to gst_base_parse_src_query
0:00:01.604334375 1815 0x1c89170 INFO GST_ELEMENT_PADS gstelement.c:759:gst_element_add_pad:<GstBaseParse@0xb4416968> adding pad 'src'
0:00:01.604642000 1815 0x1c89170 INFO GST_PADS gstpad.c:2382:gst_pad_link_prepare: trying to link multiqueue0:src_0 and h264parse0:sink
0:00:01.604700917 1815 0x1c89170 INFO GST_PADS gstpad.c:2590:gst_pad_link_full: linked multiqueue0:src_0 and h264parse0:sink, successful
0:00:01.604766542 1815 0x1c89170 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<multiqueue0:sink_0> data is passed
0:00:01.604804834 1815 0x1c89170 DEBUG GST_PADS gstpad.c:3713:probe_hook_marshal:<multiqueue0:sink_0> probe returned OK
0:00:01.604835917 1815 0x1c89170 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<qtdemux0:video_0> data is passed
0:00:01.604874000 1815 0x1c89170 DEBUG GST_PADS gstpad.c:2968:gst_pad_iterate_internal_links_default:<qtdemux0:video_0> Making iterator
0:00:01.604937042 1815 0x1c89170 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<filesrc0:src> sent event, ret ok
0:00:01.604972584 1815 0x1c89170 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<sink:proxypad0> sent event, ret ok
0:00:01.605003834 1815 0x1c89170 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<typefind:src> sent event, ret ok
0:00:01.605041167 1815 0x1c89170 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<qtdemux0:video_0> sent event, ret ok
0:00:01.605075250 1815 0x1c89170 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<multiqueue0:src_0> sent event, ret ok
0:00:01.605394375 1815 0x1c89170 DEBUG GST_CAPS gstutils.c:3185:gst_pad_query_accept_caps:<h264parse0:sink> accept caps of video/x-h264, stream-format=(string)avc, alignment=(string)au, level=(string)4.2, profile=(string)high, codec_data=(buffer)0164002affe1001b6764002aacc8501e0089f97011000003000100000300780f18319601000668e93864b22cfdf8f800, width=(int)1920, height=(int)1080, framerate=(fraction)60/1, pixel-aspect-ratio=(fraction)1/1
0:00:01.605466709 1815 0x1c89170 DEBUG GST_PADS gstpad.c:4173:gst_pad_query:<h264parse0:sink> doing query 0xb4406c30 (accept-caps)
0:00:01.605907959 1815 0x1c89170 DEBUG GST_PADS gstpad.c:3200:gst_pad_query_accept_caps_default:<h264parse0:sink> query accept-caps accept-caps query: 0xb4406c30, GstQueryAcceptCaps, caps=(GstCaps)"video/x-h264\,\ stream-format\=\(string\)avc\,\ alignment\=\(string\)au\,\ level\=\(string\)4.2\,\ profile\=\(string\)high\,\ codec_data\=\(buffer\)0164002affe1001b6764002aacc8501e0089f97011000003000100000300780f18319601000668e93864b22cfdf8f800\,\ width\=\(int\)1920\,\ height\=\(int\)1080\,\ framerate\=\(fraction\)60/1\,\ pixel-aspect-ratio\=\(fraction\)1/1", result=(boolean)false;
0:00:01.606057500 1815 0x1c89170 DEBUG GST_PADS gstpad.c:3225:gst_pad_query_accept_caps_default:<h264parse0:sink> allowed caps intersect video/x-h264, caps video/x-h264, stream-format=(string)avc, alignment=(string)au, level=(string)4.2, profile=(string)high, codec_data=(buffer)0164002affe1001b6764002aacc8501e0089f97011000003000100000300780f18319601000668e93864b22cfdf8f800, width=(int)1920, height=(int)1080, framerate=(fraction)60/1, pixel-aspect-ratio=(fraction)1/1
0:00:01.606113084 1815 0x1c89170 DEBUG GST_PADS gstpad.c:3514:gst_pad_query_default:<h264parse0:sink> not forwarding 0xb4406c30 (accept-caps) query
0:00:01.606152709 1815 0x1c89170 DEBUG GST_PADS gstpad.c:4196:gst_pad_query:<h264parse0:sink> sent query 0xb4406c30 (accept-caps), result 1
0:00:01.606227917 1815 0x1c89170 INFO GST_ELEMENT_PADS gstelement.c:1016:gst_element_get_static_pad: found pad h264parse0:src
0:00:01.606268667 1815 0x1c89170 DEBUG GST_CAPS gstpad.c:2737:gst_pad_get_current_caps:<h264parse0:src> get current pad caps (NULL)
0:00:01.606301584 1815 0x1c89170 DEBUG GST_CAPS gstutils.c:3102:gst_pad_query_caps:<h264parse0:src> get pad caps with filter (NULL)
0:00:01.606344375 1815 0x1c89170 DEBUG GST_PADS gstpad.c:4173:gst_pad_query:<h264parse0:src> doing query 0xb4406c60 (caps)
0:00:01.606402375 1815 0x1c89170 DEBUG GST_CAPS gstpad.c:3259:gst_pad_query_caps_default:<h264parse0:src> query caps caps query: 0xb4406c60, GstQueryCaps, filter=(GstCaps)"NULL", caps=(GstCaps)"NULL";
0:00:01.606429625 1815 0x1c89170 DEBUG GST_CAPS gstpad.c:3277:gst_pad_query_caps_default:<h264parse0:src> fixed pad caps: trying pad caps
0:00:01.606454334 1815 0x1c89170 DEBUG GST_CAPS gstpad.c:3283:gst_pad_query_caps_default:<h264parse0:src> trying pad template caps
0:00:01.606601000 1815 0x1c89170 DEBUG GST_CAPS gstpad.c:3312:gst_pad_query_caps_default:<h264parse0:src> using caps 0xb4408828 video/x-h264, parsed=(boolean)true, stream-format=(string){ avc, avc3, byte-stream }, alignment=(string){ au, nal }
0:00:01.606649417 1815 0x1c89170 DEBUG GST_PADS gstpad.c:3514:gst_pad_query_default:<h264parse0:src> not forwarding 0xb4406c60 (caps) query
0:00:01.606688834 1815 0x1c89170 DEBUG GST_PADS gstpad.c:4196:gst_pad_query:<h264parse0:src> sent query 0xb4406c60 (caps), result 1
0:00:01.606742042 1815 0x1c89170 DEBUG GST_CAPS gstutils.c:3109:gst_pad_query_caps:<h264parse0:src> query returned video/x-h264, parsed=(boolean)true, stream-format=(string){ avc, avc3, byte-stream }, alignment=(string){ au, nal }
0:00:01.606784542 1815 0x1c89170 DEBUG GST_PADS gstpad.c:1103:gst_pad_set_active:<'':decodepad1> pad was active in push mode
0:00:01.606821250 1815 0x1c89170 DEBUG GST_PADS gstghostpad.c:821:gst_ghost_pad_set_target:<'':decodepad1> set target h264parse0:src
0:00:01.606866084 1815 0x1c89170 DEBUG GST_PADS gstghostpad.c:842:gst_ghost_pad_set_target:<'':decodepad1> connecting internal pad to target <h264parse0:src>
0:00:01.606939875 1815 0x1c89170 INFO GST_PADS gstpad.c:2382:gst_pad_link_prepare: trying to link h264parse0:src and decodepad1:proxypad2
0:00:01.606990209 1815 0x1c89170 INFO GST_PADS gstpad.c:2590:gst_pad_link_full: linked h264parse0:src and decodepad1:proxypad2, successful
0:00:01.607709459 1815 0x1c89170 DEBUG GST_ELEMENT_PADS gstelement.c:317:gst_element_base_class_init: type GstBaseTransform : factory (nil)
0:00:01.607854625 1815 0x1c89170 DEBUG GST_ELEMENT_PADS gstelement.c:317:gst_element_base_class_init: type GstCapsFilter : factory 0x1c46ec0
0:00:01.608220042 1815 0x1c89170 DEBUG GST_PADS gstpad.c:1912:gst_pad_set_event_function_full:<'':sink> eventfunc for set to gst_base_transform_sink_event
0:00:01.608267667 1815 0x1c89170 DEBUG GST_PADS gstpad.c:1806:gst_pad_set_chain_function_full:<'':sink> chainfunc set to gst_base_transform_chain
0:00:01.608304792 1815 0x1c89170 DEBUG GST_PADS gstpad.c:1771:gst_pad_set_activatemode_function_full:<'':sink> activatemodefunc set to gst_base_transform_sink_activate_mode
0:00:01.608342292 1815 0x1c89170 DEBUG GST_PADS gstpad.c:1992:gst_pad_set_query_function_full:<'':sink> queryfunc set to gst_base_transform_query
0:00:01.608379584 1815 0x1c89170 INFO GST_ELEMENT_PADS gstelement.c:759:gst_element_add_pad:<GstBaseTransform@0xb441c120> adding pad 'sink'
0:00:01.608475792 1815 0x1c89170 DEBUG GST_PADS gstpad.c:1912:gst_pad_set_event_function_full:<'':src> eventfunc for set to gst_base_transform_src_event
0:00:01.608517000 1815 0x1c89170 DEBUG GST_PADS gstpad.c:1879:gst_pad_set_getrange_function_full:<'':src> getrangefunc set to gst_base_transform_getrange
0:00:01.608550625 1815 0x1c89170 DEBUG GST_PADS gstpad.c:1771:gst_pad_set_activatemode_function_full:<'':src> activatemodefunc set to gst_base_transform_src_activate_mode
0:00:01.608581584 1815 0x1c89170 DEBUG GST_PADS gstpad.c:1992:gst_pad_set_query_function_full:<'':src> queryfunc set to gst_base_transform_query
0:00:01.608613459 1815 0x1c89170 INFO GST_ELEMENT_PADS gstelement.c:759:gst_element_add_pad:<GstBaseTransform@0xb441c120> adding pad 'src'
0:00:01.608710875 1815 0x1c89170 DEBUG GST_PADS gstpad.c:5566:gst_pad_push_event_unchecked:<capsfilter0:sink> We're flushing
0:00:01.608789500 1815 0x1c89170 DEBUG GST_ELEMENT_PADS gstelement.c:3227:gst_element_pads_activate:<capsfilter0> activate pads
0:00:01.608831459 1815 0x1c89170 DEBUG GST_PADS gstpad.c:1098:gst_pad_set_active:<capsfilter0:src> activating pad from none
0:00:01.608862500 1815 0x1c89170 DEBUG GST_PADS gstpad.c:1003:pre_activate:<capsfilter0:src> setting pad into push mode, unset flushing
0:00:01.608899250 1815 0x1c89170 DEBUG GST_PADS gstpad.c:1226:activate_mode_internal:<capsfilter0:src> activated in push mode
0:00:01.608950459 1815 0x1c89170 DEBUG GST_PADS gstpad.c:1098:gst_pad_set_active:<capsfilter0:sink> activating pad from none
0:00:01.608986125 1815 0x1c89170 DEBUG GST_PADS gstpad.c:1003:pre_activate:<capsfilter0:sink> setting pad into push mode, unset flushing
0:00:01.609022292 1815 0x1c89170 DEBUG GST_CAPS gstpad.c:2737:gst_pad_get_current_caps:<capsfilter0:sink> get current pad caps (NULL)
0:00:01.609050292 1815 0x1c89170 DEBUG GST_CAPS gstpad.c:2737:gst_pad_get_current_caps:<capsfilter0:src> get current pad caps (NULL)
0:00:01.609083709 1815 0x1c89170 DEBUG GST_PADS gstpad.c:1226:activate_mode_internal:<capsfilter0:sink> activated in push mode
0:00:01.609116375 1815 0x1c89170 DEBUG GST_ELEMENT_PADS gstelement.c:3246:gst_element_pads_activate:<capsfilter0> pad activation successful
0:00:01.609247125 1815 0x1c89170 DEBUG GST_PADS gstghostpad.c:823:gst_ghost_pad_set_target:<'':decodepad1> clearing target
0:00:01.609303542 1815 0x1c89170 INFO GST_ELEMENT_PADS gstpad.c:2137:gst_pad_unlink: unlinking h264parse0:src(0x1c86e48) and decodepad1:proxypad2(0x1c92638)
0:00:01.609375709 1815 0x1c89170 INFO GST_ELEMENT_PADS gstpad.c:2192:gst_pad_unlink: unlinked h264parse0:src and decodepad1:proxypad2
0:00:01.609431292 1815 0x1c89170 INFO GST_ELEMENT_PADS gstelement.c:1016:gst_element_get_static_pad: found pad capsfilter0:sink
0:00:01.609482334 1815 0x1c89170 INFO GST_PADS gstpad.c:2382:gst_pad_link_prepare: trying to link h264parse0:src and capsfilter0:sink
0:00:01.609529875 1815 0x1c89170 INFO GST_PADS gstpad.c:2590:gst_pad_link_full: linked h264parse0:src and capsfilter0:sink, successful
0:00:01.609594042 1815 0x1c89170 INFO GST_ELEMENT_PADS gstelement.c:1016:gst_element_get_static_pad: found pad capsfilter0:src
0:00:01.609632334 1815 0x1c89170 DEBUG GST_PADS gstghostpad.c:821:gst_ghost_pad_set_target:<'':decodepad1> set target capsfilter0:src
0:00:01.609665375 1815 0x1c89170 DEBUG GST_PADS gstghostpad.c:842:gst_ghost_pad_set_target:<'':decodepad1> connecting internal pad to target <capsfilter0:src>
0:00:01.609713250 1815 0x1c89170 INFO GST_PADS gstpad.c:2382:gst_pad_link_prepare: trying to link capsfilter0:src and decodepad1:proxypad2
0:00:01.609756542 1815 0x1c89170 INFO GST_PADS gstpad.c:2590:gst_pad_link_full: linked capsfilter0:src and decodepad1:proxypad2, successful
0:00:01.609805292 1815 0x1c89170 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<capsfilter0:src> sent event, ret error
0:00:01.609863209 1815 0x1c89170 DEBUG GST_CAPS gstpad.c:2737:gst_pad_get_current_caps:<capsfilter0:src> get current pad caps (NULL)
0:00:01.610229000 1815 0x1c89170 DEBUG GST_ELEMENT_PADS gstelement.c:3227:gst_element_pads_activate:<h264parse0> activate pads
0:00:01.610280042 1815 0x1c89170 DEBUG GST_PADS gstpad.c:1098:gst_pad_set_active:<h264parse0:src> activating pad from none
0:00:01.610316292 1815 0x1c89170 DEBUG GST_PADS gstpad.c:1003:pre_activate:<h264parse0:src> setting pad into push mode, unset flushing
0:00:01.610350542 1815 0x1c89170 DEBUG GST_PADS gstpad.c:1226:activate_mode_internal:<h264parse0:src> activated in push mode
0:00:01.610385375 1815 0x1c89170 DEBUG GST_PADS gstpad.c:1098:gst_pad_set_active:<h264parse0:sink> activating pad from none
0:00:01.610439167 1815 0x1c89170 DEBUG GST_PADS gstpad.c:4300:gst_pad_peer_query:<h264parse0:sink> peer query 0xb4406c90 (scheduling)
0:00:01.610517459 1815 0x1c89170 DEBUG GST_PADS gstpad.c:4173:gst_pad_query:<multiqueue0:src_0> doing query 0xb4406c90 (scheduling)
0:00:01.610568417 1815 0x1c89170 DEBUG GST_PADS gstpad.c:3514:gst_pad_query_default:<multiqueue0:src_0> not forwarding 0xb4406c90 (scheduling) query
0:00:01.610608209 1815 0x1c89170 DEBUG GST_PADS gstpad.c:4196:gst_pad_query:<multiqueue0:src_0> sent query 0xb4406c90 (scheduling), result 0
0:00:01.610635250 1815 0x1c89170 DEBUG GST_PADS gstpad.c:4242:gst_pad_query:<multiqueue0:src_0> query failed
0:00:01.610659709 1815 0x1c89170 DEBUG GST_PADS gstpad.c:4363:gst_pad_peer_query:<h264parse0:sink> query failed
0:00:01.610695584 1815 0x1c89170 DEBUG GST_PADS gstpad.c:1003:pre_activate:<h264parse0:sink> setting pad into push mode, unset flushing
0:00:01.610728292 1815 0x1c89170 DEBUG GST_PADS gstpad.c:1015:pre_activate:<h264parse0:sink> reschedule events on peer multiqueue0:src_0
0:00:01.611388375 1815 0x1c89170 DEBUG GST_PADS gstpad.c:1226:activate_mode_internal:<h264parse0:sink> activated in push mode
0:00:01.611446542 1815 0x1c89170 DEBUG GST_ELEMENT_PADS gstelement.c:3246:gst_element_pads_activate:<h264parse0> pad activation successful
0:00:01.611673334 1815 0x1c89170 DEBUG GST_PADS gstpad.c:4105:check_sticky:<h264parse0:src> pushing all sticky events
0:00:01.611726625 1815 0x1c89170 DEBUG GST_PADS gstpad.c:4105:check_sticky:<capsfilter0:src> pushing all sticky events
0:00:01.611764834 1815 0x1c89170 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<capsfilter0:src> data is passed
0:00:01.611797709 1815 0x1c89170 DEBUG GST_PADS gstpad.c:3713:probe_hook_marshal:<capsfilter0:src> probe returned OK
0:00:01.611854875 1815 0x1c89170 DEBUG GST_PADS gstpad.c:4105:check_sticky:<'':decodepad1> pushing all sticky events
0:00:01.611892500 1815 0x1c89170 DEBUG GST_PADS gstpad.c:5597:gst_pad_push_event_unchecked:<'':decodepad1> Dropping event stream-start because pad is not linked
0:00:01.611919750 1815 0x1c89170 DEBUG GST_PADS gstpad.c:4076:push_sticky:<'':decodepad1> pad was not linked, mark pending
0:00:01.611956042 1815 0x1c89170 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<decodepad1:proxypad2> sent event, ret ok
0:00:01.611993709 1815 0x1c89170 DEBUG GST_PADS gstpad.c:4056:push_sticky:<capsfilter0:src> event stream-start marked received
0:00:01.612038167 1815 0x1c89170 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<capsfilter0:sink> sent event, ret ok
0:00:01.612078292 1815 0x1c89170 DEBUG GST_PADS gstpad.c:4056:push_sticky:<h264parse0:src> event stream-start marked received
0:00:01.612113209 1815 0x1c89170 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<h264parse0:sink> sent event, ret ok
0:00:01.612271834 1815 0x1c89170 DEBUG GST_CAPS gstutils.c:3185:gst_pad_query_accept_caps:<h264parse0:sink> accept caps of video/x-h264, stream-format=(string)avc, alignment=(string)au, level=(string)4.2, profile=(string)high, codec_data=(buffer)0164002affe1001b6764002aacc8501e0089f97011000003000100000300780f18319601000668e93864b22cfdf8f800, width=(int)1920, height=(int)1080, framerate=(fraction)60/1, pixel-aspect-ratio=(fraction)1/1
0:00:01.612326209 1815 0x1c89170 DEBUG GST_PADS gstpad.c:4173:gst_pad_query:<h264parse0:sink> doing query 0xb4406cc0 (accept-caps)
0:00:01.612476584 1815 0x1c89170 DEBUG GST_PADS gstpad.c:3200:gst_pad_query_accept_caps_default:<h264parse0:sink> query accept-caps accept-caps query: 0xb4406cc0, GstQueryAcceptCaps, caps=(GstCaps)"video/x-h264\,\ stream-format\=\(string\)avc\,\ alignment\=\(string\)au\,\ level\=\(string\)4.2\,\ profile\=\(string\)high\,\ codec_data\=\(buffer\)0164002affe1001b6764002aacc8501e0089f97011000003000100000300780f18319601000668e93864b22cfdf8f800\,\ width\=\(int\)1920\,\ height\=\(int\)1080\,\ framerate\=\(fraction\)60/1\,\ pixel-aspect-ratio\=\(fraction\)1/1", result=(boolean)false;
0:00:01.612599417 1815 0x1c89170 DEBUG GST_PADS gstpad.c:3225:gst_pad_query_accept_caps_default:<h264parse0:sink> allowed caps intersect video/x-h264, caps video/x-h264, stream-format=(string)avc, alignment=(string)au, level=(string)4.2, profile=(string)high, codec_data=(buffer)0164002affe1001b6764002aacc8501e0089f97011000003000100000300780f18319601000668e93864b22cfdf8f800, width=(int)1920, height=(int)1080, framerate=(fraction)60/1, pixel-aspect-ratio=(fraction)1/1
0:00:01.612646959 1815 0x1c89170 DEBUG GST_PADS gstpad.c:3514:gst_pad_query_default:<h264parse0:sink> not forwarding 0xb4406cc0 (accept-caps) query
0:00:01.612684167 1815 0x1c89170 DEBUG GST_PADS gstpad.c:4196:gst_pad_query:<h264parse0:sink> sent query 0xb4406cc0 (accept-caps), result 1
0:00:01.612735625 1815 0x1c89170 DEBUG GST_CAPS gstpad.c:2737:gst_pad_get_current_caps:<h264parse0:sink> get current pad caps (NULL)
0:00:01.613126000 1815 0x1c89170 DEBUG GST_CAPS gstutils.c:3102:gst_pad_query_caps:<h264parse0:src> get pad caps with filter (NULL)
0:00:01.613179250 1815 0x1c89170 DEBUG GST_PADS gstpad.c:4173:gst_pad_query:<h264parse0:src> doing query 0xb4406cf0 (caps)
0:00:01.613241875 1815 0x1c89170 DEBUG GST_CAPS gstpad.c:3259:gst_pad_query_caps_default:<h264parse0:src> query caps caps query: 0xb4406cf0, GstQueryCaps, filter=(GstCaps)"NULL", caps=(GstCaps)"NULL";
0:00:01.613270000 1815 0x1c89170 DEBUG GST_CAPS gstpad.c:3277:gst_pad_query_caps_default:<h264parse0:src> fixed pad caps: trying pad caps
0:00:01.613295292 1815 0x1c89170 DEBUG GST_CAPS gstpad.c:3283:gst_pad_query_caps_default:<h264parse0:src> trying pad template caps
0:00:01.613364959 1815 0x1c89170 DEBUG GST_CAPS gstpad.c:3312:gst_pad_query_caps_default:<h264parse0:src> using caps 0xb4408828 video/x-h264, parsed=(boolean)true, stream-format=(string){ avc, avc3, byte-stream }, alignment=(string){ au, nal }
0:00:01.613410917 1815 0x1c89170 DEBUG GST_PADS gstpad.c:3514:gst_pad_query_default:<h264parse0:src> not forwarding 0xb4406cf0 (caps) query
0:00:01.613449334 1815 0x1c89170 DEBUG GST_PADS gstpad.c:4196:gst_pad_query:<h264parse0:src> sent query 0xb4406cf0 (caps), result 1
0:00:01.613499084 1815 0x1c89170 DEBUG GST_CAPS gstutils.c:3109:gst_pad_query_caps:<h264parse0:src> query returned video/x-h264, parsed=(boolean)true, stream-format=(string){ avc, avc3, byte-stream }, alignment=(string){ au, nal }
0:00:01.613541709 1815 0x1c89170 DEBUG GST_PADS gstpad.c:4300:gst_pad_peer_query:<h264parse0:src> peer query 0xb4406d20 (caps)
0:00:01.613579375 1815 0x1c89170 DEBUG GST_PADS gstpad.c:4173:gst_pad_query:<capsfilter0:sink> doing query 0xb4406d20 (caps)
0:00:01.613717500 1815 0x1c89170 DEBUG GST_CAPS gstutils.c:3148:gst_pad_peer_query_caps:<capsfilter0:src> get pad peer caps with filter video/x-h264, stream-format=(string){ avc, avc3, byte-stream }, alignment=(string)au, parsed=(boolean)true; video/x-h264, parsed=(boolean)true, stream-format=(string){ avc, avc3, byte-stream }, alignment=(string){ au, nal }
0:00:01.613763584 1815 0x1c89170 DEBUG GST_PADS gstpad.c:4300:gst_pad_peer_query:<capsfilter0:src> peer query 0xb4406d50 (caps)
0:00:01.613795542 1815 0x1c89170 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<capsfilter0:src> data is passed
0:00:01.613833667 1815 0x1c89170 DEBUG GST_PADS gstpad.c:4173:gst_pad_query:<decodepad1:proxypad2> doing query 0xb4406d50 (caps)
0:00:01.614026084 1815 0x1c89170 DEBUG GST_CAPS gstpad.c:3259:gst_pad_query_caps_default:<decodepad1:proxypad2> query caps caps query: 0xb4406d50, GstQueryCaps, filter=(GstCaps)"video/x-h264\,\ stream-format\=\(string\)\{\ avc\,\ avc3\,\ byte-stream\ \}\,\ alignment\=\(string\)au\,\ parsed\=\(boolean\)true\;\ video/x-h264\,\ parsed\=\(boolean\)true\,\ stream-format\=\(string\)\{\ avc\,\ avc3\,\ byte-stream\ \}\,\ alignment\=\(string\)\{\ au\,\ nal\ \}", caps=(GstCaps)"NULL";
0:00:01.614076042 1815 0x1c89170 DEBUG GST_PADS gstutils.c:2851:gst_pad_proxy_query_caps:<decodepad1:proxypad2> proxying caps query for decodepad1:proxypad2
0:00:01.614130125 1815 0x1c89170 DEBUG GST_PADS gstpad.c:4300:gst_pad_peer_query:<'':decodepad1> peer query 0xb4406d50 (caps)
0:00:01.614159250 1815 0x1c89170 INFO GST_PADS gstpad.c:4357:gst_pad_peer_query:<'':decodepad1> pad has no peer
0:00:01.614206417 1815 0x1c89170 DEBUG GST_PADS gstpad.c:3514:gst_pad_query_default:<decodepad1:proxypad2> not forwarding 0xb4406d50 (caps) query
0:00:01.614243792 1815 0x1c89170 DEBUG GST_PADS gstpad.c:4196:gst_pad_query:<decodepad1:proxypad2> sent query 0xb4406d50 (caps), result 1
0:00:01.614309709 1815 0x1c89170 DEBUG GST_CAPS gstutils.c:3155:gst_pad_peer_query_caps:<capsfilter0:src> peer query returned video/x-h264, stream-format=(string){ avc, avc3, byte-stream }, alignment=(string)au, parsed=(boolean)true; video/x-h264, parsed=(boolean)true, stream-format=(string){ avc, avc3, byte-stream }, alignment=(string){ au, nal }
0:00:01.614561500 1815 0x1c89170 DEBUG GST_PADS gstpad.c:4196:gst_pad_query:<capsfilter0:sink> sent query 0xb4406d20 (caps), result 1
0:00:01.614647709 1815 0x1c89170 DEBUG GST_CAPS gstpad.c:2840:gst_pad_get_allowed_caps:<h264parse0:src> allowed caps video/x-h264, parsed=(boolean)true, stream-format=(string){ avc, avc3, byte-stream }, alignment=(string)au; video/x-h264, parsed=(boolean)true, stream-format=(string){ avc, avc3, byte-stream }, alignment=(string){ au, nal }
0:00:01.614729125 1815 0x1c89170 DEBUG GST_CAPS gstpad.c:2709:gst_pad_has_current_caps:<h264parse0:src> check current pad caps (NULL)
0:00:01.614942542 1815 0x1c89170 DEBUG GST_CAPS gstpad.c:2737:gst_pad_get_current_caps:<h264parse0:src> get current pad caps (NULL)
0:00:01.614996792 1815 0x1c89170 DEBUG GST_CAPS gstutils.c:3148:gst_pad_peer_query_caps:<h264parse0:src> get pad peer caps with filter video/x-h264
0:00:01.615039667 1815 0x1c89170 DEBUG GST_PADS gstpad.c:4300:gst_pad_peer_query:<h264parse0:src> peer query 0xb4406d80 (caps)
0:00:01.615076250 1815 0x1c89170 DEBUG GST_PADS gstpad.c:4173:gst_pad_query:<capsfilter0:sink> doing query 0xb4406d80 (caps)
0:00:01.615186875 1815 0x1c89170 DEBUG GST_CAPS gstutils.c:3148:gst_pad_peer_query_caps:<capsfilter0:src> get pad peer caps with filter video/x-h264, stream-format=(string){ avc, avc3, byte-stream }, alignment=(string)au, parsed=(boolean)true; video/x-h264, parsed=(boolean)true, stream-format=(string){ avc, avc3, byte-stream }, alignment=(string){ au, nal }
0:00:01.615230334 1815 0x1c89170 DEBUG GST_PADS gstpad.c:4300:gst_pad_peer_query:<capsfilter0:src> peer query 0xb4406db0 (caps)
0:00:01.615260792 1815 0x1c89170 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<capsfilter0:src> data is passed
0:00:01.615298584 1815 0x1c89170 DEBUG GST_PADS gstpad.c:4173:gst_pad_query:<decodepad1:proxypad2> doing query 0xb4406db0 (caps)
0:00:01.615422667 1815 0x1c89170 DEBUG GST_CAPS gstpad.c:3259:gst_pad_query_caps_default:<decodepad1:proxypad2> query caps caps query: 0xb4406db0, GstQueryCaps, filter=(GstCaps)"video/x-h264\,\ stream-format\=\(string\)\{\ avc\,\ avc3\,\ byte-stream\ \}\,\ alignment\=\(string\)au\,\ parsed\=\(boolean\)true\;\ video/x-h264\,\ parsed\=\(boolean\)true\,\ stream-format\=\(string\)\{\ avc\,\ avc3\,\ byte-stream\ \}\,\ alignment\=\(string\)\{\ au\,\ nal\ \}", caps=(GstCaps)"NULL";
0:00:01.615461000 1815 0x1c89170 DEBUG GST_PADS gstutils.c:2851:gst_pad_proxy_query_caps:<decodepad1:proxypad2> proxying caps query for decodepad1:proxypad2
0:00:01.615510375 1815 0x1c89170 DEBUG GST_PADS gstpad.c:4300:gst_pad_peer_query:<'':decodepad1> peer query 0xb4406db0 (caps)
0:00:01.615539209 1815 0x1c89170 INFO GST_PADS gstpad.c:4357:gst_pad_peer_query:<'':decodepad1> pad has no peer
0:00:01.615585042 1815 0x1c89170 DEBUG GST_PADS gstpad.c:3514:gst_pad_query_default:<decodepad1:proxypad2> not forwarding 0xb4406db0 (caps) query
0:00:01.615630125 1815 0x1c89170 DEBUG GST_PADS gstpad.c:4196:gst_pad_query:<decodepad1:proxypad2> sent query 0xb4406db0 (caps), result 1
0:00:01.615694209 1815 0x1c89170 DEBUG GST_CAPS gstutils.c:3155:gst_pad_peer_query_caps:<capsfilter0:src> peer query returned video/x-h264, stream-format=(string){ avc, avc3, byte-stream }, alignment=(string)au, parsed=(boolean)true; video/x-h264, parsed=(boolean)true, stream-format=(string){ avc, avc3, byte-stream }, alignment=(string){ au, nal }
0:00:01.615890000 1815 0x1c89170 DEBUG GST_PADS gstpad.c:4196:gst_pad_query:<capsfilter0:sink> sent query 0xb4406d80 (caps), result 1
0:00:01.615959709 1815 0x1c89170 DEBUG GST_CAPS gstutils.c:3155:gst_pad_peer_query_caps:<h264parse0:src> peer query returned video/x-h264, stream-format=(string){ avc, avc3, byte-stream }, alignment=(string)au, parsed=(boolean)true; video/x-h264, parsed=(boolean)true, stream-format=(string){ avc, avc3, byte-stream }, alignment=(string){ au, nal }
0:00:01.616021500 1815 0x1c89170 DEBUG GST_CAPS gstpad.c:2737:gst_pad_get_current_caps:<h264parse0:src> get current pad caps (NULL)
0:00:01.616075375 1815 0x1c89170 DEBUG GST_PADS gstpad.c:5363:store_sticky_event:<h264parse0:src> notify caps
0:00:01.616131209 1815 0x1c89170 DEBUG GST_PADS gstpad.c:4105:check_sticky:<h264parse0:src> pushing all sticky events
0:00:01.616166250 1815 0x1c89170 DEBUG GST_PADS gstpad.c:4034:push_sticky:<h264parse0:src> event stream-start was already received
0:00:01.616308125 1815 0x1c89170 DEBUG GST_CAPS gstutils.c:3185:gst_pad_query_accept_caps:<capsfilter0:sink> accept caps of video/x-h264, stream-format=(string)avc, alignment=(string)au, level=(string)4.2, profile=(string)high, codec_data=(buffer)0164002affe1001b6764002aacc8501e0089f97011000003000100000300780f18319601000668e93864b22c, width=(int)1920, height=(int)1080, framerate=(fraction)60/1, pixel-aspect-ratio=(fraction)1/1, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8, parsed=(boolean)true
0:00:01.616353584 1815 0x1c89170 DEBUG GST_PADS gstpad.c:4173:gst_pad_query:<capsfilter0:sink> doing query 0xb4407000 (accept-caps)
0:00:01.616410167 1815 0x1c89170 DEBUG GST_PADS gstpad.c:4196:gst_pad_query:<capsfilter0:sink> sent query 0xb4407000 (accept-caps), result 1
0:00:01.616451167 1815 0x1c89170 DEBUG GST_PADS gstpad.c:1678:gst_pad_check_reconfigure:<capsfilter0:src> remove RECONFIGURE flag
0:00:01.616673875 1815 0x1c89170 DEBUG GST_CAPS gstutils.c:3185:gst_pad_query_accept_caps:<decodepad1:proxypad2> accept caps of video/x-h264, stream-format=(string)avc, alignment=(string)au, parsed=(boolean)true, level=(string)4.2, profile=(string)high, codec_data=(buffer)0164002affe1001b6764002aacc8501e0089f97011000003000100000300780f18319601000668e93864b22c, width=(int)1920, height=(int)1080, framerate=(fraction)60/1, pixel-aspect-ratio=(fraction)1/1, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8
0:00:01.616765250 1815 0x1c89170 DEBUG GST_PADS gstpad.c:4173:gst_pad_query:<decodepad1:proxypad2> doing query 0xb4407030 (accept-caps)
0:00:01.616952167 1815 0x1c89170 DEBUG GST_PADS gstpad.c:3200:gst_pad_query_accept_caps_default:<decodepad1:proxypad2> query accept-caps accept-caps query: 0xb4407030, GstQueryAcceptCaps, caps=(GstCaps)"video/x-h264\,\ stream-format\=\(string\)avc\,\ alignment\=\(string\)au\,\ parsed\=\(boolean\)true\,\ level\=\(string\)4.2\,\ profile\=\(string\)high\,\ codec_data\=\(buffer\)0164002affe1001b6764002aacc8501e0089f97011000003000100000300780f18319601000668e93864b22c\,\ width\=\(int\)1920\,\ height\=\(int\)1080\,\ framerate\=\(fraction\)60/1\,\ pixel-aspect-ratio\=\(fraction\)1/1\,\ chroma-format\=\(string\)4:2:0\,\ bit-depth-luma\=\(uint\)8\,\ bit-depth-chroma\=\(uint\)8", result=(boolean)false;
0:00:01.616995209 1815 0x1c89170 DEBUG GST_PADS gstutils.c:2782:gst_pad_proxy_query_accept_caps:<decodepad1:proxypad2> proxying accept caps query for decodepad1:proxypad2
0:00:01.617045417 1815 0x1c89170 DEBUG GST_PADS gstpad.c:4300:gst_pad_peer_query:<'':decodepad1> peer query 0xb4407030 (accept-caps)
0:00:01.617073584 1815 0x1c89170 INFO GST_PADS gstpad.c:4357:gst_pad_peer_query:<'':decodepad1> pad has no peer
0:00:01.617108334 1815 0x1c89170 DEBUG GST_PADS gstutils.c:2793:gst_pad_proxy_query_accept_caps:<decodepad1:proxypad2> proxying accept caps query: 1
0:00:01.617228959 1815 0x1c89170 DEBUG GST_PADS gstpad.c:3230:gst_pad_query_accept_caps_default:<decodepad1:proxypad2> allowed caps subset ANY, caps video/x-h264, stream-format=(string)avc, alignment=(string)au, parsed=(boolean)true, level=(string)4.2, profile=(string)high, codec_data=(buffer)0164002affe1001b6764002aacc8501e0089f97011000003000100000300780f18319601000668e93864b22c, width=(int)1920, height=(int)1080, framerate=(fraction)60/1, pixel-aspect-ratio=(fraction)1/1, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8
0:00:01.617269709 1815 0x1c89170 DEBUG GST_PADS gstpad.c:3514:gst_pad_query_default:<decodepad1:proxypad2> not forwarding 0xb4407030 (accept-caps) query
0:00:01.617305584 1815 0x1c89170 DEBUG GST_PADS gstpad.c:4196:gst_pad_query:<decodepad1:proxypad2> sent query 0xb4407030 (accept-caps), result 1
0:00:01.617376792 1815 0x1c89170 DEBUG GST_CAPS gstpad.c:2737:gst_pad_get_current_caps:<capsfilter0:sink> get current pad caps (NULL)
0:00:01.617407000 1815 0x1c89170 DEBUG GST_CAPS gstpad.c:2737:gst_pad_get_current_caps:<capsfilter0:src> get current pad caps (NULL)
0:00:01.617449292 1815 0x1c89170 DEBUG GST_PADS gstpad.c:5363:store_sticky_event:<capsfilter0:src> notify caps
0:00:01.617531042 1815 0x1c89170 DEBUG GST_PADS gstpad.c:1371:cleanup_hook:<capsfilter0:src> cleaning up hook 1 with flags 00030401
0:00:01.617675917 1815 0x1c89170 DEBUG GST_CAPS gstpad.c:2737:gst_pad_get_current_caps:<capsfilter0:src> get current pad caps video/x-h264, stream-format=(string)avc, alignment=(string)au, level=(string)4.2, profile=(string)high, codec_data=(buffer)0164002affe1001b6764002aacc8501e0089f97011000003000100000300780f18319601000668e93864b22c, width=(int)1920, height=(int)1080, framerate=(fraction)60/1, pixel-aspect-ratio=(fraction)1/1, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8, parsed=(boolean)true
0:00:01.617718667 1815 0x1c89170 DEBUG GST_PADS gstpad.c:1103:gst_pad_set_active:<'':decodepad1> pad was active in push mode
0:00:01.617757875 1815 0x1c89170 DEBUG GST_PADS gstghostpad.c:821:gst_ghost_pad_set_target:<'':decodepad1> set target capsfilter0:src
0:00:01.617806834 1815 0x1c89170 INFO GST_ELEMENT_PADS gstpad.c:2137:gst_pad_unlink: unlinking capsfilter0:src(0xb4411198) and decodepad1:proxypad2(0x1c92638)
0:00:01.617882667 1815 0x1c89170 INFO GST_ELEMENT_PADS gstpad.c:2192:gst_pad_unlink: unlinked capsfilter0:src and decodepad1:proxypad2
0:00:01.618012959 1815 0x1c89170 DEBUG GST_PADS gstghostpad.c:842:gst_ghost_pad_set_target:<'':decodepad1> connecting internal pad to target <capsfilter0:src>
0:00:01.618072750 1815 0x1c89170 INFO GST_PADS gstpad.c:2382:gst_pad_link_prepare: trying to link capsfilter0:src and decodepad1:proxypad2
0:00:01.618119250 1815 0x1c89170 INFO GST_PADS gstpad.c:2590:gst_pad_link_full: linked capsfilter0:src and decodepad1:proxypad2, successful
0:00:01.618168084 1815 0x1c89170 DEBUG GST_PADS gstpad.c:2968:gst_pad_iterate_internal_links_default:<h264parse0:src> Making iterator
0:00:01.618238209 1815 0x1c89170 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<multiqueue0:sink_0> data is passed
0:00:01.618274417 1815 0x1c89170 DEBUG GST_PADS gstpad.c:3713:probe_hook_marshal:<multiqueue0:sink_0> probe returned OK
0:00:01.618307167 1815 0x1c89170 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<qtdemux0:video_0> data is passed
0:00:01.618341584 1815 0x1c89170 DEBUG GST_PADS gstpad.c:2968:gst_pad_iterate_internal_links_default:<qtdemux0:video_0> Making iterator
0:00:01.618405542 1815 0x1c89170 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<filesrc0:src> sent event, ret ok
0:00:01.618443375 1815 0x1c89170 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<sink:proxypad0> sent event, ret ok
0:00:01.618472334 1815 0x1c89170 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<typefind:src> sent event, ret ok
0:00:01.618549334 1815 0x1c89170 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<qtdemux0:video_0> sent event, ret ok
0:00:01.618586292 1815 0x1c89170 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<multiqueue0:src_0> sent event, ret ok
0:00:01.618622709 1815 0x1c89170 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<h264parse0:src> sent event, ret ok
0:00:01.618654584 1815 0x1c89170 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<capsfilter0:src> sent event, ret ok
0:00:01.618726834 1815 0x1c89170 DEBUG GST_PADS gstpad.c:5363:store_sticky_event:<'':decodepad1> notify caps
0:00:01.618929750 1815 0x1c89170 DEBUG GST_CAPS gstpad.c:2737:gst_pad_get_current_caps:<capsfilter0:src> get current pad caps video/x-h264, stream-format=(string)avc, alignment=(string)au, level=(string)4.2, profile=(string)high, codec_data=(buffer)0164002affe1001b6764002aacc8501e0089f97011000003000100000300780f18319601000668e93864b22c, width=(int)1920, height=(int)1080, framerate=(fraction)60/1, pixel-aspect-ratio=(fraction)1/1, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8, parsed=(boolean)true
0:00:01.619430625 1815 0x1c89170 DEBUG GST_PADS gstghostpad.c:821:gst_ghost_pad_set_target:<'':decodepad1> set target capsfilter0:src
0:00:01.619486459 1815 0x1c89170 INFO GST_ELEMENT_PADS gstpad.c:2137:gst_pad_unlink: unlinking capsfilter0:src(0xb4411198) and decodepad1:proxypad2(0x1c92638)
0:00:01.619566459 1815 0x1c89170 INFO GST_ELEMENT_PADS gstpad.c:2192:gst_pad_unlink: unlinked capsfilter0:src and decodepad1:proxypad2
0:00:01.619634250 1815 0x1c89170 DEBUG GST_PADS gstghostpad.c:842:gst_ghost_pad_set_target:<'':decodepad1> connecting internal pad to target <capsfilter0:src>
0:00:01.619690167 1815 0x1c89170 INFO GST_PADS gstpad.c:2382:gst_pad_link_prepare: trying to link capsfilter0:src and decodepad1:proxypad2
0:00:01.619736167 1815 0x1c89170 INFO GST_PADS gstpad.c:2590:gst_pad_link_full: linked capsfilter0:src and decodepad1:proxypad2, successful
0:00:01.619786542 1815 0x1c89170 DEBUG GST_PADS gstpad.c:2968:gst_pad_iterate_internal_links_default:<h264parse0:src> Making iterator
0:00:01.619835875 1815 0x1c89170 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<multiqueue0:sink_0> data is passed
0:00:01.619870167 1815 0x1c89170 DEBUG GST_PADS gstpad.c:3713:probe_hook_marshal:<multiqueue0:sink_0> probe returned OK
0:00:01.619902125 1815 0x1c89170 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<qtdemux0:video_0> data is passed
0:00:01.619936417 1815 0x1c89170 DEBUG GST_PADS gstpad.c:2968:gst_pad_iterate_internal_links_default:<qtdemux0:video_0> Making iterator
0:00:01.619995625 1815 0x1c89170 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<filesrc0:src> sent event, ret ok
0:00:01.620033709 1815 0x1c89170 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<sink:proxypad0> sent event, ret ok
0:00:01.620064500 1815 0x1c89170 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<typefind:src> sent event, ret ok
0:00:01.620096167 1815 0x1c89170 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<qtdemux0:video_0> sent event, ret ok
0:00:01.620128459 1815 0x1c89170 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<multiqueue0:src_0> sent event, ret ok
0:00:01.620163250 1815 0x1c89170 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<h264parse0:src> sent event, ret ok
0:00:01.620194917 1815 0x1c89170 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<capsfilter0:src> sent event, ret ok
0:00:01.620296500 1815 0x1c89170 DEBUG GST_PADS gstghostpad.c:821:gst_ghost_pad_set_target:<'':decodepad1> set target capsfilter0:src
0:00:01.622535167 1815 0x1c89170 INFO GST_ELEMENT_PADS gstpad.c:2137:gst_pad_unlink: unlinking capsfilter0:src(0xb4411198) and decodepad1:proxypad2(0x1c92638)
0:00:01.622638667 1815 0x1c89170 INFO GST_ELEMENT_PADS gstpad.c:2192:gst_pad_unlink: unlinked capsfilter0:src and decodepad1:proxypad2
0:00:01.622753875 1815 0x1c89170 DEBUG GST_PADS gstghostpad.c:842:gst_ghost_pad_set_target:<'':decodepad1> connecting internal pad to target <capsfilter0:src>
0:00:01.622812417 1815 0x1c89170 INFO GST_PADS gstpad.c:2382:gst_pad_link_prepare: trying to link capsfilter0:src and decodepad1:proxypad2
0:00:01.622857709 1815 0x1c89170 INFO GST_PADS gstpad.c:2590:gst_pad_link_full: linked capsfilter0:src and decodepad1:proxypad2, successful
0:00:01.622908917 1815 0x1c89170 DEBUG GST_PADS gstpad.c:2968:gst_pad_iterate_internal_links_default:<h264parse0:src> Making iterator
0:00:01.622958792 1815 0x1c89170 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<multiqueue0:sink_0> data is passed
0:00:01.622991042 1815 0x1c89170 DEBUG GST_PADS gstpad.c:3713:probe_hook_marshal:<multiqueue0:sink_0> probe returned OK
0:00:01.623072292 1815 0x1c89170 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<qtdemux0:video_0> data is passed
0:00:01.623107959 1815 0x1c89170 DEBUG GST_PADS gstpad.c:2968:gst_pad_iterate_internal_links_default:<qtdemux0:video_0> Making iterator
0:00:01.623164459 1815 0x1c89170 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<filesrc0:src> sent event, ret ok
0:00:01.623203292 1815 0x1c89170 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<sink:proxypad0> sent event, ret ok
0:00:01.623233459 1815 0x1c89170 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<typefind:src> sent event, ret ok
0:00:01.623265250 1815 0x1c89170 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<qtdemux0:video_0> sent event, ret ok
0:00:01.623296209 1815 0x1c89170 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<multiqueue0:src_0> sent event, ret ok
0:00:01.623374209 1815 0x1c89170 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<h264parse0:src> sent event, ret ok
0:00:01.623410750 1815 0x1c89170 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<capsfilter0:src> sent event, ret ok
0:00:01.623539792 1815 0x1c89170 DEBUG GST_PADS gstghostpad.c:823:gst_ghost_pad_set_target:<'':decodepad1> clearing target
0:00:01.623628875 1815 0x1c89170 INFO GST_ELEMENT_PADS gstpad.c:2137:gst_pad_unlink: unlinking capsfilter0:src(0xb4411198) and decodepad1:proxypad2(0x1c92638)
0:00:01.623690500 1815 0x1c89170 INFO GST_ELEMENT_PADS gstpad.c:2192:gst_pad_unlink: unlinked capsfilter0:src and decodepad1:proxypad2
0:00:01.635844709 1815 0x1c89170 DEBUG GST_ELEMENT_PADS gstelement.c:317:gst_element_base_class_init: type GstVideoDecoder : factory (nil)
0:00:01.636067042 1815 0x1c89170 DEBUG GST_ELEMENT_PADS gstelement.c:317:gst_element_base_class_init: type GstH264Decoder : factory (nil)
0:00:01.636164459 1815 0x1c89170 DEBUG GST_ELEMENT_PADS gstelement.c:317:gst_element_base_class_init: type GstV4l2CodecH264Dec : factory (nil)
0:00:01.636210417 1815 0x1c89170 DEBUG GST_ELEMENT_PADS gstelement.c:317:gst_element_base_class_init: type v4l2slh264dec : factory 0x1c73000
0:00:01.636675250 1815 0x1c89170 DEBUG GST_PADS gstpad.c:1806:gst_pad_set_chain_function_full:<'':sink> chainfunc set to gst_video_decoder_chain
0:00:01.636732334 1815 0x1c89170 DEBUG GST_PADS gstpad.c:1912:gst_pad_set_event_function_full:<'':sink> eventfunc for set to gst_video_decoder_sink_event
0:00:01.636767167 1815 0x1c89170 DEBUG GST_PADS gstpad.c:1992:gst_pad_set_query_function_full:<'':sink> queryfunc set to gst_video_decoder_sink_query
0:00:01.636800875 1815 0x1c89170 INFO GST_ELEMENT_PADS gstelement.c:759:gst_element_add_pad:<GstVideoDecoder@0xb4428218> adding pad 'sink'
0:00:01.636884792 1815 0x1c89170 DEBUG GST_PADS gstpad.c:1912:gst_pad_set_event_function_full:<'':src> eventfunc for set to gst_video_decoder_src_event
0:00:01.636923584 1815 0x1c89170 DEBUG GST_PADS gstpad.c:1992:gst_pad_set_query_function_full:<'':src> queryfunc set to gst_video_decoder_src_query
0:00:01.636955417 1815 0x1c89170 INFO GST_ELEMENT_PADS gstelement.c:759:gst_element_add_pad:<GstVideoDecoder@0xb4428218> adding pad 'src'
0:00:01.637306334 1815 0x1c89170 INFO GST_PADS gstpad.c:2382:gst_pad_link_prepare: trying to link capsfilter0:src and v4l2slh264dec0:sink
0:00:01.637362459 1815 0x1c89170 INFO GST_PADS gstpad.c:2590:gst_pad_link_full: linked capsfilter0:src and v4l2slh264dec0:sink, successful
0:00:01.637420750 1815 0x1c89170 DEBUG GST_PADS gstpad.c:2968:gst_pad_iterate_internal_links_default:<h264parse0:src> Making iterator
0:00:01.637478292 1815 0x1c89170 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<multiqueue0:sink_0> data is passed
0:00:01.637516417 1815 0x1c89170 DEBUG GST_PADS gstpad.c:3713:probe_hook_marshal:<multiqueue0:sink_0> probe returned OK
0:00:01.637551667 1815 0x1c89170 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<qtdemux0:video_0> data is passed
0:00:01.637589167 1815 0x1c89170 DEBUG GST_PADS gstpad.c:2968:gst_pad_iterate_internal_links_default:<qtdemux0:video_0> Making iterator
0:00:01.637652084 1815 0x1c89170 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<filesrc0:src> sent event, ret ok
0:00:01.637690250 1815 0x1c89170 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<sink:proxypad0> sent event, ret ok
0:00:01.637721875 1815 0x1c89170 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<typefind:src> sent event, ret ok
0:00:01.637754917 1815 0x1c89170 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<qtdemux0:video_0> sent event, ret ok
0:00:01.637799542 1815 0x1c89170 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<multiqueue0:src_0> sent event, ret ok
0:00:01.637837250 1815 0x1c89170 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<h264parse0:src> sent event, ret ok
0:00:01.637868834 1815 0x1c89170 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<capsfilter0:src> sent event, ret ok
0:00:01.638457084 1815 0x1c89170 DEBUG GST_CAPS gstutils.c:3185:gst_pad_query_accept_caps:<v4l2slh264dec0:sink> accept caps of video/x-h264, stream-format=(string)avc, alignment=(string)au, level=(string)4.2, profile=(string)high, codec_data=(buffer)0164002affe1001b6764002aacc8501e0089f97011000003000100000300780f18319601000668e93864b22c, width=(int)1920, height=(int)1080, framerate=(fraction)60/1, pixel-aspect-ratio=(fraction)1/1, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8, parsed=(boolean)true
0:00:01.638586959 1815 0x1c89170 DEBUG GST_PADS gstpad.c:4173:gst_pad_query:<v4l2slh264dec0:sink> doing query 0xb44070f0 (accept-caps)
0:00:01.638752167 1815 0x1c89170 DEBUG GST_CAPS gstutils.c:3102:gst_pad_query_caps:<v4l2slh264dec0:sink> get pad caps with filter video/x-h264, stream-format=(string)avc, alignment=(string)au, level=(string)4.2, profile=(string)high, codec_data=(buffer)0164002affe1001b6764002aacc8501e0089f97011000003000100000300780f18319601000668e93864b22c, width=(int)1920, height=(int)1080, framerate=(fraction)60/1, pixel-aspect-ratio=(fraction)1/1, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8, parsed=(boolean)true
0:00:01.638808250 1815 0x1c89170 DEBUG GST_PADS gstpad.c:4173:gst_pad_query:<v4l2slh264dec0:sink> doing query 0xb4407120 (caps)
0:00:01.638931084 1815 0x1c89170 DEBUG GST_CAPS gstutils.c:3148:gst_pad_peer_query_caps:<v4l2slh264dec0:src> get pad peer caps with filter video/x-raw, width=(int)1920, height=(int)1080, framerate=(fraction)60/1, pixel-aspect-ratio=(fraction)1/1
0:00:01.638975875 1815 0x1c89170 DEBUG GST_PADS gstpad.c:4300:gst_pad_peer_query:<v4l2slh264dec0:src> peer query 0xb4407150 (caps)
0:00:01.639004417 1815 0x1c89170 INFO GST_PADS gstpad.c:4357:gst_pad_peer_query:<v4l2slh264dec0:src> pad has no peer
0:00:01.639166417 1815 0x1c89170 DEBUG GST_PADS gstpad.c:4196:gst_pad_query:<v4l2slh264dec0:sink> sent query 0xb4407120 (caps), result 1
0:00:01.639293250 1815 0x1c89170 DEBUG GST_CAPS gstutils.c:3109:gst_pad_query_caps:<v4l2slh264dec0:sink> query returned video/x-h264, width=(int)1920, height=(int)1080, framerate=(fraction)60/1, pixel-aspect-ratio=(fraction)1/1, stream-format=(string)avc, alignment=(string)au, level=(string)4.2, profile=(string)high, codec_data=(buffer)0164002affe1001b6764002aacc8501e0089f97011000003000100000300780f18319601000668e93864b22c, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8, parsed=(boolean)true
0:00:01.639361000 1815 0x1c89170 DEBUG GST_PADS gstpad.c:4196:gst_pad_query:<v4l2slh264dec0:sink> sent query 0xb44070f0 (accept-caps), result 1
0:00:01.639440292 1815 0x1c89170 INFO GST_ELEMENT_PADS gstelement.c:1016:gst_element_get_static_pad: found pad v4l2slh264dec0:src
0:00:01.639478667 1815 0x1c89170 DEBUG GST_CAPS gstpad.c:2737:gst_pad_get_current_caps:<v4l2slh264dec0:src> get current pad caps (NULL)
0:00:01.642211917 1815 0x1c89170 DEBUG GST_CAPS gstutils.c:3102:gst_pad_query_caps:<v4l2slh264dec0:src> get pad caps with filter (NULL)
0:00:01.642269750 1815 0x1c89170 DEBUG GST_PADS gstpad.c:4173:gst_pad_query:<v4l2slh264dec0:src> doing query 0xb4407180 (caps)
0:00:01.642336250 1815 0x1c89170 DEBUG GST_CAPS gstpad.c:3259:gst_pad_query_caps_default:<v4l2slh264dec0:src> query caps caps query: 0xb4407180, GstQueryCaps, filter=(GstCaps)"NULL", caps=(GstCaps)"NULL";
0:00:01.642364709 1815 0x1c89170 DEBUG GST_CAPS gstpad.c:3283:gst_pad_query_caps_default:<v4l2slh264dec0:src> trying pad template caps
0:00:01.642432834 1815 0x1c89170 DEBUG GST_CAPS gstpad.c:3312:gst_pad_query_caps_default:<v4l2slh264dec0:src> using caps 0xb4408c50 video/x-raw, format=(string){ NV12, YUY2, NV12_4L4, NV12_32L32 }, width=(int)[ 1, 2147483647 ], height=(int)[ 1, 2147483647 ], framerate=(fraction)[ 0/1, 2147483647/1 ]
0:00:01.642472167 1815 0x1c89170 DEBUG GST_PADS gstpad.c:3514:gst_pad_query_default:<v4l2slh264dec0:src> not forwarding 0xb4407180 (caps) query
0:00:01.642556084 1815 0x1c89170 DEBUG GST_PADS gstpad.c:4196:gst_pad_query:<v4l2slh264dec0:src> sent query 0xb4407180 (caps), result 1
0:00:01.642624167 1815 0x1c89170 DEBUG GST_CAPS gstutils.c:3109:gst_pad_query_caps:<v4l2slh264dec0:src> query returned video/x-raw, format=(string){ NV12, YUY2, NV12_4L4, NV12_32L32 }, width=(int)[ 1, 2147483647 ], height=(int)[ 1, 2147483647 ], framerate=(fraction)[ 0/1, 2147483647/1 ]
0:00:01.642670167 1815 0x1c89170 DEBUG GST_PADS gstpad.c:1103:gst_pad_set_active:<'':decodepad1> pad was active in push mode
0:00:01.642707875 1815 0x1c89170 DEBUG GST_PADS gstghostpad.c:821:gst_ghost_pad_set_target:<'':decodepad1> set target v4l2slh264dec0:src
0:00:01.642741834 1815 0x1c89170 DEBUG GST_PADS gstghostpad.c:842:gst_ghost_pad_set_target:<'':decodepad1> connecting internal pad to target <v4l2slh264dec0:src>
0:00:01.642850959 1815 0x1c89170 INFO GST_PADS gstpad.c:2382:gst_pad_link_prepare: trying to link v4l2slh264dec0:src and decodepad1:proxypad2
0:00:01.642909042 1815 0x1c89170 INFO GST_PADS gstpad.c:2590:gst_pad_link_full: linked v4l2slh264dec0:src and decodepad1:proxypad2, successful
0:00:01.643639792 1815 0x1c89170 DEBUG GST_ELEMENT_PADS gstelement.c:3227:gst_element_pads_activate:<v4l2slh264dec0> activate pads
0:00:01.643708875 1815 0x1c89170 DEBUG GST_PADS gstpad.c:1098:gst_pad_set_active:<v4l2slh264dec0:src> activating pad from none
0:00:01.643746334 1815 0x1c89170 DEBUG GST_PADS gstpad.c:1003:pre_activate:<v4l2slh264dec0:src> setting pad into push mode, unset flushing
0:00:01.643786625 1815 0x1c89170 DEBUG GST_PADS gstpad.c:1226:activate_mode_internal:<v4l2slh264dec0:src> activated in push mode
0:00:01.643825417 1815 0x1c89170 DEBUG GST_PADS gstpad.c:1098:gst_pad_set_active:<v4l2slh264dec0:sink> activating pad from none
0:00:01.643858209 1815 0x1c89170 DEBUG GST_PADS gstpad.c:1003:pre_activate:<v4l2slh264dec0:sink> setting pad into push mode, unset flushing
0:00:01.648470625 1815 0x1c89170 DEBUG GST_PADS gstpad.c:1015:pre_activate:<v4l2slh264dec0:sink> reschedule events on peer capsfilter0:src
0:00:01.648529250 1815 0x1c89170 DEBUG GST_PADS gstpad.c:1226:activate_mode_internal:<v4l2slh264dec0:sink> activated in push mode
0:00:01.648568792 1815 0x1c89170 DEBUG GST_ELEMENT_PADS gstelement.c:3246:gst_element_pads_activate:<v4l2slh264dec0> pad activation successful
0:00:01.648720584 1815 0x1c89170 DEBUG GST_PADS gstpad.c:4105:check_sticky:<v4l2slh264dec0:src> pushing all sticky events
0:00:01.648786792 1815 0x1c89170 DEBUG GST_PADS gstpad.c:4105:check_sticky:<'':decodepad1> pushing all sticky events
0:00:01.648825750 1815 0x1c89170 DEBUG GST_PADS gstpad.c:5597:gst_pad_push_event_unchecked:<'':decodepad1> Dropping event stream-start because pad is not linked
0:00:01.648855125 1815 0x1c89170 DEBUG GST_PADS gstpad.c:4076:push_sticky:<'':decodepad1> pad was not linked, mark pending
0:00:01.648894084 1815 0x1c89170 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<decodepad1:proxypad2> sent event, ret ok
0:00:01.648928750 1815 0x1c89170 DEBUG GST_PADS gstpad.c:4056:push_sticky:<v4l2slh264dec0:src> event stream-start marked received
0:00:01.648960125 1815 0x1c89170 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<v4l2slh264dec0:sink> sent event, ret ok
0:00:01.649125250 1815 0x1c89170 DEBUG GST_CAPS gstutils.c:3185:gst_pad_query_accept_caps:<v4l2slh264dec0:sink> accept caps of video/x-h264, stream-format=(string)avc, alignment=(string)au, level=(string)4.2, profile=(string)high, codec_data=(buffer)0164002affe1001b6764002aacc8501e0089f97011000003000100000300780f18319601000668e93864b22c, width=(int)1920, height=(int)1080, framerate=(fraction)60/1, pixel-aspect-ratio=(fraction)1/1, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8, parsed=(boolean)true
0:00:01.649184042 1815 0x1c89170 DEBUG GST_PADS gstpad.c:4173:gst_pad_query:<v4l2slh264dec0:sink> doing query 0xb44071b0 (accept-caps)
0:00:01.649326375 1815 0x1c89170 DEBUG GST_CAPS gstutils.c:3102:gst_pad_query_caps:<v4l2slh264dec0:sink> get pad caps with filter video/x-h264, stream-format=(string)avc, alignment=(string)au, level=(string)4.2, profile=(string)high, codec_data=(buffer)0164002affe1001b6764002aacc8501e0089f97011000003000100000300780f18319601000668e93864b22c, width=(int)1920, height=(int)1080, framerate=(fraction)60/1, pixel-aspect-ratio=(fraction)1/1, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8, parsed=(boolean)true
0:00:01.649374167 1815 0x1c89170 DEBUG GST_PADS gstpad.c:4173:gst_pad_query:<v4l2slh264dec0:sink> doing query 0xb4407400 (caps)
0:00:01.649486250 1815 0x1c89170 DEBUG GST_CAPS gstutils.c:3148:gst_pad_peer_query_caps:<v4l2slh264dec0:src> get pad peer caps with filter video/x-raw, width=(int)1920, height=(int)1080, framerate=(fraction)60/1, pixel-aspect-ratio=(fraction)1/1
0:00:01.649527334 1815 0x1c89170 DEBUG GST_PADS gstpad.c:4300:gst_pad_peer_query:<v4l2slh264dec0:src> peer query 0xb4407430 (caps)
0:00:01.653812125 1815 0x1c89170 DEBUG GST_PADS gstpad.c:4173:gst_pad_query:<decodepad1:proxypad2> doing query 0xb4407430 (caps)
0:00:01.653993542 1815 0x1c89170 DEBUG GST_CAPS gstpad.c:3259:gst_pad_query_caps_default:<decodepad1:proxypad2> query caps caps query: 0xb4407430, GstQueryCaps, filter=(GstCaps)"video/x-raw\,\ width\=\(int\)1920\,\ height\=\(int\)1080\,\ framerate\=\(fraction\)60/1\,\ pixel-aspect-ratio\=\(fraction\)1/1", caps=(GstCaps)"NULL";
0:00:01.654033417 1815 0x1c89170 DEBUG GST_PADS gstutils.c:2851:gst_pad_proxy_query_caps:<decodepad1:proxypad2> proxying caps query for decodepad1:proxypad2
0:00:01.654087667 1815 0x1c89170 DEBUG GST_PADS gstpad.c:4300:gst_pad_peer_query:<'':decodepad1> peer query 0xb4407430 (caps)
0:00:01.654116542 1815 0x1c89170 INFO GST_PADS gstpad.c:4357:gst_pad_peer_query:<'':decodepad1> pad has no peer
0:00:01.654171292 1815 0x1c89170 DEBUG GST_PADS gstpad.c:3514:gst_pad_query_default:<decodepad1:proxypad2> not forwarding 0xb4407430 (caps) query
0:00:01.654213125 1815 0x1c89170 DEBUG GST_PADS gstpad.c:4196:gst_pad_query:<decodepad1:proxypad2> sent query 0xb4407430 (caps), result 1
0:00:01.654276375 1815 0x1c89170 DEBUG GST_CAPS gstutils.c:3155:gst_pad_peer_query_caps:<v4l2slh264dec0:src> peer query returned video/x-raw, width=(int)1920, height=(int)1080, framerate=(fraction)60/1, pixel-aspect-ratio=(fraction)1/1
0:00:01.654516250 1815 0x1c89170 DEBUG GST_PADS gstpad.c:4196:gst_pad_query:<v4l2slh264dec0:sink> sent query 0xb4407400 (caps), result 1
0:00:01.654691250 1815 0x1c89170 DEBUG GST_CAPS gstutils.c:3109:gst_pad_query_caps:<v4l2slh264dec0:sink> query returned video/x-h264, width=(int)1920, height=(int)1080, framerate=(fraction)60/1, pixel-aspect-ratio=(fraction)1/1, stream-format=(string)avc, alignment=(string)au, level=(string)4.2, profile=(string)high, codec_data=(buffer)0164002affe1001b6764002aacc8501e0089f97011000003000100000300780f18319601000668e93864b22c, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8, parsed=(boolean)true
0:00:01.654773125 1815 0x1c89170 DEBUG GST_PADS gstpad.c:4196:gst_pad_query:<v4l2slh264dec0:sink> sent query 0xb44071b0 (accept-caps), result 1
0:00:01.654956000 1815 0x1c89170 DEBUG GST_PADS gstpad.c:4300:gst_pad_peer_query:<v4l2slh264dec0:sink> peer query 0xb4407460 (latency)
0:00:01.655004500 1815 0x1c89170 DEBUG GST_PADS gstpad.c:4173:gst_pad_query:<capsfilter0:src> doing query 0xb4407460 (latency)
0:00:01.655047667 1815 0x1c89170 DEBUG GST_PADS gstpad.c:4300:gst_pad_peer_query:<capsfilter0:sink> peer query 0xb4407460 (latency)
0:00:01.655087334 1815 0x1c89170 DEBUG GST_PADS gstpad.c:4173:gst_pad_query:<h264parse0:src> doing query 0xb4407460 (latency)
0:00:01.655126334 1815 0x1c89170 DEBUG GST_PADS gstpad.c:4300:gst_pad_peer_query:<h264parse0:sink> peer query 0xb4407460 (latency)
0:00:01.655163750 1815 0x1c89170 DEBUG GST_PADS gstpad.c:4173:gst_pad_query:<multiqueue0:src_0> doing query 0xb4407460 (latency)
0:00:01.655227459 1815 0x1c89170 DEBUG GST_PADS gstpad.c:4300:gst_pad_peer_query:<multiqueue0:sink_0> peer query 0xb4407490 (latency)
0:00:01.659566334 1815 0x1c89170 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<multiqueue0:sink_0> data is passed
0:00:01.659628042 1815 0x1c89170 DEBUG GST_PADS gstpad.c:3713:probe_hook_marshal:<multiqueue0:sink_0> probe returned OK
0:00:01.659674000 1815 0x1c89170 DEBUG GST_PADS gstpad.c:4173:gst_pad_query:<qtdemux0:video_0> doing query 0xb4407490 (latency)
0:00:01.659703125 1815 0x1c89170 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<qtdemux0:video_0> data is passed
0:00:01.659736875 1815 0x1c89170 DEBUG GST_PADS gstpad.c:2968:gst_pad_iterate_internal_links_default:<qtdemux0:video_0> Making iterator
0:00:01.659793417 1815 0x1c89170 DEBUG GST_PADS gstpad.c:4300:gst_pad_peer_query:<qtdemux0:sink> peer query 0xb44074c0 (latency)
0:00:01.659829042 1815 0x1c89170 DEBUG GST_PADS gstpad.c:4173:gst_pad_query:<typefind:src> doing query 0xb44074c0 (latency)
0:00:01.659861875 1815 0x1c89170 DEBUG GST_PADS gstpad.c:2968:gst_pad_iterate_internal_links_default:<typefind:src> Making iterator
0:00:01.659908125 1815 0x1c89170 DEBUG GST_PADS gstpad.c:4300:gst_pad_peer_query:<typefind:sink> peer query 0xb44074f0 (latency)
0:00:01.659944292 1815 0x1c89170 DEBUG GST_PADS gstpad.c:4173:gst_pad_query:<sink:proxypad0> doing query 0xb44074f0 (latency)
0:00:01.659994209 1815 0x1c89170 DEBUG GST_PADS gstpad.c:4300:gst_pad_peer_query:<decodebin0:sink> peer query 0xb4407520 (latency)
0:00:01.660027917 1815 0x1c89170 DEBUG GST_PADS gstpad.c:4173:gst_pad_query:<filesrc0:src> doing query 0xb4407520 (latency)
0:00:01.660073625 1815 0x1c89170 DEBUG GST_PADS gstpad.c:4196:gst_pad_query:<filesrc0:src> sent query 0xb4407520 (latency), result 1
0:00:01.660141584 1815 0x1c89170 DEBUG GST_PADS gstpad.c:3514:gst_pad_query_default:<sink:proxypad0> not forwarding 0xb44074f0 (latency) query
0:00:01.660178375 1815 0x1c89170 DEBUG GST_PADS gstpad.c:4196:gst_pad_query:<sink:proxypad0> sent query 0xb44074f0 (latency), result 1
0:00:01.660221750 1815 0x1c89170 DEBUG GST_PADS gstpad.c:3514:gst_pad_query_default:<typefind:src> not forwarding 0xb44074c0 (latency) query
0:00:01.660254875 1815 0x1c89170 DEBUG GST_PADS gstpad.c:4196:gst_pad_query:<typefind:src> sent query 0xb44074c0 (latency), result 1
0:00:01.660295084 1815 0x1c89170 DEBUG GST_PADS gstpad.c:3514:gst_pad_query_default:<qtdemux0:video_0> not forwarding 0xb4407490 (latency) query
0:00:01.660334667 1815 0x1c89170 DEBUG GST_PADS gstpad.c:4196:gst_pad_query:<qtdemux0:video_0> sent query 0xb4407490 (latency), result 1
0:00:01.660368084 1815 0x1c89170 DEBUG GST_PADS gstpad.c:3713:probe_hook_marshal:<multiqueue0:sink_0> probe returned OK
0:00:01.660409459 1815 0x1c89170 DEBUG GST_PADS gstpad.c:3514:gst_pad_query_default:<multiqueue0:src_0> not forwarding 0xb4407460 (latency) query
0:00:01.660445209 1815 0x1c89170 DEBUG GST_PADS gstpad.c:4196:gst_pad_query:<multiqueue0:src_0> sent query 0xb4407460 (latency), result 1
0:00:01.665556125 1815 0x1c89170 DEBUG GST_PADS gstpad.c:4196:gst_pad_query:<h264parse0:src> sent query 0xb4407460 (latency), result 1
0:00:01.665611709 1815 0x1c89170 DEBUG GST_PADS gstpad.c:4196:gst_pad_query:<capsfilter0:src> sent query 0xb4407460 (latency), result 1
0:00:01.665736459 1815 0x1c89170 DEBUG GST_PADS gstpad.c:1678:gst_pad_check_reconfigure:<v4l2slh264dec0:src> remove RECONFIGURE flag
0:00:01.665953750 1815 0x1c89170 DEBUG GST_CAPS gstutils.c:3148:gst_pad_peer_query_caps:<v4l2slh264dec0:src> get pad peer caps with filter video/x-raw, format=(string)NV12_32L32; video/x-raw, format=(string){ NV12_32L32, NV12 }
0:00:01.666004834 1815 0x1c89170 DEBUG GST_PADS gstpad.c:4300:gst_pad_peer_query:<v4l2slh264dec0:src> peer query 0xb4407550 (caps)
0:00:01.666042834 1815 0x1c89170 DEBUG GST_PADS gstpad.c:4173:gst_pad_query:<decodepad1:proxypad2> doing query 0xb4407550 (caps)
0:00:01.666165000 1815 0x1c89170 DEBUG GST_CAPS gstpad.c:3259:gst_pad_query_caps_default:<decodepad1:proxypad2> query caps caps query: 0xb4407550, GstQueryCaps, filter=(GstCaps)"video/x-raw\,\ format\=\(string\)NV12_32L32\;\ video/x-raw\,\ format\=\(string\)\{\ NV12_32L32\,\ NV12\ \}", caps=(GstCaps)"NULL";
0:00:01.666201667 1815 0x1c89170 DEBUG GST_PADS gstutils.c:2851:gst_pad_proxy_query_caps:<decodepad1:proxypad2> proxying caps query for decodepad1:proxypad2
0:00:01.666251667 1815 0x1c89170 DEBUG GST_PADS gstpad.c:4300:gst_pad_peer_query:<'':decodepad1> peer query 0xb4407550 (caps)
0:00:01.666285084 1815 0x1c89170 INFO GST_PADS gstpad.c:4357:gst_pad_peer_query:<'':decodepad1> pad has no peer
0:00:01.666331125 1815 0x1c89170 DEBUG GST_PADS gstpad.c:3514:gst_pad_query_default:<decodepad1:proxypad2> not forwarding 0xb4407550 (caps) query
0:00:01.666368459 1815 0x1c89170 DEBUG GST_PADS gstpad.c:4196:gst_pad_query:<decodepad1:proxypad2> sent query 0xb4407550 (caps), result 1
0:00:01.666419000 1815 0x1c89170 DEBUG GST_CAPS gstutils.c:3155:gst_pad_peer_query_caps:<v4l2slh264dec0:src> peer query returned video/x-raw, format=(string)NV12_32L32; video/x-raw, format=(string){ NV12_32L32, NV12 }
0:00:01.666672209 1815 0x1c89170 DEBUG GST_CAPS gstpad.c:2737:gst_pad_get_current_caps:<v4l2slh264dec0:sink> get current pad caps (NULL)
0:00:01.666714584 1815 0x1c89170 DEBUG GST_CAPS gstpad.c:2737:gst_pad_get_current_caps:<v4l2slh264dec0:src> get current pad caps (NULL)
0:00:01.666760375 1815 0x1c89170 DEBUG GST_PADS gstpad.c:5363:store_sticky_event:<v4l2slh264dec0:src> notify caps
0:00:01.666819125 1815 0x1c89170 DEBUG GST_PADS gstpad.c:4105:check_sticky:<v4l2slh264dec0:src> pushing all sticky events
0:00:01.666855334 1815 0x1c89170 DEBUG GST_PADS gstpad.c:4034:push_sticky:<v4l2slh264dec0:src> event stream-start was already received
0:00:01.667020125 1815 0x1c89170 DEBUG GST_CAPS gstutils.c:3185:gst_pad_query_accept_caps:<decodepad1:proxypad2> accept caps of video/x-raw, format=(string)NV12_32L32, width=(int)1920, height=(int)1080, interlace-mode=(string)progressive, multiview-mode=(string)mono, multiview-flags=(GstVideoMultiviewFlagsSet)0:ffffffff:/right-view-first/left-flipped/left-flopped/right-flipped/right-flopped/half-aspect/mixed-mono, pixel-aspect-ratio=(fraction)1/1, framerate=(fraction)60/1
0:00:01.671918792 1815 0x1c89170 DEBUG GST_PADS gstpad.c:4173:gst_pad_query:<decodepad1:proxypad2> doing query 0xb4407580 (accept-caps)
0:00:01.672154709 1815 0x1c89170 DEBUG GST_PADS gstpad.c:3200:gst_pad_query_accept_caps_default:<decodepad1:proxypad2> query accept-caps accept-caps query: 0xb4407580, GstQueryAcceptCaps, caps=(GstCaps)"video/x-raw\,\ format\=\(string\)NV12_32L32\,\ width\=\(int\)1920\,\ height\=\(int\)1080\,\ interlace-mode\=\(string\)progressive\,\ multiview-mode\=\(string\)mono\,\ multiview-flags\=\(GstVideoMultiviewFlagsSet\)0:ffffffff:/right-view-first/left-flipped/left-flopped/right-flipped/right-flopped/half-aspect/mixed-mono\,\ pixel-aspect-ratio\=\(fraction\)1/1\,\ framerate\=\(fraction\)60/1", result=(boolean)false;
0:00:01.672202209 1815 0x1c89170 DEBUG GST_PADS gstutils.c:2782:gst_pad_proxy_query_accept_caps:<decodepad1:proxypad2> proxying accept caps query for decodepad1:proxypad2
0:00:01.672251542 1815 0x1c89170 DEBUG GST_PADS gstpad.c:4300:gst_pad_peer_query:<'':decodepad1> peer query 0xb4407580 (accept-caps)
0:00:01.672300959 1815 0x1c89170 INFO GST_PADS gstpad.c:4357:gst_pad_peer_query:<'':decodepad1> pad has no peer
0:00:01.672339292 1815 0x1c89170 DEBUG GST_PADS gstutils.c:2793:gst_pad_proxy_query_accept_caps:<decodepad1:proxypad2> proxying accept caps query: 1
0:00:01.672435000 1815 0x1c89170 DEBUG GST_PADS gstpad.c:3230:gst_pad_query_accept_caps_default:<decodepad1:proxypad2> allowed caps subset ANY, caps video/x-raw, format=(string)NV12_32L32, width=(int)1920, height=(int)1080, interlace-mode=(string)progressive, multiview-mode=(string)mono, multiview-flags=(GstVideoMultiviewFlagsSet)0:ffffffff:/right-view-first/left-flipped/left-flopped/right-flipped/right-flopped/half-aspect/mixed-mono, pixel-aspect-ratio=(fraction)1/1, framerate=(fraction)60/1
0:00:01.672479750 1815 0x1c89170 DEBUG GST_PADS gstpad.c:3514:gst_pad_query_default:<decodepad1:proxypad2> not forwarding 0xb4407580 (accept-caps) query
0:00:01.672516209 1815 0x1c89170 DEBUG GST_PADS gstpad.c:4196:gst_pad_query:<decodepad1:proxypad2> sent query 0xb4407580 (accept-caps), result 1
0:00:01.672563667 1815 0x1c89170 DEBUG GST_PADS gstpad.c:5363:store_sticky_event:<'':decodepad1> notify caps
0:00:01.672603417 1815 0x1c89170 DEBUG GST_PADS gstpad.c:4105:check_sticky:<'':decodepad1> pushing all sticky events
0:00:01.672641917 1815 0x1c89170 DEBUG GST_PADS gstpad.c:4034:push_sticky:<'':decodepad1> event stream-start was already received
0:00:01.672674292 1815 0x1c89170 DEBUG GST_PADS gstpad.c:5597:gst_pad_push_event_unchecked:<'':decodepad1> Dropping event caps because pad is not linked
0:00:01.672702709 1815 0x1c89170 DEBUG GST_PADS gstpad.c:4076:push_sticky:<'':decodepad1> pad was not linked, mark pending
0:00:01.672739792 1815 0x1c89170 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<decodepad1:proxypad2> sent event, ret ok
0:00:01.677721959 1815 0x1c89170 DEBUG GST_PADS gstpad.c:5363:store_sticky_event:<decodepad1:proxypad2> notify caps
0:00:01.677818334 1815 0x1c89170 DEBUG GST_PADS gstpad.c:4056:push_sticky:<v4l2slh264dec0:src> event caps marked received
0:00:01.677879459 1815 0x1c89170 DEBUG GST_PADS gstpad.c:4300:gst_pad_peer_query:<v4l2slh264dec0:src> peer query 0xb44075b0 (allocation)
0:00:01.677966084 1815 0x1c89170 DEBUG GST_PADS gstpad.c:4173:gst_pad_query:<decodepad1:proxypad2> doing query 0xb44075b0 (allocation)
0:00:01.678044292 1815 0x1c89170 DEBUG GST_PADS gstpad.c:3514:gst_pad_query_default:<decodepad1:proxypad2> forwarding 0xb44075b0 (allocation) query
0:00:01.678092292 1815 0x1c89170 DEBUG GST_PADS gstpad.c:4300:gst_pad_peer_query:<'':decodepad1> peer query 0xb44075b0 (allocation)
0:00:01.678121250 1815 0x1c89170 DEBUG GST_PADS gstpad.c:4105:check_sticky:<'':decodepad1> pushing all sticky events
0:00:01.678153625 1815 0x1c89170 DEBUG GST_PADS gstpad.c:4034:push_sticky:<'':decodepad1> event stream-start was already received
0:00:01.678184750 1815 0x1c89170 DEBUG GST_PADS gstpad.c:4034:push_sticky:<'':decodepad1> event caps was already received
0:00:01.678210792 1815 0x1c89170 INFO GST_PADS gstpad.c:4357:gst_pad_peer_query:<'':decodepad1> pad has no peer
0:00:01.678251709 1815 0x1c89170 DEBUG GST_PADS gstpad.c:4196:gst_pad_query:<decodepad1:proxypad2> sent query 0xb44075b0 (allocation), result 0
0:00:01.678278792 1815 0x1c89170 DEBUG GST_PADS gstpad.c:4242:gst_pad_query:<decodepad1:proxypad2> query failed
0:00:01.678306250 1815 0x1c89170 DEBUG GST_PADS gstpad.c:4363:gst_pad_peer_query:<v4l2slh264dec0:src> query failed
0:00:01.791759292 1815 0x1c89170 DEBUG GST_CAPS gstpad.c:2737:gst_pad_get_current_caps:<v4l2slh264dec0:src> get current pad caps video/x-raw, format=(string)NV12_32L32, width=(int)1920, height=(int)1080, interlace-mode=(string)progressive, multiview-mode=(string)mono, multiview-flags=(GstVideoMultiviewFlagsSet)0:ffffffff:/right-view-first/left-flipped/left-flopped/right-flipped/right-flopped/half-aspect/mixed-mono, pixel-aspect-ratio=(fraction)1/1, framerate=(fraction)60/1
0:00:01.792089875 1815 0x1c89170 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<v4l2slh264dec0:sink> sent event, ret ok
Redistribute latency...
0:00:01.792140417 1815 0x1c89170 DEBUG GST_PADS gstpad.c:5363:store_sticky_event:<v4l2slh264dec0:sink> notify caps
0:00:01.792218334 1815 0x1b6a280 DEBUG GST_ELEMENT_PADS gstelement.c:2088:gst_element_query: send query on element pipeline0
0:00:01.792301834 1815 0x1c89170 DEBUG GST_CAPS gstpad.c:2737:gst_pad_get_current_caps:<v4l2slh264dec0:src> get current pad caps video/x-raw, format=(string)NV12_32L32, width=(int)1920, height=(int)1080, interlace-mode=(string)progressive, multiview-mode=(string)mono, multiview-flags=(GstVideoMultiviewFlagsSet)0:ffffffff:/right-view-first/left-flipped/left-flopped/right-flipped/right-flopped/half-aspect/mixed-mono, pixel-aspect-ratio=(fraction)1/1, framerate=(fraction)60/1
0:00:01.792304042 1815 0x1b6a280 DEBUG GST_ELEMENT_PADS gstelement.c:2088:gst_element_query: send query on element kmssink0
0:00:01.792359875 1815 0x1c89170 DEBUG GST_PADS gstpad.c:1103:gst_pad_set_active:<'':decodepad1> pad was active in push mode
0:00:01.792410875 1815 0x1b6a280 DEBUG GST_ELEMENT_PADS gstelement.c:1982:gst_element_send_event: send latency event on element pipeline0
0:00:01.792413792 1815 0x1c89170 DEBUG GST_PADS gstghostpad.c:783:gst_ghost_pad_get_target:<'':decodepad1> get target v4l2slh264dec0:src
0:00:01.792466417 1815 0x1b6a280 DEBUG GST_ELEMENT_PADS gstelement.c:1982:gst_element_send_event: send latency event on element kmssink0
0:00:01.792541917 1815 0x1c89170 DEBUG GST_PADS gstpad.c:4105:check_sticky:<capsfilter0:src> pushing all sticky events
0:00:01.792614084 1815 0x1c89170 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<v4l2slh264dec0:sink> sent event, ret ok
0:00:01.792661375 1815 0x1c89170 DEBUG GST_PADS gstpad.c:4056:push_sticky:<capsfilter0:src> event stream-start marked received
0:00:01.792811750 1815 0x1c89170 DEBUG GST_CAPS gstutils.c:3185:gst_pad_query_accept_caps:<v4l2slh264dec0:sink> accept caps of video/x-h264, stream-format=(string)avc, alignment=(string)au, level=(string)4.2, profile=(string)high, codec_data=(buffer)0164002affe1001b6764002aacc8501e0089f97011000003000100000300780f18319601000668e93864b22c, width=(int)1920, height=(int)1080, framerate=(fraction)60/1, pixel-aspect-ratio=(fraction)1/1, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8, parsed=(boolean)true
0:00:01.792870292 1815 0x1c89170 DEBUG GST_PADS gstpad.c:4173:gst_pad_query:<v4l2slh264dec0:sink> doing query 0xb4407800 (accept-caps)
0:00:01.793074959 1815 0x1c89170 DEBUG GST_CAPS gstutils.c:3102:gst_pad_query_caps:<v4l2slh264dec0:sink> get pad caps with filter video/x-h264, stream-format=(string)avc, alignment=(string)au, level=(string)4.2, profile=(string)high, codec_data=(buffer)0164002affe1001b6764002aacc8501e0089f97011000003000100000300780f18319601000668e93864b22c, width=(int)1920, height=(int)1080, framerate=(fraction)60/1, pixel-aspect-ratio=(fraction)1/1, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8, parsed=(boolean)true
0:00:01.793128500 1815 0x1c89170 DEBUG GST_PADS gstpad.c:4173:gst_pad_query:<v4l2slh264dec0:sink> doing query 0xb4407830 (caps)
0:00:01.793248292 1815 0x1c89170 DEBUG GST_CAPS gstutils.c:3148:gst_pad_peer_query_caps:<v4l2slh264dec0:src> get pad peer caps with filter video/x-raw, width=(int)1920, height=(int)1080, framerate=(fraction)60/1, pixel-aspect-ratio=(fraction)1/1
0:00:01.793294542 1815 0x1c89170 DEBUG GST_PADS gstpad.c:4300:gst_pad_peer_query:<v4l2slh264dec0:src> peer query 0xb44075b0 (caps)
0:00:01.793330959 1815 0x1c89170 DEBUG GST_PADS gstpad.c:3709:probe_hook_marshal:<v4l2slh264dec0:src> asked to pass item
0:00:01.793530959 1815 0x1c89170 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<v4l2slh264dec0:src> data is passed
0:00:01.793578500 1815 0x1c89170 DEBUG GST_PADS gstpad.c:4173:gst_pad_query:<decodepad1:proxypad2> doing query 0xb44075b0 (caps)
0:00:01.793720542 1815 0x1c89170 DEBUG GST_CAPS gstpad.c:3259:gst_pad_query_caps_default:<decodepad1:proxypad2> query caps caps query: 0xb44075b0, GstQueryCaps, filter=(GstCaps)"video/x-raw\,\ width\=\(int\)1920\,\ height\=\(int\)1080\,\ framerate\=\(fraction\)60/1\,\ pixel-aspect-ratio\=\(fraction\)1/1", caps=(GstCaps)"NULL";
0:00:01.793765167 1815 0x1c89170 DEBUG GST_PADS gstutils.c:2851:gst_pad_proxy_query_caps:<decodepad1:proxypad2> proxying caps query for decodepad1:proxypad2
0:00:01.793815917 1815 0x1c89170 DEBUG GST_PADS gstpad.c:4300:gst_pad_peer_query:<'':decodepad1> peer query 0xb44075b0 (caps)
0:00:01.793845167 1815 0x1c89170 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<'':decodepad1> data is passed
0:00:01.793871875 1815 0x1c89170 INFO GST_PADS gstpad.c:4357:gst_pad_peer_query:<'':decodepad1> pad has no peer
0:00:01.793919084 1815 0x1c89170 DEBUG GST_PADS gstpad.c:3514:gst_pad_query_default:<decodepad1:proxypad2> not forwarding 0xb44075b0 (caps) query
0:00:01.793954042 1815 0x1c89170 DEBUG GST_PADS gstpad.c:4196:gst_pad_query:<decodepad1:proxypad2> sent query 0xb44075b0 (caps), result 1
0:00:01.794015792 1815 0x1c89170 DEBUG GST_CAPS gstutils.c:3155:gst_pad_peer_query_caps:<v4l2slh264dec0:src> peer query returned video/x-raw, width=(int)1920, height=(int)1080, framerate=(fraction)60/1, pixel-aspect-ratio=(fraction)1/1
0:00:01.794187292 1815 0x1c89170 DEBUG GST_PADS gstpad.c:4196:gst_pad_query:<v4l2slh264dec0:sink> sent query 0xb4407830 (caps), result 1
0:00:01.794311959 1815 0x1c89170 DEBUG GST_CAPS gstutils.c:3109:gst_pad_query_caps:<v4l2slh264dec0:sink> query returned video/x-h264, width=(int)1920, height=(int)1080, framerate=(fraction)60/1, pixel-aspect-ratio=(fraction)1/1, stream-format=(string)avc, alignment=(string)au, level=(string)4.2, profile=(string)high, codec_data=(buffer)0164002affe1001b6764002aacc8501e0089f97011000003000100000300780f18319601000668e93864b22c, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8, parsed=(boolean)true
0:00:01.794378542 1815 0x1c89170 DEBUG GST_PADS gstpad.c:4196:gst_pad_query:<v4l2slh264dec0:sink> sent query 0xb4407800 (accept-caps), result 1
0:00:01.794427584 1815 0x1c89170 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<v4l2slh264dec0:sink> sent event, ret ok
0:00:01.794464209 1815 0x1c89170 DEBUG GST_PADS gstpad.c:4056:push_sticky:<capsfilter0:src> event caps marked received
0:00:01.794650834 1815 0x1c89170 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<capsfilter0:sink> sent event, ret ok
0:00:01.794685334 1815 0x1c89170 DEBUG GST_PADS gstpad.c:5363:store_sticky_event:<capsfilter0:sink> notify caps
0:00:01.794744584 1815 0x1c89170 DEBUG GST_PADS gstpad.c:4056:push_sticky:<h264parse0:src> event caps marked received
0:00:01.794920709 1815 0x1c89170 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<h264parse0:sink> sent event, ret ok
0:00:01.794961084 1815 0x1c89170 DEBUG GST_PADS gstpad.c:5363:store_sticky_event:<h264parse0:sink> notify caps
0:00:01.795077792 1815 0x1c89170 DEBUG GST_PADS gstpad.c:4300:gst_pad_peer_query:<qtdemux0:sink> peer query 0xb4407580 (duration)
0:00:01.795118750 1815 0x1c89170 DEBUG GST_PADS gstpad.c:4173:gst_pad_query:<typefind:src> doing query 0xb4407580 (duration)
0:00:01.795158625 1815 0x1c89170 DEBUG GST_PADS gstpad.c:3514:gst_pad_query_default:<typefind:src> forwarding 0xb4407580 (duration) query
0:00:01.795186875 1815 0x1c89170 DEBUG GST_PADS gstpad.c:2968:gst_pad_iterate_internal_links_default:<typefind:src> Making iterator
0:00:01.795229334 1815 0x1c89170 DEBUG GST_PADS gstpad.c:4300:gst_pad_peer_query:<typefind:sink> peer query 0xb4407580 (duration)
0:00:01.795269375 1815 0x1c89170 DEBUG GST_PADS gstpad.c:4173:gst_pad_query:<sink:proxypad0> doing query 0xb4407580 (duration)
0:00:01.795310584 1815 0x1c89170 DEBUG GST_PADS gstpad.c:3514:gst_pad_query_default:<sink:proxypad0> forwarding 0xb4407580 (duration) query
0:00:01.795351125 1815 0x1c89170 DEBUG GST_PADS gstpad.c:4300:gst_pad_peer_query:<decodebin0:sink> peer query 0xb4407580 (duration)
0:00:01.795383834 1815 0x1c89170 DEBUG GST_PADS gstpad.c:4173:gst_pad_query:<filesrc0:src> doing query 0xb4407580 (duration)
0:00:01.795494209 1815 0x1c89170 DEBUG GST_PADS gstpad.c:4196:gst_pad_query:<filesrc0:src> sent query 0xb4407580 (duration), result 1
0:00:01.795540625 1815 0x1c89170 DEBUG GST_PADS gstpad.c:4196:gst_pad_query:<sink:proxypad0> sent query 0xb4407580 (duration), result 1
0:00:01.795578959 1815 0x1c89170 DEBUG GST_PADS gstpad.c:4196:gst_pad_query:<typefind:src> sent query 0xb4407580 (duration), result 1
0:00:01.795812459 1815 0x1c89170 DEBUG GST_CAPS gstpad.c:2709:gst_pad_has_current_caps:<'':decodepad1> check current pad caps video/x-raw, format=(string)NV12_32L32, width=(int)1920, height=(int)1080, interlace-mode=(string)progressive, multiview-mode=(string)mono, multiview-flags=(GstVideoMultiviewFlagsSet)0:ffffffff:/right-view-first/left-flipped/left-flopped/right-flipped/right-flopped/half-aspect/mixed-mono, pixel-aspect-ratio=(fraction)1/1, framerate=(fraction)60/1
0:00:01.796014625 1815 0x1c89170 DEBUG GST_CAPS gstpad.c:2709:gst_pad_has_current_caps:<'':decodepad1> check current pad caps video/x-raw, format=(string)NV12_32L32, width=(int)1920, height=(int)1080, interlace-mode=(string)progressive, multiview-mode=(string)mono, multiview-flags=(GstVideoMultiviewFlagsSet)0:ffffffff:/right-view-first/left-flipped/left-flopped/right-flipped/right-flopped/half-aspect/mixed-mono, pixel-aspect-ratio=(fraction)1/1, framerate=(fraction)60/1
0:00:01.796076334 1815 0x1c89170 INFO GST_ELEMENT_PADS gstelement.c:759:gst_element_add_pad:<decodebin0> adding pad 'src_0'
0:00:01.796150167 1815 0x1c89170 INFO GST_PIPELINE gst/parse/grammar.y:554:gst_parse_found_pad: trying delayed linking one pad some pad of GstDecodeBin named decodebin0 to some pad of GstKMSSink named kmssink0
0:00:01.796298959 1815 0x1c89170 INFO GST_ELEMENT_PADS gstutils.c:1816:gst_element_link_pads_full: trying to link element decodebin0:(any) to element kmssink0:(any)
0:00:01.796336417 1815 0x1c89170 DEBUG GST_ELEMENT_PADS gstutils.c:1925:gst_element_link_pads_full: looping through allowed src and dest pads
0:00:01.796366167 1815 0x1c89170 DEBUG GST_ELEMENT_PADS gstutils.c:1928:gst_element_link_pads_full: trying src pad decodebin0:sink
0:00:01.796396334 1815 0x1c89170 DEBUG GST_ELEMENT_PADS gstutils.c:1928:gst_element_link_pads_full: trying src pad decodebin0:src_0
0:00:01.796433167 1815 0x1c89170 DEBUG GST_ELEMENT_PADS gstutils.c:1148:gst_element_get_compatible_pad: finding pad in kmssink0 compatible with decodebin0:src_0
0:00:01.796477667 1815 0x1c89170 INFO GST_PADS gstutils.c:1079:gst_pad_check_link: trying to link decodebin0:src_0 and kmssink0:sink
0:00:01.796512584 1815 0x1c89170 DEBUG GST_CAPS gstutils.c:3102:gst_pad_query_caps:<decodebin0:src_0> get pad caps with filter (NULL)
0:00:01.796553292 1815 0x1c89170 DEBUG GST_PADS gstpad.c:4173:gst_pad_query:<decodebin0:src_0> doing query 0xb4407550 (caps)
0:00:01.796585042 1815 0x1c89170 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<decodebin0:src_0> data is passed
0:00:01.796638292 1815 0x1c89170 DEBUG GST_CAPS gstpad.c:3259:gst_pad_query_caps_default:<decodebin0:src_0> query caps caps query: 0xb4407550, GstQueryCaps, filter=(GstCaps)"NULL", caps=(GstCaps)"NULL";
0:00:01.796669625 1815 0x1c89170 DEBUG GST_PADS gstutils.c:2851:gst_pad_proxy_query_caps:<decodebin0:src_0> proxying caps query for decodebin0:src_0
0:00:01.796718959 1815 0x1c89170 DEBUG GST_PADS gstpad.c:4300:gst_pad_peer_query:<src_0:proxypad2> peer query 0xb4407550 (caps)
0:00:01.796753834 1815 0x1c89170 DEBUG GST_PADS gstpad.c:4173:gst_pad_query:<v4l2slh264dec0:src> doing query 0xb4407550 (caps)
0:00:01.796780042 1815 0x1c89170 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<v4l2slh264dec0:src> data is passed
0:00:01.796828500 1815 0x1c89170 DEBUG GST_CAPS gstpad.c:3259:gst_pad_query_caps_default:<v4l2slh264dec0:src> query caps caps query: 0xb4407550, GstQueryCaps, filter=(GstCaps)"NULL", caps=(GstCaps)"NULL";
0:00:01.796855542 1815 0x1c89170 DEBUG GST_CAPS gstpad.c:3283:gst_pad_query_caps_default:<v4l2slh264dec0:src> trying pad template caps
0:00:01.796919625 1815 0x1c89170 DEBUG GST_CAPS gstpad.c:3312:gst_pad_query_caps_default:<v4l2slh264dec0:src> using caps 0xb4408c50 video/x-raw, format=(string){ NV12, YUY2, NV12_4L4, NV12_32L32 }, width=(int)[ 1, 2147483647 ], height=(int)[ 1, 2147483647 ], framerate=(fraction)[ 0/1, 2147483647/1 ]
0:00:01.796957667 1815 0x1c89170 DEBUG GST_PADS gstpad.c:3514:gst_pad_query_default:<v4l2slh264dec0:src> not forwarding 0xb4407550 (caps) query
0:00:01.796993459 1815 0x1c89170 DEBUG GST_PADS gstpad.c:4196:gst_pad_query:<v4l2slh264dec0:src> sent query 0xb4407550 (caps), result 1
0:00:01.797058625 1815 0x1c89170 DEBUG GST_PADS gstpad.c:3514:gst_pad_query_default:<decodebin0:src_0> not forwarding 0xb4407550 (caps) query
0:00:01.797096209 1815 0x1c89170 DEBUG GST_PADS gstpad.c:4196:gst_pad_query:<decodebin0:src_0> sent query 0xb4407550 (caps), result 1
0:00:01.797153250 1815 0x1c89170 DEBUG GST_CAPS gstutils.c:3109:gst_pad_query_caps:<decodebin0:src_0> query returned video/x-raw, format=(string){ NV12, YUY2, NV12_4L4, NV12_32L32 }, width=(int)[ 1, 2147483647 ], height=(int)[ 1, 2147483647 ], framerate=(fraction)[ 0/1, 2147483647/1 ]
0:00:01.797183584 1815 0x1c89170 DEBUG GST_CAPS gstutils.c:3102:gst_pad_query_caps:<kmssink0:sink> get pad caps with filter (NULL)
0:00:01.797219084 1815 0x1c89170 DEBUG GST_PADS gstpad.c:4173:gst_pad_query:<kmssink0:sink> doing query 0xb4407460 (caps)
0:00:01.797372500 1815 0x1c89170 DEBUG GST_PADS gstpad.c:4196:gst_pad_query:<kmssink0:sink> sent query 0xb4407460 (caps), result 1
0:00:01.797453375 1815 0x1c89170 DEBUG GST_CAPS gstutils.c:3109:gst_pad_query_caps:<kmssink0:sink> query returned video/x-raw, format=(string){ BGR16, RGB, RGB16, BGR, RGBx, BGRx, NV16, NV12, NV21, NV61, UYVY, YUY2, YVYU, I420, Y42B, YV12 }, width=(int)[ 0, 8192 ], height=(int)[ 0, 8192 ], framerate=(fraction)[ 0/1, 2147483647/1 ]
0:00:01.797517709 1815 0x1c89170 DEBUG GST_ELEMENT_PADS gstutils.c:1207:gst_element_get_compatible_pad: found existing unlinked compatible pad kmssink0:sink
0:00:01.797551959 1815 0x1c89170 INFO GST_PADS gstutils.c:1632:prepare_link_maybe_ghosting: decodebin0 and kmssink0 in same bin, no need for ghost pads
0:00:01.797758209 1815 0x1c89170 INFO GST_PADS gstpad.c:2382:gst_pad_link_prepare: trying to link decodebin0:src_0 and kmssink0:sink
0:00:01.797801500 1815 0x1c89170 DEBUG GST_CAPS gstutils.c:3102:gst_pad_query_caps:<decodebin0:src_0> get pad caps with filter (NULL)
0:00:01.797841042 1815 0x1c89170 DEBUG GST_PADS gstpad.c:4173:gst_pad_query:<decodebin0:src_0> doing query 0xb44074f0 (caps)
0:00:01.797871417 1815 0x1c89170 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<decodebin0:src_0> data is passed
0:00:01.797922792 1815 0x1c89170 DEBUG GST_CAPS gstpad.c:3259:gst_pad_query_caps_default:<decodebin0:src_0> query caps caps query: 0xb44074f0, GstQueryCaps, filter=(GstCaps)"NULL", caps=(GstCaps)"NULL";
0:00:01.797953834 1815 0x1c89170 DEBUG GST_PADS gstutils.c:2851:gst_pad_proxy_query_caps:<decodebin0:src_0> proxying caps query for decodebin0:src_0
0:00:01.798059209 1815 0x1c89170 DEBUG GST_PADS gstpad.c:4300:gst_pad_peer_query:<src_0:proxypad2> peer query 0xb44074f0 (caps)
0:00:01.798096959 1815 0x1c89170 DEBUG GST_PADS gstpad.c:4173:gst_pad_query:<v4l2slh264dec0:src> doing query 0xb44074f0 (caps)
0:00:01.798125209 1815 0x1c89170 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<v4l2slh264dec0:src> data is passed
0:00:01.798178959 1815 0x1c89170 DEBUG GST_CAPS gstpad.c:3259:gst_pad_query_caps_default:<v4l2slh264dec0:src> query caps caps query: 0xb44074f0, GstQueryCaps, filter=(GstCaps)"NULL", caps=(GstCaps)"NULL";
0:00:01.798214125 1815 0x1c89170 DEBUG GST_CAPS gstpad.c:3283:gst_pad_query_caps_default:<v4l2slh264dec0:src> trying pad template caps
0:00:01.798278167 1815 0x1c89170 DEBUG GST_CAPS gstpad.c:3312:gst_pad_query_caps_default:<v4l2slh264dec0:src> using caps 0xb4408c50 video/x-raw, format=(string){ NV12, YUY2, NV12_4L4, NV12_32L32 }, width=(int)[ 1, 2147483647 ], height=(int)[ 1, 2147483647 ], framerate=(fraction)[ 0/1, 2147483647/1 ]
0:00:01.798316125 1815 0x1c89170 DEBUG GST_PADS gstpad.c:3514:gst_pad_query_default:<v4l2slh264dec0:src> not forwarding 0xb44074f0 (caps) query
0:00:01.798349625 1815 0x1c89170 DEBUG GST_PADS gstpad.c:4196:gst_pad_query:<v4l2slh264dec0:src> sent query 0xb44074f0 (caps), result 1
0:00:01.798397084 1815 0x1c89170 DEBUG GST_PADS gstpad.c:3514:gst_pad_query_default:<decodebin0:src_0> not forwarding 0xb44074f0 (caps) query
0:00:01.798431667 1815 0x1c89170 DEBUG GST_PADS gstpad.c:4196:gst_pad_query:<decodebin0:src_0> sent query 0xb44074f0 (caps), result 1
0:00:01.798527167 1815 0x1c89170 DEBUG GST_CAPS gstutils.c:3109:gst_pad_query_caps:<decodebin0:src_0> query returned video/x-raw, format=(string){ NV12, YUY2, NV12_4L4, NV12_32L32 }, width=(int)[ 1, 2147483647 ], height=(int)[ 1, 2147483647 ], framerate=(fraction)[ 0/1, 2147483647/1 ]
0:00:01.798565875 1815 0x1c89170 DEBUG GST_CAPS gstutils.c:3102:gst_pad_query_caps:<kmssink0:sink> get pad caps with filter (NULL)
0:00:01.798603084 1815 0x1c89170 DEBUG GST_PADS gstpad.c:4173:gst_pad_query:<kmssink0:sink> doing query 0xb4407520 (caps)
0:00:01.798677292 1815 0x1c89170 DEBUG GST_PADS gstpad.c:4196:gst_pad_query:<kmssink0:sink> sent query 0xb4407520 (caps), result 1
0:00:01.798744292 1815 0x1c89170 DEBUG GST_CAPS gstutils.c:3109:gst_pad_query_caps:<kmssink0:sink> query returned video/x-raw, format=(string){ BGR16, RGB, RGB16, BGR, RGBx, BGRx, NV16, NV12, NV21, NV61, UYVY, YUY2, YVYU, I420, Y42B, YV12 }, width=(int)[ 0, 8192 ], height=(int)[ 0, 8192 ], framerate=(fraction)[ 0/1, 2147483647/1 ]
0:00:01.798801792 1815 0x1c89170 DEBUG GST_CAPS gstpad.c:2282:gst_pad_link_check_compatible_unlocked:<decodebin0:src_0> src caps video/x-raw, format=(string){ NV12, YUY2, NV12_4L4, NV12_32L32 }, width=(int)[ 1, 2147483647 ], height=(int)[ 1, 2147483647 ], framerate=(fraction)[ 0/1, 2147483647/1 ]
0:00:01.798869084 1815 0x1c89170 DEBUG GST_CAPS gstpad.c:2284:gst_pad_link_check_compatible_unlocked:<kmssink0:sink> sink caps video/x-raw, format=(string){ BGR16, RGB, RGB16, BGR, RGBx, BGRx, NV16, NV12, NV21, NV61, UYVY, YUY2, YVYU, I420, Y42B, YV12 }, width=(int)[ 0, 8192 ], height=(int)[ 0, 8192 ], framerate=(fraction)[ 0/1, 2147483647/1 ]
0:00:01.798921834 1815 0x1c89170 DEBUG GST_CAPS gstpad.c:2302:gst_pad_link_check_compatible_unlocked: caps are compatible
0:00:01.798965667 1815 0x1c89170 INFO GST_PADS gstpad.c:2590:gst_pad_link_full: linked decodebin0:src_0 and kmssink0:sink, successful
0:00:01.799001417 1815 0x1c89170 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<decodebin0:src_0> data is passed
0:00:01.799058417 1815 0x1c89170 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<v4l2slh264dec0:src> data is passed
0:00:01.799110292 1815 0x1c89170 DEBUG GST_PADS gstpad.c:2968:gst_pad_iterate_internal_links_default:<h264parse0:src> Making iterator
0:00:01.799158834 1815 0x1c89170 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<multiqueue0:sink_0> data is passed
0:00:01.799192375 1815 0x1c89170 DEBUG GST_PADS gstpad.c:3713:probe_hook_marshal:<multiqueue0:sink_0> probe returned OK
0:00:01.799327417 1815 0x1c89170 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<qtdemux0:video_0> data is passed
0:00:01.799367125 1815 0x1c89170 DEBUG GST_PADS gstpad.c:2968:gst_pad_iterate_internal_links_default:<qtdemux0:video_0> Making iterator
0:00:01.799433959 1815 0x1c89170 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<filesrc0:src> sent event, ret ok
0:00:01.799472875 1815 0x1c89170 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<sink:proxypad0> sent event, ret ok
0:00:01.799503792 1815 0x1c89170 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<typefind:src> sent event, ret ok
0:00:01.799536792 1815 0x1c89170 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<qtdemux0:video_0> sent event, ret ok
0:00:01.799567750 1815 0x1c89170 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<multiqueue0:src_0> sent event, ret ok
0:00:01.799600084 1815 0x1c89170 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<h264parse0:src> sent event, ret ok
0:00:01.799629750 1815 0x1c89170 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<capsfilter0:src> sent event, ret ok
0:00:01.799659667 1815 0x1c89170 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<v4l2slh264dec0:src> sent event, ret ok
0:00:01.799696167 1815 0x1c89170 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<decodebin0:src_0> sent event, ret ok
0:00:01.799772000 1815 0x1c89170 DEBUG GST_ELEMENT_PADS gstutils.c:1948:gst_element_link_pads_full: linked pad decodebin0:src_0 to pad kmssink0:sink
0:00:01.799880584 1815 0x1c89170 DEBUG GST_PIPELINE gst/parse/grammar.y:564:gst_parse_found_pad: delayed linking one pad some pad of GstDecodeBin named decodebin0 to some pad of GstKMSSink named kmssink0 worked
0:00:01.799974334 1815 0x1c89170 DEBUG GST_PADS gstghostpad.c:783:gst_ghost_pad_get_target:<decodebin0:src_0> get target v4l2slh264dec0:src
0:00:01.800019417 1815 0x1c89170 DEBUG GST_PADS gstpad.c:1371:cleanup_hook:<v4l2slh264dec0:src> cleaning up hook 1 with flags 00032721
0:00:01.800048709 1815 0x1c89170 DEBUG GST_PADS gstpad.c:1384:cleanup_hook:<v4l2slh264dec0:src> remove blocking probe, now 0 left
0:00:01.800079042 1815 0x1c89170 DEBUG GST_PADS gstpad.c:1391:cleanup_hook:<v4l2slh264dec0:src> last blocking probe removed, unblocking
0:00:01.800279750 1815 0x1c89170 DEBUG GST_PADS gstpad.c:4105:check_sticky:<qtdemux0:video_0> pushing all sticky events
0:00:01.800418584 1815 0x1c89170 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<qtdemux0:video_0> data is passed
0:00:01.800457292 1815 0x1c89170 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<multiqueue0:sink_0> data is passed
0:00:01.800531959 1815 0x1c89170 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<multiqueue0:sink_0> sent event, ret ok
0:00:01.800582750 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:4105:check_sticky:<multiqueue0:src_0> pushing all sticky events
0:00:01.800679042 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<h264parse0:sink> sent event, ret ok
0:00:01.800707334 1815 0x1c89170 DEBUG GST_PADS gstpad.c:4056:push_sticky:<qtdemux0:video_0> event stream-start marked received
0:00:01.800718417 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:4056:push_sticky:<multiqueue0:src_0> event stream-start marked received
0:00:01.800740750 1815 0x1c89170 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<qtdemux0:video_0> data is passed
0:00:01.800749334 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:4068:push_sticky:<multiqueue0:src_0> event caps was ignored, mark pending
0:00:01.800770459 1815 0x1c89170 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<multiqueue0:sink_0> data is passed
0:00:01.800920167 1815 0x1c89170 DEBUG GST_CAPS gstutils.c:3185:gst_pad_query_accept_caps:<multiqueue0:sink_0> accept caps of video/x-h264, stream-format=(string)avc, alignment=(string)au, level=(string)4.2, profile=(string)high, codec_data=(buffer)0164002affe1001b6764002aacc8501e0089f97011000003000100000300780f18319601000668e93864b22cfdf8f800, width=(int)1920, height=(int)1080, framerate=(fraction)60/1, pixel-aspect-ratio=(fraction)1/1
0:00:01.800975750 1815 0x1c89170 DEBUG GST_PADS gstpad.c:4173:gst_pad_query:<multiqueue0:sink_0> doing query 0xb4407430 (accept-caps)
0:00:01.801006209 1815 0x1c89170 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<multiqueue0:sink_0> data is passed
0:00:01.801153459 1815 0x1c89170 DEBUG GST_PADS gstpad.c:3200:gst_pad_query_accept_caps_default:<multiqueue0:sink_0> query accept-caps accept-caps query: 0xb4407430, GstQueryAcceptCaps, caps=(GstCaps)"video/x-h264\,\ stream-format\=\(string\)avc\,\ alignment\=\(string\)au\,\ level\=\(string\)4.2\,\ profile\=\(string\)high\,\ codec_data\=\(buffer\)0164002affe1001b6764002aacc8501e0089f97011000003000100000300780f18319601000668e93864b22cfdf8f800\,\ width\=\(int\)1920\,\ height\=\(int\)1080\,\ framerate\=\(fraction\)60/1\,\ pixel-aspect-ratio\=\(fraction\)1/1", result=(boolean)false;
0:00:01.801196167 1815 0x1c89170 DEBUG GST_PADS gstutils.c:2782:gst_pad_proxy_query_accept_caps:<multiqueue0:sink_0> proxying accept caps query for multiqueue0:sink_0
0:00:01.801254459 1815 0x1c89170 DEBUG GST_PADS gstpad.c:4300:gst_pad_peer_query:<multiqueue0:src_0> peer query 0xb4407430 (accept-caps)
0:00:01.801293625 1815 0x1c89170 DEBUG GST_PADS gstpad.c:4173:gst_pad_query:<h264parse0:sink> doing query 0xb4407430 (accept-caps)
0:00:01.801427625 1815 0x1c89170 DEBUG GST_PADS gstpad.c:3200:gst_pad_query_accept_caps_default:<h264parse0:sink> query accept-caps accept-caps query: 0xb4407430, GstQueryAcceptCaps, caps=(GstCaps)"video/x-h264\,\ stream-format\=\(string\)avc\,\ alignment\=\(string\)au\,\ level\=\(string\)4.2\,\ profile\=\(string\)high\,\ codec_data\=\(buffer\)0164002affe1001b6764002aacc8501e0089f97011000003000100000300780f18319601000668e93864b22cfdf8f800\,\ width\=\(int\)1920\,\ height\=\(int\)1080\,\ framerate\=\(fraction\)60/1\,\ pixel-aspect-ratio\=\(fraction\)1/1", result=(boolean)false;
0:00:01.801547834 1815 0x1c89170 DEBUG GST_PADS gstpad.c:3225:gst_pad_query_accept_caps_default:<h264parse0:sink> allowed caps intersect video/x-h264, caps video/x-h264, stream-format=(string)avc, alignment=(string)au, level=(string)4.2, profile=(string)high, codec_data=(buffer)0164002affe1001b6764002aacc8501e0089f97011000003000100000300780f18319601000668e93864b22cfdf8f800, width=(int)1920, height=(int)1080, framerate=(fraction)60/1, pixel-aspect-ratio=(fraction)1/1
0:00:01.801596042 1815 0x1c89170 DEBUG GST_PADS gstpad.c:3514:gst_pad_query_default:<h264parse0:sink> not forwarding 0xb4407430 (accept-caps) query
0:00:01.801631417 1815 0x1c89170 DEBUG GST_PADS gstpad.c:4196:gst_pad_query:<h264parse0:sink> sent query 0xb4407430 (accept-caps), result 1
0:00:01.801669625 1815 0x1c89170 DEBUG GST_PADS gstutils.c:2793:gst_pad_proxy_query_accept_caps:<multiqueue0:sink_0> proxying accept caps query: 1
0:00:01.801912834 1815 0x1c89170 DEBUG GST_PADS gstpad.c:3230:gst_pad_query_accept_caps_default:<multiqueue0:sink_0> allowed caps subset ANY, caps video/x-h264, stream-format=(string)avc, alignment=(string)au, level=(string)4.2, profile=(string)high, codec_data=(buffer)0164002affe1001b6764002aacc8501e0089f97011000003000100000300780f18319601000668e93864b22cfdf8f800, width=(int)1920, height=(int)1080, framerate=(fraction)60/1, pixel-aspect-ratio=(fraction)1/1
0:00:01.801961084 1815 0x1c89170 DEBUG GST_PADS gstpad.c:3514:gst_pad_query_default:<multiqueue0:sink_0> not forwarding 0xb4407430 (accept-caps) query
0:00:01.802117542 1815 0x1c89170 DEBUG GST_PADS gstpad.c:4196:gst_pad_query:<multiqueue0:sink_0> sent query 0xb4407430 (accept-caps), result 1
0:00:01.802203250 1815 0x1c89170 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<multiqueue0:sink_0> sent event, ret ok
0:00:01.802228625 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:4105:check_sticky:<multiqueue0:src_0> pushing all sticky events
0:00:01.802236625 1815 0x1c89170 DEBUG GST_PADS gstpad.c:5363:store_sticky_event:<multiqueue0:sink_0> notify caps
0:00:01.802269167 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:4034:push_sticky:<multiqueue0:src_0> event stream-start was already received
0:00:01.802304084 1815 0x1c89170 DEBUG GST_PADS gstpad.c:4056:push_sticky:<qtdemux0:video_0> event caps marked received
0:00:01.802334209 1815 0x1c89170 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<qtdemux0:video_0> data is passed
0:00:01.802363000 1815 0x1c89170 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<multiqueue0:sink_0> data is passed
0:00:01.802389959 1815 0xb5a27290 DEBUG GST_CAPS gstutils.c:3185:gst_pad_query_accept_caps:<h264parse0:sink> accept caps of video/x-h264, stream-format=(string)avc, alignment=(string)au, level=(string)4.2, profile=(string)high, codec_data=(buffer)0164002affe1001b6764002aacc8501e0089f97011000003000100000300780f18319601000668e93864b22cfdf8f800, width=(int)1920, height=(int)1080, framerate=(fraction)60/1, pixel-aspect-ratio=(fraction)1/1
0:00:01.802428792 1815 0x1c89170 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<multiqueue0:sink_0> sent event, ret ok
0:00:01.802471000 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:4173:gst_pad_query:<h264parse0:sink> doing query 0xb4407860 (accept-caps)
0:00:01.802469250 1815 0x1c89170 DEBUG GST_PADS gstpad.c:4056:push_sticky:<qtdemux0:video_0> event segment marked received
0:00:01.802616417 1815 0x1c89170 DEBUG GST_PADS gstpad.c:4105:check_sticky:<qtdemux0:video_0> pushing all sticky events
0:00:01.802652084 1815 0x1c89170 DEBUG GST_PADS gstpad.c:4034:push_sticky:<qtdemux0:video_0> event stream-start was already received
0:00:01.802685125 1815 0x1c89170 DEBUG GST_PADS gstpad.c:4034:push_sticky:<qtdemux0:video_0> event caps was already received
0:00:01.802687584 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:3200:gst_pad_query_accept_caps_default:<h264parse0:sink> query accept-caps accept-caps query: 0xb4407860, GstQueryAcceptCaps, caps=(GstCaps)"video/x-h264\,\ stream-format\=\(string\)avc\,\ alignment\=\(string\)au\,\ level\=\(string\)4.2\,\ profile\=\(string\)high\,\ codec_data\=\(buffer\)0164002affe1001b6764002aacc8501e0089f97011000003000100000300780f18319601000668e93864b22cfdf8f800\,\ width\=\(int\)1920\,\ height\=\(int\)1080\,\ framerate\=\(fraction\)60/1\,\ pixel-aspect-ratio\=\(fraction\)1/1", result=(boolean)false;
0:00:01.802717167 1815 0x1c89170 DEBUG GST_PADS gstpad.c:4034:push_sticky:<qtdemux0:video_0> event segment was already received
0:00:01.802745917 1815 0x1c89170 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<qtdemux0:video_0> data is passed
0:00:01.802778125 1815 0x1c89170 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<multiqueue0:sink_0> data is passed
0:00:01.802817209 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:3225:gst_pad_query_accept_caps_default:<h264parse0:sink> allowed caps intersect video/x-h264, caps video/x-h264, stream-format=(string)avc, alignment=(string)au, level=(string)4.2, profile=(string)high, codec_data=(buffer)0164002affe1001b6764002aacc8501e0089f97011000003000100000300780f18319601000668e93864b22cfdf8f800, width=(int)1920, height=(int)1080, framerate=(fraction)60/1, pixel-aspect-ratio=(fraction)1/1
0:00:01.802821084 1815 0x1c89170 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<multiqueue0:sink_0> sent event, ret ok
0:00:01.802864500 1815 0x1c89170 DEBUG GST_PADS gstpad.c:4056:push_sticky:<qtdemux0:video_0> event tag marked received
0:00:01.802885209 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:3514:gst_pad_query_default:<h264parse0:sink> not forwarding 0xb4407860 (accept-caps) query
0:00:01.802909500 1815 0x1c89170 DEBUG GST_PADS gstpad.c:4105:check_sticky:<qtdemux0:video_0> pushing all sticky events
0:00:01.802924125 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:4196:gst_pad_query:<h264parse0:sink> sent query 0xb4407860 (accept-caps), result 1
0:00:01.802949459 1815 0x1c89170 DEBUG GST_PADS gstpad.c:4034:push_sticky:<qtdemux0:video_0> event stream-start was already received
0:00:01.802981625 1815 0x1c89170 DEBUG GST_PADS gstpad.c:4034:push_sticky:<qtdemux0:video_0> event caps was already received
0:00:01.803012500 1815 0x1c89170 DEBUG GST_PADS gstpad.c:4034:push_sticky:<qtdemux0:video_0> event segment was already received
0:00:01.803042625 1815 0x1c89170 DEBUG GST_PADS gstpad.c:4034:push_sticky:<qtdemux0:video_0> event tag was already received
0:00:01.803046250 1815 0xb5a27290 DEBUG GST_CAPS gstpad.c:2737:gst_pad_get_current_caps:<h264parse0:sink> get current pad caps video/x-h264, stream-format=(string)avc, alignment=(string)au, level=(string)4.2, profile=(string)high, codec_data=(buffer)0164002affe1001b6764002aacc8501e0089f97011000003000100000300780f18319601000668e93864b22cfdf8f800, width=(int)1920, height=(int)1080, framerate=(fraction)60/1, pixel-aspect-ratio=(fraction)1/1
0:00:01.803112500 1815 0x1c89170 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<qtdemux0:video_0> data is passed
0:00:01.803151209 1815 0x1c89170 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<multiqueue0:sink_0> data is passed
0:00:01.803200417 1815 0x1c89170 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<multiqueue0:sink_0> sent event, ret ok
0:00:01.803243209 1815 0x1c89170 DEBUG GST_PADS gstpad.c:4056:push_sticky:<qtdemux0:video_0> event tag marked received
0:00:01.803333209 1815 0xb5a27290 DEBUG GST_CAPS gstutils.c:3102:gst_pad_query_caps:<h264parse0:src> get pad caps with filter (NULL)
0:00:01.803389834 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:4173:gst_pad_query:<h264parse0:src> doing query 0xb4407890 (caps)
0:00:01.803473667 1815 0xb5a27290 DEBUG GST_CAPS gstpad.c:3259:gst_pad_query_caps_default:<h264parse0:src> query caps caps query: 0xb4407890, GstQueryCaps, filter=(GstCaps)"NULL", caps=(GstCaps)"NULL";
0:00:01.803510834 1815 0xb5a27290 DEBUG GST_CAPS gstpad.c:3277:gst_pad_query_caps_default:<h264parse0:src> fixed pad caps: trying pad caps
0:00:01.803677084 1815 0xb5a27290 DEBUG GST_CAPS gstpad.c:3312:gst_pad_query_caps_default:<h264parse0:src> using caps 0xb4408a78 video/x-h264, stream-format=(string)avc, alignment=(string)au, level=(string)4.2, profile=(string)high, codec_data=(buffer)0164002affe1001b6764002aacc8501e0089f97011000003000100000300780f18319601000668e93864b22c, width=(int)1920, height=(int)1080, framerate=(fraction)60/1, pixel-aspect-ratio=(fraction)1/1, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8, parsed=(boolean)true
0:00:01.803751042 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:3514:gst_pad_query_default:<h264parse0:src> not forwarding 0xb4407890 (caps) query
0:00:01.803802459 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:4196:gst_pad_query:<h264parse0:src> sent query 0xb4407890 (caps), result 1
0:00:01.803968584 1815 0xb5a27290 DEBUG GST_CAPS gstutils.c:3109:gst_pad_query_caps:<h264parse0:src> query returned video/x-h264, stream-format=(string)avc, alignment=(string)au, level=(string)4.2, profile=(string)high, codec_data=(buffer)0164002affe1001b6764002aacc8501e0089f97011000003000100000300780f18319601000668e93864b22c, width=(int)1920, height=(int)1080, framerate=(fraction)60/1, pixel-aspect-ratio=(fraction)1/1, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8, parsed=(boolean)true
0:00:01.804085125 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:4300:gst_pad_peer_query:<h264parse0:src> peer query 0xb44078c0 (caps)
0:00:01.804151875 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:4173:gst_pad_query:<capsfilter0:sink> doing query 0xb44078c0 (caps)
0:00:01.804557500 1815 0xb5a27290 DEBUG GST_CAPS gstutils.c:3148:gst_pad_peer_query_caps:<capsfilter0:src> get pad peer caps with filter video/x-h264, stream-format=(string)avc, alignment=(string)au, parsed=(boolean)true, level=(string)4.2, profile=(string)high, codec_data=(buffer)0164002affe1001b6764002aacc8501e0089f97011000003000100000300780f18319601000668e93864b22c, width=(int)1920, height=(int)1080, framerate=(fraction)60/1, pixel-aspect-ratio=(fraction)1/1, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8
0:00:01.804653334 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:4300:gst_pad_peer_query:<capsfilter0:src> peer query 0xb44078f0 (caps)
0:00:01.804721959 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:4173:gst_pad_query:<v4l2slh264dec0:sink> doing query 0xb44078f0 (caps)
0:00:01.805003750 1815 0xb5a27290 DEBUG GST_CAPS gstutils.c:3148:gst_pad_peer_query_caps:<v4l2slh264dec0:src> get pad peer caps with filter video/x-raw, width=(int)1920, height=(int)1080, framerate=(fraction)60/1, pixel-aspect-ratio=(fraction)1/1
0:00:01.805092584 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:4300:gst_pad_peer_query:<v4l2slh264dec0:src> peer query 0xb4407920 (caps)
0:00:01.805141959 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:4173:gst_pad_query:<src_0:proxypad2> doing query 0xb4407920 (caps)
0:00:01.805259834 1815 0xb5a27290 DEBUG GST_CAPS gstpad.c:3259:gst_pad_query_caps_default:<src_0:proxypad2> query caps caps query: 0xb4407920, GstQueryCaps, filter=(GstCaps)"video/x-raw\,\ width\=\(int\)1920\,\ height\=\(int\)1080\,\ framerate\=\(fraction\)60/1\,\ pixel-aspect-ratio\=\(fraction\)1/1", caps=(GstCaps)"NULL";
0:00:01.805315167 1815 0xb5a27290 DEBUG GST_PADS gstutils.c:2851:gst_pad_proxy_query_caps:<src_0:proxypad2> proxying caps query for src_0:proxypad2
0:00:01.805384500 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:4300:gst_pad_peer_query:<decodebin0:src_0> peer query 0xb4407920 (caps)
0:00:01.805419209 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<decodebin0:src_0> data is passed
0:00:01.805424375 1815 0x1c89170 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<qtdemux0:video_0> data is passed
0:00:01.805457584 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:4173:gst_pad_query:<kmssink0:sink> doing query 0xb4407920 (caps)
0:00:01.805473000 1815 0x1c89170 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<multiqueue0:sink_0> data is passed
0:00:01.805621875 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:4196:gst_pad_query:<kmssink0:sink> sent query 0xb4407920 (caps), result 1
0:00:01.805763209 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:3514:gst_pad_query_default:<src_0:proxypad2> not forwarding 0xb4407920 (caps) query
0:00:01.805816625 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:4196:gst_pad_query:<src_0:proxypad2> sent query 0xb4407920 (caps), result 1
0:00:01.805813959 1815 0x1c89170 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<qtdemux0:video_0> data is passed
0:00:01.805859875 1815 0x1c89170 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<multiqueue0:sink_0> data is passed
0:00:01.805933375 1815 0xb5a27290 DEBUG GST_CAPS gstutils.c:3155:gst_pad_peer_query_caps:<v4l2slh264dec0:src> peer query returned video/x-raw, width=(int)1920, height=(int)1080, framerate=(fraction)60/1, pixel-aspect-ratio=(fraction)1/1, format=(string){ BGR16, RGB, RGB16, BGR, RGBx, BGRx, NV16, NV12, NV21, NV61, UYVY, YUY2, YVYU, I420, Y42B, YV12 }
0:00:01.806040917 1815 0x1c89170 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<qtdemux0:video_0> data is passed
0:00:01.806081375 1815 0x1c89170 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<multiqueue0:sink_0> data is passed
0:00:01.806152750 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:4196:gst_pad_query:<v4l2slh264dec0:sink> sent query 0xb44078f0 (caps), result 1
0:00:01.806199959 1815 0x1c89170 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<qtdemux0:video_0> data is passed
0:00:01.806296667 1815 0xb5a27290 DEBUG GST_CAPS gstutils.c:3155:gst_pad_peer_query_caps:<capsfilter0:src> peer query returned video/x-h264, width=(int)1920, height=(int)1080, framerate=(fraction)60/1, pixel-aspect-ratio=(fraction)1/1, stream-format=(string)avc, alignment=(string)au, parsed=(boolean)true, level=(string)4.2, profile=(string)high, codec_data=(buffer)0164002affe1001b6764002aacc8501e0089f97011000003000100000300780f18319601000668e93864b22c, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8
0:00:01.806360792 1815 0x1c89170 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<multiqueue0:sink_0> data is passed
0:00:01.806527084 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:4196:gst_pad_query:<capsfilter0:sink> sent query 0xb44078c0 (caps), result 1
0:00:01.806686500 1815 0xb5a27290 DEBUG GST_CAPS gstpad.c:2840:gst_pad_get_allowed_caps:<h264parse0:src> allowed caps video/x-h264, stream-format=(string)avc, alignment=(string)au, level=(string)4.2, profile=(string)high, codec_data=(buffer)0164002affe1001b6764002aacc8501e0089f97011000003000100000300780f18319601000668e93864b22c, width=(int)1920, height=(int)1080, framerate=(fraction)60/1, pixel-aspect-ratio=(fraction)1/1, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8, parsed=(boolean)true
0:00:01.806836625 1815 0x1c89170 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<qtdemux0:video_0> data is passed
0:00:01.806870584 1815 0xb5a27290 DEBUG GST_CAPS gstpad.c:2709:gst_pad_has_current_caps:<h264parse0:src> check current pad caps video/x-h264, stream-format=(string)avc, alignment=(string)au, level=(string)4.2, profile=(string)high, codec_data=(buffer)0164002affe1001b6764002aacc8501e0089f97011000003000100000300780f18319601000668e93864b22c, width=(int)1920, height=(int)1080, framerate=(fraction)60/1, pixel-aspect-ratio=(fraction)1/1, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8, parsed=(boolean)true
0:00:01.806882667 1815 0x1c89170 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<multiqueue0:sink_0> data is passed
0:00:01.807028584 1815 0x1c89170 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<qtdemux0:video_0> data is passed
0:00:01.807070042 1815 0x1c89170 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<multiqueue0:sink_0> data is passed
0:00:01.807189667 1815 0xb5a27290 DEBUG GST_CAPS gstpad.c:2737:gst_pad_get_current_caps:<h264parse0:src> get current pad caps video/x-h264, stream-format=(string)avc, alignment=(string)au, level=(string)4.2, profile=(string)high, codec_data=(buffer)0164002affe1001b6764002aacc8501e0089f97011000003000100000300780f18319601000668e93864b22c, width=(int)1920, height=(int)1080, framerate=(fraction)60/1, pixel-aspect-ratio=(fraction)1/1, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8, parsed=(boolean)true
0:00:01.807268042 1815 0xb5a27290 DEBUG GST_CAPS gstutils.c:3148:gst_pad_peer_query_caps:<h264parse0:src> get pad peer caps with filter video/x-h264
0:00:01.807311834 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:4300:gst_pad_peer_query:<h264parse0:src> peer query 0xb44079b0 (caps)
0:00:01.807348167 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:4173:gst_pad_query:<capsfilter0:sink> doing query 0xb44079b0 (caps)
0:00:01.807459292 1815 0xb5a27290 DEBUG GST_CAPS gstutils.c:3148:gst_pad_peer_query_caps:<capsfilter0:src> get pad peer caps with filter video/x-h264, stream-format=(string){ avc, avc3, byte-stream }, alignment=(string)au, parsed=(boolean)true; video/x-h264, parsed=(boolean)true, stream-format=(string){ avc, avc3, byte-stream }, alignment=(string){ au, nal }
0:00:01.807499834 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:4300:gst_pad_peer_query:<capsfilter0:src> peer query 0xb3a02800 (caps)
0:00:01.807556167 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:4173:gst_pad_query:<v4l2slh264dec0:sink> doing query 0xb3a02800 (caps)
0:00:01.807640709 1815 0xb5a27290 DEBUG GST_CAPS gstutils.c:3148:gst_pad_peer_query_caps:<v4l2slh264dec0:src> get pad peer caps with filter video/x-raw
0:00:01.807677917 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:4300:gst_pad_peer_query:<v4l2slh264dec0:src> peer query 0xb3a02830 (caps)
0:00:01.807712167 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:4173:gst_pad_query:<src_0:proxypad2> doing query 0xb3a02830 (caps)
0:00:01.807767459 1815 0xb5a27290 DEBUG GST_CAPS gstpad.c:3259:gst_pad_query_caps_default:<src_0:proxypad2> query caps caps query: 0xb3a02830, GstQueryCaps, filter=(GstCaps)video/x-raw, caps=(GstCaps)"NULL";
0:00:01.807799917 1815 0xb5a27290 DEBUG GST_PADS gstutils.c:2851:gst_pad_proxy_query_caps:<src_0:proxypad2> proxying caps query for src_0:proxypad2
0:00:01.807845792 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:4300:gst_pad_peer_query:<decodebin0:src_0> peer query 0xb3a02830 (caps)
0:00:01.807880917 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<decodebin0:src_0> data is passed
0:00:01.807914792 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:4173:gst_pad_query:<kmssink0:sink> doing query 0xb3a02830 (caps)
0:00:01.808021959 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:4196:gst_pad_query:<kmssink0:sink> sent query 0xb3a02830 (caps), result 1
0:00:01.808101667 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:3514:gst_pad_query_default:<src_0:proxypad2> not forwarding 0xb3a02830 (caps) query
0:00:01.808136834 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:4196:gst_pad_query:<src_0:proxypad2> sent query 0xb3a02830 (caps), result 1
0:00:01.808205250 1815 0xb5a27290 DEBUG GST_CAPS gstutils.c:3155:gst_pad_peer_query_caps:<v4l2slh264dec0:src> peer query returned video/x-raw, format=(string){ BGR16, RGB, RGB16, BGR, RGBx, BGRx, NV16, NV12, NV21, NV61, UYVY, YUY2, YVYU, I420, Y42B, YV12 }, width=(int)[ 0, 8192 ], height=(int)[ 0, 8192 ], framerate=(fraction)[ 0/1, 2147483647/1 ]
0:00:01.808402375 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:4196:gst_pad_query:<v4l2slh264dec0:sink> sent query 0xb3a02800 (caps), result 1
0:00:01.808466167 1815 0xb5a27290 DEBUG GST_CAPS gstutils.c:3155:gst_pad_peer_query_caps:<capsfilter0:src> peer query returned video/x-h264, width=(int)[ 1, 8192 ], height=(int)[ 1, 8192 ], framerate=(fraction)[ 0/1, 2147483647/1 ], stream-format=(string){ avc, avc3, byte-stream }, alignment=(string)au, parsed=(boolean)true
0:00:01.808592417 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:4196:gst_pad_query:<capsfilter0:sink> sent query 0xb44079b0 (caps), result 1
0:00:01.808653834 1815 0xb5a27290 DEBUG GST_CAPS gstutils.c:3155:gst_pad_peer_query_caps:<h264parse0:src> peer query returned video/x-h264, stream-format=(string){ avc, avc3, byte-stream }, alignment=(string)au, parsed=(boolean)true, width=(int)[ 1, 8192 ], height=(int)[ 1, 8192 ], framerate=(fraction)[ 0/1, 2147483647/1 ]
0:00:01.808792959 1815 0xb5a27290 DEBUG GST_CAPS gstpad.c:2737:gst_pad_get_current_caps:<h264parse0:src> get current pad caps video/x-h264, stream-format=(string)avc, alignment=(string)au, level=(string)4.2, profile=(string)high, codec_data=(buffer)0164002affe1001b6764002aacc8501e0089f97011000003000100000300780f18319601000668e93864b22c, width=(int)1920, height=(int)1080, framerate=(fraction)60/1, pixel-aspect-ratio=(fraction)1/1, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8, parsed=(boolean)true
0:00:01.808862125 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:5363:store_sticky_event:<h264parse0:src> notify caps
0:00:01.808914792 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:4105:check_sticky:<h264parse0:src> pushing all sticky events
0:00:01.808946709 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:4034:push_sticky:<h264parse0:src> event stream-start was already received
0:00:01.809063709 1815 0xb5a27290 DEBUG GST_CAPS gstutils.c:3185:gst_pad_query_accept_caps:<capsfilter0:sink> accept caps of video/x-h264, stream-format=(string)avc, alignment=(string)au, level=(string)4.2, profile=(string)high, codec_data=(buffer)0164002affe1001b6764002aacc8501e0089f97011000003000100000300780f18319601000668e93864b22c, width=(int)1920, height=(int)1080, framerate=(fraction)60/1, pixel-aspect-ratio=(fraction)1/1, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8, parsed=(boolean)true
0:00:01.809108625 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:4173:gst_pad_query:<capsfilter0:sink> doing query 0xb3a03060 (accept-caps)
0:00:01.809156292 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:4196:gst_pad_query:<capsfilter0:sink> sent query 0xb3a03060 (accept-caps), result 1
0:00:01.809192625 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:1678:gst_pad_check_reconfigure:<capsfilter0:src> remove RECONFIGURE flag
0:00:01.809391250 1815 0xb5a27290 DEBUG GST_CAPS gstutils.c:3185:gst_pad_query_accept_caps:<v4l2slh264dec0:sink> accept caps of video/x-h264, stream-format=(string)avc, alignment=(string)au, parsed=(boolean)true, level=(string)4.2, profile=(string)high, codec_data=(buffer)0164002affe1001b6764002aacc8501e0089f97011000003000100000300780f18319601000668e93864b22c, width=(int)1920, height=(int)1080, framerate=(fraction)60/1, pixel-aspect-ratio=(fraction)1/1, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8
0:00:01.809436167 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:4173:gst_pad_query:<v4l2slh264dec0:sink> doing query 0xb3a03090 (accept-caps)
0:00:01.809554417 1815 0xb5a27290 DEBUG GST_CAPS gstutils.c:3102:gst_pad_query_caps:<v4l2slh264dec0:sink> get pad caps with filter video/x-h264, stream-format=(string)avc, alignment=(string)au, parsed=(boolean)true, level=(string)4.2, profile=(string)high, codec_data=(buffer)0164002affe1001b6764002aacc8501e0089f97011000003000100000300780f18319601000668e93864b22c, width=(int)1920, height=(int)1080, framerate=(fraction)60/1, pixel-aspect-ratio=(fraction)1/1, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8
0:00:01.809589584 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:4173:gst_pad_query:<v4l2slh264dec0:sink> doing query 0xb3a030c0 (caps)
0:00:01.809665167 1815 0xb5a27290 DEBUG GST_CAPS gstutils.c:3148:gst_pad_peer_query_caps:<v4l2slh264dec0:src> get pad peer caps with filter video/x-raw, width=(int)1920, height=(int)1080, framerate=(fraction)60/1, pixel-aspect-ratio=(fraction)1/1
0:00:01.809702084 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:4300:gst_pad_peer_query:<v4l2slh264dec0:src> peer query 0xb3a030f0 (caps)
0:00:01.809735417 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:4173:gst_pad_query:<src_0:proxypad2> doing query 0xb3a030f0 (caps)
0:00:01.809806500 1815 0xb5a27290 DEBUG GST_CAPS gstpad.c:3259:gst_pad_query_caps_default:<src_0:proxypad2> query caps caps query: 0xb3a030f0, GstQueryCaps, filter=(GstCaps)"video/x-raw\,\ width\=\(int\)1920\,\ height\=\(int\)1080\,\ framerate\=\(fraction\)60/1\,\ pixel-aspect-ratio\=\(fraction\)1/1", caps=(GstCaps)"NULL";
0:00:01.809838917 1815 0xb5a27290 DEBUG GST_PADS gstutils.c:2851:gst_pad_proxy_query_caps:<src_0:proxypad2> proxying caps query for src_0:proxypad2
0:00:01.809879500 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:4300:gst_pad_peer_query:<decodebin0:src_0> peer query 0xb3a030f0 (caps)
0:00:01.812789875 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<decodebin0:src_0> data is passed
0:00:01.812862125 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:4173:gst_pad_query:<kmssink0:sink> doing query 0xb3a030f0 (caps)
0:00:01.813017584 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:4196:gst_pad_query:<kmssink0:sink> sent query 0xb3a030f0 (caps), result 1
0:00:01.813110125 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:3514:gst_pad_query_default:<src_0:proxypad2> not forwarding 0xb3a030f0 (caps) query
0:00:01.813151792 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:4196:gst_pad_query:<src_0:proxypad2> sent query 0xb3a030f0 (caps), result 1
0:00:01.813249875 1815 0xb5a27290 DEBUG GST_CAPS gstutils.c:3155:gst_pad_peer_query_caps:<v4l2slh264dec0:src> peer query returned video/x-raw, width=(int)1920, height=(int)1080, framerate=(fraction)60/1, pixel-aspect-ratio=(fraction)1/1, format=(string){ BGR16, RGB, RGB16, BGR, RGBx, BGRx, NV16, NV12, NV21, NV61, UYVY, YUY2, YVYU, I420, Y42B, YV12 }
0:00:01.813442209 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:4196:gst_pad_query:<v4l2slh264dec0:sink> sent query 0xb3a030c0 (caps), result 1
0:00:01.813695834 1815 0xb5a27290 DEBUG GST_CAPS gstutils.c:3109:gst_pad_query_caps:<v4l2slh264dec0:sink> query returned video/x-h264, width=(int)1920, height=(int)1080, framerate=(fraction)60/1, pixel-aspect-ratio=(fraction)1/1, stream-format=(string)avc, alignment=(string)au, parsed=(boolean)true, level=(string)4.2, profile=(string)high, codec_data=(buffer)0164002affe1001b6764002aacc8501e0089f97011000003000100000300780f18319601000668e93864b22c, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8
0:00:01.813781209 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:4196:gst_pad_query:<v4l2slh264dec0:sink> sent query 0xb3a03090 (accept-caps), result 1
0:00:01.813950959 1815 0xb5a27290 DEBUG GST_CAPS gstpad.c:2737:gst_pad_get_current_caps:<capsfilter0:sink> get current pad caps video/x-h264, stream-format=(string)avc, alignment=(string)au, level=(string)4.2, profile=(string)high, codec_data=(buffer)0164002affe1001b6764002aacc8501e0089f97011000003000100000300780f18319601000668e93864b22c, width=(int)1920, height=(int)1080, framerate=(fraction)60/1, pixel-aspect-ratio=(fraction)1/1, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8, parsed=(boolean)true
0:00:01.814198625 1815 0xb5a27290 DEBUG GST_CAPS gstpad.c:2737:gst_pad_get_current_caps:<capsfilter0:src> get current pad caps video/x-h264, stream-format=(string)avc, alignment=(string)au, level=(string)4.2, profile=(string)high, codec_data=(buffer)0164002affe1001b6764002aacc8501e0089f97011000003000100000300780f18319601000668e93864b22c, width=(int)1920, height=(int)1080, framerate=(fraction)60/1, pixel-aspect-ratio=(fraction)1/1, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8, parsed=(boolean)true
0:00:01.814281417 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<capsfilter0:sink> sent event, ret ok
0:00:01.814316625 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:5363:store_sticky_event:<capsfilter0:sink> notify caps
0:00:01.814386375 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:4056:push_sticky:<h264parse0:src> event caps marked received
0:00:01.817803334 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<h264parse0:sink> sent event, ret ok
0:00:01.817864459 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:4056:push_sticky:<multiqueue0:src_0> event caps marked received
0:00:01.817977209 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:4105:check_sticky:<multiqueue0:src_0> pushing all sticky events
0:00:01.818012542 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:4034:push_sticky:<multiqueue0:src_0> event stream-start was already received
0:00:01.818043875 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:4034:push_sticky:<multiqueue0:src_0> event caps was already received
0:00:01.818102917 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<h264parse0:sink> sent event, ret ok
0:00:01.818141834 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:4056:push_sticky:<multiqueue0:src_0> event segment marked received
0:00:01.818195667 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:4105:check_sticky:<multiqueue0:src_0> pushing all sticky events
0:00:01.818228334 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:4034:push_sticky:<multiqueue0:src_0> event stream-start was already received
0:00:01.818257167 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:4034:push_sticky:<multiqueue0:src_0> event caps was already received
0:00:01.818285917 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:4034:push_sticky:<multiqueue0:src_0> event segment was already received
0:00:01.818377292 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<h264parse0:sink> sent event, ret ok
0:00:01.818413750 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:4056:push_sticky:<multiqueue0:src_0> event tag marked received
0:00:01.818463584 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:4105:check_sticky:<multiqueue0:src_0> pushing all sticky events
0:00:01.818529542 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:4034:push_sticky:<multiqueue0:src_0> event stream-start was already received
0:00:01.818560542 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:4034:push_sticky:<multiqueue0:src_0> event caps was already received
0:00:01.818589334 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:4034:push_sticky:<multiqueue0:src_0> event segment was already received
0:00:01.818694125 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:4034:push_sticky:<multiqueue0:src_0> event tag was already received
0:00:01.818743875 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<h264parse0:sink> sent event, ret ok
0:00:01.818780334 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:4056:push_sticky:<multiqueue0:src_0> event tag marked received
0:00:01.819120042 1815 0xb5a27290 DEBUG GST_CAPS gstpad.c:2737:gst_pad_get_current_caps:<h264parse0:sink> get current pad caps video/x-h264, stream-format=(string)avc, alignment=(string)au, level=(string)4.2, profile=(string)high, codec_data=(buffer)0164002affe1001b6764002aacc8501e0089f97011000003000100000300780f18319601000668e93864b22cfdf8f800, width=(int)1920, height=(int)1080, framerate=(fraction)60/1, pixel-aspect-ratio=(fraction)1/1
0:00:01.819195584 1815 0x1c89170 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<qtdemux0:video_0> data is passed
0:00:01.823240875 1815 0x1c89170 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<multiqueue0:sink_0> data is passed
0:00:01.825175959 1815 0xb5a27290 DEBUG GST_CAPS gstpad.c:2709:gst_pad_has_current_caps:<h264parse0:src> check current pad caps video/x-h264, stream-format=(string)avc, alignment=(string)au, level=(string)4.2, profile=(string)high, codec_data=(buffer)0164002affe1001b6764002aacc8501e0089f97011000003000100000300780f18319601000668e93864b22c, width=(int)1920, height=(int)1080, framerate=(fraction)60/1, pixel-aspect-ratio=(fraction)1/1, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8, parsed=(boolean)true
0:00:01.825351250 1815 0xb5a27290 DEBUG GST_CAPS gstpad.c:2737:gst_pad_get_current_caps:<h264parse0:sink> get current pad caps video/x-h264, stream-format=(string)avc, alignment=(string)au, level=(string)4.2, profile=(string)high, codec_data=(buffer)0164002affe1001b6764002aacc8501e0089f97011000003000100000300780f18319601000668e93864b22cfdf8f800, width=(int)1920, height=(int)1080, framerate=(fraction)60/1, pixel-aspect-ratio=(fraction)1/1
0:00:01.825660917 1815 0xb5a27290 DEBUG GST_CAPS gstpad.c:2737:gst_pad_get_current_caps:<h264parse0:src> get current pad caps video/x-h264, stream-format=(string)avc, alignment=(string)au, level=(string)4.2, profile=(string)high, codec_data=(buffer)0164002affe1001b6764002aacc8501e0089f97011000003000100000300780f18319601000668e93864b22c, width=(int)1920, height=(int)1080, framerate=(fraction)60/1, pixel-aspect-ratio=(fraction)1/1, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8, parsed=(boolean)true
0:00:01.825736084 1815 0xb5a27290 DEBUG GST_CAPS gstutils.c:3148:gst_pad_peer_query_caps:<h264parse0:src> get pad peer caps with filter video/x-h264
0:00:01.825784667 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:4300:gst_pad_peer_query:<h264parse0:src> peer query 0xb3a03030 (caps)
0:00:01.825821959 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:4173:gst_pad_query:<capsfilter0:sink> doing query 0xb3a03030 (caps)
0:00:01.825951167 1815 0xb5a27290 DEBUG GST_CAPS gstutils.c:3148:gst_pad_peer_query_caps:<capsfilter0:src> get pad peer caps with filter video/x-h264, stream-format=(string){ avc, avc3, byte-stream }, alignment=(string)au, parsed=(boolean)true; video/x-h264, parsed=(boolean)true, stream-format=(string){ avc, avc3, byte-stream }, alignment=(string){ au, nal }
0:00:01.825993917 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:4300:gst_pad_peer_query:<capsfilter0:src> peer query 0xb3a03000 (caps)
0:00:01.826029542 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:4173:gst_pad_query:<v4l2slh264dec0:sink> doing query 0xb3a03000 (caps)
0:00:01.826115084 1815 0xb5a27290 DEBUG GST_CAPS gstutils.c:3148:gst_pad_peer_query_caps:<v4l2slh264dec0:src> get pad peer caps with filter video/x-raw
0:00:01.826155625 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:4300:gst_pad_peer_query:<v4l2slh264dec0:src> peer query 0xb3a02d80 (caps)
0:00:01.829127042 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:4173:gst_pad_query:<src_0:proxypad2> doing query 0xb3a02d80 (caps)
0:00:01.829230167 1815 0xb5a27290 DEBUG GST_CAPS gstpad.c:3259:gst_pad_query_caps_default:<src_0:proxypad2> query caps caps query: 0xb3a02d80, GstQueryCaps, filter=(GstCaps)video/x-raw, caps=(GstCaps)"NULL";
0:00:01.829267750 1815 0xb5a27290 DEBUG GST_PADS gstutils.c:2851:gst_pad_proxy_query_caps:<src_0:proxypad2> proxying caps query for src_0:proxypad2
0:00:01.829322334 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:4300:gst_pad_peer_query:<decodebin0:src_0> peer query 0xb3a02d80 (caps)
0:00:01.829357125 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<decodebin0:src_0> data is passed
0:00:01.829394667 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:4173:gst_pad_query:<kmssink0:sink> doing query 0xb3a02d80 (caps)
0:00:01.829545209 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:4196:gst_pad_query:<kmssink0:sink> sent query 0xb3a02d80 (caps), result 1
0:00:01.829634917 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:3514:gst_pad_query_default:<src_0:proxypad2> not forwarding 0xb3a02d80 (caps) query
0:00:01.829673167 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:4196:gst_pad_query:<src_0:proxypad2> sent query 0xb3a02d80 (caps), result 1
0:00:01.829756292 1815 0xb5a27290 DEBUG GST_CAPS gstutils.c:3155:gst_pad_peer_query_caps:<v4l2slh264dec0:src> peer query returned video/x-raw, format=(string){ BGR16, RGB, RGB16, BGR, RGBx, BGRx, NV16, NV12, NV21, NV61, UYVY, YUY2, YVYU, I420, Y42B, YV12 }, width=(int)[ 0, 8192 ], height=(int)[ 0, 8192 ], framerate=(fraction)[ 0/1, 2147483647/1 ]
0:00:01.829956792 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:4196:gst_pad_query:<v4l2slh264dec0:sink> sent query 0xb3a03000 (caps), result 1
0:00:01.830025667 1815 0xb5a27290 DEBUG GST_CAPS gstutils.c:3155:gst_pad_peer_query_caps:<capsfilter0:src> peer query returned video/x-h264, width=(int)[ 1, 8192 ], height=(int)[ 1, 8192 ], framerate=(fraction)[ 0/1, 2147483647/1 ], stream-format=(string){ avc, avc3, byte-stream }, alignment=(string)au, parsed=(boolean)true
0:00:01.830165167 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:4196:gst_pad_query:<capsfilter0:sink> sent query 0xb3a03030 (caps), result 1
0:00:01.830232542 1815 0xb5a27290 DEBUG GST_CAPS gstutils.c:3155:gst_pad_peer_query_caps:<h264parse0:src> peer query returned video/x-h264, stream-format=(string){ avc, avc3, byte-stream }, alignment=(string)au, parsed=(boolean)true, width=(int)[ 1, 8192 ], height=(int)[ 1, 8192 ], framerate=(fraction)[ 0/1, 2147483647/1 ]
0:00:01.830404084 1815 0xb5a27290 DEBUG GST_CAPS gstpad.c:2737:gst_pad_get_current_caps:<h264parse0:src> get current pad caps video/x-h264, stream-format=(string)avc, alignment=(string)au, level=(string)4.2, profile=(string)high, codec_data=(buffer)0164002affe1001b6764002aacc8501e0089f97011000003000100000300780f18319601000668e93864b22c, width=(int)1920, height=(int)1080, framerate=(fraction)60/1, pixel-aspect-ratio=(fraction)1/1, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8, parsed=(boolean)true
0:00:01.830472959 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:5363:store_sticky_event:<h264parse0:src> notify caps
0:00:01.834913459 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:4105:check_sticky:<h264parse0:src> pushing all sticky events
0:00:01.834969500 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:4034:push_sticky:<h264parse0:src> event stream-start was already received
0:00:01.835130167 1815 0xb5a27290 DEBUG GST_CAPS gstutils.c:3185:gst_pad_query_accept_caps:<capsfilter0:sink> accept caps of video/x-h264, stream-format=(string)avc, alignment=(string)au, level=(string)4.2, profile=(string)high, codec_data=(buffer)0164002affe1001b6764002aacc8501e0089f97011000003000100000300780f18319601000668e93864b22c, width=(int)1920, height=(int)1080, framerate=(fraction)60/1, pixel-aspect-ratio=(fraction)1/1, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8, parsed=(boolean)true
0:00:01.835194084 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:4173:gst_pad_query:<capsfilter0:sink> doing query 0xb4407980 (accept-caps)
0:00:01.835260417 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:4196:gst_pad_query:<capsfilter0:sink> sent query 0xb4407980 (accept-caps), result 1
0:00:01.835506125 1815 0xb5a27290 DEBUG GST_CAPS gstutils.c:3185:gst_pad_query_accept_caps:<v4l2slh264dec0:sink> accept caps of video/x-h264, stream-format=(string)avc, alignment=(string)au, parsed=(boolean)true, level=(string)4.2, profile=(string)high, codec_data=(buffer)0164002affe1001b6764002aacc8501e0089f97011000003000100000300780f18319601000668e93864b22c, width=(int)1920, height=(int)1080, framerate=(fraction)60/1, pixel-aspect-ratio=(fraction)1/1, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8
0:00:01.835566084 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:4173:gst_pad_query:<v4l2slh264dec0:sink> doing query 0xb4407950 (accept-caps)
0:00:01.835707959 1815 0xb5a27290 DEBUG GST_CAPS gstutils.c:3102:gst_pad_query_caps:<v4l2slh264dec0:sink> get pad caps with filter video/x-h264, stream-format=(string)avc, alignment=(string)au, parsed=(boolean)true, level=(string)4.2, profile=(string)high, codec_data=(buffer)0164002affe1001b6764002aacc8501e0089f97011000003000100000300780f18319601000668e93864b22c, width=(int)1920, height=(int)1080, framerate=(fraction)60/1, pixel-aspect-ratio=(fraction)1/1, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8
0:00:01.835753125 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:4173:gst_pad_query:<v4l2slh264dec0:sink> doing query 0xb4407890 (caps)
0:00:01.835869250 1815 0xb5a27290 DEBUG GST_CAPS gstutils.c:3148:gst_pad_peer_query_caps:<v4l2slh264dec0:src> get pad peer caps with filter video/x-raw, width=(int)1920, height=(int)1080, framerate=(fraction)60/1, pixel-aspect-ratio=(fraction)1/1
0:00:01.835916334 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:4300:gst_pad_peer_query:<v4l2slh264dec0:src> peer query 0xb4407860 (caps)
0:00:01.835954584 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:4173:gst_pad_query:<src_0:proxypad2> doing query 0xb4407860 (caps)
0:00:01.836041250 1815 0xb5a27290 DEBUG GST_CAPS gstpad.c:3259:gst_pad_query_caps_default:<src_0:proxypad2> query caps caps query: 0xb4407860, GstQueryCaps, filter=(GstCaps)"video/x-raw\,\ width\=\(int\)1920\,\ height\=\(int\)1080\,\ framerate\=\(fraction\)60/1\,\ pixel-aspect-ratio\=\(fraction\)1/1", caps=(GstCaps)"NULL";
0:00:01.836077709 1815 0xb5a27290 DEBUG GST_PADS gstutils.c:2851:gst_pad_proxy_query_caps:<src_0:proxypad2> proxying caps query for src_0:proxypad2
0:00:01.840726042 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:4300:gst_pad_peer_query:<decodebin0:src_0> peer query 0xb4407860 (caps)
0:00:01.840774792 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<decodebin0:src_0> data is passed
0:00:01.840812917 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:4173:gst_pad_query:<kmssink0:sink> doing query 0xb4407860 (caps)
0:00:01.840951625 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:4196:gst_pad_query:<kmssink0:sink> sent query 0xb4407860 (caps), result 1
0:00:01.841045292 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:3514:gst_pad_query_default:<src_0:proxypad2> not forwarding 0xb4407860 (caps) query
0:00:01.841086459 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:4196:gst_pad_query:<src_0:proxypad2> sent query 0xb4407860 (caps), result 1
0:00:01.841172500 1815 0xb5a27290 DEBUG GST_CAPS gstutils.c:3155:gst_pad_peer_query_caps:<v4l2slh264dec0:src> peer query returned video/x-raw, width=(int)1920, height=(int)1080, framerate=(fraction)60/1, pixel-aspect-ratio=(fraction)1/1, format=(string){ BGR16, RGB, RGB16, BGR, RGBx, BGRx, NV16, NV12, NV21, NV61, UYVY, YUY2, YVYU, I420, Y42B, YV12 }
0:00:01.841355667 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:4196:gst_pad_query:<v4l2slh264dec0:sink> sent query 0xb4407890 (caps), result 1
0:00:01.841490875 1815 0xb5a27290 DEBUG GST_CAPS gstutils.c:3109:gst_pad_query_caps:<v4l2slh264dec0:sink> query returned video/x-h264, width=(int)1920, height=(int)1080, framerate=(fraction)60/1, pixel-aspect-ratio=(fraction)1/1, stream-format=(string)avc, alignment=(string)au, parsed=(boolean)true, level=(string)4.2, profile=(string)high, codec_data=(buffer)0164002affe1001b6764002aacc8501e0089f97011000003000100000300780f18319601000668e93864b22c, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8
0:00:01.841558084 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:4196:gst_pad_query:<v4l2slh264dec0:sink> sent query 0xb4407950 (accept-caps), result 1
0:00:01.841722750 1815 0xb5a27290 DEBUG GST_CAPS gstpad.c:2737:gst_pad_get_current_caps:<capsfilter0:sink> get current pad caps video/x-h264, stream-format=(string)avc, alignment=(string)au, level=(string)4.2, profile=(string)high, codec_data=(buffer)0164002affe1001b6764002aacc8501e0089f97011000003000100000300780f18319601000668e93864b22c, width=(int)1920, height=(int)1080, framerate=(fraction)60/1, pixel-aspect-ratio=(fraction)1/1, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8, parsed=(boolean)true
0:00:01.841849834 1815 0xb5a27290 DEBUG GST_CAPS gstpad.c:2737:gst_pad_get_current_caps:<capsfilter0:src> get current pad caps video/x-h264, stream-format=(string)avc, alignment=(string)au, level=(string)4.2, profile=(string)high, codec_data=(buffer)0164002affe1001b6764002aacc8501e0089f97011000003000100000300780f18319601000668e93864b22c, width=(int)1920, height=(int)1080, framerate=(fraction)60/1, pixel-aspect-ratio=(fraction)1/1, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8, parsed=(boolean)true
0:00:01.841922792 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<capsfilter0:sink> sent event, ret ok
0:00:01.841955709 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:5363:store_sticky_event:<capsfilter0:sink> notify caps
0:00:01.846116625 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:4056:push_sticky:<h264parse0:src> event caps marked received
0:00:01.847898459 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:4300:gst_pad_peer_query:<h264parse0:sink> peer query 0xb3a03030 (seeking)
0:00:01.847974875 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:4173:gst_pad_query:<multiqueue0:src_0> doing query 0xb3a03030 (seeking)
0:00:01.848017542 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:3514:gst_pad_query_default:<multiqueue0:src_0> forwarding 0xb3a03030 (seeking) query
0:00:01.848081000 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:4300:gst_pad_peer_query:<multiqueue0:sink_0> peer query 0xb3a03030 (seeking)
0:00:01.848118209 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<multiqueue0:sink_0> data is passed
0:00:01.848154584 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:3713:probe_hook_marshal:<multiqueue0:sink_0> probe returned OK
0:00:01.848189209 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:4173:gst_pad_query:<qtdemux0:video_0> doing query 0xb3a03030 (seeking)
0:00:01.848215500 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<qtdemux0:video_0> data is passed
0:00:01.848254959 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:4196:gst_pad_query:<qtdemux0:video_0> sent query 0xb3a03030 (seeking), result 0
0:00:01.848280500 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:4242:gst_pad_query:<qtdemux0:video_0> query failed
0:00:01.848305042 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:4363:gst_pad_peer_query:<multiqueue0:sink_0> query failed
0:00:01.848343584 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:4196:gst_pad_query:<multiqueue0:src_0> sent query 0xb3a03030 (seeking), result 0
0:00:01.848368792 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:4242:gst_pad_query:<multiqueue0:src_0> query failed
0:00:01.848393375 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:4363:gst_pad_peer_query:<h264parse0:sink> query failed
0:00:01.848446167 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:4300:gst_pad_peer_query:<h264parse0:sink> peer query 0xb3a02920 (duration)
0:00:01.848480125 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:4173:gst_pad_query:<multiqueue0:src_0> doing query 0xb3a02920 (duration)
0:00:01.848513417 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:3514:gst_pad_query_default:<multiqueue0:src_0> forwarding 0xb3a02920 (duration) query
0:00:01.848554959 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:4300:gst_pad_peer_query:<multiqueue0:sink_0> peer query 0xb3a02920 (duration)
0:00:01.848581334 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<multiqueue0:sink_0> data is passed
0:00:01.848607459 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:3713:probe_hook_marshal:<multiqueue0:sink_0> probe returned OK
0:00:01.848640042 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:4173:gst_pad_query:<qtdemux0:video_0> doing query 0xb3a02920 (duration)
0:00:01.852807250 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<qtdemux0:video_0> data is passed
0:00:01.852884334 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:3514:gst_pad_query_default:<qtdemux0:video_0> forwarding 0xb3a02920 (duration) query
0:00:01.852916917 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:2968:gst_pad_iterate_internal_links_default:<qtdemux0:video_0> Making iterator
0:00:01.852963584 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:4300:gst_pad_peer_query:<qtdemux0:sink> peer query 0xb3a02920 (duration)
0:00:01.853001209 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:4173:gst_pad_query:<typefind:src> doing query 0xb3a02920 (duration)
0:00:01.853040459 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:3514:gst_pad_query_default:<typefind:src> forwarding 0xb3a02920 (duration) query
0:00:01.853067334 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:2968:gst_pad_iterate_internal_links_default:<typefind:src> Making iterator
0:00:01.853103667 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:4300:gst_pad_peer_query:<typefind:sink> peer query 0xb3a02920 (duration)
0:00:01.853137875 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:4173:gst_pad_query:<sink:proxypad0> doing query 0xb3a02920 (duration)
0:00:01.853171959 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:3514:gst_pad_query_default:<sink:proxypad0> forwarding 0xb3a02920 (duration) query
0:00:01.853213209 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:4300:gst_pad_peer_query:<decodebin0:sink> peer query 0xb3a02920 (duration)
0:00:01.853246084 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:4173:gst_pad_query:<filesrc0:src> doing query 0xb3a02920 (duration)
0:00:01.853342500 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:4173:gst_pad_query:<filesrc0:src> doing query 0xb4407920 (convert)
0:00:01.853390209 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:4196:gst_pad_query:<filesrc0:src> sent query 0xb4407920 (convert), result 0
0:00:01.853416209 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:4242:gst_pad_query:<filesrc0:src> query failed
0:00:01.853454709 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:4196:gst_pad_query:<filesrc0:src> sent query 0xb3a02920 (duration), result 0
0:00:01.853479917 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:4242:gst_pad_query:<filesrc0:src> query failed
0:00:01.853504667 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:4363:gst_pad_peer_query:<decodebin0:sink> query failed
0:00:01.853543625 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:4196:gst_pad_query:<sink:proxypad0> sent query 0xb3a02920 (duration), result 0
0:00:01.853569125 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:4242:gst_pad_query:<sink:proxypad0> query failed
0:00:01.853593750 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:4363:gst_pad_peer_query:<typefind:sink> query failed
0:00:01.853630709 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:4196:gst_pad_query:<typefind:src> sent query 0xb3a02920 (duration), result 0
0:00:01.857425375 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:4242:gst_pad_query:<typefind:src> query failed
0:00:01.857472959 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:4363:gst_pad_peer_query:<qtdemux0:sink> query failed
0:00:01.857536334 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:4196:gst_pad_query:<qtdemux0:video_0> sent query 0xb3a02920 (duration), result 1
0:00:01.857577417 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:3713:probe_hook_marshal:<multiqueue0:sink_0> probe returned OK
0:00:01.857617584 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:4196:gst_pad_query:<multiqueue0:src_0> sent query 0xb3a02920 (duration), result 1
0:00:01.858158250 1815 0xb5a27290 DEBUG GST_CAPS gstpad.c:2709:gst_pad_has_current_caps:<h264parse0:src> check current pad caps video/x-h264, stream-format=(string)avc, alignment=(string)au, level=(string)4.2, profile=(string)high, codec_data=(buffer)0164002affe1001b6764002aacc8501e0089f97011000003000100000300780f18319601000668e93864b22c, width=(int)1920, height=(int)1080, framerate=(fraction)60/1, pixel-aspect-ratio=(fraction)1/1, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8, parsed=(boolean)true
0:00:01.858306000 1815 0xb5a27290 DEBUG GST_CAPS gstpad.c:2737:gst_pad_get_current_caps:<h264parse0:src> get current pad caps video/x-h264, stream-format=(string)avc, alignment=(string)au, level=(string)4.2, profile=(string)high, codec_data=(buffer)0164002affe1001b6764002aacc8501e0089f97011000003000100000300780f18319601000668e93864b22c, width=(int)1920, height=(int)1080, framerate=(fraction)60/1, pixel-aspect-ratio=(fraction)1/1, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8, parsed=(boolean)true
0:00:01.858356209 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:4105:check_sticky:<h264parse0:src> pushing all sticky events
0:00:01.858393292 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:4034:push_sticky:<h264parse0:src> event stream-start was already received
0:00:01.858428667 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:4034:push_sticky:<h264parse0:src> event caps was already received
0:00:01.858531417 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:4105:check_sticky:<capsfilter0:src> pushing all sticky events
0:00:01.858574792 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:4034:push_sticky:<capsfilter0:src> event stream-start was already received
0:00:01.858607375 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:4034:push_sticky:<capsfilter0:src> event caps was already received
0:00:01.858663042 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<v4l2slh264dec0:sink> sent event, ret ok
0:00:01.858699959 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:4056:push_sticky:<capsfilter0:src> event segment marked received
0:00:01.858731250 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<capsfilter0:sink> sent event, ret ok
0:00:01.858766042 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:4056:push_sticky:<h264parse0:src> event segment marked received
0:00:01.858797792 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:4105:check_sticky:<h264parse0:src> pushing all sticky events
0:00:01.863152459 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:4034:push_sticky:<h264parse0:src> event stream-start was already received
0:00:01.863206042 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:4034:push_sticky:<h264parse0:src> event caps was already received
0:00:01.863236542 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:4034:push_sticky:<h264parse0:src> event segment was already received
0:00:01.863282584 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:4105:check_sticky:<capsfilter0:src> pushing all sticky events
0:00:01.863314709 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:4034:push_sticky:<capsfilter0:src> event stream-start was already received
0:00:01.863347667 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:4034:push_sticky:<capsfilter0:src> event caps was already received
0:00:01.863378250 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:4034:push_sticky:<capsfilter0:src> event segment was already received
0:00:01.863477875 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<v4l2slh264dec0:sink> sent event, ret ok
0:00:01.863516625 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:4056:push_sticky:<capsfilter0:src> event tag marked received
0:00:01.863546917 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<capsfilter0:sink> sent event, ret ok
0:00:01.863578875 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:4056:push_sticky:<h264parse0:src> event tag marked received
0:00:01.863609834 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:4105:check_sticky:<h264parse0:src> pushing all sticky events
0:00:01.863639250 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:4034:push_sticky:<h264parse0:src> event stream-start was already received
0:00:01.863669042 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:4034:push_sticky:<h264parse0:src> event caps was already received
0:00:01.863697792 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:4034:push_sticky:<h264parse0:src> event segment was already received
0:00:01.863725375 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:4034:push_sticky:<h264parse0:src> event tag was already received
0:00:01.863757542 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:4105:check_sticky:<capsfilter0:src> pushing all sticky events
0:00:01.863786917 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:4034:push_sticky:<capsfilter0:src> event stream-start was already received
0:00:01.863815000 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:4034:push_sticky:<capsfilter0:src> event caps was already received
0:00:01.863842875 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:4034:push_sticky:<capsfilter0:src> event segment was already received
0:00:01.863871375 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:4034:push_sticky:<capsfilter0:src> event tag was already received
0:00:01.863909292 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<v4l2slh264dec0:sink> sent event, ret ok
0:00:01.868576334 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:4056:push_sticky:<capsfilter0:src> event tag marked received
0:00:01.868623459 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<capsfilter0:sink> sent event, ret ok
0:00:01.868658834 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:4056:push_sticky:<h264parse0:src> event tag marked received
0:00:01.868824834 1815 0xb5a27290 DEBUG GST_CAPS gstpad.c:2737:gst_pad_get_current_caps:<h264parse0:src> get current pad caps video/x-h264, stream-format=(string)avc, alignment=(string)au, level=(string)4.2, profile=(string)high, codec_data=(buffer)0164002affe1001b6764002aacc8501e0089f97011000003000100000300780f18319601000668e93864b22c, width=(int)1920, height=(int)1080, framerate=(fraction)60/1, pixel-aspect-ratio=(fraction)1/1, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8, parsed=(boolean)true
0:00:01.869199875 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:4105:check_sticky:<h264parse0:src> pushing all sticky events
0:00:01.869248709 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:4034:push_sticky:<h264parse0:src> event stream-start was already received
0:00:01.869282584 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:4034:push_sticky:<h264parse0:src> event caps was already received
0:00:01.869314834 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:4034:push_sticky:<h264parse0:src> event segment was already received
0:00:01.869361667 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:4105:check_sticky:<capsfilter0:src> pushing all sticky events
0:00:01.869396459 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:4034:push_sticky:<capsfilter0:src> event stream-start was already received
0:00:01.869428125 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:4034:push_sticky:<capsfilter0:src> event caps was already received
0:00:01.869456709 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:4034:push_sticky:<capsfilter0:src> event segment was already received
0:00:01.869532584 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<v4l2slh264dec0:sink> sent event, ret ok
0:00:01.869571709 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:4056:push_sticky:<capsfilter0:src> event tag marked received
0:00:01.869603125 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:4034:push_sticky:<capsfilter0:src> event tag was already received
0:00:01.869633375 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<capsfilter0:sink> sent event, ret ok
0:00:01.869671959 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:4056:push_sticky:<h264parse0:src> event tag marked received
0:00:01.869701459 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:4034:push_sticky:<h264parse0:src> event tag was already received
0:00:01.872413792 1815 0x1c89170 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<qtdemux0:video_0> data is passed
0:00:01.872496042 1815 0x1c89170 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<multiqueue0:sink_0> data is passed
0:00:01.872559375 1815 0xb5a27290 DEBUG GST_CAPS gstpad.c:2709:gst_pad_has_current_caps:<h264parse0:src> check current pad caps video/x-h264, stream-format=(string)avc, alignment=(string)au, level=(string)4.2, profile=(string)high, codec_data=(buffer)0164002affe1001b6764002aacc8501e0089f97011000003000100000300780f18319601000668e93864b22c, width=(int)1920, height=(int)1080, framerate=(fraction)60/1, pixel-aspect-ratio=(fraction)1/1, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8, parsed=(boolean)true
0:00:01.874080917 1815 0xb5a27290 DEBUG GST_CAPS gstpad.c:2709:gst_pad_has_current_caps:<h264parse0:src> check current pad caps video/x-h264, stream-format=(string)avc, alignment=(string)au, level=(string)4.2, profile=(string)high, codec_data=(buffer)0164002affe1001b6764002aacc8501e0089f97011000003000100000300780f18319601000668e93864b22c, width=(int)1920, height=(int)1080, framerate=(fraction)60/1, pixel-aspect-ratio=(fraction)1/1, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8, parsed=(boolean)true
0:00:01.889295000 1815 0x1c89170 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<qtdemux0:video_0> data is passed
0:00:01.889286959 1815 0xb5a27290 DEBUG GST_CAPS gstpad.c:2709:gst_pad_has_current_caps:<h264parse0:src> check current pad caps video/x-h264, stream-format=(string)avc, alignment=(string)au, level=(string)4.2, profile=(string)high, codec_data=(buffer)0164002affe1001b6764002aacc8501e0089f97011000003000100000300780f18319601000668e93864b22c, width=(int)1920, height=(int)1080, framerate=(fraction)60/1, pixel-aspect-ratio=(fraction)1/1, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8, parsed=(boolean)true
0:00:01.889450792 1815 0x1c89170 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<multiqueue0:sink_0> data is passed
0:00:01.889630875 1815 0xb5a27290 DEBUG GST_CAPS gstpad.c:2709:gst_pad_has_current_caps:<h264parse0:src> check current pad caps video/x-h264, stream-format=(string)avc, alignment=(string)au, level=(string)4.2, profile=(string)high, codec_data=(buffer)0164002affe1001b6764002aacc8501e0089f97011000003000100000300780f18319601000668e93864b22c, width=(int)1920, height=(int)1080, framerate=(fraction)60/1, pixel-aspect-ratio=(fraction)1/1, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8, parsed=(boolean)true
0:00:01.897556584 1815 0x1c89170 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<qtdemux0:video_0> data is passed
0:00:01.897654875 1815 0x1c89170 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<multiqueue0:sink_0> data is passed
0:00:01.897694334 1815 0xb5a27290 DEBUG GST_CAPS gstpad.c:2709:gst_pad_has_current_caps:<h264parse0:src> check current pad caps video/x-h264, stream-format=(string)avc, alignment=(string)au, level=(string)4.2, profile=(string)high, codec_data=(buffer)0164002affe1001b6764002aacc8501e0089f97011000003000100000300780f18319601000668e93864b22c, width=(int)1920, height=(int)1080, framerate=(fraction)60/1, pixel-aspect-ratio=(fraction)1/1, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8, parsed=(boolean)true
0:00:01.897927542 1815 0xb5a27290 DEBUG GST_CAPS gstpad.c:2709:gst_pad_has_current_caps:<h264parse0:src> check current pad caps video/x-h264, stream-format=(string)avc, alignment=(string)au, level=(string)4.2, profile=(string)high, codec_data=(buffer)0164002affe1001b6764002aacc8501e0089f97011000003000100000300780f18319601000668e93864b22c, width=(int)1920, height=(int)1080, framerate=(fraction)60/1, pixel-aspect-ratio=(fraction)1/1, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8, parsed=(boolean)true
0:00:01.910879584 1815 0xb5a27290 DEBUG GST_CAPS gstpad.c:2709:gst_pad_has_current_caps:<h264parse0:src> check current pad caps video/x-h264, stream-format=(string)avc, alignment=(string)au, level=(string)4.2, profile=(string)high, codec_data=(buffer)0164002affe1001b6764002aacc8501e0089f97011000003000100000300780f18319601000668e93864b22c, width=(int)1920, height=(int)1080, framerate=(fraction)60/1, pixel-aspect-ratio=(fraction)1/1, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8, parsed=(boolean)true
0:00:01.910711834 1815 0x1c89170 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<qtdemux0:video_0> data is passed
0:00:01.911014709 1815 0x1c89170 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<multiqueue0:sink_0> data is passed
0:00:01.911155084 1815 0xb5a27290 DEBUG GST_CAPS gstpad.c:2709:gst_pad_has_current_caps:<h264parse0:src> check current pad caps video/x-h264, stream-format=(string)avc, alignment=(string)au, level=(string)4.2, profile=(string)high, codec_data=(buffer)0164002affe1001b6764002aacc8501e0089f97011000003000100000300780f18319601000668e93864b22c, width=(int)1920, height=(int)1080, framerate=(fraction)60/1, pixel-aspect-ratio=(fraction)1/1, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8, parsed=(boolean)true
0:00:01.922186209 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:1678:gst_pad_check_reconfigure:<v4l2slh264dec0:src> remove RECONFIGURE flag
0:00:01.922322500 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:4105:check_sticky:<v4l2slh264dec0:src> pushing all sticky events
0:00:01.922389959 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:4034:push_sticky:<v4l2slh264dec0:src> event stream-start was already received
0:00:01.922433542 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:4034:push_sticky:<v4l2slh264dec0:src> event caps was already received
0:00:01.922617209 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:4105:check_sticky:<decodebin0:src_0> pushing all sticky events
0:00:01.922670792 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<decodebin0:src_0> data is passed
0:00:01.922708959 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:3713:probe_hook_marshal:<decodebin0:src_0> probe returned OK
0:00:01.923145292 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<kmssink0:sink> sent event, ret ok
0:00:01.923266125 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:4056:push_sticky:<decodebin0:src_0> event stream-start marked received
0:00:01.923322084 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<decodebin0:src_0> data is passed
0:00:01.923356584 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:3713:probe_hook_marshal:<decodebin0:src_0> probe returned OK
0:00:01.923547125 1815 0xb5a27290 DEBUG GST_CAPS gstutils.c:3185:gst_pad_query_accept_caps:<kmssink0:sink> accept caps of video/x-raw, format=(string)NV12_32L32, width=(int)1920, height=(int)1080, interlace-mode=(string)progressive, multiview-mode=(string)mono, multiview-flags=(GstVideoMultiviewFlagsSet)0:ffffffff:/right-view-first/left-flipped/left-flopped/right-flipped/right-flopped/half-aspect/mixed-mono, pixel-aspect-ratio=(fraction)1/1, framerate=(fraction)60/1
0:00:01.923647709 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:4173:gst_pad_query:<kmssink0:sink> doing query 0xb3a02890 (accept-caps)
0:00:01.923814334 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:4196:gst_pad_query:<kmssink0:sink> sent query 0xb3a02890 (accept-caps), result 1
0:00:01.924014667 1815 0xb5a27290 WARN GST_CAPS gstpad.c:5757:pre_eventfunc_check:<kmssink0:sink> caps video/x-raw, format=(string)NV12_32L32, width=(int)1920, height=(int)1080, interlace-mode=(string)progressive, multiview-mode=(string)mono, multiview-flags=(GstVideoMultiviewFlagsSet)0:ffffffff:/right-view-first/left-flipped/left-flopped/right-flipped/right-flopped/half-aspect/mixed-mono, pixel-aspect-ratio=(fraction)1/1, framerate=(fraction)60/1 not accepted
0:00:01.924063542 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:6013:gst_pad_send_event_unchecked:<kmssink0:sink> pre event check failed
0:00:01.924114459 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:4083:push_sticky:<decodebin0:src_0> result not-negotiated, mark pending events
0:00:01.924245584 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<src_0:proxypad2> sent event, ret ok
0:00:01.924320917 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:4056:push_sticky:<v4l2slh264dec0:src> event segment marked received
0:00:01.924422584 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:4105:check_sticky:<v4l2slh264dec0:src> pushing all sticky events
0:00:01.924473667 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:4034:push_sticky:<v4l2slh264dec0:src> event stream-start was already received
0:00:01.924513917 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:4034:push_sticky:<v4l2slh264dec0:src> event caps was already received
0:00:01.924571250 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:4034:push_sticky:<v4l2slh264dec0:src> event segment was already received
0:00:01.924644917 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:4105:check_sticky:<decodebin0:src_0> pushing all sticky events
0:00:01.924715250 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:4034:push_sticky:<decodebin0:src_0> event stream-start was already received
0:00:01.924757667 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<decodebin0:src_0> data is passed
0:00:01.924790167 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:3713:probe_hook_marshal:<decodebin0:src_0> probe returned OK
0:00:01.924915959 1815 0xb5a27290 DEBUG GST_CAPS gstutils.c:3185:gst_pad_query_accept_caps:<kmssink0:sink> accept caps of video/x-raw, format=(string)NV12_32L32, width=(int)1920, height=(int)1080, interlace-mode=(string)progressive, multiview-mode=(string)mono, multiview-flags=(GstVideoMultiviewFlagsSet)0:ffffffff:/right-view-first/left-flipped/left-flopped/right-flipped/right-flopped/half-aspect/mixed-mono, pixel-aspect-ratio=(fraction)1/1, framerate=(fraction)60/1
0:00:01.924998375 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:4173:gst_pad_query:<kmssink0:sink> doing query 0xb3a02980 (accept-caps)
0:00:01.925125542 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:4196:gst_pad_query:<kmssink0:sink> sent query 0xb3a02980 (accept-caps), result 1
0:00:01.925233500 1815 0xb5a27290 WARN GST_CAPS gstpad.c:5757:pre_eventfunc_check:<kmssink0:sink> caps video/x-raw, format=(string)NV12_32L32, width=(int)1920, height=(int)1080, interlace-mode=(string)progressive, multiview-mode=(string)mono, multiview-flags=(GstVideoMultiviewFlagsSet)0:ffffffff:/right-view-first/left-flipped/left-flopped/right-flipped/right-flopped/half-aspect/mixed-mono, pixel-aspect-ratio=(fraction)1/1, framerate=(fraction)60/1 not accepted
0:00:01.925266584 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:6013:gst_pad_send_event_unchecked:<kmssink0:sink> pre event check failed
0:00:01.925307709 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:4083:push_sticky:<decodebin0:src_0> result not-negotiated, mark pending events
0:00:01.925352834 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<src_0:proxypad2> sent event, ret ok
0:00:01.925391375 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:4056:push_sticky:<v4l2slh264dec0:src> event tag marked received
0:00:01.925429375 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:4105:check_sticky:<v4l2slh264dec0:src> pushing all sticky events
0:00:01.925460084 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:4034:push_sticky:<v4l2slh264dec0:src> event stream-start was already received
0:00:01.925490959 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:4034:push_sticky:<v4l2slh264dec0:src> event caps was already received
0:00:01.925520584 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:4034:push_sticky:<v4l2slh264dec0:src> event segment was already received
0:00:01.925551792 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:4034:push_sticky:<v4l2slh264dec0:src> event tag was already received
0:00:01.925599084 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:4105:check_sticky:<decodebin0:src_0> pushing all sticky events
0:00:01.925631334 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:4034:push_sticky:<decodebin0:src_0> event stream-start was already received
0:00:01.925661167 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<decodebin0:src_0> data is passed
0:00:01.925693667 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:3713:probe_hook_marshal:<decodebin0:src_0> probe returned OK
0:00:01.925795584 1815 0xb5a27290 DEBUG GST_CAPS gstutils.c:3185:gst_pad_query_accept_caps:<kmssink0:sink> accept caps of video/x-raw, format=(string)NV12_32L32, width=(int)1920, height=(int)1080, interlace-mode=(string)progressive, multiview-mode=(string)mono, multiview-flags=(GstVideoMultiviewFlagsSet)0:ffffffff:/right-view-first/left-flipped/left-flopped/right-flipped/right-flopped/half-aspect/mixed-mono, pixel-aspect-ratio=(fraction)1/1, framerate=(fraction)60/1
0:00:01.925854917 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:4173:gst_pad_query:<kmssink0:sink> doing query 0xb3a02c30 (accept-caps)
0:00:01.925954542 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:4196:gst_pad_query:<kmssink0:sink> sent query 0xb3a02c30 (accept-caps), result 1
0:00:01.926098584 1815 0xb5a27290 WARN GST_CAPS gstpad.c:5757:pre_eventfunc_check:<kmssink0:sink> caps video/x-raw, format=(string)NV12_32L32, width=(int)1920, height=(int)1080, interlace-mode=(string)progressive, multiview-mode=(string)mono, multiview-flags=(GstVideoMultiviewFlagsSet)0:ffffffff:/right-view-first/left-flipped/left-flopped/right-flipped/right-flopped/half-aspect/mixed-mono, pixel-aspect-ratio=(fraction)1/1, framerate=(fraction)60/1 not accepted
0:00:01.926134084 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:6013:gst_pad_send_event_unchecked:<kmssink0:sink> pre event check failed
0:00:01.926176625 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:4083:push_sticky:<decodebin0:src_0> result not-negotiated, mark pending events
0:00:01.926216084 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<src_0:proxypad2> sent event, ret ok
0:00:01.926251959 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:4056:push_sticky:<v4l2slh264dec0:src> event tag marked received
0:00:01.926283750 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:4105:check_sticky:<v4l2slh264dec0:src> pushing all sticky events
0:00:01.926312167 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:4034:push_sticky:<v4l2slh264dec0:src> event stream-start was already received
0:00:01.926341250 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:4034:push_sticky:<v4l2slh264dec0:src> event caps was already received
0:00:01.926371167 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:4034:push_sticky:<v4l2slh264dec0:src> event segment was already received
0:00:01.926414459 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:4105:check_sticky:<decodebin0:src_0> pushing all sticky events
0:00:01.926446417 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:4034:push_sticky:<decodebin0:src_0> event stream-start was already received
0:00:01.926475167 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<decodebin0:src_0> data is passed
0:00:01.926546417 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:3713:probe_hook_marshal:<decodebin0:src_0> probe returned OK
0:00:01.926702667 1815 0xb5a27290 DEBUG GST_CAPS gstutils.c:3185:gst_pad_query_accept_caps:<kmssink0:sink> accept caps of video/x-raw, format=(string)NV12_32L32, width=(int)1920, height=(int)1080, interlace-mode=(string)progressive, multiview-mode=(string)mono, multiview-flags=(GstVideoMultiviewFlagsSet)0:ffffffff:/right-view-first/left-flipped/left-flopped/right-flipped/right-flopped/half-aspect/mixed-mono, pixel-aspect-ratio=(fraction)1/1, framerate=(fraction)60/1
0:00:01.926753209 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:4173:gst_pad_query:<kmssink0:sink> doing query 0xb3a02d20 (accept-caps)
0:00:01.926845000 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:4196:gst_pad_query:<kmssink0:sink> sent query 0xb3a02d20 (accept-caps), result 1
0:00:01.926947917 1815 0xb5a27290 WARN GST_CAPS gstpad.c:5757:pre_eventfunc_check:<kmssink0:sink> caps video/x-raw, format=(string)NV12_32L32, width=(int)1920, height=(int)1080, interlace-mode=(string)progressive, multiview-mode=(string)mono, multiview-flags=(GstVideoMultiviewFlagsSet)0:ffffffff:/right-view-first/left-flipped/left-flopped/right-flipped/right-flopped/half-aspect/mixed-mono, pixel-aspect-ratio=(fraction)1/1, framerate=(fraction)60/1 not accepted
0:00:01.926983584 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:6013:gst_pad_send_event_unchecked:<kmssink0:sink> pre event check failed
0:00:01.927034042 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:4083:push_sticky:<decodebin0:src_0> result not-negotiated, mark pending events
0:00:01.927086000 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<src_0:proxypad2> sent event, ret ok
0:00:01.927145125 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:4056:push_sticky:<v4l2slh264dec0:src> event tag marked received
0:00:01.927182209 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:4034:push_sticky:<v4l2slh264dec0:src> event tag was already received
0:00:01.927525084 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:4105:check_sticky:<decodebin0:src_0> pushing all sticky events
0:00:01.927574042 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:4034:push_sticky:<decodebin0:src_0> event stream-start was already received
0:00:01.927614792 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<decodebin0:src_0> data is passed
0:00:01.927649917 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:3713:probe_hook_marshal:<decodebin0:src_0> probe returned OK
0:00:01.927788750 1815 0xb5a27290 DEBUG GST_CAPS gstutils.c:3185:gst_pad_query_accept_caps:<kmssink0:sink> accept caps of video/x-raw, format=(string)NV12_32L32, width=(int)1920, height=(int)1080, interlace-mode=(string)progressive, multiview-mode=(string)mono, multiview-flags=(GstVideoMultiviewFlagsSet)0:ffffffff:/right-view-first/left-flipped/left-flopped/right-flipped/right-flopped/half-aspect/mixed-mono, pixel-aspect-ratio=(fraction)1/1, framerate=(fraction)60/1
0:00:01.927851042 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:4173:gst_pad_query:<kmssink0:sink> doing query 0xb3a02800 (accept-caps)
0:00:01.927974000 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:4196:gst_pad_query:<kmssink0:sink> sent query 0xb3a02800 (accept-caps), result 1
0:00:01.928091459 1815 0xb5a27290 WARN GST_CAPS gstpad.c:5757:pre_eventfunc_check:<kmssink0:sink> caps video/x-raw, format=(string)NV12_32L32, width=(int)1920, height=(int)1080, interlace-mode=(string)progressive, multiview-mode=(string)mono, multiview-flags=(GstVideoMultiviewFlagsSet)0:ffffffff:/right-view-first/left-flipped/left-flopped/right-flipped/right-flopped/half-aspect/mixed-mono, pixel-aspect-ratio=(fraction)1/1, framerate=(fraction)60/1 not accepted
0:00:01.928135667 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:6013:gst_pad_send_event_unchecked:<kmssink0:sink> pre event check failed
0:00:01.928181209 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:4083:push_sticky:<decodebin0:src_0> result not-negotiated, mark pending events
0:00:01.928454875 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:6338:gst_pad_pause_task:<multiqueue0:src_0> pause task
0:00:01.928454917 1815 0x1c89170 DEBUG GST_PADS gstpad.c:6338:gst_pad_pause_task:<qtdemux0:sink> pause task
0:00:01.928567625 1815 0x1c89170 WARN qtdemux qtdemux.c:6749:gst_qtdemux_loop:<qtdemux0> error: Internal data stream error.
0:00:01.928602750 1815 0x1c89170 WARN qtdemux qtdemux.c:6749:gst_qtdemux_loop:<qtdemux0> error: streaming stopped, reason not-negotiated (-4)
0:00:01.930107375 1815 0x1c89170 DEBUG GST_PADS gstghostpad.c:783:gst_ghost_pad_get_target:<decodebin0:sink> get target typefind:sink
0:00:01.930542584 1815 0x1c89170 DEBUG GST_PADS gstghostpad.c:783:gst_ghost_pad_get_target:<decodebin0:src_0> get target v4l2slh264dec0:src
0:00:01.931163584 1815 0x1c89170 DEBUG GST_CAPS gstpad.c:2737:gst_pad_get_current_caps:<v4l2slh264dec0:src> get current pad caps video/x-raw, format=(string)NV12_32L32, width=(int)1920, height=(int)1080, interlace-mode=(string)progressive, multiview-mode=(string)mono, multiview-flags=(GstVideoMultiviewFlagsSet)0:ffffffff:/right-view-first/left-flipped/left-flopped/right-flipped/right-flopped/half-aspect/mixed-mono, pixel-aspect-ratio=(fraction)1/1, framerate=(fraction)60/1
0:00:01.931269959 1815 0x1c89170 DEBUG GST_CAPS gstpad.c:2737:gst_pad_get_current_caps:<src_0:proxypad2> get current pad caps video/x-raw, format=(string)NV12_32L32, width=(int)1920, height=(int)1080, interlace-mode=(string)progressive, multiview-mode=(string)mono, multiview-flags=(GstVideoMultiviewFlagsSet)0:ffffffff:/right-view-first/left-flipped/left-flopped/right-flipped/right-flopped/half-aspect/mixed-mono, pixel-aspect-ratio=(fraction)1/1, framerate=(fraction)60/1
0:00:01.932120959 1815 0x1c89170 DEBUG GST_CAPS gstpad.c:2737:gst_pad_get_current_caps:<capsfilter0:src> get current pad caps video/x-h264, stream-format=(string)avc, alignment=(string)au, level=(string)4.2, profile=(string)high, codec_data=(buffer)0164002affe1001b6764002aacc8501e0089f97011000003000100000300780f18319601000668e93864b22c, width=(int)1920, height=(int)1080, framerate=(fraction)60/1, pixel-aspect-ratio=(fraction)1/1, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8, parsed=(boolean)true
0:00:01.932248792 1815 0x1c89170 DEBUG GST_CAPS gstpad.c:2737:gst_pad_get_current_caps:<v4l2slh264dec0:sink> get current pad caps video/x-h264, stream-format=(string)avc, alignment=(string)au, level=(string)4.2, profile=(string)high, codec_data=(buffer)0164002affe1001b6764002aacc8501e0089f97011000003000100000300780f18319601000668e93864b22c, width=(int)1920, height=(int)1080, framerate=(fraction)60/1, pixel-aspect-ratio=(fraction)1/1, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8, parsed=(boolean)true
0:00:01.932806750 1815 0x1c89170 DEBUG GST_CAPS gstpad.c:2737:gst_pad_get_current_caps:<h264parse0:src> get current pad caps video/x-h264, stream-format=(string)avc, alignment=(string)au, level=(string)4.2, profile=(string)high, codec_data=(buffer)0164002affe1001b6764002aacc8501e0089f97011000003000100000300780f18319601000668e93864b22c, width=(int)1920, height=(int)1080, framerate=(fraction)60/1, pixel-aspect-ratio=(fraction)1/1, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8, parsed=(boolean)true
0:00:01.933042709 1815 0x1c89170 DEBUG GST_CAPS gstpad.c:2737:gst_pad_get_current_caps:<capsfilter0:sink> get current pad caps video/x-h264, stream-format=(string)avc, alignment=(string)au, level=(string)4.2, profile=(string)high, codec_data=(buffer)0164002affe1001b6764002aacc8501e0089f97011000003000100000300780f18319601000668e93864b22c, width=(int)1920, height=(int)1080, framerate=(fraction)60/1, pixel-aspect-ratio=(fraction)1/1, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8, parsed=(boolean)true
0:00:01.933843292 1815 0x1c89170 DEBUG GST_CAPS gstpad.c:2737:gst_pad_get_current_caps:<multiqueue0:src_0> get current pad caps video/x-h264, stream-format=(string)avc, alignment=(string)au, level=(string)4.2, profile=(string)high, codec_data=(buffer)0164002affe1001b6764002aacc8501e0089f97011000003000100000300780f18319601000668e93864b22cfdf8f800, width=(int)1920, height=(int)1080, framerate=(fraction)60/1, pixel-aspect-ratio=(fraction)1/1
0:00:01.933963042 1815 0x1c89170 DEBUG GST_CAPS gstpad.c:2737:gst_pad_get_current_caps:<h264parse0:sink> get current pad caps video/x-h264, stream-format=(string)avc, alignment=(string)au, level=(string)4.2, profile=(string)high, codec_data=(buffer)0164002affe1001b6764002aacc8501e0089f97011000003000100000300780f18319601000668e93864b22cfdf8f800, width=(int)1920, height=(int)1080, framerate=(fraction)60/1, pixel-aspect-ratio=(fraction)1/1
0:00:01.934618209 1815 0x1c89170 DEBUG GST_CAPS gstpad.c:2737:gst_pad_get_current_caps:<qtdemux0:video_0> get current pad caps video/x-h264, stream-format=(string)avc, alignment=(string)au, level=(string)4.2, profile=(string)high, codec_data=(buffer)0164002affe1001b6764002aacc8501e0089f97011000003000100000300780f18319601000668e93864b22cfdf8f800, width=(int)1920, height=(int)1080, framerate=(fraction)60/1, pixel-aspect-ratio=(fraction)1/1
0:00:01.934871250 1815 0x1c89170 DEBUG GST_CAPS gstpad.c:2737:gst_pad_get_current_caps:<multiqueue0:sink_0> get current pad caps video/x-h264, stream-format=(string)avc, alignment=(string)au, level=(string)4.2, profile=(string)high, codec_data=(buffer)0164002affe1001b6764002aacc8501e0089f97011000003000100000300780f18319601000668e93864b22cfdf8f800, width=(int)1920, height=(int)1080, framerate=(fraction)60/1, pixel-aspect-ratio=(fraction)1/1
0:00:01.935350500 1815 0x1c89170 DEBUG GST_CAPS gstpad.c:2737:gst_pad_get_current_caps:<sink:proxypad0> get current pad caps (NULL)
0:00:01.935387000 1815 0x1c89170 DEBUG GST_CAPS gstpad.c:2737:gst_pad_get_current_caps:<typefind:sink> get current pad caps (NULL)
0:00:01.935443167 1815 0x1c89170 DEBUG GST_CAPS gstpad.c:2737:gst_pad_get_current_caps:<typefind:src> get current pad caps (NULL)
0:00:01.935473000 1815 0x1c89170 DEBUG GST_CAPS gstpad.c:2737:gst_pad_get_current_caps:<qtdemux0:sink> get current pad caps (NULL)
0:00:01.935620750 1815 0x1c89170 DEBUG GST_CAPS gstpad.c:2737:gst_pad_get_current_caps:<decodebin0:src_0> get current pad caps video/x-raw, format=(string)NV12_32L32, width=(int)1920, height=(int)1080, interlace-mode=(string)progressive, multiview-mode=(string)mono, multiview-flags=(GstVideoMultiviewFlagsSet)0:ffffffff:/right-view-first/left-flipped/left-flopped/right-flipped/right-flopped/half-aspect/mixed-mono, pixel-aspect-ratio=(fraction)1/1, framerate=(fraction)60/1
0:00:01.935660459 1815 0x1c89170 DEBUG GST_CAPS gstpad.c:2737:gst_pad_get_current_caps:<kmssink0:sink> get current pad caps (NULL)
0:00:01.936274375 1815 0x1c89170 DEBUG GST_CAPS gstpad.c:2737:gst_pad_get_current_caps:<filesrc0:src> get current pad caps (NULL)
0:00:01.936319167 1815 0x1c89170 DEBUG GST_CAPS gstpad.c:2737:gst_pad_get_current_caps:<decodebin0:sink> get current pad caps (NULL)
ERROR: from element /GstPipeline:pipeline0/GstDecodeBin:decodebin0/GstQTDemux:qtdemux0: Internal data stream error.
Additional debug info:
../gst/isomp4/qtdemux.c(6749): gst_qtdemux_loop (): /GstPipeline:pipeline0/GstDecodeBin:decodebin0/GstQTDemux:qtdemux0:
streaming stopped, reason not-negotiated (-4)
ERROR: pipeline doesn't want to preroll.
Setting pipeline to NULL ...
0:00:01.936956459 1815 0x1c89170 DEBUG GST_PADS gstpad.c:4105:check_sticky:<qtdemux0:video_0> pushing all sticky events
0:00:01.937005250 1815 0x1c89170 DEBUG GST_PADS gstpad.c:4034:push_sticky:<qtdemux0:video_0> event stream-start was already received
0:00:01.937039084 1815 0x1c89170 DEBUG GST_PADS gstpad.c:4034:push_sticky:<qtdemux0:video_0> event caps was already received
0:00:01.937057459 1815 0x1b6a280 DEBUG GST_ELEMENT_PADS gstelement.c:3227:gst_element_pads_activate:<kmssink0> deactivate pads
0:00:01.937078834 1815 0x1c89170 DEBUG GST_PADS gstpad.c:4034:push_sticky:<qtdemux0:video_0> event segment was already received
0:00:01.937105584 1815 0x1b6a280 DEBUG GST_PADS gstpad.c:1112:gst_pad_set_active:<kmssink0:sink> deactivating pad from push mode
0:00:01.937111167 1815 0x1c89170 DEBUG GST_PADS gstpad.c:4034:push_sticky:<qtdemux0:video_0> event tag was already received
0:00:01.937135834 1815 0x1b6a280 DEBUG GST_PADS gstpad.c:983:pre_activate:<kmssink0:sink> setting PAD_MODE NONE, set flushing
0:00:01.937147667 1815 0x1c89170 DEBUG GST_PADS gstpad.c:4034:push_sticky:<qtdemux0:video_0> event tag was already received
0:00:01.937169834 1815 0x1b6a280 DEBUG GST_PADS gstpad.c:1046:post_activate:<kmssink0:sink> stopped streaming
0:00:01.937180959 1815 0x1c89170 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<qtdemux0:video_0> data is passed
0:00:01.937207417 1815 0x1b6a280 DEBUG GST_PADS gstpad.c:1226:activate_mode_internal:<kmssink0:sink> deactivated in push mode
0:00:01.937216917 1815 0x1c89170 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<multiqueue0:sink_0> data is passed
0:00:01.937262917 1815 0x1b6a280 DEBUG GST_ELEMENT_PADS gstelement.c:3246:gst_element_pads_activate:<kmssink0> pad deactivation successful
0:00:01.937302542 1815 0x1c89170 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<multiqueue0:sink_0> sent event, ret not-negotiated
0:00:01.937338917 1815 0x1c89170 DEBUG GST_PADS gstpad.c:4083:push_sticky:<qtdemux0:video_0> result not-negotiated, mark pending events
0:00:01.937353917 1815 0x1b6a280 DEBUG GST_ELEMENT_PADS gstelement.c:3227:gst_element_pads_activate:<kmssink0> deactivate pads
0:00:01.937392875 1815 0x1b6a280 DEBUG GST_PADS gstpad.c:1109:gst_pad_set_active:<kmssink0:sink> pad was inactive
0:00:01.937427042 1815 0x1b6a280 DEBUG GST_ELEMENT_PADS gstelement.c:3246:gst_element_pads_activate:<kmssink0> pad deactivation successful
0:00:01.944756209 1815 0x1b6a280 DEBUG GST_PADS gstpad.c:1112:gst_pad_set_active:<decodebin0:src_0> deactivating pad from push mode
0:00:01.944810667 1815 0x1b6a280 DEBUG GST_PADS gstpad.c:983:pre_activate:<decodebin0:src_0> setting PAD_MODE NONE, set flushing
0:00:01.944846667 1815 0x1b6a280 DEBUG GST_PADS gstpad.c:983:pre_activate:<src_0:proxypad2> setting PAD_MODE NONE, set flushing
0:00:01.944886042 1815 0x1b6a280 DEBUG GST_PADS gstpad.c:1330:gst_pad_activate_mode:<decodebin0:src_0> already deactivated in push mode
0:00:01.944913625 1815 0x1b6a280 DEBUG GST_PADS gstpad.c:1046:post_activate:<src_0:proxypad2> stopped streaming
0:00:01.944942959 1815 0x1b6a280 DEBUG GST_PADS gstpad.c:458:remove_events:<src_0:proxypad2> notify caps
0:00:01.944993000 1815 0x1b6a280 DEBUG GST_PADS gstpad.c:1226:activate_mode_internal:<src_0:proxypad2> deactivated in push mode
0:00:01.945022500 1815 0x1b6a280 DEBUG GST_PADS gstpad.c:1046:post_activate:<decodebin0:src_0> stopped streaming
0:00:01.945048750 1815 0x1b6a280 DEBUG GST_PADS gstpad.c:458:remove_events:<decodebin0:src_0> notify caps
0:00:01.945090750 1815 0x1b6a280 DEBUG GST_PADS gstpad.c:1226:activate_mode_internal:<decodebin0:src_0> deactivated in push mode
0:00:01.945201667 1815 0x1b6a280 DEBUG GST_ELEMENT_PADS gstelement.c:3227:gst_element_pads_activate:<v4l2slh264dec0> deactivate pads
0:00:01.945241834 1815 0x1b6a280 DEBUG GST_PADS gstpad.c:1112:gst_pad_set_active:<v4l2slh264dec0:src> deactivating pad from push mode
0:00:01.945268084 1815 0x1b6a280 DEBUG GST_PADS gstpad.c:983:pre_activate:<v4l2slh264dec0:src> setting PAD_MODE NONE, set flushing
0:00:01.945294625 1815 0x1b6a280 DEBUG GST_PADS gstpad.c:1046:post_activate:<v4l2slh264dec0:src> stopped streaming
0:00:01.945335709 1815 0x1b6a280 DEBUG GST_PADS gstpad.c:458:remove_events:<v4l2slh264dec0:src> notify caps
0:00:01.945381417 1815 0x1b6a280 DEBUG GST_PADS gstpad.c:1226:activate_mode_internal:<v4l2slh264dec0:src> deactivated in push mode
0:00:01.945418292 1815 0x1b6a280 DEBUG GST_PADS gstpad.c:1112:gst_pad_set_active:<v4l2slh264dec0:sink> deactivating pad from push mode
0:00:01.945444834 1815 0x1b6a280 DEBUG GST_PADS gstpad.c:983:pre_activate:<v4l2slh264dec0:sink> setting PAD_MODE NONE, set flushing
0:00:01.945470917 1815 0x1b6a280 DEBUG GST_PADS gstpad.c:1046:post_activate:<v4l2slh264dec0:sink> stopped streaming
0:00:01.945494709 1815 0x1b6a280 DEBUG GST_PADS gstpad.c:458:remove_events:<v4l2slh264dec0:sink> notify caps
0:00:01.945535584 1815 0x1b6a280 DEBUG GST_PADS gstpad.c:1226:activate_mode_internal:<v4l2slh264dec0:sink> deactivated in push mode
0:00:01.945567500 1815 0x1b6a280 DEBUG GST_ELEMENT_PADS gstelement.c:3246:gst_element_pads_activate:<v4l2slh264dec0> pad deactivation successful
0:00:01.948371667 1815 0x1b6a280 DEBUG GST_ELEMENT_PADS gstelement.c:3227:gst_element_pads_activate:<capsfilter0> deactivate pads
0:00:01.948446209 1815 0x1b6a280 DEBUG GST_PADS gstpad.c:1112:gst_pad_set_active:<capsfilter0:src> deactivating pad from push mode
0:00:01.948568500 1815 0x1b6a280 DEBUG GST_PADS gstpad.c:983:pre_activate:<capsfilter0:src> setting PAD_MODE NONE, set flushing
0:00:01.948604625 1815 0x1b6a280 DEBUG GST_PADS gstpad.c:1046:post_activate:<capsfilter0:src> stopped streaming
0:00:01.948660250 1815 0x1b6a280 DEBUG GST_PADS gstpad.c:458:remove_events:<capsfilter0:src> notify caps
0:00:01.948733250 1815 0x1b6a280 DEBUG GST_PADS gstpad.c:1226:activate_mode_internal:<capsfilter0:src> deactivated in push mode
0:00:01.948775209 1815 0x1b6a280 DEBUG GST_PADS gstpad.c:1112:gst_pad_set_active:<capsfilter0:sink> deactivating pad from push mode
0:00:01.948801917 1815 0x1b6a280 DEBUG GST_PADS gstpad.c:983:pre_activate:<capsfilter0:sink> setting PAD_MODE NONE, set flushing
0:00:01.948963042 1815 0x1b6a280 DEBUG GST_PADS gstpad.c:1046:post_activate:<capsfilter0:sink> stopped streaming
0:00:01.948997542 1815 0x1b6a280 DEBUG GST_PADS gstpad.c:458:remove_events:<capsfilter0:sink> notify caps
0:00:01.949052084 1815 0x1b6a280 DEBUG GST_PADS gstpad.c:1226:activate_mode_internal:<capsfilter0:sink> deactivated in push mode
0:00:01.949088084 1815 0x1b6a280 DEBUG GST_ELEMENT_PADS gstelement.c:3246:gst_element_pads_activate:<capsfilter0> pad deactivation successful
0:00:01.949178500 1815 0x1b6a280 DEBUG GST_ELEMENT_PADS gstelement.c:3227:gst_element_pads_activate:<h264parse0> deactivate pads
0:00:01.949214375 1815 0x1b6a280 DEBUG GST_PADS gstpad.c:1112:gst_pad_set_active:<h264parse0:src> deactivating pad from push mode
0:00:01.949241875 1815 0x1b6a280 DEBUG GST_PADS gstpad.c:983:pre_activate:<h264parse0:src> setting PAD_MODE NONE, set flushing
0:00:01.949280584 1815 0x1b6a280 DEBUG GST_PADS gstpad.c:1046:post_activate:<h264parse0:src> stopped streaming
0:00:01.949326792 1815 0x1b6a280 DEBUG GST_PADS gstpad.c:458:remove_events:<h264parse0:src> notify caps
0:00:01.949373500 1815 0x1b6a280 DEBUG GST_PADS gstpad.c:1226:activate_mode_internal:<h264parse0:src> deactivated in push mode
0:00:01.949408542 1815 0x1b6a280 DEBUG GST_PADS gstpad.c:1112:gst_pad_set_active:<h264parse0:sink> deactivating pad from push mode
0:00:01.949433917 1815 0x1b6a280 DEBUG GST_PADS gstpad.c:983:pre_activate:<h264parse0:sink> setting PAD_MODE NONE, set flushing
0:00:01.949757042 1815 0x1b6a280 DEBUG GST_PADS gstpad.c:1046:post_activate:<h264parse0:sink> stopped streaming
0:00:01.949791959 1815 0x1b6a280 DEBUG GST_PADS gstpad.c:458:remove_events:<h264parse0:sink> notify caps
0:00:01.950031834 1815 0x1b6a280 DEBUG GST_PADS gstpad.c:1226:activate_mode_internal:<h264parse0:sink> deactivated in push mode
0:00:01.950087334 1815 0x1b6a280 DEBUG GST_ELEMENT_PADS gstelement.c:3246:gst_element_pads_activate:<h264parse0> pad deactivation successful
0:00:01.950219417 1815 0x1b6a280 DEBUG GST_ELEMENT_PADS gstelement.c:3227:gst_element_pads_activate:<multiqueue0> deactivate pads
0:00:01.950260125 1815 0x1b6a280 DEBUG GST_PADS gstpad.c:1112:gst_pad_set_active:<multiqueue0:src_0> deactivating pad from push mode
0:00:01.950287084 1815 0x1b6a280 DEBUG GST_PADS gstpad.c:983:pre_activate:<multiqueue0:src_0> setting PAD_MODE NONE, set flushing
0:00:01.950430167 1815 0x1b6a280 DEBUG GST_PADS gstpad.c:6425:gst_pad_stop_task:<multiqueue0:src_0> stop task
0:00:01.950551500 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:6210:do_stream_status:<multiqueue0:src_0> doing stream-status 2
0:00:01.950630292 1815 0xb5a27290 DEBUG GST_PADS gstpad.c:6237:do_stream_status:<multiqueue0:src_0> posting stream-status 2
0:00:01.950707250 1815 0x1b6a280 DEBUG GST_PADS gstpad.c:1046:post_activate:<multiqueue0:src_0> stopped streaming
0:00:01.950744459 1815 0x1b6a280 DEBUG GST_PADS gstpad.c:458:remove_events:<multiqueue0:src_0> notify caps
0:00:01.950814417 1815 0x1b6a280 DEBUG GST_PADS gstpad.c:1226:activate_mode_internal:<multiqueue0:src_0> deactivated in push mode
0:00:01.950863042 1815 0x1b6a280 DEBUG GST_PADS gstpad.c:1112:gst_pad_set_active:<multiqueue0:sink_0> deactivating pad from push mode
0:00:01.950890834 1815 0x1b6a280 DEBUG GST_PADS gstpad.c:983:pre_activate:<multiqueue0:sink_0> setting PAD_MODE NONE, set flushing
0:00:01.950929792 1815 0x1b6a280 DEBUG GST_PADS gstpad.c:1046:post_activate:<multiqueue0:sink_0> stopped streaming
0:00:01.950956667 1815 0x1b6a280 DEBUG GST_PADS gstpad.c:458:remove_events:<multiqueue0:sink_0> notify caps
0:00:01.951001875 1815 0x1b6a280 DEBUG GST_PADS gstpad.c:1226:activate_mode_internal:<multiqueue0:sink_0> deactivated in push mode
0:00:01.951056709 1815 0x1b6a280 DEBUG GST_ELEMENT_PADS gstelement.c:3246:gst_element_pads_activate:<multiqueue0> pad deactivation successful
0:00:01.951152250 1815 0x1b6a280 DEBUG GST_ELEMENT_PADS gstelement.c:3227:gst_element_pads_activate:<qtdemux0> deactivate pads
0:00:01.951189792 1815 0x1b6a280 DEBUG GST_PADS gstpad.c:1112:gst_pad_set_active:<qtdemux0:video_0> deactivating pad from push mode
0:00:01.951216667 1815 0x1b6a280 DEBUG GST_PADS gstpad.c:983:pre_activate:<qtdemux0:video_0> setting PAD_MODE NONE, set flushing
0:00:01.951243334 1815 0x1b6a280 DEBUG GST_PADS gstpad.c:1046:post_activate:<qtdemux0:video_0> stopped streaming
0:00:01.951284959 1815 0x1b6a280 DEBUG GST_PADS gstpad.c:458:remove_events:<qtdemux0:video_0> notify caps
0:00:01.951333875 1815 0x1b6a280 DEBUG GST_PADS gstpad.c:1226:activate_mode_internal:<qtdemux0:video_0> deactivated in push mode
0:00:01.951373292 1815 0x1b6a280 DEBUG GST_PADS gstpad.c:1112:gst_pad_set_active:<qtdemux0:sink> deactivating pad from pull mode
0:00:01.951400375 1815 0x1b6a280 DEBUG GST_PADS gstpad.c:1183:activate_mode_internal:<qtdemux0:sink> calling peer
0:00:01.951427125 1815 0x1b6a280 DEBUG GST_PADS gstpad.c:983:pre_activate:<typefind:src> setting PAD_MODE NONE, set flushing
0:00:01.951455667 1815 0x1b6a280 DEBUG GST_PADS gstpad.c:6338:gst_pad_pause_task:<typefind:sink> pause task
0:00:01.951485709 1815 0x1b6a280 DEBUG GST_PADS gstpad.c:1183:activate_mode_internal:<typefind:sink> calling peer
0:00:01.951512750 1815 0x1b6a280 DEBUG GST_PADS gstpad.c:983:pre_activate:<sink:proxypad0> setting PAD_MODE NONE, set flushing
0:00:01.951541750 1815 0x1b6a280 DEBUG GST_PADS gstpad.c:1183:activate_mode_internal:<decodebin0:sink> calling peer
0:00:01.951568584 1815 0x1b6a280 DEBUG GST_PADS gstpad.c:983:pre_activate:<filesrc0:src> setting PAD_MODE NONE, set flushing
0:00:01.951611250 1815 0x1b6a280 DEBUG GST_PADS gstpad.c:6425:gst_pad_stop_task:<filesrc0:src> stop task
0:00:01.951636959 1815 0x1b6a280 DEBUG GST_PADS gstpad.c:6450:gst_pad_stop_task:<filesrc0:src> no task
0:00:01.951692625 1815 0x1b6a280 DEBUG GST_PADS gstpad.c:1046:post_activate:<filesrc0:src> stopped streaming
0:00:01.951737834 1815 0x1b6a280 DEBUG GST_PADS gstpad.c:1226:activate_mode_internal:<filesrc0:src> deactivated in pull mode
0:00:01.951767459 1815 0x1b6a280 DEBUG GST_PADS gstpad.c:983:pre_activate:<decodebin0:sink> setting PAD_MODE NONE, set flushing
0:00:01.951802459 1815 0x1b6a280 DEBUG GST_PADS gstpad.c:1330:gst_pad_activate_mode:<filesrc0:src> already deactivated in pull mode
0:00:01.951829542 1815 0x1b6a280 DEBUG GST_PADS gstpad.c:1046:post_activate:<decodebin0:sink> stopped streaming
0:00:01.951862959 1815 0x1b6a280 DEBUG GST_PADS gstpad.c:1226:activate_mode_internal:<decodebin0:sink> deactivated in pull mode
0:00:01.951892209 1815 0x1b6a280 DEBUG GST_PADS gstpad.c:1046:post_activate:<sink:proxypad0> stopped streaming
0:00:01.952052584 1815 0x1b6a280 DEBUG GST_PADS gstpad.c:1226:activate_mode_internal:<sink:proxypad0> deactivated in pull mode
0:00:01.952084792 1815 0x1b6a280 DEBUG GST_PADS gstpad.c:983:pre_activate:<typefind:sink> setting PAD_MODE NONE, set flushing
0:00:01.952111500 1815 0x1b6a280 DEBUG GST_PADS gstpad.c:6425:gst_pad_stop_task:<typefind:sink> stop task
0:00:01.952180250 1815 0x1c88a40 DEBUG GST_PADS gstpad.c:6210:do_stream_status:<typefind:sink> doing stream-status 2
0:00:01.952243000 1815 0x1c88a40 DEBUG GST_PADS gstpad.c:6237:do_stream_status:<typefind:sink> posting stream-status 2
0:00:01.952315500 1815 0x1b6a280 DEBUG GST_PADS gstpad.c:1046:post_activate:<typefind:sink> stopped streaming
0:00:01.952358375 1815 0x1b6a280 DEBUG GST_PADS gstpad.c:1226:activate_mode_internal:<typefind:sink> deactivated in pull mode
0:00:01.952388292 1815 0x1b6a280 DEBUG GST_PADS gstpad.c:1046:post_activate:<typefind:src> stopped streaming
0:00:01.952420250 1815 0x1b6a280 DEBUG GST_PADS gstpad.c:1226:activate_mode_internal:<typefind:src> deactivated in pull mode
0:00:01.952446125 1815 0x1b6a280 DEBUG GST_PADS gstpad.c:983:pre_activate:<qtdemux0:sink> setting PAD_MODE NONE, set flushing
0:00:01.952472375 1815 0x1b6a280 DEBUG GST_PADS gstpad.c:6425:gst_pad_stop_task:<qtdemux0:sink> stop task
0:00:01.952536792 1815 0x1c89170 DEBUG GST_PADS gstpad.c:6210:do_stream_status:<qtdemux0:sink> doing stream-status 2
0:00:01.952587500 1815 0x1c89170 DEBUG GST_PADS gstpad.c:6237:do_stream_status:<qtdemux0:sink> posting stream-status 2
0:00:01.952659459 1815 0x1b6a280 DEBUG GST_PADS gstpad.c:1046:post_activate:<qtdemux0:sink> stopped streaming
0:00:01.952700375 1815 0x1b6a280 DEBUG GST_PADS gstpad.c:1226:activate_mode_internal:<qtdemux0:sink> deactivated in pull mode
0:00:01.952736750 1815 0x1b6a280 DEBUG GST_ELEMENT_PADS gstelement.c:3246:gst_element_pads_activate:<qtdemux0> pad deactivation successful
0:00:01.952764459 1815 0x1b6a280 DEBUG GST_PADS gstpad.c:6425:gst_pad_stop_task:<qtdemux0:sink> stop task
0:00:01.952788792 1815 0x1b6a280 DEBUG GST_PADS gstpad.c:6450:gst_pad_stop_task:<qtdemux0:sink> no task
0:00:01.952893500 1815 0x1b6a280 INFO GST_ELEMENT_PADS gstelement.c:875:gst_element_remove_pad:<qtdemux0> removing pad 'video_0'
0:00:01.952940459 1815 0x1b6a280 INFO GST_ELEMENT_PADS gstpad.c:2137:gst_pad_unlink: unlinking qtdemux0:video_0(0x1c86b98) and multiqueue0:sink_0(0x1c8d5d8)
0:00:01.953004375 1815 0x1b6a280 INFO GST_ELEMENT_PADS gstpad.c:2192:gst_pad_unlink: unlinked qtdemux0:video_0 and multiqueue0:sink_0
0:00:01.953214000 1815 0x1b6a280 DEBUG GST_ELEMENT_PADS gstelement.c:3227:gst_element_pads_activate:<typefind> deactivate pads
0:00:01.953269375 1815 0x1b6a280 DEBUG GST_PADS gstpad.c:1109:gst_pad_set_active:<typefind:src> pad was inactive
0:00:01.953306667 1815 0x1b6a280 DEBUG GST_PADS gstpad.c:1109:gst_pad_set_active:<typefind:sink> pad was inactive
0:00:01.953341875 1815 0x1b6a280 DEBUG GST_ELEMENT_PADS gstelement.c:3246:gst_element_pads_activate:<typefind> pad deactivation successful
0:00:01.953407209 1815 0x1b6a280 DEBUG GST_ELEMENT_PADS gstelement.c:3227:gst_element_pads_activate:<decodebin0> deactivate pads
0:00:01.953441792 1815 0x1b6a280 DEBUG GST_PADS gstpad.c:1109:gst_pad_set_active:<decodebin0:src_0> pad was inactive
0:00:01.953474167 1815 0x1b6a280 DEBUG GST_PADS gstpad.c:1109:gst_pad_set_active:<decodebin0:sink> pad was inactive
0:00:01.953505584 1815 0x1b6a280 DEBUG GST_ELEMENT_PADS gstelement.c:3246:gst_element_pads_activate:<decodebin0> pad deactivation successful
0:00:01.953561625 1815 0x1b6a280 DEBUG GST_ELEMENT_PADS gstelement.c:3227:gst_element_pads_activate:<v4l2slh264dec0> deactivate pads
0:00:01.953592792 1815 0x1b6a280 DEBUG GST_PADS gstpad.c:1109:gst_pad_set_active:<v4l2slh264dec0:src> pad was inactive
0:00:01.953623542 1815 0x1b6a280 DEBUG GST_PADS gstpad.c:1109:gst_pad_set_active:<v4l2slh264dec0:sink> pad was inactive
0:00:01.953654792 1815 0x1b6a280 DEBUG GST_ELEMENT_PADS gstelement.c:3246:gst_element_pads_activate:<v4l2slh264dec0> pad deactivation successful
0:00:01.954000459 1815 0x1b6a280 DEBUG GST_ELEMENT_PADS gstelement.c:3227:gst_element_pads_activate:<capsfilter0> deactivate pads
0:00:01.954040750 1815 0x1b6a280 DEBUG GST_PADS gstpad.c:1109:gst_pad_set_active:<capsfilter0:src> pad was inactive
0:00:01.954072917 1815 0x1b6a280 DEBUG GST_PADS gstpad.c:1109:gst_pad_set_active:<capsfilter0:sink> pad was inactive
0:00:01.954104584 1815 0x1b6a280 DEBUG GST_ELEMENT_PADS gstelement.c:3246:gst_element_pads_activate:<capsfilter0> pad deactivation successful
0:00:01.954156459 1815 0x1b6a280 DEBUG GST_ELEMENT_PADS gstelement.c:3227:gst_element_pads_activate:<h264parse0> deactivate pads
0:00:01.954187500 1815 0x1b6a280 DEBUG GST_PADS gstpad.c:1109:gst_pad_set_active:<h264parse0:src> pad was inactive
0:00:01.954219417 1815 0x1b6a280 DEBUG GST_PADS gstpad.c:1109:gst_pad_set_active:<h264parse0:sink> pad was inactive
0:00:01.954250584 1815 0x1b6a280 DEBUG GST_ELEMENT_PADS gstelement.c:3246:gst_element_pads_activate:<h264parse0> pad deactivation successful
0:00:01.954301792 1815 0x1b6a280 DEBUG GST_ELEMENT_PADS gstelement.c:3227:gst_element_pads_activate:<multiqueue0> deactivate pads
0:00:01.954333834 1815 0x1b6a280 DEBUG GST_PADS gstpad.c:1109:gst_pad_set_active:<multiqueue0:src_0> pad was inactive
0:00:01.954363625 1815 0x1b6a280 DEBUG GST_PADS gstpad.c:1109:gst_pad_set_active:<multiqueue0:sink_0> pad was inactive
0:00:01.954393375 1815 0x1b6a280 DEBUG GST_ELEMENT_PADS gstelement.c:3246:gst_element_pads_activate:<multiqueue0> pad deactivation successful
0:00:01.958110959 1815 0x1b6a280 DEBUG GST_ELEMENT_PADS gstelement.c:3227:gst_element_pads_activate:<qtdemux0> deactivate pads
0:00:01.958168084 1815 0x1b6a280 DEBUG GST_PADS gstpad.c:1109:gst_pad_set_active:<qtdemux0:sink> pad was inactive
0:00:01.958202084 1815 0x1b6a280 DEBUG GST_ELEMENT_PADS gstelement.c:3246:gst_element_pads_activate:<qtdemux0> pad deactivation successful
0:00:01.958297834 1815 0x1b6a280 INFO GST_ELEMENT_PADS gstpad.c:2137:gst_pad_unlink: unlinking capsfilter0:src(0xb4411198) and v4l2slh264dec0:sink(0xb44112f0)
0:00:01.958374250 1815 0x1b6a280 INFO GST_ELEMENT_PADS gstpad.c:2192:gst_pad_unlink: unlinked capsfilter0:src and v4l2slh264dec0:sink
0:00:01.958445125 1815 0x1b6a280 INFO GST_ELEMENT_PADS gstpad.c:2137:gst_pad_unlink: unlinking v4l2slh264dec0:src(0xb4411448) and src_0:proxypad2(0x1c92638)
0:00:01.958530834 1815 0x1b6a280 INFO GST_ELEMENT_PADS gstpad.c:2192:gst_pad_unlink: unlinked v4l2slh264dec0:src and src_0:proxypad2
0:00:01.958658167 1815 0x1b6a280 INFO GST_ELEMENT_PADS gstpad.c:2137:gst_pad_unlink: unlinking h264parse0:src(0x1c86e48) and capsfilter0:sink(0xb4411040)
0:00:01.958717292 1815 0x1b6a280 INFO GST_ELEMENT_PADS gstpad.c:2192:gst_pad_unlink: unlinked h264parse0:src and capsfilter0:sink
0:00:01.958809000 1815 0x1b6a280 INFO GST_ELEMENT_PADS gstpad.c:2137:gst_pad_unlink: unlinking multiqueue0:src_0(0x1c8d738) and h264parse0:sink(0x1c86cf0)
0:00:01.958857875 1815 0x1b6a280 INFO GST_ELEMENT_PADS gstpad.c:2192:gst_pad_unlink: unlinked multiqueue0:src_0 and h264parse0:sink
0:00:01.958930250 1815 0x1b6a280 INFO GST_ELEMENT_PADS gstelement.c:875:gst_element_remove_pad:<decodebin0> removing pad 'src_0'
0:00:01.958974917 1815 0x1b6a280 INFO GST_ELEMENT_PADS gstpad.c:2137:gst_pad_unlink: unlinking decodebin0:src_0(0x1c9c668) and kmssink0:sink(0x1c864e0)
0:00:01.959026667 1815 0x1b6a280 INFO GST_ELEMENT_PADS gstpad.c:2192:gst_pad_unlink: unlinked decodebin0:src_0 and kmssink0:sink
0:00:01.959096459 1815 0x1b6a280 DEBUG GST_PADS gstghostpad.c:823:gst_ghost_pad_set_target:<decodebin0:src_0> clearing target
0:00:01.959131542 1815 0x1b6a280 DEBUG GST_PADS gstghostpad.c:823:gst_ghost_pad_set_target:<'':src_0> clearing target
0:00:01.959284584 1815 0x1b6a280 INFO GST_ELEMENT_PADS gstpad.c:2137:gst_pad_unlink: unlinking typefind:src(0x1c86388) and qtdemux0:sink(0x1c86638)
0:00:01.959338167 1815 0x1b6a280 INFO GST_ELEMENT_PADS gstpad.c:2192:gst_pad_unlink: unlinked typefind:src and qtdemux0:sink
0:00:01.959417417 1815 0x1b6a280 DEBUG GST_PADS gstpad.c:1371:cleanup_hook:<multiqueue0:sink_0> cleaning up hook 1 with flags 00030801
0:00:01.959453292 1815 0x1b6a280 DEBUG GST_PADS gstpad.c:1371:cleanup_hook:<multiqueue0:sink_0> cleaning up hook 2 with flags 00034001
0:00:01.959496834 1815 0x1b6a280 DEBUG GST_PADS gstghostpad.c:823:gst_ghost_pad_set_target:<'':src_0> clearing target
0:00:01.959526459 1815 0x1b6a280 DEBUG GST_PADS gstghostpad.c:475:gst_ghost_pad_dispose:<'':src_0> dispose
0:00:01.962252334 1815 0x1b6a280 DEBUG GST_PADS gstghostpad.c:823:gst_ghost_pad_set_target:<'':src_0> clearing target
0:00:01.962308625 1815 0x1b6a280 DEBUG GST_PADS gstpad.c:1771:gst_pad_set_activatemode_function_full:<src_0:proxypad2> activatemodefunc set to (NULL)
0:00:01.962448250 1815 0x1b6a280 DEBUG GST_PADS gstpad.c:1109:gst_pad_set_active:<multiqueue0:src_0> pad was inactive
0:00:01.962505917 1815 0x1b6a280 DEBUG GST_PADS gstpad.c:1109:gst_pad_set_active:<multiqueue0:sink_0> pad was inactive
0:00:01.962545834 1815 0x1b6a280 INFO GST_ELEMENT_PADS gstelement.c:875:gst_element_remove_pad:<multiqueue0> removing pad 'src_0'
0:00:01.962589209 1815 0x1b6a280 INFO GST_ELEMENT_PADS gstelement.c:875:gst_element_remove_pad:<multiqueue0> removing pad 'sink_0'
0:00:01.962874250 1815 0x1b6a280 DEBUG GST_ELEMENT_PADS gstelement.c:3227:gst_element_pads_activate:<typefind> deactivate pads
0:00:01.962921167 1815 0x1b6a280 DEBUG GST_PADS gstpad.c:1109:gst_pad_set_active:<typefind:src> pad was inactive
0:00:01.962954834 1815 0x1b6a280 DEBUG GST_PADS gstpad.c:1109:gst_pad_set_active:<typefind:sink> pad was inactive
0:00:01.962987459 1815 0x1b6a280 DEBUG GST_ELEMENT_PADS gstelement.c:3246:gst_element_pads_activate:<typefind> pad deactivation successful
0:00:01.963044084 1815 0x1b6a280 DEBUG GST_ELEMENT_PADS gstelement.c:3227:gst_element_pads_activate:<decodebin0> deactivate pads
0:00:01.963079125 1815 0x1b6a280 DEBUG GST_PADS gstpad.c:1109:gst_pad_set_active:<decodebin0:sink> pad was inactive
0:00:01.963110584 1815 0x1b6a280 DEBUG GST_ELEMENT_PADS gstelement.c:3246:gst_element_pads_activate:<decodebin0> pad deactivation successful
0:00:01.963285375 1815 0x1b6a280 DEBUG GST_ELEMENT_PADS gstelement.c:3227:gst_element_pads_activate:<filesrc0> deactivate pads
0:00:01.963324084 1815 0x1b6a280 DEBUG GST_PADS gstpad.c:1109:gst_pad_set_active:<filesrc0:src> pad was inactive
0:00:01.963359125 1815 0x1b6a280 DEBUG GST_ELEMENT_PADS gstelement.c:3246:gst_element_pads_activate:<filesrc0> pad deactivation successful
0:00:01.963402792 1815 0x1b6a280 DEBUG GST_ELEMENT_PADS gstelement.c:3227:gst_element_pads_activate:<filesrc0> deactivate pads
0:00:01.963432167 1815 0x1b6a280 DEBUG GST_PADS gstpad.c:1109:gst_pad_set_active:<filesrc0:src> pad was inactive
0:00:01.963474125 1815 0x1b6a280 DEBUG GST_ELEMENT_PADS gstelement.c:3246:gst_element_pads_activate:<filesrc0> pad deactivation successful
0:00:01.963527334 1815 0x1b6a280 DEBUG GST_ELEMENT_PADS gstelement.c:3227:gst_element_pads_activate:<pipeline0> deactivate pads
0:00:01.963651084 1815 0x1b6a280 DEBUG GST_ELEMENT_PADS gstelement.c:3246:gst_element_pads_activate:<pipeline0> pad deactivation successful
0:00:01.963914250 1815 0x1b6a280 DEBUG GST_ELEMENT_PADS gstelement.c:3410:gst_element_dispose:<h264parse0> removing pad h264parse0:sink
0:00:01.963953084 1815 0x1b6a280 INFO GST_ELEMENT_PADS gstelement.c:875:gst_element_remove_pad:<h264parse0> removing pad 'sink'
0:00:01.967101417 1815 0x1b6a280 DEBUG GST_ELEMENT_PADS gstelement.c:3410:gst_element_dispose:<h264parse0> removing pad h264parse0:src
0:00:01.967143834 1815 0x1b6a280 INFO GST_ELEMENT_PADS gstelement.c:875:gst_element_remove_pad:<h264parse0> removing pad 'src'
0:00:01.967276667 1815 0x1b6a280 DEBUG GST_ELEMENT_PADS gstelement.c:3410:gst_element_dispose:<capsfilter0> removing pad capsfilter0:sink
0:00:01.967310667 1815 0x1b6a280 INFO GST_ELEMENT_PADS gstelement.c:875:gst_element_remove_pad:<capsfilter0> removing pad 'sink'
0:00:01.967360500 1815 0x1b6a280 DEBUG GST_ELEMENT_PADS gstelement.c:3410:gst_element_dispose:<capsfilter0> removing pad capsfilter0:src
0:00:01.967391250 1815 0x1b6a280 INFO GST_ELEMENT_PADS gstelement.c:875:gst_element_remove_pad:<capsfilter0> removing pad 'src'
0:00:01.967462125 1815 0x1b6a280 DEBUG GST_ELEMENT_PADS gstelement.c:3410:gst_element_dispose:<v4l2slh264dec0> removing pad v4l2slh264dec0:sink
0:00:01.967493959 1815 0x1b6a280 INFO GST_ELEMENT_PADS gstelement.c:875:gst_element_remove_pad:<v4l2slh264dec0> removing pad 'sink'
0:00:01.967545375 1815 0x1b6a280 DEBUG GST_ELEMENT_PADS gstelement.c:3410:gst_element_dispose:<v4l2slh264dec0> removing pad v4l2slh264dec0:src
0:00:01.967637292 1815 0x1b6a280 INFO GST_ELEMENT_PADS gstelement.c:875:gst_element_remove_pad:<v4l2slh264dec0> removing pad 'src'
0:00:01.973977584 1815 0x1b6a280 DEBUG GST_ELEMENT_PADS gstelement.c:3410:gst_element_dispose:<qtdemux0> removing pad qtdemux0:sink
0:00:01.974040709 1815 0x1b6a280 INFO GST_ELEMENT_PADS gstelement.c:875:gst_element_remove_pad:<qtdemux0> removing pad 'sink'
Freeing pipeline ...
0:00:01.974376459 1815 0x1b6a280 DEBUG GST_ELEMENT_PADS gstelement.c:3410:gst_element_dispose:<kmssink0> removing pad kmssink0:sink
0:00:01.974419542 1815 0x1b6a280 INFO GST_ELEMENT_PADS gstelement.c:875:gst_element_remove_pad:<kmssink0> removing pad 'sink'
0:00:01.974639084 1815 0x1b6a280 INFO GST_ELEMENT_PADS gstpad.c:2137:gst_pad_unlink: unlinking filesrc0:src(0x1c860d8) and decodebin0:sink(0x1c90030)
0:00:01.974719584 1815 0x1b6a280 INFO GST_ELEMENT_PADS gstpad.c:2192:gst_pad_unlink: unlinked filesrc0:src and decodebin0:sink
0:00:01.975015084 1815 0x1b6a280 INFO GST_ELEMENT_PADS gstpad.c:2137:gst_pad_unlink: unlinking sink:proxypad0(0x1c92098) and typefind:sink(0x1c86230)
0:00:01.975060959 1815 0x1b6a280 INFO GST_ELEMENT_PADS gstpad.c:2192:gst_pad_unlink: unlinked sink:proxypad0 and typefind:sink
0:00:01.975132459 1815 0x1b6a280 DEBUG GST_ELEMENT_PADS gstelement.c:3410:gst_element_dispose:<typefind> removing pad typefind:sink
0:00:01.975162209 1815 0x1b6a280 INFO GST_ELEMENT_PADS gstelement.c:875:gst_element_remove_pad:<typefind> removing pad 'sink'
0:00:01.975217834 1815 0x1b6a280 DEBUG GST_ELEMENT_PADS gstelement.c:3410:gst_element_dispose:<typefind> removing pad typefind:src
0:00:01.975247292 1815 0x1b6a280 INFO GST_ELEMENT_PADS gstelement.c:875:gst_element_remove_pad:<typefind> removing pad 'src'
0:00:01.975312584 1815 0x1b6a280 DEBUG GST_ELEMENT_PADS gstelement.c:3410:gst_element_dispose:<decodebin0> removing pad decodebin0:sink
0:00:01.975341834 1815 0x1b6a280 INFO GST_ELEMENT_PADS gstelement.c:875:gst_element_remove_pad:<decodebin0> removing pad 'sink'
0:00:01.975369709 1815 0x1b6a280 DEBUG GST_PADS gstghostpad.c:823:gst_ghost_pad_set_target:<decodebin0:sink> clearing target
0:00:01.975399042 1815 0x1b6a280 DEBUG GST_PADS gstghostpad.c:475:gst_ghost_pad_dispose:<'':sink> dispose
0:00:01.975424042 1815 0x1b6a280 DEBUG GST_PADS gstghostpad.c:823:gst_ghost_pad_set_target:<'':sink> clearing target
0:00:01.975452959 1815 0x1b6a280 DEBUG GST_PADS gstpad.c:1771:gst_pad_set_activatemode_function_full:<sink:proxypad0> activatemodefunc set to (NULL)
0:00:01.975557042 1815 0x1b6a280 DEBUG GST_ELEMENT_PADS gstelement.c:3410:gst_element_dispose:<filesrc0> removing pad filesrc0:src
0:00:01.975589125 1815 0x1b6a280 INFO GST_ELEMENT_PADS gstelement.c:875:gst_element_remove_pad:<filesrc0> removing pad 'src'
digraph pipeline {
rankdir=LR;
fontname="sans";
fontsize="10";
labelloc=t;
nodesep=.1;
ranksep=.2;
label="<GstPipeline>\npipeline0\n[>]";
node [style="filled,rounded", shape=box, fontsize="9", fontname="sans", margin="0.0,0.0"];
edge [labelfontsize="6", fontsize="9", fontname="monospace"];
legend [
pos="0,0!",
margin="0.05,0.05",
style="filled",
label="Legend\lElement-States: [~] void-pending, [0] null, [-] ready, [=] paused, [>] playing\lPad-Activation: [-] none, [>] push, [<] pull\lPad-Flags: [b]locked, [f]lushing, [b]locking, [E]OS; upper-case is set\lPad-Task: [T] has started task, [t] has paused task\l",
];
subgraph cluster_kmssink0_0x24a8ed0 {
fontname="Bitstream Vera Sans";
fontsize="8";
style="filled,rounded";
color=black;
label="GstKMSSink\nkmssink0\n[>]\nmax-lateness=5000000\nqos=TRUE\nlast-sample=((GstSample*) 0xb385ee90)\nprocessing-deadline=15000000\ndriver-name=\"sun4i-drm\"\nconnector-id=51\nplane-id=31\ndisplay-width=1360\ndisplay-height=768";
subgraph cluster_kmssink0_0x24a8ed0_sink {
label="";
style="invis";
kmssink0_0x24a8ed0_sink_0x2498230 [color=black, fillcolor="#aaaaff", label="sink\n[>][bfb]", height="0.2", style="filled,solid"];
}
fillcolor="#aaaaff";
}
subgraph cluster_decodebin3_0_0x249e0a0 {
fontname="Bitstream Vera Sans";
fontsize="8";
style="filled,rounded";
color=black;
label="GstDecodebin3\ndecodebin3-0\n[>]\ncaps=video/x-raw(ANY); audio/x-raw(ANY); text/x-raw(ANY); subpicture/x-dvd; subpictur…";
subgraph cluster_decodebin3_0_0x249e0a0_sink {
label="";
style="invis";
_proxypad0_0x24a0090 [color=black, fillcolor="#ddddff", label="proxypad0\n[<][bfb]", height="0.2", style="filled,solid"];
decodebin3_0_0x249e0a0_sink_0x249f040 -> _proxypad0_0x24a0090 [style=dashed, minlen=0]
decodebin3_0_0x249e0a0_sink_0x249f040 [color=black, fillcolor="#ddddff", label="sink\n[<][bfb]", height="0.2", style="filled,solid"];
}
subgraph cluster_decodebin3_0_0x249e0a0_src {
label="";
style="invis";
_proxypad4_0x24a0bd0 [color=black, fillcolor="#ffdddd", label="proxypad4\n[>][bfb]", height="0.2", style="filled,solid"];
_proxypad4_0x24a0bd0 -> decodebin3_0_0x249e0a0_video_0_0x249f600 [style=dashed, minlen=0]
decodebin3_0_0x249e0a0_video_0_0x249f600 [color=black, fillcolor="#ffdddd", label="video_0\n[>][bfb]", height="0.2", style="filled,dotted"];
}
decodebin3_0_0x249e0a0_sink_0x249f040 -> decodebin3_0_0x249e0a0_video_0_0x249f600 [style="invis"];
fillcolor="#ffffff";
subgraph cluster_v4l2slh264dec0_0xb380efd0 {
fontname="Bitstream Vera Sans";
fontsize="8";
style="filled,rounded";
color=black;
label="v4l2slh264dec\nv4l2slh264dec0\n[>]";
subgraph cluster_v4l2slh264dec0_0xb380efd0_sink {
label="";
style="invis";
v4l2slh264dec0_0xb380efd0_sink_0xb4411788 [color=black, fillcolor="#aaaaff", label="sink\n[>][bfb]", height="0.2", style="filled,solid"];
}
subgraph cluster_v4l2slh264dec0_0xb380efd0_src {
label="";
style="invis";
v4l2slh264dec0_0xb380efd0_src_0xb44118e0 [color=black, fillcolor="#ffaaaa", label="src\n[>][bfb]", height="0.2", style="filled,solid"];
}
v4l2slh264dec0_0xb380efd0_sink_0xb4411788 -> v4l2slh264dec0_0xb380efd0_src_0xb44118e0 [style="invis"];
fillcolor="#aaffaa";
}
v4l2slh264dec0_0xb380efd0_src_0xb44118e0 -> _proxypad4_0x24a0bd0 [label="video/x-raw\l format: NV12\l width: 1920\l height: 1080\l interlace-mode: progressive\l multiview-mode: mono\l multiview-flags: 0:ffffffff:/right-view...\l pixel-aspect-ratio: 1/1\l framerate: 60/1\l"]
subgraph cluster_parsebin0_0x24aa1c0 {
fontname="Bitstream Vera Sans";
fontsize="8";
style="filled,rounded";
color=black;
label="GstParseBin\nparsebin0\n[>]";
subgraph cluster_parsebin0_0x24aa1c0_sink {
label="";
style="invis";
_proxypad1_0x24a01f8 [color=black, fillcolor="#ddddff", label="proxypad1\n[<][bfb]", height="0.2", style="filled,solid"];
parsebin0_0x24aa1c0_sink_0x249f1b0 -> _proxypad1_0x24a01f8 [style=dashed, minlen=0]
parsebin0_0x24aa1c0_sink_0x249f1b0 [color=black, fillcolor="#ddddff", label="sink\n[<][bfb]", height="0.2", style="filled,solid"];
}
subgraph cluster_parsebin0_0x24aa1c0_src {
label="";
style="invis";
_proxypad3_0x24a0630 [color=black, fillcolor="#ffdddd", label="proxypad3\n[>][bfb]", height="0.2", style="filled,solid"];
_proxypad3_0x24a0630 -> parsebin0_0x24aa1c0_src_0_0xb5928150 [style=dashed, minlen=0]
parsebin0_0x24aa1c0_src_0_0xb5928150 [color=black, fillcolor="#ffdddd", label="src_0\n[>][bfb]", height="0.2", style="filled,dotted"];
}
parsebin0_0x24aa1c0_sink_0x249f1b0 -> parsebin0_0x24aa1c0_src_0_0xb5928150 [style="invis"];
fillcolor="#ffffff";
subgraph cluster_capsfilter0_0xb441a180 {
fontname="Bitstream Vera Sans";
fontsize="8";
style="filled,rounded";
color=black;
label="GstCapsFilter\ncapsfilter0\n[>]\ncaps=video/x-h264, stream-format=(string){ avc, avc3, byte-stream }, alignment=(strin…";
subgraph cluster_capsfilter0_0xb441a180_sink {
label="";
style="invis";
capsfilter0_0xb441a180_sink_0xb44110d0 [color=black, fillcolor="#aaaaff", label="sink\n[>][bfb]", height="0.2", style="filled,solid"];
}
subgraph cluster_capsfilter0_0xb441a180_src {
label="";
style="invis";
capsfilter0_0xb441a180_src_0xb4411228 [color=black, fillcolor="#ffaaaa", label="src\n[>][bfb]", height="0.2", style="filled,solid"];
}
capsfilter0_0xb441a180_sink_0xb44110d0 -> capsfilter0_0xb441a180_src_0xb4411228 [style="invis"];
fillcolor="#aaffaa";
}
capsfilter0_0xb441a180_src_0xb4411228 -> _proxypad3_0x24a0630 [label="video/x-h264\l stream-format: avc\l alignment: au\l level: 4.2\l profile: high\l codec_data: 0164002affe1001b676400...\l width: 1920\l height: 1080\l framerate: 60/1\l pixel-aspect-ratio: 1/1\l chroma-format: 4:2:0\l bit-depth-luma: 8\l bit-depth-chroma: 8\l parsed: true\l"]
subgraph cluster_h264parse0_0xb4413e90 {
fontname="Bitstream Vera Sans";
fontsize="8";
style="filled,rounded";
color=black;
label="GstH264Parse\nh264parse0\n[>]";
subgraph cluster_h264parse0_0xb4413e90_sink {
label="";
style="invis";
h264parse0_0xb4413e90_sink_0x2498cf0 [color=black, fillcolor="#aaaaff", label="sink\n[>][bfb]", height="0.2", style="filled,solid"];
}
subgraph cluster_h264parse0_0xb4413e90_src {
label="";
style="invis";
h264parse0_0xb4413e90_src_0x2498e48 [color=black, fillcolor="#ffaaaa", label="src\n[>][bfb]", height="0.2", style="filled,solid"];
}
h264parse0_0xb4413e90_sink_0x2498cf0 -> h264parse0_0xb4413e90_src_0x2498e48 [style="invis"];
fillcolor="#aaffaa";
}
h264parse0_0xb4413e90_src_0x2498e48 -> capsfilter0_0xb441a180_sink_0xb44110d0 [label="video/x-h264\l stream-format: avc\l alignment: au\l level: 4.2\l profile: high\l codec_data: 0164002affe1001b676400...\l width: 1920\l height: 1080\l framerate: 60/1\l pixel-aspect-ratio: 1/1\l chroma-format: 4:2:0\l bit-depth-luma: 8\l bit-depth-chroma: 8\l parsed: true\l"]
subgraph cluster_qtdemux0_0x2496b80 {
fontname="Bitstream Vera Sans";
fontsize="8";
style="filled,rounded";
color=black;
label="GstQTDemux\nqtdemux0\n[>]";
subgraph cluster_qtdemux0_0x2496b80_sink {
label="";
style="invis";
qtdemux0_0x2496b80_sink_0x2498638 [color=black, fillcolor="#aaaaff", label="sink\n[<][bfb][T]", height="0.2", style="filled,solid"];
}
subgraph cluster_qtdemux0_0x2496b80_src {
label="";
style="invis";
qtdemux0_0x2496b80_video_0_0x2498b98 [color=black, fillcolor="#ffaaaa", label="video_0\n[>][bfb]", height="0.2", style="filled,dotted"];
}
qtdemux0_0x2496b80_sink_0x2498638 -> qtdemux0_0x2496b80_video_0_0x2498b98 [style="invis"];
fillcolor="#aaffaa";
}
qtdemux0_0x2496b80_video_0_0x2498b98 -> h264parse0_0xb4413e90_sink_0x2498cf0 [label="video/x-h264\l stream-format: avc\l alignment: au\l level: 4.2\l profile: high\l codec_data: 0164002affe1001b676400...\l width: 1920\l height: 1080\l framerate: 60/1\l pixel-aspect-ratio: 1/1\l"]
subgraph cluster_typefind_0x24b0080 {
fontname="Bitstream Vera Sans";
fontsize="8";
style="filled,rounded";
color=black;
label="GstTypeFindElement\ntypefind\n[>]\ncaps=video/quicktime, variant=(string)iso";
subgraph cluster_typefind_0x24b0080_sink {
label="";
style="invis";
typefind_0x24b0080_sink_0x2498388 [color=black, fillcolor="#aaaaff", label="sink\n[<][bfb][t]", height="0.2", style="filled,solid"];
}
subgraph cluster_typefind_0x24b0080_src {
label="";
style="invis";
typefind_0x24b0080_src_0x24984e0 [color=black, fillcolor="#ffaaaa", label="src\n[<][bfb]", height="0.2", style="filled,solid"];
}
typefind_0x24b0080_sink_0x2498388 -> typefind_0x24b0080_src_0x24984e0 [style="invis"];
fillcolor="#aaffaa";
}
_proxypad1_0x24a01f8 -> typefind_0x24b0080_sink_0x2498388 [label="ANY"]
typefind_0x24b0080_src_0x24984e0 -> qtdemux0_0x2496b80_sink_0x2498638 [labeldistance="10", labelangle="0", label=" ", taillabel="ANY", headlabel="video/quicktime\lvideo/mj2\laudio/x-m4a\lapplication/x-3gp\l"]
}
_proxypad0_0x24a0090 -> parsebin0_0x24aa1c0_sink_0x249f1b0 [label="ANY"]
parsebin0_0x24aa1c0_src_0_0xb5928150 -> multiqueue0_0x24a2018_sink_0_0x24b0628 [label="video/x-h264\l stream-format: avc\l alignment: au\l level: 4.2\l profile: high\l codec_data: 0164002affe1001b676400...\l width: 1920\l height: 1080\l framerate: 60/1\l pixel-aspect-ratio: 1/1\l chroma-format: 4:2:0\l bit-depth-luma: 8\l bit-depth-chroma: 8\l parsed: true\l"]
subgraph cluster_multiqueue0_0x24a2018 {
fontname="Bitstream Vera Sans";
fontsize="8";
style="filled,rounded";
color=black;
label="GstMultiQueue\nmultiqueue0\n[>]\nmax-size-buffers=0\nmax-size-time=183333333\nsync-by-running-time=TRUE\nuse-interleave=TRUE\nmin-interleave-time=183333333";
subgraph cluster_multiqueue0_0x24a2018_sink {
label="";
style="invis";
multiqueue0_0x24a2018_sink_0_0x24b0628 [color=black, fillcolor="#aaaaff", label="sink_0\ngroup-id=4\ncurrent-level-buffers=12\ncurrent-level-bytes=78832\ncurrent-level-time=200000000\n[>][bfb]", height="0.2", style="filled,dashed"];
}
subgraph cluster_multiqueue0_0x24a2018_src {
label="";
style="invis";
multiqueue0_0x24a2018_src_0_0x24b0788 [color=black, fillcolor="#ffaaaa", label="src_0\ngroup-id=4\ncurrent-level-buffers=12\ncurrent-level-bytes=78832\ncurrent-level-time=200000000\n[>][bfb][T]", height="0.2", style="filled,dotted"];
}
multiqueue0_0x24a2018_sink_0_0x24b0628 -> multiqueue0_0x24a2018_src_0_0x24b0788 [style="invis"];
fillcolor="#aaffaa";
}
multiqueue0_0x24a2018_src_0_0x24b0788 -> v4l2slh264dec0_0xb380efd0_sink_0xb4411788 [label="video/x-h264\l stream-format: avc\l alignment: au\l level: 4.2\l profile: high\l codec_data: 0164002affe1001b676400...\l width: 1920\l height: 1080\l framerate: 60/1\l pixel-aspect-ratio: 1/1\l chroma-format: 4:2:0\l bit-depth-luma: 8\l bit-depth-chroma: 8\l parsed: true\l"]
}
decodebin3_0_0x249e0a0_video_0_0x249f600 -> kmssink0_0x24a8ed0_sink_0x2498230 [label="video/x-raw\l format: NV12\l width: 1920\l height: 1080\l interlace-mode: progressive\l multiview-mode: mono\l multiview-flags: 0:ffffffff:/right-view...\l pixel-aspect-ratio: 1/1\l framerate: 60/1\l"]
subgraph cluster_filesrc0_0x2496238 {
fontname="Bitstream Vera Sans";
fontsize="8";
style="filled,rounded";
color=black;
label="GstFileSrc\nfilesrc0\n[>]\nlocation=\"/media/usb/h264/Big_Buck_Bunny_1080_10s_5MB.mp4\"";
subgraph cluster_filesrc0_0x2496238_src {
label="";
style="invis";
filesrc0_0x2496238_src_0x24980d8 [color=black, fillcolor="#ffaaaa", label="src\n[<][bfb]", height="0.2", style="filled,solid"];
}
fillcolor="#ffaaaa";
}
filesrc0_0x2496238_src_0x24980d8 -> decodebin3_0_0x249e0a0_sink_0x249f040 [label="ANY"]
}
0:00:00.004289375 2032 0x237d280 DEBUG GST_ELEMENT_PADS gstelement.c:317:gst_element_base_class_init: type GstElement : factory (nil)
0:00:00.005064208 2032 0x237d280 DEBUG GST_ELEMENT_PADS gstelement.c:317:gst_element_base_class_init: type GstBin : factory (nil)
0:00:00.012683875 2032 0x237d280 DEBUG GST_ELEMENT_PADS gstelement.c:317:gst_element_base_class_init: type GstPipeline : factory 0x238c890
0:00:00.101225791 2032 0x237d280 INFO GST_PIPELINE gstparse.c:344:gst_parse_launch_full: parsing pipeline description 'filesrc location=/media/usb/h264/Big_Buck_Bunny_1080_10s_5MB.mp4 ! decodebin3 ! kmssink '
0:00:00.101395416 2032 0x237d280 DEBUG GST_PIPELINE parse.l:135:priv_gst_parse_yylex: flex: IDENTIFIER: filesrc
0:00:00.105540083 2032 0x237d280 DEBUG GST_ELEMENT_PADS gstelement.c:317:gst_element_base_class_init: type GstBaseSrc : factory (nil)
0:00:00.105816500 2032 0x237d280 DEBUG GST_ELEMENT_PADS gstelement.c:317:gst_element_base_class_init: type GstFileSrc : factory 0x245cbf0
0:00:00.106484291 2032 0x237d280 DEBUG GST_PADS gstpad.c:1771:gst_pad_set_activatemode_function_full:<'':src> activatemodefunc set to gst_base_src_activate_mode
0:00:00.106557375 2032 0x237d280 DEBUG GST_PADS gstpad.c:1912:gst_pad_set_event_function_full:<'':src> eventfunc for set to gst_base_src_event
0:00:00.106596916 2032 0x237d280 DEBUG GST_PADS gstpad.c:1992:gst_pad_set_query_function_full:<'':src> queryfunc set to gst_base_src_query
0:00:00.106635833 2032 0x237d280 DEBUG GST_PADS gstpad.c:1879:gst_pad_set_getrange_function_full:<'':src> getrangefunc set to gst_base_src_getrange
0:00:00.106671083 2032 0x237d280 INFO GST_ELEMENT_PADS gstelement.c:759:gst_element_add_pad:<GstBaseSrc@0x2496238> adding pad 'src'
0:00:00.106778583 2032 0x237d280 DEBUG GST_PIPELINE parse.l:181:priv_gst_parse_yylex: flex: SPACE: [ ]
0:00:00.106826333 2032 0x237d280 DEBUG GST_PIPELINE parse.l:93:priv_gst_parse_yylex: flex: ASSIGNMENT: location=/media/usb/h264/Big_Buck_Bunny_1080_10s_5MB.mp4
0:00:00.106967958 2032 0x237d280 DEBUG GST_PIPELINE parse.l:181:priv_gst_parse_yylex: flex: SPACE: [ ]
0:00:00.107011500 2032 0x237d280 DEBUG GST_PIPELINE parse.l:146:priv_gst_parse_yylex: flex: LINK: !
0:00:00.107075791 2032 0x237d280 DEBUG GST_PIPELINE parse.l:181:priv_gst_parse_yylex: flex: SPACE: [ ]
0:00:00.107109666 2032 0x237d280 DEBUG GST_PIPELINE parse.l:135:priv_gst_parse_yylex: flex: IDENTIFIER: decodebin3
0:00:00.115938583 2032 0x237d280 DEBUG GST_ELEMENT_PADS gstelement.c:317:gst_element_base_class_init: type GstDecodebin3 : factory 0x23ce240
0:00:00.116635750 2032 0x237d280 DEBUG GST_PADS gstpad.c:2026:gst_pad_set_iterate_internal_links_function_full:<GstProxyPad@0x249f040> internal link iterator set to gst_proxy_pad_iterate_internal_links_default
0:00:00.116839416 2032 0x237d280 DEBUG GST_PADS gstpad.c:1771:gst_pad_set_activatemode_function_full:<GstGhostPad@0x249f040> activatemodefunc set to gst_ghost_pad_activate_mode_default
0:00:00.116937833 2032 0x237d280 DEBUG GST_PADS gstpad.c:1806:gst_pad_set_chain_function_full:<'':sink> chainfunc set to gst_proxy_pad_chain_default
0:00:00.116975833 2032 0x237d280 DEBUG GST_PADS gstpad.c:1843:gst_pad_set_chain_list_function_full:<'':sink> chainlistfunc set to gst_proxy_pad_chain_list_default
0:00:00.117073041 2032 0x237d280 DEBUG GST_PADS gstpad.c:2026:gst_pad_set_iterate_internal_links_function_full:<GstProxyPad@0x24a0090> internal link iterator set to gst_proxy_pad_iterate_internal_links_default
0:00:00.117156250 2032 0x237d280 DEBUG GST_PADS gstpad.c:1879:gst_pad_set_getrange_function_full:<'':proxypad0> getrangefunc set to gst_proxy_pad_getrange_default
0:00:00.117280500 2032 0x237d280 DEBUG GST_PADS gstpad.c:1771:gst_pad_set_activatemode_function_full:<sink:proxypad0> activatemodefunc set to gst_ghost_pad_internal_activate_mode_default
0:00:00.117354958 2032 0x237d280 DEBUG GST_PADS gstpad.c:2069:gst_pad_set_link_function_full:<'':sink> linkfunc set to 0xb65559c9
0:00:00.117394875 2032 0x237d280 DEBUG GST_PADS gstpad.c:2107:gst_pad_set_unlink_function_full:<'':sink> unlinkfunc set to 0xb6555465
0:00:00.117423708 2032 0x237d280 DEBUG GST_PADS gstpad.c:1098:gst_pad_set_active:<'':sink> activating pad from none
0:00:00.117455625 2032 0x237d280 DEBUG GST_PADS gstpad.c:1003:pre_activate:<'':sink> setting pad into push mode, unset flushing
0:00:00.117490791 2032 0x237d280 DEBUG GST_PADS gstpad.c:1003:pre_activate:<sink:proxypad0> setting pad into push mode, unset flushing
0:00:00.117528083 2032 0x237d280 DEBUG GST_PADS gstpad.c:1330:gst_pad_activate_mode:<'':sink> already activated in push mode
0:00:00.117578166 2032 0x237d280 DEBUG GST_PADS gstpad.c:1226:activate_mode_internal:<sink:proxypad0> activated in push mode
0:00:00.117615000 2032 0x237d280 DEBUG GST_PADS gstpad.c:1226:activate_mode_internal:<'':sink> activated in push mode
0:00:00.117655625 2032 0x237d280 INFO GST_ELEMENT_PADS gstelement.c:759:gst_element_add_pad:<GstDecodebin3@0x249e0a0> adding pad 'sink'
0:00:00.117807833 2032 0x237d280 DEBUG GST_ELEMENT_PADS gstelement.c:317:gst_element_base_class_init: type GstMultiQueue : factory 0x24601b0
0:00:00.118550458 2032 0x237d280 DEBUG GST_PIPELINE parse.l:181:priv_gst_parse_yylex: flex: SPACE: [ ]
0:00:00.118603833 2032 0x237d280 DEBUG GST_PIPELINE parse.l:146:priv_gst_parse_yylex: flex: LINK: !
0:00:00.118653166 2032 0x237d280 DEBUG GST_PIPELINE parse.l:181:priv_gst_parse_yylex: flex: SPACE: [ ]
0:00:00.118686166 2032 0x237d280 DEBUG GST_PIPELINE parse.l:135:priv_gst_parse_yylex: flex: IDENTIFIER: kmssink
0:00:00.121386416 2032 0x237d280 DEBUG GST_ELEMENT_PADS gstelement.c:317:gst_element_base_class_init: type GstBaseSink : factory (nil)
0:00:00.121621333 2032 0x237d280 DEBUG GST_ELEMENT_PADS gstelement.c:317:gst_element_base_class_init: type GstVideoSink : factory (nil)
0:00:00.121782291 2032 0x237d280 DEBUG GST_ELEMENT_PADS gstelement.c:317:gst_element_base_class_init: type GstKMSSink : factory 0x2429da0
0:00:00.123330500 2032 0x237d280 DEBUG GST_PADS gstpad.c:1736:gst_pad_set_activate_function_full:<'':sink> activatefunc set to gst_base_sink_pad_activate
0:00:00.123386458 2032 0x237d280 DEBUG GST_PADS gstpad.c:1771:gst_pad_set_activatemode_function_full:<'':sink> activatemodefunc set to gst_base_sink_pad_activate_mode
0:00:00.123423000 2032 0x237d280 DEBUG GST_PADS gstpad.c:1992:gst_pad_set_query_function_full:<'':sink> queryfunc set to gst_base_sink_sink_query
0:00:00.123456208 2032 0x237d280 DEBUG GST_PADS gstpad.c:1912:gst_pad_set_event_function_full:<'':sink> eventfunc for set to gst_base_sink_event
0:00:00.123489708 2032 0x237d280 DEBUG GST_PADS gstpad.c:1806:gst_pad_set_chain_function_full:<'':sink> chainfunc set to gst_base_sink_chain
0:00:00.123520166 2032 0x237d280 DEBUG GST_PADS gstpad.c:1843:gst_pad_set_chain_list_function_full:<'':sink> chainlistfunc set to gst_base_sink_chain_list
0:00:00.123554500 2032 0x237d280 INFO GST_ELEMENT_PADS gstelement.c:759:gst_element_add_pad:<GstBaseSink@0x24a8ed0> adding pad 'sink'
0:00:00.123792041 2032 0x237d280 DEBUG GST_PIPELINE parse.l:181:priv_gst_parse_yylex: flex: SPACE: [ ]
0:00:00.123866833 2032 0x237d280 DEBUG GST_PIPELINE gst/parse/grammar.y:1226:priv_gst_parse_launch: got 3 elements and 2 links
0:00:00.124308458 2032 0x237d280 INFO GST_PIPELINE gst/parse/grammar.y:683:gst_parse_perform_link: linking some pad of GstFileSrc named filesrc0 to some pad of GstDecodebin3 named decodebin3-0 (0/0) with caps "(NULL)"
0:00:00.124362416 2032 0x237d280 INFO GST_ELEMENT_PADS gstutils.c:1816:gst_element_link_pads_full: trying to link element filesrc0:(any) to element decodebin3-0:(any)
0:00:00.124391666 2032 0x237d280 DEBUG GST_ELEMENT_PADS gstutils.c:1925:gst_element_link_pads_full: looping through allowed src and dest pads
0:00:00.124422583 2032 0x237d280 DEBUG GST_ELEMENT_PADS gstutils.c:1928:gst_element_link_pads_full: trying src pad filesrc0:src
0:00:00.124455083 2032 0x237d280 DEBUG GST_ELEMENT_PADS gstutils.c:1148:gst_element_get_compatible_pad: finding pad in decodebin3-0 compatible with filesrc0:src
0:00:00.124499958 2032 0x237d280 INFO GST_PADS gstutils.c:1079:gst_pad_check_link: trying to link filesrc0:src and decodebin3-0:sink
0:00:00.124537333 2032 0x237d280 DEBUG GST_CAPS gstutils.c:3102:gst_pad_query_caps:<filesrc0:src> get pad caps with filter (NULL)
0:00:00.124582166 2032 0x237d280 DEBUG GST_PADS gstpad.c:4173:gst_pad_query:<filesrc0:src> doing query 0x249b260 (caps)
0:00:00.124643125 2032 0x237d280 DEBUG GST_PADS gstpad.c:4196:gst_pad_query:<filesrc0:src> sent query 0x249b260 (caps), result 1
0:00:00.124678291 2032 0x237d280 DEBUG GST_CAPS gstutils.c:3109:gst_pad_query_caps:<filesrc0:src> query returned ANY
0:00:00.124710750 2032 0x237d280 DEBUG GST_CAPS gstutils.c:3102:gst_pad_query_caps:<decodebin3-0:sink> get pad caps with filter (NULL)
0:00:00.124746083 2032 0x237d280 DEBUG GST_PADS gstpad.c:4173:gst_pad_query:<decodebin3-0:sink> doing query 0x249b290 (caps)
0:00:00.124802291 2032 0x237d280 DEBUG GST_CAPS gstpad.c:3259:gst_pad_query_caps_default:<decodebin3-0:sink> query caps caps query: 0x249b290, GstQueryCaps, filter=(GstCaps)"NULL", caps=(GstCaps)"NULL";
0:00:00.124843208 2032 0x237d280 DEBUG GST_PADS gstutils.c:2851:gst_pad_proxy_query_caps:<decodebin3-0:sink> proxying caps query for decodebin3-0:sink
0:00:00.124905250 2032 0x237d280 DEBUG GST_PADS gstpad.c:4300:gst_pad_peer_query:<sink:proxypad0> peer query 0x249b290 (caps)
0:00:00.124935708 2032 0x237d280 INFO GST_PADS gstpad.c:4357:gst_pad_peer_query:<sink:proxypad0> pad has no peer
0:00:00.124985541 2032 0x237d280 DEBUG GST_PADS gstpad.c:3514:gst_pad_query_default:<decodebin3-0:sink> not forwarding 0x249b290 (caps) query
0:00:00.125021250 2032 0x237d280 DEBUG GST_PADS gstpad.c:4196:gst_pad_query:<decodebin3-0:sink> sent query 0x249b290 (caps), result 1
0:00:00.125053916 2032 0x237d280 DEBUG GST_CAPS gstutils.c:3109:gst_pad_query_caps:<decodebin3-0:sink> query returned ANY
0:00:00.125085250 2032 0x237d280 DEBUG GST_ELEMENT_PADS gstutils.c:1207:gst_element_get_compatible_pad: found existing unlinked compatible pad decodebin3-0:sink
0:00:00.125117583 2032 0x237d280 INFO GST_PADS gstutils.c:1632:prepare_link_maybe_ghosting: filesrc0 and decodebin3-0 in same bin, no need for ghost pads
0:00:00.125191083 2032 0x237d280 INFO GST_PADS gstpad.c:2382:gst_pad_link_prepare: trying to link filesrc0:src and decodebin3-0:sink
0:00:00.125229666 2032 0x237d280 DEBUG GST_CAPS gstutils.c:3102:gst_pad_query_caps:<filesrc0:src> get pad caps with filter (NULL)
0:00:00.125266666 2032 0x237d280 DEBUG GST_PADS gstpad.c:4173:gst_pad_query:<filesrc0:src> doing query 0x249b2c0 (caps)
0:00:00.125311791 2032 0x237d280 DEBUG GST_PADS gstpad.c:4196:gst_pad_query:<filesrc0:src> sent query 0x249b2c0 (caps), result 1
0:00:00.125343083 2032 0x237d280 DEBUG GST_CAPS gstutils.c:3109:gst_pad_query_caps:<filesrc0:src> query returned ANY
0:00:00.125372000 2032 0x237d280 DEBUG GST_CAPS gstutils.c:3102:gst_pad_query_caps:<decodebin3-0:sink> get pad caps with filter (NULL)
0:00:00.125404500 2032 0x237d280 DEBUG GST_PADS gstpad.c:4173:gst_pad_query:<decodebin3-0:sink> doing query 0x249b2f0 (caps)
0:00:00.125453125 2032 0x237d280 DEBUG GST_CAPS gstpad.c:3259:gst_pad_query_caps_default:<decodebin3-0:sink> query caps caps query: 0x249b2f0, GstQueryCaps, filter=(GstCaps)"NULL", caps=(GstCaps)"NULL";
0:00:00.125483916 2032 0x237d280 DEBUG GST_PADS gstutils.c:2851:gst_pad_proxy_query_caps:<decodebin3-0:sink> proxying caps query for decodebin3-0:sink
0:00:00.125526125 2032 0x237d280 DEBUG GST_PADS gstpad.c:4300:gst_pad_peer_query:<sink:proxypad0> peer query 0x249b2f0 (caps)
0:00:00.125551291 2032 0x237d280 INFO GST_PADS gstpad.c:4357:gst_pad_peer_query:<sink:proxypad0> pad has no peer
0:00:00.125595916 2032 0x237d280 DEBUG GST_PADS gstpad.c:3514:gst_pad_query_default:<decodebin3-0:sink> not forwarding 0x249b2f0 (caps) query
0:00:00.125630500 2032 0x237d280 DEBUG GST_PADS gstpad.c:4196:gst_pad_query:<decodebin3-0:sink> sent query 0x249b2f0 (caps), result 1
0:00:00.125668208 2032 0x237d280 DEBUG GST_CAPS gstutils.c:3109:gst_pad_query_caps:<decodebin3-0:sink> query returned ANY
0:00:00.125784583 2032 0x237d280 DEBUG GST_CAPS gstpad.c:2282:gst_pad_link_check_compatible_unlocked:<filesrc0:src> src caps ANY
0:00:00.125819083 2032 0x237d280 DEBUG GST_CAPS gstpad.c:2284:gst_pad_link_check_compatible_unlocked:<decodebin3-0:sink> sink caps ANY
0:00:00.125845541 2032 0x237d280 DEBUG GST_CAPS gstpad.c:2302:gst_pad_link_check_compatible_unlocked: caps are compatible
0:00:00.125925666 2032 0x237d280 DEBUG GST_ELEMENT_PADS gstelement.c:317:gst_element_base_class_init: type GstParseBin : factory 0x23ce480
0:00:00.126490625 2032 0x237d280 DEBUG GST_ELEMENT_PADS gstelement.c:317:gst_element_base_class_init: type GstTypeFindElement : factory 0x2460120
0:00:00.126871541 2032 0x237d280 DEBUG GST_PADS gstpad.c:1736:gst_pad_set_activate_function_full:<'':sink> activatefunc set to gst_type_find_element_activate_sink
0:00:00.126919791 2032 0x237d280 DEBUG GST_PADS gstpad.c:1771:gst_pad_set_activatemode_function_full:<'':sink> activatemodefunc set to gst_type_find_element_activate_sink_mode
0:00:00.126955041 2032 0x237d280 DEBUG GST_PADS gstpad.c:1806:gst_pad_set_chain_function_full:<'':sink> chainfunc set to gst_type_find_element_chain
0:00:00.126987875 2032 0x237d280 DEBUG GST_PADS gstpad.c:1912:gst_pad_set_event_function_full:<'':sink> eventfunc for set to gst_type_find_element_sink_event
0:00:00.127020500 2032 0x237d280 INFO GST_ELEMENT_PADS gstelement.c:759:gst_element_add_pad:<GstTypeFindElement@0x24b0080> adding pad 'sink'
0:00:00.127141541 2032 0x237d280 DEBUG GST_PADS gstpad.c:1771:gst_pad_set_activatemode_function_full:<'':src> activatemodefunc set to gst_type_find_element_activate_src_mode
0:00:00.127180041 2032 0x237d280 DEBUG GST_PADS gstpad.c:1879:gst_pad_set_getrange_function_full:<'':src> getrangefunc set to gst_type_find_element_getrange
0:00:00.127210916 2032 0x237d280 DEBUG GST_PADS gstpad.c:1912:gst_pad_set_event_function_full:<'':src> eventfunc for set to gst_type_find_element_src_event
0:00:00.127241416 2032 0x237d280 DEBUG GST_PADS gstpad.c:1992:gst_pad_set_query_function_full:<'':src> queryfunc set to gst_type_find_handle_src_query
0:00:00.127273458 2032 0x237d280 INFO GST_ELEMENT_PADS gstelement.c:759:gst_element_add_pad:<GstTypeFindElement@0x24b0080> adding pad 'src'
0:00:00.127504333 2032 0x237d280 INFO GST_ELEMENT_PADS gstelement.c:1016:gst_element_get_static_pad: found pad typefind:sink
0:00:00.127622000 2032 0x237d280 DEBUG GST_PADS gstpad.c:2026:gst_pad_set_iterate_internal_links_function_full:<GstProxyPad@0x249f1b0> internal link iterator set to gst_proxy_pad_iterate_internal_links_default
0:00:00.127662291 2032 0x237d280 DEBUG GST_PADS gstpad.c:1771:gst_pad_set_activatemode_function_full:<GstGhostPad@0x249f1b0> activatemodefunc set to gst_ghost_pad_activate_mode_default
0:00:00.127715583 2032 0x237d280 DEBUG GST_PADS gstpad.c:1806:gst_pad_set_chain_function_full:<'':sink> chainfunc set to gst_proxy_pad_chain_default
0:00:00.127759083 2032 0x237d280 DEBUG GST_PADS gstpad.c:1843:gst_pad_set_chain_list_function_full:<'':sink> chainlistfunc set to gst_proxy_pad_chain_list_default
0:00:00.127808625 2032 0x237d280 DEBUG GST_PADS gstpad.c:2026:gst_pad_set_iterate_internal_links_function_full:<GstProxyPad@0x24a01f8> internal link iterator set to gst_proxy_pad_iterate_internal_links_default
0:00:00.127870583 2032 0x237d280 DEBUG GST_PADS gstpad.c:1879:gst_pad_set_getrange_function_full:<'':proxypad1> getrangefunc set to gst_proxy_pad_getrange_default
0:00:00.127905875 2032 0x237d280 DEBUG GST_PADS gstpad.c:1771:gst_pad_set_activatemode_function_full:<sink:proxypad1> activatemodefunc set to gst_ghost_pad_internal_activate_mode_default
0:00:00.127959375 2032 0x237d280 DEBUG GST_PADS gstghostpad.c:821:gst_ghost_pad_set_target:<'':sink> set target typefind:sink
0:00:00.127996750 2032 0x237d280 DEBUG GST_PADS gstghostpad.c:842:gst_ghost_pad_set_target:<'':sink> connecting internal pad to target <typefind:sink>
0:00:00.128034416 2032 0x237d280 INFO GST_PADS gstpad.c:2382:gst_pad_link_prepare: trying to link sink:proxypad1 and typefind:sink
0:00:00.128075291 2032 0x237d280 INFO GST_PADS gstpad.c:2590:gst_pad_link_full: linked sink:proxypad1 and typefind:sink, successful
0:00:00.128123500 2032 0x237d280 DEBUG GST_PADS gstpad.c:5566:gst_pad_push_event_unchecked:<'':sink> We're flushing
0:00:00.128159666 2032 0x237d280 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<sink:proxypad1> sent event, ret error
0:00:00.128187750 2032 0x237d280 DEBUG GST_PADS gstpad.c:1098:gst_pad_set_active:<'':sink> activating pad from none
0:00:00.128218916 2032 0x237d280 DEBUG GST_PADS gstpad.c:1003:pre_activate:<'':sink> setting pad into push mode, unset flushing
0:00:00.128253041 2032 0x237d280 DEBUG GST_PADS gstpad.c:1003:pre_activate:<sink:proxypad1> setting pad into push mode, unset flushing
0:00:00.128288791 2032 0x237d280 DEBUG GST_PADS gstpad.c:1330:gst_pad_activate_mode:<'':sink> already activated in push mode
0:00:00.128325166 2032 0x237d280 DEBUG GST_PADS gstpad.c:1226:activate_mode_internal:<sink:proxypad1> activated in push mode
0:00:00.128358000 2032 0x237d280 DEBUG GST_PADS gstpad.c:1226:activate_mode_internal:<'':sink> activated in push mode
0:00:00.128389041 2032 0x237d280 INFO GST_ELEMENT_PADS gstelement.c:759:gst_element_add_pad:<GstParseBin@0x24aa1c0> adding pad 'sink'
0:00:00.128472125 2032 0x237d280 INFO GST_ELEMENT_PADS gstelement.c:1016:gst_element_get_static_pad: found pad parsebin0:sink
0:00:00.128639583 2032 0x237d280 DEBUG GST_PADS gstghostpad.c:821:gst_ghost_pad_set_target:<decodebin3-0:sink> set target parsebin0:sink
0:00:00.128683750 2032 0x237d280 DEBUG GST_PADS gstghostpad.c:842:gst_ghost_pad_set_target:<decodebin3-0:sink> connecting internal pad to target <parsebin0:sink>
0:00:00.128723500 2032 0x237d280 INFO GST_PADS gstpad.c:2382:gst_pad_link_prepare: trying to link sink:proxypad0 and parsebin0:sink
0:00:00.128763166 2032 0x237d280 INFO GST_PADS gstpad.c:2590:gst_pad_link_full: linked sink:proxypad0 and parsebin0:sink, successful
0:00:00.128821541 2032 0x237d280 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<sink:proxypad0> sent event, ret error
0:00:00.128957291 2032 0x237d280 INFO GST_PADS gstpad.c:2590:gst_pad_link_full: linked filesrc0:src and decodebin3-0:sink, successful
0:00:00.129052583 2032 0x237d280 DEBUG GST_ELEMENT_PADS gstutils.c:1948:gst_element_link_pads_full: linked pad filesrc0:src to pad decodebin3-0:sink
0:00:00.129118958 2032 0x237d280 INFO GST_PIPELINE gst/parse/grammar.y:683:gst_parse_perform_link: linking some pad of GstDecodebin3 named decodebin3-0 to some pad of GstKMSSink named kmssink0 (0/0) with caps "(NULL)"
0:00:00.129158250 2032 0x237d280 INFO GST_ELEMENT_PADS gstutils.c:1816:gst_element_link_pads_full: trying to link element decodebin3-0:(any) to element kmssink0:(any)
0:00:00.129185458 2032 0x237d280 DEBUG GST_ELEMENT_PADS gstutils.c:1925:gst_element_link_pads_full: looping through allowed src and dest pads
0:00:00.129213041 2032 0x237d280 DEBUG GST_ELEMENT_PADS gstutils.c:1928:gst_element_link_pads_full: trying src pad decodebin3-0:sink
0:00:00.129241208 2032 0x237d280 DEBUG GST_ELEMENT_PADS gstutils.c:1991:gst_element_link_pads_full: trying dest pad kmssink0:sink
0:00:00.129273500 2032 0x237d280 DEBUG GST_ELEMENT_PADS gstutils.c:1148:gst_element_get_compatible_pad: finding pad in decodebin3-0 compatible with kmssink0:sink
0:00:00.129312125 2032 0x237d280 DEBUG GST_ELEMENT_PADS gstutils.c:1244:gst_element_get_compatible_pad:<decodebin3-0> Could not find a compatible unlinked always pad to link to kmssink0:sink, now checking request pads
0:00:00.129343125 2032 0x237d280 DEBUG GST_CAPS gstutils.c:3102:gst_pad_query_caps:<kmssink0:sink> get pad caps with filter (NULL)
0:00:00.129382375 2032 0x237d280 DEBUG GST_PADS gstpad.c:4173:gst_pad_query:<kmssink0:sink> doing query 0x249b320 (caps)
0:00:00.129434375 2032 0x237d280 DEBUG GST_PADS gstpad.c:4196:gst_pad_query:<kmssink0:sink> sent query 0x249b320 (caps), result 1
0:00:00.129537000 2032 0x237d280 DEBUG GST_CAPS gstutils.c:3109:gst_pad_query_caps:<kmssink0:sink> query returned video/x-raw, format=(string){ BGRA, RGBA, P016_LE, P010_10LE, NV24, BGRx, RGBx, RGB, BGR, Y42B, NV61, NV16, UYVY, YVYU, YUY2, I420, YV12, NV21, NV12, RGB16, BGR16 }, width=(int)[ 1, 2147483647 ], height=(int)[ 1, 2147483647 ], framerate=(fraction)[ 0/1, 2147483647/1 ]
0:00:00.129651083 2032 0x237d280 DEBUG GST_ELEMENT_PADS gstutils.c:943:gst_element_get_compatible_pad_template: Looking for a suitable pad template in decodebin3-0 out of 6 templates...
0:00:00.129726125 2032 0x237d280 DEBUG GST_CAPS gstutils.c:958:gst_element_get_compatible_pad_template: compatible direction: found src pad template "video_%u"
0:00:00.129818666 2032 0x237d280 DEBUG GST_CAPS gstutils.c:963:gst_element_get_compatible_pad_template: intersecting video/x-raw, format=(string){ BGRA, RGBA, P016_LE, P010_10LE, NV24, BGRx, RGBx, RGB, BGR, Y42B, NV61, NV16, UYVY, YVYU, YUY2, I420, YV12, NV21, NV12, RGB16, BGR16 }, width=(int)[ 1, 2147483647 ], height=(int)[ 1, 2147483647 ], framerate=(fraction)[ 0/1, 2147483647/1 ]
0:00:00.129860541 2032 0x237d280 DEBUG GST_CAPS gstutils.c:965:gst_element_get_compatible_pad_template: ..and ANY
0:00:00.129888250 2032 0x237d280 DEBUG GST_CAPS gstutils.c:971:gst_element_get_compatible_pad_template: caps are compatible
0:00:00.129912250 2032 0x237d280 DEBUG GST_ELEMENT_PADS gstutils.c:983:gst_element_get_compatible_pad_template: Returning new pad template 0x237fab8
0:00:00.129944375 2032 0x237d280 INFO GST_ELEMENT_PADS gstelement.c:1013:gst_element_get_static_pad: no such pad 'video_%u' in element "decodebin3-0"
0:00:00.130009791 2032 0x237d280 INFO GST_ELEMENT_PADS gstutils.c:1270:gst_element_get_compatible_pad:<decodebin3-0> Could not find a compatible pad to link to kmssink0:sink
0:00:00.130036458 2032 0x237d280 DEBUG GST_ELEMENT_PADS gstutils.c:2043:gst_element_link_pads_full: we might have request pads on both sides, checking...
0:00:00.130069000 2032 0x237d280 DEBUG GST_ELEMENT_PADS gstutils.c:2097:gst_element_link_pads_full: no link possible from decodebin3-0 to kmssink0
0:00:00.130112166 2032 0x237d280 DEBUG GST_PIPELINE gst/parse/grammar.y:597:gst_parse_perform_delayed_link: trying delayed link some pad of GstDecodebin3 named decodebin3-0 to some pad of GstKMSSink named kmssink0
Setting pipeline to PAUSED ...
0:00:01.522929959 2032 0x237d280 DEBUG GST_PADS gstghostpad.c:783:gst_ghost_pad_get_target:<decodebin3-0:sink> get target parsebin0:sink
0:00:01.523239000 2032 0x237d280 DEBUG GST_PADS gstghostpad.c:783:gst_ghost_pad_get_target:<parsebin0:sink> get target typefind:sink
0:00:01.523565084 2032 0x237d280 DEBUG GST_CAPS gstpad.c:2737:gst_pad_get_current_caps:<sink:proxypad1> get current pad caps (NULL)
0:00:01.523606917 2032 0x237d280 DEBUG GST_CAPS gstpad.c:2737:gst_pad_get_current_caps:<typefind:sink> get current pad caps (NULL)
0:00:01.523687459 2032 0x237d280 DEBUG GST_CAPS gstpad.c:2737:gst_pad_get_current_caps:<sink:proxypad0> get current pad caps (NULL)
0:00:01.523720459 2032 0x237d280 DEBUG GST_CAPS gstpad.c:2737:gst_pad_get_current_caps:<parsebin0:sink> get current pad caps (NULL)
0:00:01.524210709 2032 0x237d280 DEBUG GST_CAPS gstpad.c:2737:gst_pad_get_current_caps:<filesrc0:src> get current pad caps (NULL)
0:00:01.524260042 2032 0x237d280 DEBUG GST_CAPS gstpad.c:2737:gst_pad_get_current_caps:<decodebin3-0:sink> get current pad caps (NULL)
0:00:01.524780334 2032 0x237d280 DEBUG GST_ELEMENT_PADS gstelement.c:3227:gst_element_pads_activate:<kmssink0> activate pads
0:00:01.524835459 2032 0x237d280 DEBUG GST_PADS gstpad.c:1098:gst_pad_set_active:<kmssink0:sink> activating pad from none
0:00:01.524874209 2032 0x237d280 DEBUG GST_PADS gstpad.c:1003:pre_activate:<kmssink0:sink> setting pad into push mode, unset flushing
0:00:01.524914959 2032 0x237d280 DEBUG GST_PADS gstpad.c:1226:activate_mode_internal:<kmssink0:sink> activated in push mode
0:00:01.524951875 2032 0x237d280 DEBUG GST_ELEMENT_PADS gstelement.c:3246:gst_element_pads_activate:<kmssink0> pad activation successful
0:00:01.525105084 2032 0x237d280 DEBUG GST_ELEMENT_PADS gstelement.c:3227:gst_element_pads_activate:<typefind> activate pads
0:00:01.525145750 2032 0x237d280 DEBUG GST_PADS gstpad.c:1098:gst_pad_set_active:<typefind:src> activating pad from none
0:00:01.525178375 2032 0x237d280 DEBUG GST_PADS gstpad.c:1003:pre_activate:<typefind:src> setting pad into push mode, unset flushing
0:00:01.525212625 2032 0x237d280 DEBUG GST_PADS gstpad.c:1226:activate_mode_internal:<typefind:src> activated in push mode
0:00:01.525243042 2032 0x237d280 DEBUG GST_PADS gstpad.c:1098:gst_pad_set_active:<typefind:sink> activating pad from none
0:00:01.525291125 2032 0x237d280 DEBUG GST_PADS gstpad.c:4300:gst_pad_peer_query:<typefind:sink> peer query 0x249af20 (scheduling)
0:00:01.525335334 2032 0x237d280 DEBUG GST_PADS gstpad.c:4173:gst_pad_query:<sink:proxypad1> doing query 0x249af20 (scheduling)
0:00:01.525374167 2032 0x237d280 DEBUG GST_PADS gstpad.c:3514:gst_pad_query_default:<sink:proxypad1> forwarding 0x249af20 (scheduling) query
0:00:01.525422334 2032 0x237d280 DEBUG GST_PADS gstpad.c:4300:gst_pad_peer_query:<parsebin0:sink> peer query 0x249af20 (scheduling)
0:00:01.525457750 2032 0x237d280 DEBUG GST_PADS gstpad.c:4173:gst_pad_query:<sink:proxypad0> doing query 0x249af20 (scheduling)
0:00:01.525491292 2032 0x237d280 DEBUG GST_PADS gstpad.c:3514:gst_pad_query_default:<sink:proxypad0> forwarding 0x249af20 (scheduling) query
0:00:01.525529709 2032 0x237d280 DEBUG GST_PADS gstpad.c:4300:gst_pad_peer_query:<decodebin3-0:sink> peer query 0x249af20 (scheduling)
0:00:01.525563417 2032 0x237d280 DEBUG GST_PADS gstpad.c:4173:gst_pad_query:<filesrc0:src> doing query 0x249af20 (scheduling)
0:00:01.525773167 2032 0x237d280 DEBUG GST_PADS gstpad.c:6425:gst_pad_stop_task:<filesrc0:src> stop task
0:00:01.525815959 2032 0x237d280 DEBUG GST_PADS gstpad.c:6450:gst_pad_stop_task:<filesrc0:src> no task
0:00:01.525862667 2032 0x237d280 WARN basesrc gstbasesrc.c:3688:gst_base_src_start_complete:<filesrc0> pad not activated yet
0:00:01.525986167 2032 0x237d280 DEBUG GST_PADS gstpad.c:4196:gst_pad_query:<filesrc0:src> sent query 0x249af20 (scheduling), result 1
0:00:01.526039792 2032 0x237d280 DEBUG GST_PADS gstpad.c:4196:gst_pad_query:<sink:proxypad0> sent query 0x249af20 (scheduling), result 1
0:00:01.526081667 2032 0x237d280 DEBUG GST_PADS gstpad.c:4196:gst_pad_query:<sink:proxypad1> sent query 0x249af20 (scheduling), result 1
0:00:01.526130667 2032 0x237d280 DEBUG GST_PADS gstpad.c:1183:activate_mode_internal:<typefind:sink> calling peer
0:00:01.526162209 2032 0x237d280 DEBUG GST_PADS gstpad.c:1170:activate_mode_internal:<sink:proxypad1> deactivating pad from push mode
0:00:01.526190125 2032 0x237d280 DEBUG GST_PADS gstpad.c:983:pre_activate:<sink:proxypad1> setting PAD_MODE NONE, set flushing
0:00:01.526220792 2032 0x237d280 DEBUG GST_PADS gstpad.c:983:pre_activate:<parsebin0:sink> setting PAD_MODE NONE, set flushing
0:00:01.526255209 2032 0x237d280 DEBUG GST_PADS gstpad.c:1330:gst_pad_activate_mode:<sink:proxypad1> already deactivated in push mode
0:00:01.526282209 2032 0x237d280 DEBUG GST_PADS gstpad.c:1046:post_activate:<parsebin0:sink> stopped streaming
0:00:01.526322792 2032 0x237d280 DEBUG GST_PADS gstpad.c:1226:activate_mode_internal:<parsebin0:sink> deactivated in push mode
0:00:01.526349667 2032 0x237d280 DEBUG GST_PADS gstpad.c:1046:post_activate:<sink:proxypad1> stopped streaming
0:00:01.526379334 2032 0x237d280 DEBUG GST_PADS gstpad.c:1226:activate_mode_internal:<sink:proxypad1> deactivated in push mode
0:00:01.526429500 2032 0x237d280 DEBUG GST_PADS gstpad.c:1003:pre_activate:<sink:proxypad1> setting pad into pull mode, unset flushing
0:00:01.526460667 2032 0x237d280 DEBUG GST_PADS gstpad.c:1183:activate_mode_internal:<parsebin0:sink> calling peer
0:00:01.526489500 2032 0x237d280 DEBUG GST_PADS gstpad.c:1170:activate_mode_internal:<sink:proxypad0> deactivating pad from push mode
0:00:01.526514917 2032 0x237d280 DEBUG GST_PADS gstpad.c:983:pre_activate:<sink:proxypad0> setting PAD_MODE NONE, set flushing
0:00:01.526544834 2032 0x237d280 DEBUG GST_PADS gstpad.c:983:pre_activate:<decodebin3-0:sink> setting PAD_MODE NONE, set flushing
0:00:01.526578209 2032 0x237d280 DEBUG GST_PADS gstpad.c:1330:gst_pad_activate_mode:<sink:proxypad0> already deactivated in push mode
0:00:01.526607209 2032 0x237d280 DEBUG GST_PADS gstpad.c:1046:post_activate:<decodebin3-0:sink> stopped streaming
0:00:01.526638792 2032 0x237d280 DEBUG GST_PADS gstpad.c:1226:activate_mode_internal:<decodebin3-0:sink> deactivated in push mode
0:00:01.526665625 2032 0x237d280 DEBUG GST_PADS gstpad.c:1046:post_activate:<sink:proxypad0> stopped streaming
0:00:01.526695625 2032 0x237d280 DEBUG GST_PADS gstpad.c:1226:activate_mode_internal:<sink:proxypad0> deactivated in push mode
0:00:01.526723709 2032 0x237d280 DEBUG GST_PADS gstpad.c:1003:pre_activate:<sink:proxypad0> setting pad into pull mode, unset flushing
0:00:01.526749292 2032 0x237d280 DEBUG GST_PADS gstpad.c:1183:activate_mode_internal:<decodebin3-0:sink> calling peer
0:00:01.526777750 2032 0x237d280 DEBUG GST_PADS gstpad.c:1003:pre_activate:<filesrc0:src> setting pad into pull mode, unset flushing
0:00:01.526912792 2032 0x237d280 DEBUG GST_PADS gstpad.c:1226:activate_mode_internal:<filesrc0:src> activated in pull mode
0:00:01.526952542 2032 0x237d280 DEBUG GST_PADS gstpad.c:1003:pre_activate:<decodebin3-0:sink> setting pad into pull mode, unset flushing
0:00:01.526986500 2032 0x237d280 DEBUG GST_PADS gstpad.c:1015:pre_activate:<decodebin3-0:sink> reschedule events on peer filesrc0:src
0:00:01.527019000 2032 0x237d280 DEBUG GST_PADS gstpad.c:1330:gst_pad_activate_mode:<filesrc0:src> already activated in pull mode
0:00:01.527051042 2032 0x237d280 DEBUG GST_PADS gstpad.c:1226:activate_mode_internal:<decodebin3-0:sink> activated in pull mode
0:00:01.527083042 2032 0x237d280 DEBUG GST_PADS gstpad.c:1226:activate_mode_internal:<sink:proxypad0> activated in pull mode
0:00:01.527112667 2032 0x237d280 DEBUG GST_PADS gstpad.c:1003:pre_activate:<parsebin0:sink> setting pad into pull mode, unset flushing
0:00:01.527143209 2032 0x237d280 DEBUG GST_PADS gstpad.c:1015:pre_activate:<parsebin0:sink> reschedule events on peer sink:proxypad0
0:00:01.527176459 2032 0x237d280 DEBUG GST_PADS gstpad.c:1330:gst_pad_activate_mode:<sink:proxypad0> already activated in pull mode
0:00:01.527217792 2032 0x237d280 DEBUG GST_PADS gstpad.c:1226:activate_mode_internal:<parsebin0:sink> activated in pull mode
0:00:01.527252167 2032 0x237d280 DEBUG GST_PADS gstpad.c:1226:activate_mode_internal:<sink:proxypad1> activated in pull mode
0:00:01.527282792 2032 0x237d280 DEBUG GST_PADS gstpad.c:1003:pre_activate:<typefind:sink> setting pad into pull mode, unset flushing
0:00:01.527312959 2032 0x237d280 DEBUG GST_PADS gstpad.c:1015:pre_activate:<typefind:sink> reschedule events on peer sink:proxypad1
0:00:01.527344792 2032 0x237d280 DEBUG GST_PADS gstpad.c:1226:activate_mode_internal:<typefind:sink> activated in pull mode
0:00:01.527370292 2032 0x237d280 DEBUG GST_PADS gstpad.c:6282:gst_pad_start_task:<typefind:sink> start task
0:00:01.527537250 2032 0x237d280 INFO GST_PADS gstpad.c:6291:gst_pad_start_task:<typefind:sink> created task 0x24b4028
0:00:01.527574584 2032 0x237d280 DEBUG GST_PADS gstpad.c:6210:do_stream_status:<typefind:sink> doing stream-status 0
0:00:01.527627500 2032 0x237d280 DEBUG GST_PADS gstpad.c:6237:do_stream_status:<typefind:sink> posting stream-status 0
0:00:01.527984709 2032 0x237d280 DEBUG GST_ELEMENT_PADS gstelement.c:3246:gst_element_pads_activate:<typefind> pad activation successful
0:00:01.528096584 2032 0x237d280 DEBUG GST_ELEMENT_PADS gstelement.c:3227:gst_element_pads_activate:<parsebin0> activate pads
0:00:01.528108000 2032 0x249b840 DEBUG GST_PADS gstpad.c:6210:do_stream_status:<typefind:sink> doing stream-status 1
0:00:01.528152584 2032 0x237d280 DEBUG GST_PADS gstpad.c:1103:gst_pad_set_active:<parsebin0:sink> pad was active in pull mode
0:00:01.528189500 2032 0x237d280 DEBUG GST_ELEMENT_PADS gstelement.c:3246:gst_element_pads_activate:<parsebin0> pad activation successful
0:00:01.528210000 2032 0x249b840 DEBUG GST_PADS gstpad.c:6237:do_stream_status:<typefind:sink> posting stream-status 1
0:00:01.528290000 2032 0x237d280 DEBUG GST_ELEMENT_PADS gstelement.c:3227:gst_element_pads_activate:<multiqueue0> activate pads
0:00:01.528309542 2032 0x249b840 INFO GST_ELEMENT_PADS gstelement.c:1016:gst_element_get_static_pad: found pad typefind:sink
0:00:01.528336125 2032 0x237d280 DEBUG GST_ELEMENT_PADS gstelement.c:3246:gst_element_pads_activate:<multiqueue0> pad activation successful
0:00:01.528373834 2032 0x249b840 DEBUG GST_ELEMENT_PADS gstelement.c:2088:gst_element_query: send query on element typefind
0:00:01.528401875 2032 0x249b840 DEBUG GST_ELEMENT_PADS gstelement.c:1873:gst_element_get_random_pad: getting a random pad
0:00:01.528407542 2032 0x237d280 DEBUG GST_ELEMENT_PADS gstelement.c:3227:gst_element_pads_activate:<decodebin3-0> activate pads
0:00:01.528431625 2032 0x249b840 DEBUG GST_ELEMENT_PADS gstelement.c:1891:gst_element_get_random_pad: checking pad typefind:src
0:00:01.528447000 2032 0x237d280 DEBUG GST_PADS gstpad.c:1103:gst_pad_set_active:<decodebin3-0:sink> pad was active in pull mode
0:00:01.528460209 2032 0x249b840 DEBUG GST_ELEMENT_PADS gstelement.c:1903:gst_element_get_random_pad: found pad typefind:src
0:00:01.528487292 2032 0x237d280 DEBUG GST_ELEMENT_PADS gstelement.c:3246:gst_element_pads_activate:<decodebin3-0> pad activation successful
0:00:01.528495042 2032 0x249b840 DEBUG GST_PADS gstpad.c:4173:gst_pad_query:<typefind:src> doing query 0x249b4c0 (uri)
0:00:01.528536084 2032 0x249b840 DEBUG GST_PADS gstpad.c:3514:gst_pad_query_default:<typefind:src> forwarding 0x249b4c0 (uri) query
0:00:01.528568250 2032 0x249b840 DEBUG GST_PADS gstpad.c:2968:gst_pad_iterate_internal_links_default:<typefind:src> Making iterator
0:00:01.528571667 2032 0x237d280 DEBUG GST_ELEMENT_PADS gstelement.c:3227:gst_element_pads_activate:<filesrc0> activate pads
0:00:01.528613542 2032 0x237d280 DEBUG GST_PADS gstpad.c:1103:gst_pad_set_active:<filesrc0:src> pad was active in pull mode
0:00:01.528625959 2032 0x249b840 DEBUG GST_PADS gstpad.c:4300:gst_pad_peer_query:<typefind:sink> peer query 0x249b4c0 (uri)
0:00:01.528652750 2032 0x237d280 DEBUG GST_ELEMENT_PADS gstelement.c:3246:gst_element_pads_activate:<filesrc0> pad activation successful
0:00:01.528661792 2032 0x249b840 DEBUG GST_PADS gstpad.c:4173:gst_pad_query:<sink:proxypad1> doing query 0x249b4c0 (uri)
0:00:01.528698459 2032 0x249b840 DEBUG GST_PADS gstpad.c:3514:gst_pad_query_default:<sink:proxypad1> forwarding 0x249b4c0 (uri) query
0:00:01.528711542 2032 0x237d280 DEBUG GST_ELEMENT_PADS gstelement.c:3227:gst_element_pads_activate:<pipeline0> activate pads
0:00:01.528756459 2032 0x237d280 DEBUG GST_ELEMENT_PADS gstelement.c:3246:gst_element_pads_activate:<pipeline0> pad activation successful
0:00:01.528773584 2032 0x249b840 DEBUG GST_PADS gstpad.c:4300:gst_pad_peer_query:<parsebin0:sink> peer query 0x249b4c0 (uri)
Pipeline is PREROLLING ...
0:00:01.528829584 2032 0x249b840 DEBUG GST_PADS gstpad.c:4173:gst_pad_query:<sink:proxypad0> doing query 0x249b4c0 (uri)
0:00:01.528866792 2032 0x249b840 DEBUG GST_PADS gstpad.c:3514:gst_pad_query_default:<sink:proxypad0> forwarding 0x249b4c0 (uri) query
0:00:01.528909167 2032 0x249b840 DEBUG GST_PADS gstpad.c:4300:gst_pad_peer_query:<decodebin3-0:sink> peer query 0x249b4c0 (uri)
0:00:01.528946209 2032 0x249b840 DEBUG GST_PADS gstpad.c:4173:gst_pad_query:<filesrc0:src> doing query 0x249b4c0 (uri)
0:00:01.529023334 2032 0x249b840 DEBUG GST_PADS gstpad.c:4196:gst_pad_query:<filesrc0:src> sent query 0x249b4c0 (uri), result 1
0:00:01.529071375 2032 0x249b840 DEBUG GST_PADS gstpad.c:4196:gst_pad_query:<sink:proxypad0> sent query 0x249b4c0 (uri), result 1
0:00:01.529113084 2032 0x249b840 DEBUG GST_PADS gstpad.c:4196:gst_pad_query:<sink:proxypad1> sent query 0x249b4c0 (uri), result 1
0:00:01.529154500 2032 0x249b840 DEBUG GST_PADS gstpad.c:4196:gst_pad_query:<typefind:src> sent query 0x249b4c0 (uri), result 1
0:00:01.529334834 2032 0x249b840 DEBUG GST_PADS gstpad.c:4105:check_sticky:<typefind:src> pushing all sticky events
0:00:01.529384500 2032 0x249b840 DEBUG GST_PADS gstpad.c:5597:gst_pad_push_event_unchecked:<typefind:src> Dropping event stream-start because pad is not linked
0:00:01.529417959 2032 0x249b840 DEBUG GST_PADS gstpad.c:4076:push_sticky:<typefind:src> pad was not linked, mark pending
0:00:01.529475584 2032 0x249b840 DEBUG GST_PADS gstpad.c:4173:gst_pad_query:<sink:proxypad1> doing query 0x249b4f0 (duration)
0:00:01.529518667 2032 0x249b840 DEBUG GST_PADS gstpad.c:3514:gst_pad_query_default:<sink:proxypad1> forwarding 0x249b4f0 (duration) query
0:00:01.529563834 2032 0x249b840 DEBUG GST_PADS gstpad.c:4300:gst_pad_peer_query:<parsebin0:sink> peer query 0x249b4f0 (duration)
0:00:01.529597959 2032 0x249b840 DEBUG GST_PADS gstpad.c:4173:gst_pad_query:<sink:proxypad0> doing query 0x249b4f0 (duration)
0:00:01.529633750 2032 0x249b840 DEBUG GST_PADS gstpad.c:3514:gst_pad_query_default:<sink:proxypad0> forwarding 0x249b4f0 (duration) query
0:00:01.529671542 2032 0x249b840 DEBUG GST_PADS gstpad.c:4300:gst_pad_peer_query:<decodebin3-0:sink> peer query 0x249b4f0 (duration)
0:00:01.529750292 2032 0x249b840 DEBUG GST_PADS gstpad.c:4173:gst_pad_query:<filesrc0:src> doing query 0x249b4f0 (duration)
0:00:01.529857084 2032 0x249b840 DEBUG GST_PADS gstpad.c:4196:gst_pad_query:<filesrc0:src> sent query 0x249b4f0 (duration), result 1
0:00:01.529904500 2032 0x249b840 DEBUG GST_PADS gstpad.c:4196:gst_pad_query:<sink:proxypad0> sent query 0x249b4f0 (duration), result 1
0:00:01.529943875 2032 0x249b840 DEBUG GST_PADS gstpad.c:4196:gst_pad_query:<sink:proxypad1> sent query 0x249b4f0 (duration), result 1
0:00:01.530002542 2032 0x249b840 DEBUG GST_PADS gstpad.c:4300:gst_pad_peer_query:<typefind:sink> peer query 0x249b520 (uri)
0:00:01.530038125 2032 0x249b840 DEBUG GST_PADS gstpad.c:4173:gst_pad_query:<sink:proxypad1> doing query 0x249b520 (uri)
0:00:01.530079625 2032 0x249b840 DEBUG GST_PADS gstpad.c:3514:gst_pad_query_default:<sink:proxypad1> forwarding 0x249b520 (uri) query
0:00:01.530127292 2032 0x249b840 DEBUG GST_PADS gstpad.c:4300:gst_pad_peer_query:<parsebin0:sink> peer query 0x249b520 (uri)
0:00:01.530163000 2032 0x249b840 DEBUG GST_PADS gstpad.c:4173:gst_pad_query:<sink:proxypad0> doing query 0x249b520 (uri)
0:00:01.530199209 2032 0x249b840 DEBUG GST_PADS gstpad.c:3514:gst_pad_query_default:<sink:proxypad0> forwarding 0x249b520 (uri) query
0:00:01.530238875 2032 0x249b840 DEBUG GST_PADS gstpad.c:4300:gst_pad_peer_query:<decodebin3-0:sink> peer query 0x249b520 (uri)
0:00:01.530272417 2032 0x249b840 DEBUG GST_PADS gstpad.c:4173:gst_pad_query:<filesrc0:src> doing query 0x249b520 (uri)
0:00:01.530319125 2032 0x249b840 DEBUG GST_PADS gstpad.c:4196:gst_pad_query:<filesrc0:src> sent query 0x249b520 (uri), result 1
0:00:01.530360000 2032 0x249b840 DEBUG GST_PADS gstpad.c:4196:gst_pad_query:<sink:proxypad0> sent query 0x249b520 (uri), result 1
0:00:01.530396542 2032 0x249b840 DEBUG GST_PADS gstpad.c:4196:gst_pad_query:<sink:proxypad1> sent query 0x249b520 (uri), result 1
0:00:01.544797584 2032 0x249b840 DEBUG GST_PADS gstpad.c:5363:store_sticky_event:<typefind:src> notify caps
0:00:01.544925542 2032 0x249b840 INFO GST_ELEMENT_PADS gstelement.c:1016:gst_element_get_static_pad: found pad typefind:src
0:00:01.544964375 2032 0x249b840 INFO GST_ELEMENT_PADS gstelement.c:1016:gst_element_get_static_pad: found pad typefind:sink
0:00:01.545193125 2032 0x249b840 DEBUG GST_PADS gstpad.c:2026:gst_pad_set_iterate_internal_links_function_full:<GstProxyPad@0xb5928150> internal link iterator set to gst_proxy_pad_iterate_internal_links_default
0:00:01.545241250 2032 0x249b840 DEBUG GST_PADS gstpad.c:1771:gst_pad_set_activatemode_function_full:<GstGhostPad@0xb5928150> activatemodefunc set to gst_ghost_pad_activate_mode_default
0:00:01.545309125 2032 0x249b840 DEBUG GST_PADS gstpad.c:1879:gst_pad_set_getrange_function_full:<'':parsepad0> getrangefunc set to gst_proxy_pad_getrange_default
0:00:01.545361917 2032 0x249b840 DEBUG GST_PADS gstpad.c:2026:gst_pad_set_iterate_internal_links_function_full:<GstProxyPad@0x24a0630> internal link iterator set to gst_proxy_pad_iterate_internal_links_default
0:00:01.545427250 2032 0x249b840 DEBUG GST_PADS gstpad.c:1806:gst_pad_set_chain_function_full:<'':proxypad2> chainfunc set to gst_proxy_pad_chain_default
0:00:01.545463334 2032 0x249b840 DEBUG GST_PADS gstpad.c:1843:gst_pad_set_chain_list_function_full:<'':proxypad2> chainlistfunc set to gst_proxy_pad_chain_list_default
0:00:01.545497875 2032 0x249b840 DEBUG GST_PADS gstpad.c:1771:gst_pad_set_activatemode_function_full:<parsepad0:proxypad2> activatemodefunc set to gst_ghost_pad_internal_activate_mode_default
0:00:01.545568250 2032 0x249b840 DEBUG GST_PADS gstpad.c:1992:gst_pad_set_query_function_full:<parsepad0:proxypad2> queryfunc set to 0xb6569c05
0:00:01.545619792 2032 0x249b840 DEBUG GST_PADS gstpad.c:1098:gst_pad_set_active:<'':parsepad0> activating pad from none
0:00:01.545656000 2032 0x249b840 DEBUG GST_PADS gstpad.c:1003:pre_activate:<'':parsepad0> setting pad into push mode, unset flushing
0:00:01.545726709 2032 0x249b840 DEBUG GST_PADS gstpad.c:1003:pre_activate:<parsepad0:proxypad2> setting pad into push mode, unset flushing
0:00:01.545771000 2032 0x249b840 DEBUG GST_PADS gstpad.c:1330:gst_pad_activate_mode:<'':parsepad0> already activated in push mode
0:00:01.545812209 2032 0x249b840 DEBUG GST_PADS gstpad.c:1226:activate_mode_internal:<parsepad0:proxypad2> activated in push mode
0:00:01.545848792 2032 0x249b840 DEBUG GST_PADS gstpad.c:1226:activate_mode_internal:<'':parsepad0> activated in push mode
0:00:01.545887375 2032 0x249b840 DEBUG GST_PADS gstghostpad.c:783:gst_ghost_pad_get_target:<'':parsepad0> get target '':''
0:00:01.545925709 2032 0x249b840 DEBUG GST_PADS gstghostpad.c:821:gst_ghost_pad_set_target:<'':parsepad0> set target typefind:src
0:00:01.545961209 2032 0x249b840 DEBUG GST_PADS gstghostpad.c:842:gst_ghost_pad_set_target:<'':parsepad0> connecting internal pad to target <typefind:src>
0:00:01.546038667 2032 0x249b840 INFO GST_PADS gstpad.c:2382:gst_pad_link_prepare: trying to link typefind:src and parsepad0:proxypad2
0:00:01.546089250 2032 0x249b840 INFO GST_PADS gstpad.c:2590:gst_pad_link_full: linked typefind:src and parsepad0:proxypad2, successful
0:00:01.546175875 2032 0x249b840 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<filesrc0:src> sent event, ret ok
0:00:01.546218084 2032 0x249b840 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<sink:proxypad0> sent event, ret ok
0:00:01.546253459 2032 0x249b840 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<sink:proxypad1> sent event, ret ok
0:00:01.546283667 2032 0x249b840 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<typefind:src> sent event, ret ok
0:00:01.546356542 2032 0x249b840 DEBUG GST_CAPS gstpad.c:2737:gst_pad_get_current_caps:<'':parsepad0> get current pad caps (NULL)
0:00:01.546391959 2032 0x249b840 DEBUG GST_PADS gstghostpad.c:783:gst_ghost_pad_get_target:<'':parsepad0> get target typefind:src
0:00:01.546440209 2032 0x249b840 DEBUG GST_CAPS gstpad.c:2737:gst_pad_get_current_caps:<typefind:src> get current pad caps video/quicktime, variant=(string)iso
0:00:01.546685209 2032 0x249b840 DEBUG GST_PADS gstpad.c:5363:store_sticky_event:<'':parsepad0> notify caps
0:00:01.546853250 2032 0x249b840 DEBUG GST_CAPS gstpad.c:2737:gst_pad_get_current_caps:<typefind:src> get current pad caps video/quicktime, variant=(string)iso
0:00:01.553365375 2032 0x249b840 DEBUG GST_PADS gstghostpad.c:783:gst_ghost_pad_get_target:<'':parsepad0> get target typefind:src
0:00:01.553483042 2032 0x249b840 DEBUG GST_PADS gstghostpad.c:783:gst_ghost_pad_get_target:<'':parsepad0> get target typefind:src
0:00:01.553535792 2032 0x249b840 DEBUG GST_PADS gstghostpad.c:823:gst_ghost_pad_set_target:<'':parsepad0> clearing target
0:00:01.553578209 2032 0x249b840 INFO GST_ELEMENT_PADS gstpad.c:2137:gst_pad_unlink: unlinking typefind:src(0x24984e0) and parsepad0:proxypad2(0x24a0630)
0:00:01.553655417 2032 0x249b840 INFO GST_ELEMENT_PADS gstpad.c:2192:gst_pad_unlink: unlinked typefind:src and parsepad0:proxypad2
0:00:01.560030709 2032 0x249b840 DEBUG GST_ELEMENT_PADS gstelement.c:317:gst_element_base_class_init: type GstQTDemux : factory 0x23e8000
0:00:01.561056875 2032 0x249b840 DEBUG GST_PADS gstpad.c:1736:gst_pad_set_activate_function_full:<'':sink> activatefunc set to 0xb4d4d785
0:00:01.561118792 2032 0x249b840 DEBUG GST_PADS gstpad.c:1771:gst_pad_set_activatemode_function_full:<'':sink> activatemodefunc set to 0xb4d4ddad
0:00:01.561159792 2032 0x249b840 DEBUG GST_PADS gstpad.c:1806:gst_pad_set_chain_function_full:<'':sink> chainfunc set to 0xb4d6c67d
0:00:01.561197709 2032 0x249b840 DEBUG GST_PADS gstpad.c:1912:gst_pad_set_event_function_full:<'':sink> eventfunc for set to 0xb4d6cc31
0:00:01.561260667 2032 0x249b840 DEBUG GST_PADS gstpad.c:1992:gst_pad_set_query_function_full:<'':sink> queryfunc set to 0xb4d4dac1
0:00:01.561294834 2032 0x249b840 INFO GST_ELEMENT_PADS gstelement.c:759:gst_element_add_pad:<GstQTDemux@0x2496b80> adding pad 'sink'
0:00:01.561457417 2032 0x249b840 DEBUG GST_PADS gstpad.c:6425:gst_pad_stop_task:<(NULL):sink> stop task
0:00:01.561490875 2032 0x249b840 DEBUG GST_PADS gstpad.c:6450:gst_pad_stop_task:<(NULL):sink> no task
0:00:01.561812875 2032 0x249b840 INFO GST_PADS gstpad.c:2382:gst_pad_link_prepare: trying to link typefind:src and qtdemux0:sink
0:00:01.561874250 2032 0x249b840 INFO GST_PADS gstpad.c:2590:gst_pad_link_full: linked typefind:src and qtdemux0:sink, successful
0:00:01.561975667 2032 0x249b840 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<filesrc0:src> sent event, ret ok
0:00:01.562017750 2032 0x249b840 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<sink:proxypad0> sent event, ret ok
0:00:01.562054500 2032 0x249b840 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<sink:proxypad1> sent event, ret ok
0:00:01.562084459 2032 0x249b840 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<typefind:src> sent event, ret ok
0:00:01.562265584 2032 0x249b840 DEBUG GST_CAPS gstutils.c:3185:gst_pad_query_accept_caps:<qtdemux0:sink> accept caps of video/quicktime, variant=(string)iso
0:00:01.562320250 2032 0x249b840 DEBUG GST_PADS gstpad.c:4173:gst_pad_query:<qtdemux0:sink> doing query 0xb5901af0 (accept-caps)
0:00:01.562384167 2032 0x249b840 DEBUG GST_PADS gstpad.c:3200:gst_pad_query_accept_caps_default:<qtdemux0:sink> query accept-caps accept-caps query: 0xb5901af0, GstQueryAcceptCaps, caps=(GstCaps)"video/quicktime\,\ variant\=\(string\)iso", result=(boolean)false;
0:00:01.562428834 2032 0x249b840 DEBUG GST_CAPS gstutils.c:3102:gst_pad_query_caps:<qtdemux0:sink> get pad caps with filter video/quicktime, variant=(string)iso
0:00:01.562467459 2032 0x249b840 DEBUG GST_PADS gstpad.c:4173:gst_pad_query:<qtdemux0:sink> doing query 0xb5901b20 (caps)
0:00:01.562521750 2032 0x249b840 DEBUG GST_CAPS gstpad.c:3259:gst_pad_query_caps_default:<qtdemux0:sink> query caps caps query: 0xb5901b20, GstQueryCaps, filter=(GstCaps)"video/quicktime\,\ variant\=\(string\)iso", caps=(GstCaps)"NULL";
0:00:01.562549750 2032 0x249b840 DEBUG GST_CAPS gstpad.c:3283:gst_pad_query_caps_default:<qtdemux0:sink> trying pad template caps
0:00:01.562597334 2032 0x249b840 DEBUG GST_CAPS gstpad.c:3305:gst_pad_query_caps_default:<qtdemux0:sink> using caps 0xb59467b8 video/quicktime; video/mj2; audio/x-m4a; application/x-3gp with filter 0xb5921000 video/quicktime, variant=(string)iso
0:00:01.562663500 2032 0x249b840 DEBUG GST_CAPS gstpad.c:3309:gst_pad_query_caps_default:<qtdemux0:sink> result 0xb5946a78 video/quicktime, variant=(string)iso
0:00:01.562704584 2032 0x249b840 DEBUG GST_PADS gstpad.c:3514:gst_pad_query_default:<qtdemux0:sink> not forwarding 0xb5901b20 (caps) query
0:00:01.562745584 2032 0x249b840 DEBUG GST_PADS gstpad.c:4196:gst_pad_query:<qtdemux0:sink> sent query 0xb5901b20 (caps), result 1
0:00:01.562784417 2032 0x249b840 DEBUG GST_CAPS gstutils.c:3109:gst_pad_query_caps:<qtdemux0:sink> query returned video/quicktime, variant=(string)iso
0:00:01.562830334 2032 0x249b840 DEBUG GST_PADS gstpad.c:3230:gst_pad_query_accept_caps_default:<qtdemux0:sink> allowed caps subset video/quicktime, variant=(string)iso, caps video/quicktime, variant=(string)iso
0:00:01.562876334 2032 0x249b840 DEBUG GST_PADS gstpad.c:3514:gst_pad_query_default:<qtdemux0:sink> not forwarding 0xb5901af0 (accept-caps) query
0:00:01.562910917 2032 0x249b840 DEBUG GST_PADS gstpad.c:4196:gst_pad_query:<qtdemux0:sink> sent query 0xb5901af0 (accept-caps), result 1
0:00:01.562981709 2032 0x249b840 INFO GST_ELEMENT_PADS gstelement.c:1013:gst_element_get_static_pad: no such pad 'video_%u' in element "qtdemux0"
0:00:01.563013334 2032 0x249b840 INFO GST_ELEMENT_PADS gstelement.c:1013:gst_element_get_static_pad: no such pad 'audio_%u' in element "qtdemux0"
0:00:01.563042292 2032 0x249b840 INFO GST_ELEMENT_PADS gstelement.c:1013:gst_element_get_static_pad: no such pad 'subtitle_%u' in element "qtdemux0"
0:00:01.563126750 2032 0x249b840 DEBUG GST_PADS gstpad.c:6425:gst_pad_stop_task:<qtdemux0:sink> stop task
0:00:01.563155125 2032 0x249b840 DEBUG GST_PADS gstpad.c:6450:gst_pad_stop_task:<qtdemux0:sink> no task
0:00:01.563201375 2032 0x249b840 DEBUG GST_ELEMENT_PADS gstelement.c:3227:gst_element_pads_activate:<qtdemux0> activate pads
0:00:01.563243917 2032 0x249b840 DEBUG GST_PADS gstpad.c:1098:gst_pad_set_active:<qtdemux0:sink> activating pad from none
0:00:01.563289625 2032 0x249b840 DEBUG GST_PADS gstpad.c:4300:gst_pad_peer_query:<qtdemux0:sink> peer query 0xb5901b80 (scheduling)
0:00:01.563323292 2032 0x249b840 DEBUG GST_PADS gstpad.c:4173:gst_pad_query:<typefind:src> doing query 0xb5901b80 (scheduling)
0:00:01.563358459 2032 0x249b840 DEBUG GST_PADS gstpad.c:4300:gst_pad_peer_query:<typefind:sink> peer query 0xb5901b80 (scheduling)
0:00:01.563391500 2032 0x249b840 DEBUG GST_PADS gstpad.c:4173:gst_pad_query:<sink:proxypad1> doing query 0xb5901b80 (scheduling)
0:00:01.563426709 2032 0x249b840 DEBUG GST_PADS gstpad.c:3514:gst_pad_query_default:<sink:proxypad1> forwarding 0xb5901b80 (scheduling) query
0:00:01.563469792 2032 0x249b840 DEBUG GST_PADS gstpad.c:4300:gst_pad_peer_query:<parsebin0:sink> peer query 0xb5901b80 (scheduling)
0:00:01.563514167 2032 0x249b840 DEBUG GST_PADS gstpad.c:4173:gst_pad_query:<sink:proxypad0> doing query 0xb5901b80 (scheduling)
0:00:01.563550834 2032 0x249b840 DEBUG GST_PADS gstpad.c:3514:gst_pad_query_default:<sink:proxypad0> forwarding 0xb5901b80 (scheduling) query
0:00:01.563590709 2032 0x249b840 DEBUG GST_PADS gstpad.c:4300:gst_pad_peer_query:<decodebin3-0:sink> peer query 0xb5901b80 (scheduling)
0:00:01.563622292 2032 0x249b840 DEBUG GST_PADS gstpad.c:4173:gst_pad_query:<filesrc0:src> doing query 0xb5901b80 (scheduling)
0:00:01.563673334 2032 0x249b840 DEBUG GST_PADS gstpad.c:4196:gst_pad_query:<filesrc0:src> sent query 0xb5901b80 (scheduling), result 1
0:00:01.563714209 2032 0x249b840 DEBUG GST_PADS gstpad.c:4196:gst_pad_query:<sink:proxypad0> sent query 0xb5901b80 (scheduling), result 1
0:00:01.563749792 2032 0x249b840 DEBUG GST_PADS gstpad.c:4196:gst_pad_query:<sink:proxypad1> sent query 0xb5901b80 (scheduling), result 1
0:00:01.563784250 2032 0x249b840 DEBUG GST_PADS gstpad.c:4196:gst_pad_query:<typefind:src> sent query 0xb5901b80 (scheduling), result 1
0:00:01.563826292 2032 0x249b840 DEBUG GST_PADS gstpad.c:1183:activate_mode_internal:<qtdemux0:sink> calling peer
0:00:01.563858084 2032 0x249b840 DEBUG GST_PADS gstpad.c:1170:activate_mode_internal:<typefind:src> deactivating pad from push mode
0:00:01.563885417 2032 0x249b840 DEBUG GST_PADS gstpad.c:983:pre_activate:<typefind:src> setting PAD_MODE NONE, set flushing
0:00:01.563915459 2032 0x249b840 DEBUG GST_PADS gstpad.c:1046:post_activate:<typefind:src> stopped streaming
0:00:01.563949125 2032 0x249b840 DEBUG GST_PADS gstpad.c:458:remove_events:<typefind:src> notify caps
0:00:01.564009125 2032 0x249b840 DEBUG GST_PADS gstpad.c:1226:activate_mode_internal:<typefind:src> deactivated in push mode
0:00:01.564042084 2032 0x249b840 DEBUG GST_PADS gstpad.c:1003:pre_activate:<typefind:src> setting pad into pull mode, unset flushing
0:00:01.564068209 2032 0x249b840 DEBUG GST_PADS gstpad.c:6338:gst_pad_pause_task:<typefind:sink> pause task
0:00:01.564105834 2032 0x249b840 DEBUG GST_PADS gstpad.c:1330:gst_pad_activate_mode:<typefind:sink> already activated in pull mode
0:00:01.564140834 2032 0x249b840 DEBUG GST_PADS gstpad.c:1226:activate_mode_internal:<typefind:src> activated in pull mode
0:00:01.564172584 2032 0x249b840 DEBUG GST_PADS gstpad.c:1003:pre_activate:<qtdemux0:sink> setting pad into pull mode, unset flushing
0:00:01.564203667 2032 0x249b840 DEBUG GST_PADS gstpad.c:1015:pre_activate:<qtdemux0:sink> reschedule events on peer typefind:src
0:00:01.564230250 2032 0x249b840 DEBUG GST_PADS gstpad.c:6282:gst_pad_start_task:<qtdemux0:sink> start task
0:00:01.564300625 2032 0x249b840 INFO GST_PADS gstpad.c:6291:gst_pad_start_task:<qtdemux0:sink> created task 0x24b46b8
0:00:01.564343042 2032 0x249b840 DEBUG GST_PADS gstpad.c:6210:do_stream_status:<qtdemux0:sink> doing stream-status 0
0:00:01.564390042 2032 0x249b840 DEBUG GST_PADS gstpad.c:6237:do_stream_status:<qtdemux0:sink> posting stream-status 0
0:00:01.564761709 2032 0x249b840 DEBUG GST_PADS gstpad.c:1226:activate_mode_internal:<qtdemux0:sink> activated in pull mode
0:00:01.564830000 2032 0x249b840 DEBUG GST_ELEMENT_PADS gstelement.c:3246:gst_element_pads_activate:<qtdemux0> pad activation successful
0:00:01.564904000 2032 0x249bf70 DEBUG GST_PADS gstpad.c:6210:do_stream_status:<qtdemux0:sink> doing stream-status 1
0:00:01.565039625 2032 0x249bf70 DEBUG GST_PADS gstpad.c:6237:do_stream_status:<qtdemux0:sink> posting stream-status 1
0:00:01.565746084 2032 0x249bf70 DEBUG GST_ELEMENT_PADS gstelement.c:2088:gst_element_query: send query on element qtdemux0
0:00:01.565814917 2032 0x249bf70 DEBUG GST_ELEMENT_PADS gstelement.c:1873:gst_element_get_random_pad: getting a random pad
0:00:01.565846917 2032 0x249bf70 DEBUG GST_ELEMENT_PADS gstelement.c:1873:gst_element_get_random_pad: getting a random pad
0:00:01.565881250 2032 0x249bf70 DEBUG GST_ELEMENT_PADS gstelement.c:1891:gst_element_get_random_pad: checking pad qtdemux0:sink
0:00:01.565910250 2032 0x249bf70 DEBUG GST_ELEMENT_PADS gstelement.c:1903:gst_element_get_random_pad: found pad qtdemux0:sink
0:00:01.565952042 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4173:gst_pad_query:<typefind:src> doing query 0xb5902380 (uri)
0:00:01.566002125 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3514:gst_pad_query_default:<typefind:src> forwarding 0xb5902380 (uri) query
0:00:01.566034084 2032 0x249bf70 DEBUG GST_PADS gstpad.c:2968:gst_pad_iterate_internal_links_default:<typefind:src> Making iterator
0:00:01.566133500 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4300:gst_pad_peer_query:<typefind:sink> peer query 0xb5902380 (uri)
0:00:01.566174875 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4173:gst_pad_query:<sink:proxypad1> doing query 0xb5902380 (uri)
0:00:01.566213209 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3514:gst_pad_query_default:<sink:proxypad1> forwarding 0xb5902380 (uri) query
0:00:01.566267834 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4300:gst_pad_peer_query:<parsebin0:sink> peer query 0xb5902380 (uri)
0:00:01.566302959 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4173:gst_pad_query:<sink:proxypad0> doing query 0xb5902380 (uri)
0:00:01.566338917 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3514:gst_pad_query_default:<sink:proxypad0> forwarding 0xb5902380 (uri) query
0:00:01.566378834 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4300:gst_pad_peer_query:<decodebin3-0:sink> peer query 0xb5902380 (uri)
0:00:01.566413084 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4173:gst_pad_query:<filesrc0:src> doing query 0xb5902380 (uri)
0:00:01.566467709 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4196:gst_pad_query:<filesrc0:src> sent query 0xb5902380 (uri), result 1
0:00:01.566512959 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4196:gst_pad_query:<sink:proxypad0> sent query 0xb5902380 (uri), result 1
0:00:01.566550292 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4196:gst_pad_query:<sink:proxypad1> sent query 0xb5902380 (uri), result 1
0:00:01.566589875 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4196:gst_pad_query:<typefind:src> sent query 0xb5902380 (uri), result 1
0:00:01.566687292 2032 0x249bf70 WARN qtdemux qtdemux.c:3121:qtdemux_parse_trex:<qtdemux0> failed to find fragment defaults for stream 1
0:00:01.567569834 2032 0x249bf70 DEBUG GST_PADS gstpad.c:1912:gst_pad_set_event_function_full:<'':video_0> eventfunc for set to 0xb4d5d359
0:00:01.567633375 2032 0x249bf70 DEBUG GST_PADS gstpad.c:1992:gst_pad_set_query_function_full:<'':video_0> queryfunc set to 0xb4d5ce49
0:00:01.567663750 2032 0x249bf70 DEBUG GST_PADS gstpad.c:1098:gst_pad_set_active:<'':video_0> activating pad from none
0:00:01.567695667 2032 0x249bf70 DEBUG GST_PADS gstpad.c:1003:pre_activate:<'':video_0> setting pad into push mode, unset flushing
0:00:01.567735250 2032 0x249bf70 DEBUG GST_PADS gstpad.c:1226:activate_mode_internal:<'':video_0> activated in push mode
0:00:01.567816750 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4105:check_sticky:<'':video_0> pushing all sticky events
0:00:01.567857709 2032 0x249bf70 DEBUG GST_PADS gstpad.c:5597:gst_pad_push_event_unchecked:<'':video_0> Dropping event stream-start because pad is not linked
0:00:01.567886584 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4076:push_sticky:<'':video_0> pad was not linked, mark pending
0:00:01.567921542 2032 0x249bf70 DEBUG GST_CAPS gstpad.c:2737:gst_pad_get_current_caps:<'':video_0> get current pad caps (NULL)
0:00:01.567961625 2032 0x249bf70 DEBUG GST_PADS gstpad.c:5363:store_sticky_event:<'':video_0> notify caps
0:00:01.568001042 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4105:check_sticky:<'':video_0> pushing all sticky events
0:00:01.568032875 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4034:push_sticky:<'':video_0> event stream-start was already received
0:00:01.568063000 2032 0x249bf70 DEBUG GST_PADS gstpad.c:5597:gst_pad_push_event_unchecked:<'':video_0> Dropping event caps because pad is not linked
0:00:01.568088625 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4076:push_sticky:<'':video_0> pad was not linked, mark pending
0:00:01.568120875 2032 0x249bf70 INFO GST_ELEMENT_PADS gstelement.c:759:gst_element_add_pad:<qtdemux0> adding pad 'video_0'
0:00:01.568315459 2032 0x249bf70 DEBUG GST_CAPS gstpad.c:2737:gst_pad_get_current_caps:<qtdemux0:video_0> get current pad caps video/x-h264, stream-format=(string)avc, alignment=(string)au, level=(string)4.2, profile=(string)high, codec_data=(buffer)0164002affe1001b6764002aacc8501e0089f97011000003000100000300780f18319601000668e93864b22cfdf8f800, width=(int)1920, height=(int)1080, framerate=(fraction)60/1, pixel-aspect-ratio=(fraction)1/1
0:00:01.568375750 2032 0x249bf70 DEBUG GST_PADS gstghostpad.c:783:gst_ghost_pad_get_target:<'':parsepad0> get target '':''
0:00:01.568423792 2032 0x249bf70 DEBUG GST_PADS gstghostpad.c:475:gst_ghost_pad_dispose:<'':parsepad0> dispose
0:00:01.568453542 2032 0x249bf70 DEBUG GST_PADS gstghostpad.c:823:gst_ghost_pad_set_target:<'':parsepad0> clearing target
0:00:01.568488417 2032 0x249bf70 DEBUG GST_PADS gstpad.c:1771:gst_pad_set_activatemode_function_full:<parsepad0:proxypad2> activatemodefunc set to (NULL)
0:00:01.568681834 2032 0x249bf70 DEBUG GST_PADS gstpad.c:2026:gst_pad_set_iterate_internal_links_function_full:<GstProxyPad@0xb5928150> internal link iterator set to gst_proxy_pad_iterate_internal_links_default
0:00:01.568723459 2032 0x249bf70 DEBUG GST_PADS gstpad.c:1771:gst_pad_set_activatemode_function_full:<GstGhostPad@0xb5928150> activatemodefunc set to gst_ghost_pad_activate_mode_default
0:00:01.568786459 2032 0x249bf70 DEBUG GST_PADS gstpad.c:1879:gst_pad_set_getrange_function_full:<'':parsepad1> getrangefunc set to gst_proxy_pad_getrange_default
0:00:01.568829959 2032 0x249bf70 DEBUG GST_PADS gstpad.c:2026:gst_pad_set_iterate_internal_links_function_full:<GstProxyPad@0x24a0630> internal link iterator set to gst_proxy_pad_iterate_internal_links_default
0:00:01.568883084 2032 0x249bf70 DEBUG GST_PADS gstpad.c:1806:gst_pad_set_chain_function_full:<'':proxypad3> chainfunc set to gst_proxy_pad_chain_default
0:00:01.568917084 2032 0x249bf70 DEBUG GST_PADS gstpad.c:1843:gst_pad_set_chain_list_function_full:<'':proxypad3> chainlistfunc set to gst_proxy_pad_chain_list_default
0:00:01.568951500 2032 0x249bf70 DEBUG GST_PADS gstpad.c:1771:gst_pad_set_activatemode_function_full:<parsepad1:proxypad3> activatemodefunc set to gst_ghost_pad_internal_activate_mode_default
0:00:01.569000500 2032 0x249bf70 DEBUG GST_PADS gstpad.c:1992:gst_pad_set_query_function_full:<parsepad1:proxypad3> queryfunc set to 0xb6569c05
0:00:01.569036334 2032 0x249bf70 DEBUG GST_PADS gstpad.c:1098:gst_pad_set_active:<'':parsepad1> activating pad from none
0:00:01.569068125 2032 0x249bf70 DEBUG GST_PADS gstpad.c:1003:pre_activate:<'':parsepad1> setting pad into push mode, unset flushing
0:00:01.569101209 2032 0x249bf70 DEBUG GST_PADS gstpad.c:1003:pre_activate:<parsepad1:proxypad3> setting pad into push mode, unset flushing
0:00:01.569136459 2032 0x249bf70 DEBUG GST_PADS gstpad.c:1330:gst_pad_activate_mode:<'':parsepad1> already activated in push mode
0:00:01.569172792 2032 0x249bf70 DEBUG GST_PADS gstpad.c:1226:activate_mode_internal:<parsepad1:proxypad3> activated in push mode
0:00:01.569205209 2032 0x249bf70 DEBUG GST_PADS gstpad.c:1226:activate_mode_internal:<'':parsepad1> activated in push mode
0:00:01.569246667 2032 0x249bf70 DEBUG GST_PADS gstghostpad.c:783:gst_ghost_pad_get_target:<'':parsepad1> get target '':''
0:00:01.569284750 2032 0x249bf70 DEBUG GST_PADS gstghostpad.c:821:gst_ghost_pad_set_target:<'':parsepad1> set target qtdemux0:video_0
0:00:01.569317584 2032 0x249bf70 DEBUG GST_PADS gstghostpad.c:842:gst_ghost_pad_set_target:<'':parsepad1> connecting internal pad to target <qtdemux0:video_0>
0:00:01.569389292 2032 0x249bf70 INFO GST_PADS gstpad.c:2382:gst_pad_link_prepare: trying to link qtdemux0:video_0 and parsepad1:proxypad3
0:00:01.569434584 2032 0x249bf70 INFO GST_PADS gstpad.c:2590:gst_pad_link_full: linked qtdemux0:video_0 and parsepad1:proxypad3, successful
0:00:01.569476709 2032 0x249bf70 DEBUG GST_PADS gstpad.c:2968:gst_pad_iterate_internal_links_default:<qtdemux0:video_0> Making iterator
0:00:01.569544042 2032 0x249bf70 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<filesrc0:src> sent event, ret ok
0:00:01.569581750 2032 0x249bf70 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<sink:proxypad0> sent event, ret ok
0:00:01.569617417 2032 0x249bf70 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<sink:proxypad1> sent event, ret ok
0:00:01.569648667 2032 0x249bf70 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<typefind:src> sent event, ret ok
0:00:01.569711292 2032 0x249bf70 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<qtdemux0:video_0> sent event, ret ok
0:00:01.569799667 2032 0x249bf70 DEBUG GST_CAPS gstpad.c:2737:gst_pad_get_current_caps:<'':parsepad1> get current pad caps (NULL)
0:00:01.569836834 2032 0x249bf70 DEBUG GST_PADS gstghostpad.c:783:gst_ghost_pad_get_target:<'':parsepad1> get target qtdemux0:video_0
0:00:01.569963500 2032 0x249bf70 DEBUG GST_CAPS gstpad.c:2737:gst_pad_get_current_caps:<qtdemux0:video_0> get current pad caps video/x-h264, stream-format=(string)avc, alignment=(string)au, level=(string)4.2, profile=(string)high, codec_data=(buffer)0164002affe1001b6764002aacc8501e0089f97011000003000100000300780f18319601000668e93864b22cfdf8f800, width=(int)1920, height=(int)1080, framerate=(fraction)60/1, pixel-aspect-ratio=(fraction)1/1
0:00:01.570108375 2032 0x249bf70 DEBUG GST_PADS gstpad.c:5363:store_sticky_event:<'':parsepad1> notify caps
0:00:01.570295917 2032 0x249bf70 DEBUG GST_CAPS gstpad.c:2737:gst_pad_get_current_caps:<qtdemux0:video_0> get current pad caps video/x-h264, stream-format=(string)avc, alignment=(string)au, level=(string)4.2, profile=(string)high, codec_data=(buffer)0164002affe1001b6764002aacc8501e0089f97011000003000100000300780f18319601000668e93864b22cfdf8f800, width=(int)1920, height=(int)1080, framerate=(fraction)60/1, pixel-aspect-ratio=(fraction)1/1
0:00:01.570782209 2032 0x249bf70 DEBUG GST_PADS gstghostpad.c:783:gst_ghost_pad_get_target:<'':parsepad1> get target qtdemux0:video_0
0:00:01.570883500 2032 0x249bf70 DEBUG GST_PADS gstghostpad.c:783:gst_ghost_pad_get_target:<'':parsepad1> get target qtdemux0:video_0
0:00:01.570937959 2032 0x249bf70 DEBUG GST_PADS gstghostpad.c:823:gst_ghost_pad_set_target:<'':parsepad1> clearing target
0:00:01.571031792 2032 0x249bf70 INFO GST_ELEMENT_PADS gstpad.c:2137:gst_pad_unlink: unlinking qtdemux0:video_0(0x2498b98) and parsepad1:proxypad3(0x24a0630)
0:00:01.571111875 2032 0x249bf70 INFO GST_ELEMENT_PADS gstpad.c:2192:gst_pad_unlink: unlinked qtdemux0:video_0 and parsepad1:proxypad3
0:00:01.574080209 2032 0x249bf70 DEBUG GST_ELEMENT_PADS gstelement.c:317:gst_element_base_class_init: type GstBaseParse : factory (nil)
0:00:01.574213917 2032 0x249bf70 DEBUG GST_ELEMENT_PADS gstelement.c:317:gst_element_base_class_init: type GstH264Parse : factory 0x244bbf0
0:00:01.574597417 2032 0x249bf70 DEBUG GST_PADS gstpad.c:1912:gst_pad_set_event_function_full:<'':sink> eventfunc for set to gst_base_parse_sink_event
0:00:01.574646084 2032 0x249bf70 DEBUG GST_PADS gstpad.c:1992:gst_pad_set_query_function_full:<'':sink> queryfunc set to gst_base_parse_sink_query
0:00:01.574682459 2032 0x249bf70 DEBUG GST_PADS gstpad.c:1806:gst_pad_set_chain_function_full:<'':sink> chainfunc set to gst_base_parse_chain
0:00:01.574719709 2032 0x249bf70 DEBUG GST_PADS gstpad.c:1736:gst_pad_set_activate_function_full:<'':sink> activatefunc set to gst_base_parse_sink_activate
0:00:01.574753375 2032 0x249bf70 DEBUG GST_PADS gstpad.c:1771:gst_pad_set_activatemode_function_full:<'':sink> activatemodefunc set to gst_base_parse_sink_activate_mode
0:00:01.574785459 2032 0x249bf70 INFO GST_ELEMENT_PADS gstelement.c:759:gst_element_add_pad:<GstBaseParse@0xb4413e90> adding pad 'sink'
0:00:01.574875709 2032 0x249bf70 DEBUG GST_PADS gstpad.c:1912:gst_pad_set_event_function_full:<'':src> eventfunc for set to gst_base_parse_src_event
0:00:01.574912375 2032 0x249bf70 DEBUG GST_PADS gstpad.c:1992:gst_pad_set_query_function_full:<'':src> queryfunc set to gst_base_parse_src_query
0:00:01.574944417 2032 0x249bf70 INFO GST_ELEMENT_PADS gstelement.c:759:gst_element_add_pad:<GstBaseParse@0xb4413e90> adding pad 'src'
0:00:01.575228709 2032 0x249bf70 INFO GST_PADS gstpad.c:2382:gst_pad_link_prepare: trying to link qtdemux0:video_0 and h264parse0:sink
0:00:01.575285084 2032 0x249bf70 INFO GST_PADS gstpad.c:2590:gst_pad_link_full: linked qtdemux0:video_0 and h264parse0:sink, successful
0:00:01.575330125 2032 0x249bf70 DEBUG GST_PADS gstpad.c:2968:gst_pad_iterate_internal_links_default:<qtdemux0:video_0> Making iterator
0:00:01.575403709 2032 0x249bf70 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<filesrc0:src> sent event, ret ok
0:00:01.575445334 2032 0x249bf70 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<sink:proxypad0> sent event, ret ok
0:00:01.575481042 2032 0x249bf70 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<sink:proxypad1> sent event, ret ok
0:00:01.575513334 2032 0x249bf70 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<typefind:src> sent event, ret ok
0:00:01.575548375 2032 0x249bf70 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<qtdemux0:video_0> sent event, ret ok
0:00:01.575809250 2032 0x249bf70 DEBUG GST_CAPS gstutils.c:3185:gst_pad_query_accept_caps:<h264parse0:sink> accept caps of video/x-h264, stream-format=(string)avc, alignment=(string)au, level=(string)4.2, profile=(string)high, codec_data=(buffer)0164002affe1001b6764002aacc8501e0089f97011000003000100000300780f18319601000668e93864b22cfdf8f800, width=(int)1920, height=(int)1080, framerate=(fraction)60/1, pixel-aspect-ratio=(fraction)1/1
0:00:01.575873292 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4173:gst_pad_query:<h264parse0:sink> doing query 0xb4406400 (accept-caps)
0:00:01.576019167 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3200:gst_pad_query_accept_caps_default:<h264parse0:sink> query accept-caps accept-caps query: 0xb4406400, GstQueryAcceptCaps, caps=(GstCaps)"video/x-h264\,\ stream-format\=\(string\)avc\,\ alignment\=\(string\)au\,\ level\=\(string\)4.2\,\ profile\=\(string\)high\,\ codec_data\=\(buffer\)0164002affe1001b6764002aacc8501e0089f97011000003000100000300780f18319601000668e93864b22cfdf8f800\,\ width\=\(int\)1920\,\ height\=\(int\)1080\,\ framerate\=\(fraction\)60/1\,\ pixel-aspect-ratio\=\(fraction\)1/1", result=(boolean)false;
0:00:01.576197542 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3225:gst_pad_query_accept_caps_default:<h264parse0:sink> allowed caps intersect video/x-h264, caps video/x-h264, stream-format=(string)avc, alignment=(string)au, level=(string)4.2, profile=(string)high, codec_data=(buffer)0164002affe1001b6764002aacc8501e0089f97011000003000100000300780f18319601000668e93864b22cfdf8f800, width=(int)1920, height=(int)1080, framerate=(fraction)60/1, pixel-aspect-ratio=(fraction)1/1
0:00:01.576254750 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3514:gst_pad_query_default:<h264parse0:sink> not forwarding 0xb4406400 (accept-caps) query
0:00:01.576294375 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4196:gst_pad_query:<h264parse0:sink> sent query 0xb4406400 (accept-caps), result 1
0:00:01.576360167 2032 0x249bf70 INFO GST_ELEMENT_PADS gstelement.c:1016:gst_element_get_static_pad: found pad h264parse0:src
0:00:01.576398084 2032 0x249bf70 DEBUG GST_CAPS gstpad.c:2737:gst_pad_get_current_caps:<h264parse0:src> get current pad caps (NULL)
0:00:01.576428709 2032 0x249bf70 DEBUG GST_CAPS gstutils.c:3102:gst_pad_query_caps:<h264parse0:src> get pad caps with filter (NULL)
0:00:01.576467834 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4173:gst_pad_query:<h264parse0:src> doing query 0xb4406430 (caps)
0:00:01.576519167 2032 0x249bf70 DEBUG GST_CAPS gstpad.c:3259:gst_pad_query_caps_default:<h264parse0:src> query caps caps query: 0xb4406430, GstQueryCaps, filter=(GstCaps)"NULL", caps=(GstCaps)"NULL";
0:00:01.576546084 2032 0x249bf70 DEBUG GST_CAPS gstpad.c:3277:gst_pad_query_caps_default:<h264parse0:src> fixed pad caps: trying pad caps
0:00:01.576570209 2032 0x249bf70 DEBUG GST_CAPS gstpad.c:3283:gst_pad_query_caps_default:<h264parse0:src> trying pad template caps
0:00:01.576627625 2032 0x249bf70 DEBUG GST_CAPS gstpad.c:3312:gst_pad_query_caps_default:<h264parse0:src> using caps 0xb4408428 video/x-h264, parsed=(boolean)true, stream-format=(string){ avc, avc3, byte-stream }, alignment=(string){ au, nal }
0:00:01.576675625 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3514:gst_pad_query_default:<h264parse0:src> not forwarding 0xb4406430 (caps) query
0:00:01.576713042 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4196:gst_pad_query:<h264parse0:src> sent query 0xb4406430 (caps), result 1
0:00:01.576762875 2032 0x249bf70 DEBUG GST_CAPS gstutils.c:3109:gst_pad_query_caps:<h264parse0:src> query returned video/x-h264, parsed=(boolean)true, stream-format=(string){ avc, avc3, byte-stream }, alignment=(string){ au, nal }
0:00:01.576801750 2032 0x249bf70 DEBUG GST_PADS gstpad.c:1103:gst_pad_set_active:<'':parsepad1> pad was active in push mode
0:00:01.576838292 2032 0x249bf70 DEBUG GST_PADS gstghostpad.c:783:gst_ghost_pad_get_target:<'':parsepad1> get target '':''
0:00:01.576875542 2032 0x249bf70 DEBUG GST_PADS gstghostpad.c:821:gst_ghost_pad_set_target:<'':parsepad1> set target h264parse0:src
0:00:01.576907917 2032 0x249bf70 DEBUG GST_PADS gstghostpad.c:842:gst_ghost_pad_set_target:<'':parsepad1> connecting internal pad to target <h264parse0:src>
0:00:01.576990959 2032 0x249bf70 INFO GST_PADS gstpad.c:2382:gst_pad_link_prepare: trying to link h264parse0:src and parsepad1:proxypad3
0:00:01.577039917 2032 0x249bf70 INFO GST_PADS gstpad.c:2590:gst_pad_link_full: linked h264parse0:src and parsepad1:proxypad3, successful
0:00:01.577743334 2032 0x249bf70 DEBUG GST_ELEMENT_PADS gstelement.c:317:gst_element_base_class_init: type GstBaseTransform : factory (nil)
0:00:01.577893584 2032 0x249bf70 DEBUG GST_ELEMENT_PADS gstelement.c:317:gst_element_base_class_init: type GstCapsFilter : factory 0x2459ec0
0:00:01.578317500 2032 0x249bf70 DEBUG GST_PADS gstpad.c:1912:gst_pad_set_event_function_full:<'':sink> eventfunc for set to gst_base_transform_sink_event
0:00:01.578370000 2032 0x249bf70 DEBUG GST_PADS gstpad.c:1806:gst_pad_set_chain_function_full:<'':sink> chainfunc set to gst_base_transform_chain
0:00:01.578404625 2032 0x249bf70 DEBUG GST_PADS gstpad.c:1771:gst_pad_set_activatemode_function_full:<'':sink> activatemodefunc set to gst_base_transform_sink_activate_mode
0:00:01.578437000 2032 0x249bf70 DEBUG GST_PADS gstpad.c:1992:gst_pad_set_query_function_full:<'':sink> queryfunc set to gst_base_transform_query
0:00:01.578470125 2032 0x249bf70 INFO GST_ELEMENT_PADS gstelement.c:759:gst_element_add_pad:<GstBaseTransform@0xb441a180> adding pad 'sink'
0:00:01.578551417 2032 0x249bf70 DEBUG GST_PADS gstpad.c:1912:gst_pad_set_event_function_full:<'':src> eventfunc for set to gst_base_transform_src_event
0:00:01.578589167 2032 0x249bf70 DEBUG GST_PADS gstpad.c:1879:gst_pad_set_getrange_function_full:<'':src> getrangefunc set to gst_base_transform_getrange
0:00:01.578624375 2032 0x249bf70 DEBUG GST_PADS gstpad.c:1771:gst_pad_set_activatemode_function_full:<'':src> activatemodefunc set to gst_base_transform_src_activate_mode
0:00:01.578666042 2032 0x249bf70 DEBUG GST_PADS gstpad.c:1992:gst_pad_set_query_function_full:<'':src> queryfunc set to gst_base_transform_query
0:00:01.578700625 2032 0x249bf70 INFO GST_ELEMENT_PADS gstelement.c:759:gst_element_add_pad:<GstBaseTransform@0xb441a180> adding pad 'src'
0:00:01.578793459 2032 0x249bf70 DEBUG GST_PADS gstpad.c:5566:gst_pad_push_event_unchecked:<capsfilter0:sink> We're flushing
0:00:01.578873500 2032 0x249bf70 DEBUG GST_ELEMENT_PADS gstelement.c:3227:gst_element_pads_activate:<capsfilter0> activate pads
0:00:01.578913667 2032 0x249bf70 DEBUG GST_PADS gstpad.c:1098:gst_pad_set_active:<capsfilter0:src> activating pad from none
0:00:01.578947042 2032 0x249bf70 DEBUG GST_PADS gstpad.c:1003:pre_activate:<capsfilter0:src> setting pad into push mode, unset flushing
0:00:01.578986500 2032 0x249bf70 DEBUG GST_PADS gstpad.c:1226:activate_mode_internal:<capsfilter0:src> activated in push mode
0:00:01.579021917 2032 0x249bf70 DEBUG GST_PADS gstpad.c:1098:gst_pad_set_active:<capsfilter0:sink> activating pad from none
0:00:01.579053667 2032 0x249bf70 DEBUG GST_PADS gstpad.c:1003:pre_activate:<capsfilter0:sink> setting pad into push mode, unset flushing
0:00:01.579086000 2032 0x249bf70 DEBUG GST_CAPS gstpad.c:2737:gst_pad_get_current_caps:<capsfilter0:sink> get current pad caps (NULL)
0:00:01.579113500 2032 0x249bf70 DEBUG GST_CAPS gstpad.c:2737:gst_pad_get_current_caps:<capsfilter0:src> get current pad caps (NULL)
0:00:01.579146750 2032 0x249bf70 DEBUG GST_PADS gstpad.c:1226:activate_mode_internal:<capsfilter0:sink> activated in push mode
0:00:01.579180000 2032 0x249bf70 DEBUG GST_ELEMENT_PADS gstelement.c:3246:gst_element_pads_activate:<capsfilter0> pad activation successful
0:00:01.579337792 2032 0x249bf70 DEBUG GST_PADS gstghostpad.c:783:gst_ghost_pad_get_target:<'':parsepad1> get target h264parse0:src
0:00:01.579381875 2032 0x249bf70 DEBUG GST_PADS gstghostpad.c:823:gst_ghost_pad_set_target:<'':parsepad1> clearing target
0:00:01.579427292 2032 0x249bf70 INFO GST_ELEMENT_PADS gstpad.c:2137:gst_pad_unlink: unlinking h264parse0:src(0x2498e48) and parsepad1:proxypad3(0x24a0630)
0:00:01.579501375 2032 0x249bf70 INFO GST_ELEMENT_PADS gstpad.c:2192:gst_pad_unlink: unlinked h264parse0:src and parsepad1:proxypad3
0:00:01.579565625 2032 0x249bf70 INFO GST_ELEMENT_PADS gstelement.c:1016:gst_element_get_static_pad: found pad capsfilter0:sink
0:00:01.579618417 2032 0x249bf70 INFO GST_PADS gstpad.c:2382:gst_pad_link_prepare: trying to link h264parse0:src and capsfilter0:sink
0:00:01.579661625 2032 0x249bf70 INFO GST_PADS gstpad.c:2590:gst_pad_link_full: linked h264parse0:src and capsfilter0:sink, successful
0:00:01.579722042 2032 0x249bf70 INFO GST_ELEMENT_PADS gstelement.c:1016:gst_element_get_static_pad: found pad capsfilter0:src
0:00:01.579771792 2032 0x249bf70 DEBUG GST_PADS gstghostpad.c:783:gst_ghost_pad_get_target:<'':parsepad1> get target '':''
0:00:01.579810584 2032 0x249bf70 DEBUG GST_PADS gstghostpad.c:821:gst_ghost_pad_set_target:<'':parsepad1> set target capsfilter0:src
0:00:01.579845042 2032 0x249bf70 DEBUG GST_PADS gstghostpad.c:842:gst_ghost_pad_set_target:<'':parsepad1> connecting internal pad to target <capsfilter0:src>
0:00:01.579897500 2032 0x249bf70 INFO GST_PADS gstpad.c:2382:gst_pad_link_prepare: trying to link capsfilter0:src and parsepad1:proxypad3
0:00:01.579940542 2032 0x249bf70 INFO GST_PADS gstpad.c:2590:gst_pad_link_full: linked capsfilter0:src and parsepad1:proxypad3, successful
0:00:01.579987542 2032 0x249bf70 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<capsfilter0:src> sent event, ret error
0:00:01.580040750 2032 0x249bf70 DEBUG GST_CAPS gstpad.c:2737:gst_pad_get_current_caps:<capsfilter0:src> get current pad caps (NULL)
0:00:01.580374084 2032 0x249bf70 DEBUG GST_ELEMENT_PADS gstelement.c:3227:gst_element_pads_activate:<h264parse0> activate pads
0:00:01.580421167 2032 0x249bf70 DEBUG GST_PADS gstpad.c:1098:gst_pad_set_active:<h264parse0:src> activating pad from none
0:00:01.580457542 2032 0x249bf70 DEBUG GST_PADS gstpad.c:1003:pre_activate:<h264parse0:src> setting pad into push mode, unset flushing
0:00:01.580494625 2032 0x249bf70 DEBUG GST_PADS gstpad.c:1226:activate_mode_internal:<h264parse0:src> activated in push mode
0:00:01.580530834 2032 0x249bf70 DEBUG GST_PADS gstpad.c:1098:gst_pad_set_active:<h264parse0:sink> activating pad from none
0:00:01.580579709 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4300:gst_pad_peer_query:<h264parse0:sink> peer query 0xb4406460 (scheduling)
0:00:01.580618750 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4173:gst_pad_query:<qtdemux0:video_0> doing query 0xb4406460 (scheduling)
0:00:01.580658084 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3514:gst_pad_query_default:<qtdemux0:video_0> not forwarding 0xb4406460 (scheduling) query
0:00:01.580693500 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4196:gst_pad_query:<qtdemux0:video_0> sent query 0xb4406460 (scheduling), result 0
0:00:01.580718417 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4242:gst_pad_query:<qtdemux0:video_0> query failed
0:00:01.580742709 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4363:gst_pad_peer_query:<h264parse0:sink> query failed
0:00:01.580778500 2032 0x249bf70 DEBUG GST_PADS gstpad.c:1003:pre_activate:<h264parse0:sink> setting pad into push mode, unset flushing
0:00:01.580811167 2032 0x249bf70 DEBUG GST_PADS gstpad.c:1015:pre_activate:<h264parse0:sink> reschedule events on peer qtdemux0:video_0
0:00:01.581451250 2032 0x249bf70 DEBUG GST_PADS gstpad.c:1226:activate_mode_internal:<h264parse0:sink> activated in push mode
0:00:01.581506167 2032 0x249bf70 DEBUG GST_ELEMENT_PADS gstelement.c:3246:gst_element_pads_activate:<h264parse0> pad activation successful
0:00:01.581650625 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4105:check_sticky:<h264parse0:src> pushing all sticky events
0:00:01.581758792 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4105:check_sticky:<capsfilter0:src> pushing all sticky events
0:00:01.581818834 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<capsfilter0:src> data is passed
0:00:01.581850292 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3713:probe_hook_marshal:<capsfilter0:src> probe returned OK
0:00:01.581887084 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<parsepad1:proxypad3> data is passed
0:00:01.581948167 2032 0x249bf70 DEBUG GST_CAPS gstpad.c:2737:gst_pad_get_current_caps:<'':parsepad1> get current pad caps (NULL)
0:00:01.581985417 2032 0x249bf70 DEBUG GST_PADS gstghostpad.c:783:gst_ghost_pad_get_target:<'':parsepad1> get target capsfilter0:src
0:00:01.582016417 2032 0x249bf70 DEBUG GST_CAPS gstpad.c:2737:gst_pad_get_current_caps:<capsfilter0:src> get current pad caps (NULL)
0:00:01.582079667 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3713:probe_hook_marshal:<parsepad1:proxypad3> probe returned OK
0:00:01.582127792 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4105:check_sticky:<'':parsepad1> pushing all sticky events
0:00:01.582161500 2032 0x249bf70 DEBUG GST_PADS gstpad.c:5597:gst_pad_push_event_unchecked:<'':parsepad1> Dropping event stream-start because pad is not linked
0:00:01.582190084 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4076:push_sticky:<'':parsepad1> pad was not linked, mark pending
0:00:01.582233834 2032 0x249bf70 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<parsepad1:proxypad3> sent event, ret ok
0:00:01.582273625 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4056:push_sticky:<capsfilter0:src> event stream-start marked received
0:00:01.582307750 2032 0x249bf70 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<capsfilter0:sink> sent event, ret ok
0:00:01.582341292 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4056:push_sticky:<h264parse0:src> event stream-start marked received
0:00:01.582373167 2032 0x249bf70 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<h264parse0:sink> sent event, ret ok
0:00:01.582524042 2032 0x249bf70 DEBUG GST_CAPS gstutils.c:3185:gst_pad_query_accept_caps:<h264parse0:sink> accept caps of video/x-h264, stream-format=(string)avc, alignment=(string)au, level=(string)4.2, profile=(string)high, codec_data=(buffer)0164002affe1001b6764002aacc8501e0089f97011000003000100000300780f18319601000668e93864b22cfdf8f800, width=(int)1920, height=(int)1080, framerate=(fraction)60/1, pixel-aspect-ratio=(fraction)1/1
0:00:01.582575125 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4173:gst_pad_query:<h264parse0:sink> doing query 0xb4406490 (accept-caps)
0:00:01.582724250 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3200:gst_pad_query_accept_caps_default:<h264parse0:sink> query accept-caps accept-caps query: 0xb4406490, GstQueryAcceptCaps, caps=(GstCaps)"video/x-h264\,\ stream-format\=\(string\)avc\,\ alignment\=\(string\)au\,\ level\=\(string\)4.2\,\ profile\=\(string\)high\,\ codec_data\=\(buffer\)0164002affe1001b6764002aacc8501e0089f97011000003000100000300780f18319601000668e93864b22cfdf8f800\,\ width\=\(int\)1920\,\ height\=\(int\)1080\,\ framerate\=\(fraction\)60/1\,\ pixel-aspect-ratio\=\(fraction\)1/1", result=(boolean)false;
0:00:01.582860292 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3225:gst_pad_query_accept_caps_default:<h264parse0:sink> allowed caps intersect video/x-h264, caps video/x-h264, stream-format=(string)avc, alignment=(string)au, level=(string)4.2, profile=(string)high, codec_data=(buffer)0164002affe1001b6764002aacc8501e0089f97011000003000100000300780f18319601000668e93864b22cfdf8f800, width=(int)1920, height=(int)1080, framerate=(fraction)60/1, pixel-aspect-ratio=(fraction)1/1
0:00:01.582911417 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3514:gst_pad_query_default:<h264parse0:sink> not forwarding 0xb4406490 (accept-caps) query
0:00:01.582948375 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4196:gst_pad_query:<h264parse0:sink> sent query 0xb4406490 (accept-caps), result 1
0:00:01.582992417 2032 0x249bf70 DEBUG GST_CAPS gstpad.c:2737:gst_pad_get_current_caps:<h264parse0:sink> get current pad caps (NULL)
0:00:01.583379084 2032 0x249bf70 DEBUG GST_CAPS gstutils.c:3102:gst_pad_query_caps:<h264parse0:src> get pad caps with filter (NULL)
0:00:01.583436209 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4173:gst_pad_query:<h264parse0:src> doing query 0xb44064c0 (caps)
0:00:01.583498917 2032 0x249bf70 DEBUG GST_CAPS gstpad.c:3259:gst_pad_query_caps_default:<h264parse0:src> query caps caps query: 0xb44064c0, GstQueryCaps, filter=(GstCaps)"NULL", caps=(GstCaps)"NULL";
0:00:01.583530959 2032 0x249bf70 DEBUG GST_CAPS gstpad.c:3277:gst_pad_query_caps_default:<h264parse0:src> fixed pad caps: trying pad caps
0:00:01.583557084 2032 0x249bf70 DEBUG GST_CAPS gstpad.c:3283:gst_pad_query_caps_default:<h264parse0:src> trying pad template caps
0:00:01.583614625 2032 0x249bf70 DEBUG GST_CAPS gstpad.c:3312:gst_pad_query_caps_default:<h264parse0:src> using caps 0xb4408428 video/x-h264, parsed=(boolean)true, stream-format=(string){ avc, avc3, byte-stream }, alignment=(string){ au, nal }
0:00:01.583656292 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3514:gst_pad_query_default:<h264parse0:src> not forwarding 0xb44064c0 (caps) query
0:00:01.583693125 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4196:gst_pad_query:<h264parse0:src> sent query 0xb44064c0 (caps), result 1
0:00:01.583740250 2032 0x249bf70 DEBUG GST_CAPS gstutils.c:3109:gst_pad_query_caps:<h264parse0:src> query returned video/x-h264, parsed=(boolean)true, stream-format=(string){ avc, avc3, byte-stream }, alignment=(string){ au, nal }
0:00:01.583783125 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4300:gst_pad_peer_query:<h264parse0:src> peer query 0xb44064f0 (caps)
0:00:01.583819292 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4173:gst_pad_query:<capsfilter0:sink> doing query 0xb44064f0 (caps)
0:00:01.583975292 2032 0x249bf70 DEBUG GST_CAPS gstutils.c:3148:gst_pad_peer_query_caps:<capsfilter0:src> get pad peer caps with filter video/x-h264, stream-format=(string){ avc, avc3, byte-stream }, alignment=(string)au, parsed=(boolean)true; video/x-h264, parsed=(boolean)true, stream-format=(string){ avc, avc3, byte-stream }, alignment=(string){ au, nal }
0:00:01.584024792 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4300:gst_pad_peer_query:<capsfilter0:src> peer query 0xb4406520 (caps)
0:00:01.584056167 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<capsfilter0:src> data is passed
0:00:01.584092500 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4173:gst_pad_query:<parsepad1:proxypad3> doing query 0xb4406520 (caps)
0:00:01.584118417 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<parsepad1:proxypad3> data is passed
0:00:01.584258709 2032 0x249bf70 DEBUG GST_CAPS gstpad.c:3259:gst_pad_query_caps_default:<parsepad1:proxypad3> query caps caps query: 0xb4406520, GstQueryCaps, filter=(GstCaps)"video/x-h264\,\ stream-format\=\(string\)\{\ avc\,\ avc3\,\ byte-stream\ \}\,\ alignment\=\(string\)au\,\ parsed\=\(boolean\)true\;\ video/x-h264\,\ parsed\=\(boolean\)true\,\ stream-format\=\(string\)\{\ avc\,\ avc3\,\ byte-stream\ \}\,\ alignment\=\(string\)\{\ au\,\ nal\ \}", caps=(GstCaps)"NULL";
0:00:01.584299459 2032 0x249bf70 DEBUG GST_PADS gstutils.c:2851:gst_pad_proxy_query_caps:<parsepad1:proxypad3> proxying caps query for parsepad1:proxypad3
0:00:01.584348209 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4300:gst_pad_peer_query:<'':parsepad1> peer query 0xb4406520 (caps)
0:00:01.584374834 2032 0x249bf70 INFO GST_PADS gstpad.c:4357:gst_pad_peer_query:<'':parsepad1> pad has no peer
0:00:01.584418209 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3514:gst_pad_query_default:<parsepad1:proxypad3> not forwarding 0xb4406520 (caps) query
0:00:01.584456875 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4196:gst_pad_query:<parsepad1:proxypad3> sent query 0xb4406520 (caps), result 1
0:00:01.584520917 2032 0x249bf70 DEBUG GST_CAPS gstutils.c:3155:gst_pad_peer_query_caps:<capsfilter0:src> peer query returned video/x-h264, stream-format=(string){ avc, avc3, byte-stream }, alignment=(string)au, parsed=(boolean)true; video/x-h264, parsed=(boolean)true, stream-format=(string){ avc, avc3, byte-stream }, alignment=(string){ au, nal }
0:00:01.584717042 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4196:gst_pad_query:<capsfilter0:sink> sent query 0xb44064f0 (caps), result 1
0:00:01.584782542 2032 0x249bf70 DEBUG GST_CAPS gstpad.c:2840:gst_pad_get_allowed_caps:<h264parse0:src> allowed caps video/x-h264, parsed=(boolean)true, stream-format=(string){ avc, avc3, byte-stream }, alignment=(string)au; video/x-h264, parsed=(boolean)true, stream-format=(string){ avc, avc3, byte-stream }, alignment=(string){ au, nal }
0:00:01.584851875 2032 0x249bf70 DEBUG GST_CAPS gstpad.c:2709:gst_pad_has_current_caps:<h264parse0:src> check current pad caps (NULL)
0:00:01.585022250 2032 0x249bf70 DEBUG GST_CAPS gstpad.c:2737:gst_pad_get_current_caps:<h264parse0:src> get current pad caps (NULL)
0:00:01.585070084 2032 0x249bf70 DEBUG GST_CAPS gstutils.c:3148:gst_pad_peer_query_caps:<h264parse0:src> get pad peer caps with filter video/x-h264
0:00:01.585115250 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4300:gst_pad_peer_query:<h264parse0:src> peer query 0xb4406550 (caps)
0:00:01.585152542 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4173:gst_pad_query:<capsfilter0:sink> doing query 0xb4406550 (caps)
0:00:01.585263375 2032 0x249bf70 DEBUG GST_CAPS gstutils.c:3148:gst_pad_peer_query_caps:<capsfilter0:src> get pad peer caps with filter video/x-h264, stream-format=(string){ avc, avc3, byte-stream }, alignment=(string)au, parsed=(boolean)true; video/x-h264, parsed=(boolean)true, stream-format=(string){ avc, avc3, byte-stream }, alignment=(string){ au, nal }
0:00:01.585303917 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4300:gst_pad_peer_query:<capsfilter0:src> peer query 0xb4406580 (caps)
0:00:01.585333250 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<capsfilter0:src> data is passed
0:00:01.585368792 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4173:gst_pad_query:<parsepad1:proxypad3> doing query 0xb4406580 (caps)
0:00:01.585395167 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<parsepad1:proxypad3> data is passed
0:00:01.585508625 2032 0x249bf70 DEBUG GST_CAPS gstpad.c:3259:gst_pad_query_caps_default:<parsepad1:proxypad3> query caps caps query: 0xb4406580, GstQueryCaps, filter=(GstCaps)"video/x-h264\,\ stream-format\=\(string\)\{\ avc\,\ avc3\,\ byte-stream\ \}\,\ alignment\=\(string\)au\,\ parsed\=\(boolean\)true\;\ video/x-h264\,\ parsed\=\(boolean\)true\,\ stream-format\=\(string\)\{\ avc\,\ avc3\,\ byte-stream\ \}\,\ alignment\=\(string\)\{\ au\,\ nal\ \}", caps=(GstCaps)"NULL";
0:00:01.585543875 2032 0x249bf70 DEBUG GST_PADS gstutils.c:2851:gst_pad_proxy_query_caps:<parsepad1:proxypad3> proxying caps query for parsepad1:proxypad3
0:00:01.585588042 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4300:gst_pad_peer_query:<'':parsepad1> peer query 0xb4406580 (caps)
0:00:01.585614417 2032 0x249bf70 INFO GST_PADS gstpad.c:4357:gst_pad_peer_query:<'':parsepad1> pad has no peer
0:00:01.585660917 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3514:gst_pad_query_default:<parsepad1:proxypad3> not forwarding 0xb4406580 (caps) query
0:00:01.585735709 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4196:gst_pad_query:<parsepad1:proxypad3> sent query 0xb4406580 (caps), result 1
0:00:01.585809250 2032 0x249bf70 DEBUG GST_CAPS gstutils.c:3155:gst_pad_peer_query_caps:<capsfilter0:src> peer query returned video/x-h264, stream-format=(string){ avc, avc3, byte-stream }, alignment=(string)au, parsed=(boolean)true; video/x-h264, parsed=(boolean)true, stream-format=(string){ avc, avc3, byte-stream }, alignment=(string){ au, nal }
0:00:01.585972459 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4196:gst_pad_query:<capsfilter0:sink> sent query 0xb4406550 (caps), result 1
0:00:01.586043875 2032 0x249bf70 DEBUG GST_CAPS gstutils.c:3155:gst_pad_peer_query_caps:<h264parse0:src> peer query returned video/x-h264, stream-format=(string){ avc, avc3, byte-stream }, alignment=(string)au, parsed=(boolean)true; video/x-h264, parsed=(boolean)true, stream-format=(string){ avc, avc3, byte-stream }, alignment=(string){ au, nal }
0:00:01.588895584 2032 0x249bf70 DEBUG GST_CAPS gstpad.c:2737:gst_pad_get_current_caps:<h264parse0:src> get current pad caps (NULL)
0:00:01.588964792 2032 0x249bf70 DEBUG GST_PADS gstpad.c:5363:store_sticky_event:<h264parse0:src> notify caps
0:00:01.589026917 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4105:check_sticky:<h264parse0:src> pushing all sticky events
0:00:01.589061042 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4034:push_sticky:<h264parse0:src> event stream-start was already received
0:00:01.589220292 2032 0x249bf70 DEBUG GST_CAPS gstutils.c:3185:gst_pad_query_accept_caps:<capsfilter0:sink> accept caps of video/x-h264, stream-format=(string)avc, alignment=(string)au, level=(string)4.2, profile=(string)high, codec_data=(buffer)0164002affe1001b6764002aacc8501e0089f97011000003000100000300780f18319601000668e93864b22c, width=(int)1920, height=(int)1080, framerate=(fraction)60/1, pixel-aspect-ratio=(fraction)1/1, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8, parsed=(boolean)true
0:00:01.589268292 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4173:gst_pad_query:<capsfilter0:sink> doing query 0xb44065b0 (accept-caps)
0:00:01.589323125 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4196:gst_pad_query:<capsfilter0:sink> sent query 0xb44065b0 (accept-caps), result 1
0:00:01.589362209 2032 0x249bf70 DEBUG GST_PADS gstpad.c:1678:gst_pad_check_reconfigure:<capsfilter0:src> remove RECONFIGURE flag
0:00:01.589589584 2032 0x249bf70 DEBUG GST_CAPS gstutils.c:3185:gst_pad_query_accept_caps:<parsepad1:proxypad3> accept caps of video/x-h264, stream-format=(string)avc, alignment=(string)au, parsed=(boolean)true, level=(string)4.2, profile=(string)high, codec_data=(buffer)0164002affe1001b6764002aacc8501e0089f97011000003000100000300780f18319601000668e93864b22c, width=(int)1920, height=(int)1080, framerate=(fraction)60/1, pixel-aspect-ratio=(fraction)1/1, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8
0:00:01.589638500 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4173:gst_pad_query:<parsepad1:proxypad3> doing query 0xb4406800 (accept-caps)
0:00:01.589671834 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<parsepad1:proxypad3> data is passed
0:00:01.589956542 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3200:gst_pad_query_accept_caps_default:<parsepad1:proxypad3> query accept-caps accept-caps query: 0xb4406800, GstQueryAcceptCaps, caps=(GstCaps)"video/x-h264\,\ stream-format\=\(string\)avc\,\ alignment\=\(string\)au\,\ parsed\=\(boolean\)true\,\ level\=\(string\)4.2\,\ profile\=\(string\)high\,\ codec_data\=\(buffer\)0164002affe1001b6764002aacc8501e0089f97011000003000100000300780f18319601000668e93864b22c\,\ width\=\(int\)1920\,\ height\=\(int\)1080\,\ framerate\=\(fraction\)60/1\,\ pixel-aspect-ratio\=\(fraction\)1/1\,\ chroma-format\=\(string\)4:2:0\,\ bit-depth-luma\=\(uint\)8\,\ bit-depth-chroma\=\(uint\)8", result=(boolean)false;
0:00:01.590000417 2032 0x249bf70 DEBUG GST_PADS gstutils.c:2782:gst_pad_proxy_query_accept_caps:<parsepad1:proxypad3> proxying accept caps query for parsepad1:proxypad3
0:00:01.595555250 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4300:gst_pad_peer_query:<'':parsepad1> peer query 0xb4406800 (accept-caps)
0:00:01.595596834 2032 0x249bf70 INFO GST_PADS gstpad.c:4357:gst_pad_peer_query:<'':parsepad1> pad has no peer
0:00:01.595636167 2032 0x249bf70 DEBUG GST_PADS gstutils.c:2793:gst_pad_proxy_query_accept_caps:<parsepad1:proxypad3> proxying accept caps query: 1
0:00:01.595772167 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3230:gst_pad_query_accept_caps_default:<parsepad1:proxypad3> allowed caps subset ANY, caps video/x-h264, stream-format=(string)avc, alignment=(string)au, parsed=(boolean)true, level=(string)4.2, profile=(string)high, codec_data=(buffer)0164002affe1001b6764002aacc8501e0089f97011000003000100000300780f18319601000668e93864b22c, width=(int)1920, height=(int)1080, framerate=(fraction)60/1, pixel-aspect-ratio=(fraction)1/1, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8
0:00:01.595815625 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3514:gst_pad_query_default:<parsepad1:proxypad3> not forwarding 0xb4406800 (accept-caps) query
0:00:01.595855792 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4196:gst_pad_query:<parsepad1:proxypad3> sent query 0xb4406800 (accept-caps), result 1
0:00:01.595936250 2032 0x249bf70 DEBUG GST_CAPS gstpad.c:2737:gst_pad_get_current_caps:<capsfilter0:sink> get current pad caps (NULL)
0:00:01.595969250 2032 0x249bf70 DEBUG GST_CAPS gstpad.c:2737:gst_pad_get_current_caps:<capsfilter0:src> get current pad caps (NULL)
0:00:01.596017375 2032 0x249bf70 DEBUG GST_PADS gstpad.c:5363:store_sticky_event:<capsfilter0:src> notify caps
0:00:01.596105167 2032 0x249bf70 DEBUG GST_PADS gstpad.c:1371:cleanup_hook:<capsfilter0:src> cleaning up hook 1 with flags 00030401
0:00:01.596249875 2032 0x249bf70 DEBUG GST_CAPS gstpad.c:2737:gst_pad_get_current_caps:<capsfilter0:src> get current pad caps video/x-h264, stream-format=(string)avc, alignment=(string)au, level=(string)4.2, profile=(string)high, codec_data=(buffer)0164002affe1001b6764002aacc8501e0089f97011000003000100000300780f18319601000668e93864b22c, width=(int)1920, height=(int)1080, framerate=(fraction)60/1, pixel-aspect-ratio=(fraction)1/1, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8, parsed=(boolean)true
0:00:01.596291459 2032 0x249bf70 DEBUG GST_PADS gstpad.c:1103:gst_pad_set_active:<'':parsepad1> pad was active in push mode
0:00:01.596330417 2032 0x249bf70 DEBUG GST_PADS gstghostpad.c:783:gst_ghost_pad_get_target:<'':parsepad1> get target capsfilter0:src
0:00:01.596508125 2032 0x249bf70 DEBUG GST_CAPS gstpad.c:2737:gst_pad_get_current_caps:<capsfilter0:src> get current pad caps video/x-h264, stream-format=(string)avc, alignment=(string)au, level=(string)4.2, profile=(string)high, codec_data=(buffer)0164002affe1001b6764002aacc8501e0089f97011000003000100000300780f18319601000668e93864b22c, width=(int)1920, height=(int)1080, framerate=(fraction)60/1, pixel-aspect-ratio=(fraction)1/1, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8, parsed=(boolean)true
0:00:01.596984292 2032 0x249bf70 DEBUG GST_PADS gstghostpad.c:783:gst_ghost_pad_get_target:<'':parsepad1> get target capsfilter0:src
0:00:01.603211375 2032 0x249bf70 DEBUG GST_PADS gstghostpad.c:783:gst_ghost_pad_get_target:<'':parsepad1> get target capsfilter0:src
0:00:01.603292917 2032 0x249bf70 DEBUG GST_PADS gstpad.c:1103:gst_pad_set_active:<'':parsepad1> pad was active in push mode
0:00:01.603332209 2032 0x249bf70 DEBUG GST_PADS gstghostpad.c:783:gst_ghost_pad_get_target:<'':parsepad1> get target capsfilter0:src
0:00:01.603427584 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4105:check_sticky:<capsfilter0:src> pushing all sticky events
0:00:01.603467334 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4034:push_sticky:<capsfilter0:src> event stream-start was already received
0:00:01.603515709 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<parsepad1:proxypad3> data is passed
0:00:01.603575750 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3713:probe_hook_marshal:<parsepad1:proxypad3> probe returned OK
0:00:01.603725084 2032 0x249bf70 DEBUG GST_CAPS gstutils.c:3185:gst_pad_query_accept_caps:<parsepad1:proxypad3> accept caps of video/x-h264, stream-format=(string)avc, alignment=(string)au, level=(string)4.2, profile=(string)high, codec_data=(buffer)0164002affe1001b6764002aacc8501e0089f97011000003000100000300780f18319601000668e93864b22c, width=(int)1920, height=(int)1080, framerate=(fraction)60/1, pixel-aspect-ratio=(fraction)1/1, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8, parsed=(boolean)true
0:00:01.603786250 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4173:gst_pad_query:<parsepad1:proxypad3> doing query 0xb4406830 (accept-caps)
0:00:01.603824334 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<parsepad1:proxypad3> data is passed
0:00:01.604081250 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3200:gst_pad_query_accept_caps_default:<parsepad1:proxypad3> query accept-caps accept-caps query: 0xb4406830, GstQueryAcceptCaps, caps=(GstCaps)"video/x-h264\,\ stream-format\=\(string\)avc\,\ alignment\=\(string\)au\,\ level\=\(string\)4.2\,\ profile\=\(string\)high\,\ codec_data\=\(buffer\)0164002affe1001b6764002aacc8501e0089f97011000003000100000300780f18319601000668e93864b22c\,\ width\=\(int\)1920\,\ height\=\(int\)1080\,\ framerate\=\(fraction\)60/1\,\ pixel-aspect-ratio\=\(fraction\)1/1\,\ chroma-format\=\(string\)4:2:0\,\ bit-depth-luma\=\(uint\)8\,\ bit-depth-chroma\=\(uint\)8\,\ parsed\=\(boolean\)true", result=(boolean)false;
0:00:01.604130209 2032 0x249bf70 DEBUG GST_PADS gstutils.c:2782:gst_pad_proxy_query_accept_caps:<parsepad1:proxypad3> proxying accept caps query for parsepad1:proxypad3
0:00:01.604181750 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4300:gst_pad_peer_query:<'':parsepad1> peer query 0xb4406830 (accept-caps)
0:00:01.604209959 2032 0x249bf70 INFO GST_PADS gstpad.c:4357:gst_pad_peer_query:<'':parsepad1> pad has no peer
0:00:01.604248250 2032 0x249bf70 DEBUG GST_PADS gstutils.c:2793:gst_pad_proxy_query_accept_caps:<parsepad1:proxypad3> proxying accept caps query: 1
0:00:01.604374667 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3230:gst_pad_query_accept_caps_default:<parsepad1:proxypad3> allowed caps subset ANY, caps video/x-h264, stream-format=(string)avc, alignment=(string)au, level=(string)4.2, profile=(string)high, codec_data=(buffer)0164002affe1001b6764002aacc8501e0089f97011000003000100000300780f18319601000668e93864b22c, width=(int)1920, height=(int)1080, framerate=(fraction)60/1, pixel-aspect-ratio=(fraction)1/1, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8, parsed=(boolean)true
0:00:01.610740167 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3514:gst_pad_query_default:<parsepad1:proxypad3> not forwarding 0xb4406830 (accept-caps) query
0:00:01.610799959 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4196:gst_pad_query:<parsepad1:proxypad3> sent query 0xb4406830 (accept-caps), result 1
0:00:01.610865084 2032 0x249bf70 DEBUG GST_PADS gstpad.c:5363:store_sticky_event:<'':parsepad1> notify caps
0:00:01.610909250 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4105:check_sticky:<'':parsepad1> pushing all sticky events
0:00:01.610943542 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4034:push_sticky:<'':parsepad1> event stream-start was already received
0:00:01.610975917 2032 0x249bf70 DEBUG GST_PADS gstpad.c:5597:gst_pad_push_event_unchecked:<'':parsepad1> Dropping event caps because pad is not linked
0:00:01.611002625 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4076:push_sticky:<'':parsepad1> pad was not linked, mark pending
0:00:01.611040417 2032 0x249bf70 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<parsepad1:proxypad3> sent event, ret ok
0:00:01.611068292 2032 0x249bf70 DEBUG GST_PADS gstpad.c:5363:store_sticky_event:<parsepad1:proxypad3> notify caps
0:00:01.611111375 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3704:probe_hook_marshal:<capsfilter0:src> probe handled data
0:00:01.611140042 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3942:do_probe_callbacks:<capsfilter0:src> data was handled
0:00:01.611166542 2032 0x249bf70 DEBUG GST_PADS gstpad.c:5584:gst_pad_push_event_unchecked:<capsfilter0:src> handled event
0:00:01.611196417 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4056:push_sticky:<capsfilter0:src> event caps marked received
0:00:01.611237167 2032 0x249bf70 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<capsfilter0:sink> sent event, ret ok
0:00:01.611263375 2032 0x249bf70 DEBUG GST_PADS gstpad.c:5363:store_sticky_event:<capsfilter0:sink> notify caps
0:00:01.611314417 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4056:push_sticky:<h264parse0:src> event caps marked received
0:00:01.611353792 2032 0x249bf70 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<h264parse0:sink> sent event, ret ok
0:00:01.611380959 2032 0x249bf70 DEBUG GST_PADS gstpad.c:5363:store_sticky_event:<h264parse0:sink> notify caps
0:00:01.611491542 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4300:gst_pad_peer_query:<qtdemux0:sink> peer query 0xb4406860 (duration)
0:00:01.611532250 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4173:gst_pad_query:<typefind:src> doing query 0xb4406860 (duration)
0:00:01.618199834 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3514:gst_pad_query_default:<typefind:src> forwarding 0xb4406860 (duration) query
0:00:01.618247917 2032 0x249bf70 DEBUG GST_PADS gstpad.c:2968:gst_pad_iterate_internal_links_default:<typefind:src> Making iterator
0:00:01.618297834 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4300:gst_pad_peer_query:<typefind:sink> peer query 0xb4406860 (duration)
0:00:01.618333959 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4173:gst_pad_query:<sink:proxypad1> doing query 0xb4406860 (duration)
0:00:01.618370125 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3514:gst_pad_query_default:<sink:proxypad1> forwarding 0xb4406860 (duration) query
0:00:01.618412417 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4300:gst_pad_peer_query:<parsebin0:sink> peer query 0xb4406860 (duration)
0:00:01.618447667 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4173:gst_pad_query:<sink:proxypad0> doing query 0xb4406860 (duration)
0:00:01.618481542 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3514:gst_pad_query_default:<sink:proxypad0> forwarding 0xb4406860 (duration) query
0:00:01.618520042 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4300:gst_pad_peer_query:<decodebin3-0:sink> peer query 0xb4406860 (duration)
0:00:01.618554834 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4173:gst_pad_query:<filesrc0:src> doing query 0xb4406860 (duration)
0:00:01.618650459 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4196:gst_pad_query:<filesrc0:src> sent query 0xb4406860 (duration), result 1
0:00:01.618693750 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4196:gst_pad_query:<sink:proxypad0> sent query 0xb4406860 (duration), result 1
0:00:01.618730167 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4196:gst_pad_query:<sink:proxypad1> sent query 0xb4406860 (duration), result 1
0:00:01.618767084 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4196:gst_pad_query:<typefind:src> sent query 0xb4406860 (duration), result 1
0:00:01.619234209 2032 0x249bf70 INFO GST_ELEMENT_PADS gstelement.c:759:gst_element_add_pad:<parsebin0> adding pad 'src_0'
0:00:01.619325042 2032 0x249bf70 DEBUG GST_PADS gstghostpad.c:783:gst_ghost_pad_get_target:<parsebin0:src_0> get target capsfilter0:src
0:00:01.619366875 2032 0x249bf70 DEBUG GST_PADS gstpad.c:1371:cleanup_hook:<capsfilter0:src> cleaning up hook 2 with flags 00032721
0:00:01.619400209 2032 0x249bf70 DEBUG GST_PADS gstpad.c:1384:cleanup_hook:<capsfilter0:src> remove blocking probe, now 0 left
0:00:01.619429792 2032 0x249bf70 DEBUG GST_PADS gstpad.c:1391:cleanup_hook:<capsfilter0:src> last blocking probe removed, unblocking
0:00:01.619479000 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4105:check_sticky:<parsebin0:src_0> pushing all sticky events
0:00:01.619514375 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4034:push_sticky:<parsebin0:src_0> event stream-start was already received
0:00:01.619548625 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4034:push_sticky:<parsebin0:src_0> event caps was already received
0:00:01.624870667 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<parsebin0:src_0> data is passed
0:00:01.624923500 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3699:probe_hook_marshal:<parsebin0:src_0> asked to drop item
0:00:01.624950417 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3927:do_probe_callbacks:<parsebin0:src_0> data is dropped
0:00:01.624975917 2032 0x249bf70 DEBUG GST_PADS gstpad.c:5587:gst_pad_push_event_unchecked:<parsebin0:src_0> dropped event
0:00:01.625122667 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4061:push_sticky:<parsebin0:src_0> event stream-collection was dropped, mark pending
0:00:01.625246334 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4105:check_sticky:<qtdemux0:video_0> pushing all sticky events
0:00:01.625307750 2032 0x249bf70 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<h264parse0:sink> sent event, ret ok
0:00:01.625345042 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4056:push_sticky:<qtdemux0:video_0> event stream-start marked received
0:00:01.625496750 2032 0x249bf70 DEBUG GST_CAPS gstutils.c:3185:gst_pad_query_accept_caps:<h264parse0:sink> accept caps of video/x-h264, stream-format=(string)avc, alignment=(string)au, level=(string)4.2, profile=(string)high, codec_data=(buffer)0164002affe1001b6764002aacc8501e0089f97011000003000100000300780f18319601000668e93864b22cfdf8f800, width=(int)1920, height=(int)1080, framerate=(fraction)60/1, pixel-aspect-ratio=(fraction)1/1
0:00:01.625546042 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4173:gst_pad_query:<h264parse0:sink> doing query 0xb4406890 (accept-caps)
0:00:01.625726417 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3200:gst_pad_query_accept_caps_default:<h264parse0:sink> query accept-caps accept-caps query: 0xb4406890, GstQueryAcceptCaps, caps=(GstCaps)"video/x-h264\,\ stream-format\=\(string\)avc\,\ alignment\=\(string\)au\,\ level\=\(string\)4.2\,\ profile\=\(string\)high\,\ codec_data\=\(buffer\)0164002affe1001b6764002aacc8501e0089f97011000003000100000300780f18319601000668e93864b22cfdf8f800\,\ width\=\(int\)1920\,\ height\=\(int\)1080\,\ framerate\=\(fraction\)60/1\,\ pixel-aspect-ratio\=\(fraction\)1/1", result=(boolean)false;
0:00:01.625849917 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3225:gst_pad_query_accept_caps_default:<h264parse0:sink> allowed caps intersect video/x-h264, caps video/x-h264, stream-format=(string)avc, alignment=(string)au, level=(string)4.2, profile=(string)high, codec_data=(buffer)0164002affe1001b6764002aacc8501e0089f97011000003000100000300780f18319601000668e93864b22cfdf8f800, width=(int)1920, height=(int)1080, framerate=(fraction)60/1, pixel-aspect-ratio=(fraction)1/1
0:00:01.625896417 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3514:gst_pad_query_default:<h264parse0:sink> not forwarding 0xb4406890 (accept-caps) query
0:00:01.625933125 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4196:gst_pad_query:<h264parse0:sink> sent query 0xb4406890 (accept-caps), result 1
0:00:01.626119500 2032 0x249bf70 DEBUG GST_CAPS gstpad.c:2737:gst_pad_get_current_caps:<h264parse0:sink> get current pad caps video/x-h264, stream-format=(string)avc, alignment=(string)au, level=(string)4.2, profile=(string)high, codec_data=(buffer)0164002affe1001b6764002aacc8501e0089f97011000003000100000300780f18319601000668e93864b22cfdf8f800, width=(int)1920, height=(int)1080, framerate=(fraction)60/1, pixel-aspect-ratio=(fraction)1/1
0:00:01.631903625 2032 0x249bf70 DEBUG GST_CAPS gstutils.c:3102:gst_pad_query_caps:<h264parse0:src> get pad caps with filter (NULL)
0:00:01.631969334 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4173:gst_pad_query:<h264parse0:src> doing query 0xb44068c0 (caps)
0:00:01.632031792 2032 0x249bf70 DEBUG GST_CAPS gstpad.c:3259:gst_pad_query_caps_default:<h264parse0:src> query caps caps query: 0xb44068c0, GstQueryCaps, filter=(GstCaps)"NULL", caps=(GstCaps)"NULL";
0:00:01.632061792 2032 0x249bf70 DEBUG GST_CAPS gstpad.c:3277:gst_pad_query_caps_default:<h264parse0:src> fixed pad caps: trying pad caps
0:00:01.632189709 2032 0x249bf70 DEBUG GST_CAPS gstpad.c:3312:gst_pad_query_caps_default:<h264parse0:src> using caps 0xb4408678 video/x-h264, stream-format=(string)avc, alignment=(string)au, level=(string)4.2, profile=(string)high, codec_data=(buffer)0164002affe1001b6764002aacc8501e0089f97011000003000100000300780f18319601000668e93864b22c, width=(int)1920, height=(int)1080, framerate=(fraction)60/1, pixel-aspect-ratio=(fraction)1/1, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8, parsed=(boolean)true
0:00:01.632228584 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3514:gst_pad_query_default:<h264parse0:src> not forwarding 0xb44068c0 (caps) query
0:00:01.632267500 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4196:gst_pad_query:<h264parse0:src> sent query 0xb44068c0 (caps), result 1
0:00:01.632381167 2032 0x249bf70 DEBUG GST_CAPS gstutils.c:3109:gst_pad_query_caps:<h264parse0:src> query returned video/x-h264, stream-format=(string)avc, alignment=(string)au, level=(string)4.2, profile=(string)high, codec_data=(buffer)0164002affe1001b6764002aacc8501e0089f97011000003000100000300780f18319601000668e93864b22c, width=(int)1920, height=(int)1080, framerate=(fraction)60/1, pixel-aspect-ratio=(fraction)1/1, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8, parsed=(boolean)true
0:00:01.632425209 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4300:gst_pad_peer_query:<h264parse0:src> peer query 0xb44068f0 (caps)
0:00:01.632482667 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4173:gst_pad_query:<capsfilter0:sink> doing query 0xb44068f0 (caps)
0:00:01.632692250 2032 0x249bf70 DEBUG GST_CAPS gstutils.c:3148:gst_pad_peer_query_caps:<capsfilter0:src> get pad peer caps with filter video/x-h264, stream-format=(string)avc, alignment=(string)au, parsed=(boolean)true, level=(string)4.2, profile=(string)high, codec_data=(buffer)0164002affe1001b6764002aacc8501e0089f97011000003000100000300780f18319601000668e93864b22c, width=(int)1920, height=(int)1080, framerate=(fraction)60/1, pixel-aspect-ratio=(fraction)1/1, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8
0:00:01.632737375 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4300:gst_pad_peer_query:<capsfilter0:src> peer query 0xb4406920 (caps)
0:00:01.632772875 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4173:gst_pad_query:<src_0:proxypad3> doing query 0xb4406920 (caps)
0:00:01.637312084 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<src_0:proxypad3> data is passed
0:00:01.637591334 2032 0x249bf70 DEBUG GST_CAPS gstpad.c:3259:gst_pad_query_caps_default:<src_0:proxypad3> query caps caps query: 0xb4406920, GstQueryCaps, filter=(GstCaps)"video/x-h264\,\ stream-format\=\(string\)avc\,\ alignment\=\(string\)au\,\ parsed\=\(boolean\)true\,\ level\=\(string\)4.2\,\ profile\=\(string\)high\,\ codec_data\=\(buffer\)0164002affe1001b6764002aacc8501e0089f97011000003000100000300780f18319601000668e93864b22c\,\ width\=\(int\)1920\,\ height\=\(int\)1080\,\ framerate\=\(fraction\)60/1\,\ pixel-aspect-ratio\=\(fraction\)1/1\,\ chroma-format\=\(string\)4:2:0\,\ bit-depth-luma\=\(uint\)8\,\ bit-depth-chroma\=\(uint\)8", caps=(GstCaps)"NULL";
0:00:01.637639375 2032 0x249bf70 DEBUG GST_PADS gstutils.c:2851:gst_pad_proxy_query_caps:<src_0:proxypad3> proxying caps query for src_0:proxypad3
0:00:01.637727709 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4300:gst_pad_peer_query:<parsebin0:src_0> peer query 0xb4406920 (caps)
0:00:01.637767750 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<parsebin0:src_0> data is passed
0:00:01.637795542 2032 0x249bf70 INFO GST_PADS gstpad.c:4357:gst_pad_peer_query:<parsebin0:src_0> pad has no peer
0:00:01.637843917 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3514:gst_pad_query_default:<src_0:proxypad3> not forwarding 0xb4406920 (caps) query
0:00:01.637881959 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4196:gst_pad_query:<src_0:proxypad3> sent query 0xb4406920 (caps), result 1
0:00:01.638011042 2032 0x249bf70 DEBUG GST_CAPS gstutils.c:3155:gst_pad_peer_query_caps:<capsfilter0:src> peer query returned video/x-h264, stream-format=(string)avc, alignment=(string)au, parsed=(boolean)true, level=(string)4.2, profile=(string)high, codec_data=(buffer)0164002affe1001b6764002aacc8501e0089f97011000003000100000300780f18319601000668e93864b22c, width=(int)1920, height=(int)1080, framerate=(fraction)60/1, pixel-aspect-ratio=(fraction)1/1, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8
0:00:01.638194209 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4196:gst_pad_query:<capsfilter0:sink> sent query 0xb44068f0 (caps), result 1
0:00:01.638321000 2032 0x249bf70 DEBUG GST_CAPS gstpad.c:2840:gst_pad_get_allowed_caps:<h264parse0:src> allowed caps video/x-h264, stream-format=(string)avc, alignment=(string)au, level=(string)4.2, profile=(string)high, codec_data=(buffer)0164002affe1001b6764002aacc8501e0089f97011000003000100000300780f18319601000668e93864b22c, width=(int)1920, height=(int)1080, framerate=(fraction)60/1, pixel-aspect-ratio=(fraction)1/1, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8, parsed=(boolean)true
0:00:01.638478417 2032 0x249bf70 DEBUG GST_CAPS gstpad.c:2709:gst_pad_has_current_caps:<h264parse0:src> check current pad caps video/x-h264, stream-format=(string)avc, alignment=(string)au, level=(string)4.2, profile=(string)high, codec_data=(buffer)0164002affe1001b6764002aacc8501e0089f97011000003000100000300780f18319601000668e93864b22c, width=(int)1920, height=(int)1080, framerate=(fraction)60/1, pixel-aspect-ratio=(fraction)1/1, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8, parsed=(boolean)true
0:00:01.642724084 2032 0x249bf70 DEBUG GST_CAPS gstpad.c:2737:gst_pad_get_current_caps:<h264parse0:src> get current pad caps video/x-h264, stream-format=(string)avc, alignment=(string)au, level=(string)4.2, profile=(string)high, codec_data=(buffer)0164002affe1001b6764002aacc8501e0089f97011000003000100000300780f18319601000668e93864b22c, width=(int)1920, height=(int)1080, framerate=(fraction)60/1, pixel-aspect-ratio=(fraction)1/1, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8, parsed=(boolean)true
0:00:01.642802334 2032 0x249bf70 DEBUG GST_CAPS gstutils.c:3148:gst_pad_peer_query_caps:<h264parse0:src> get pad peer caps with filter video/x-h264
0:00:01.642849417 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4300:gst_pad_peer_query:<h264parse0:src> peer query 0xb4406950 (caps)
0:00:01.642891750 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4173:gst_pad_query:<capsfilter0:sink> doing query 0xb4406950 (caps)
0:00:01.643013959 2032 0x249bf70 DEBUG GST_CAPS gstutils.c:3148:gst_pad_peer_query_caps:<capsfilter0:src> get pad peer caps with filter video/x-h264, stream-format=(string){ avc, avc3, byte-stream }, alignment=(string)au, parsed=(boolean)true; video/x-h264, parsed=(boolean)true, stream-format=(string){ avc, avc3, byte-stream }, alignment=(string){ au, nal }
0:00:01.643056417 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4300:gst_pad_peer_query:<capsfilter0:src> peer query 0xb4406980 (caps)
0:00:01.643091667 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4173:gst_pad_query:<src_0:proxypad3> doing query 0xb4406980 (caps)
0:00:01.643122709 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<src_0:proxypad3> data is passed
0:00:01.643327250 2032 0x249bf70 DEBUG GST_CAPS gstpad.c:3259:gst_pad_query_caps_default:<src_0:proxypad3> query caps caps query: 0xb4406980, GstQueryCaps, filter=(GstCaps)"video/x-h264\,\ stream-format\=\(string\)\{\ avc\,\ avc3\,\ byte-stream\ \}\,\ alignment\=\(string\)au\,\ parsed\=\(boolean\)true\;\ video/x-h264\,\ parsed\=\(boolean\)true\,\ stream-format\=\(string\)\{\ avc\,\ avc3\,\ byte-stream\ \}\,\ alignment\=\(string\)\{\ au\,\ nal\ \}", caps=(GstCaps)"NULL";
0:00:01.643372542 2032 0x249bf70 DEBUG GST_PADS gstutils.c:2851:gst_pad_proxy_query_caps:<src_0:proxypad3> proxying caps query for src_0:proxypad3
0:00:01.643426542 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4300:gst_pad_peer_query:<parsebin0:src_0> peer query 0xb4406980 (caps)
0:00:01.643457125 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<parsebin0:src_0> data is passed
0:00:01.643483959 2032 0x249bf70 INFO GST_PADS gstpad.c:4357:gst_pad_peer_query:<parsebin0:src_0> pad has no peer
0:00:01.643529542 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3514:gst_pad_query_default:<src_0:proxypad3> not forwarding 0xb4406980 (caps) query
0:00:01.648338584 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4196:gst_pad_query:<src_0:proxypad3> sent query 0xb4406980 (caps), result 1
0:00:01.648449375 2032 0x249bf70 DEBUG GST_CAPS gstutils.c:3155:gst_pad_peer_query_caps:<capsfilter0:src> peer query returned video/x-h264, stream-format=(string){ avc, avc3, byte-stream }, alignment=(string)au, parsed=(boolean)true; video/x-h264, parsed=(boolean)true, stream-format=(string){ avc, avc3, byte-stream }, alignment=(string){ au, nal }
0:00:01.648722459 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4196:gst_pad_query:<capsfilter0:sink> sent query 0xb4406950 (caps), result 1
0:00:01.648873000 2032 0x249bf70 DEBUG GST_CAPS gstutils.c:3155:gst_pad_peer_query_caps:<h264parse0:src> peer query returned video/x-h264, stream-format=(string){ avc, avc3, byte-stream }, alignment=(string)au, parsed=(boolean)true; video/x-h264, parsed=(boolean)true, stream-format=(string){ avc, avc3, byte-stream }, alignment=(string){ au, nal }
0:00:01.649106042 2032 0x249bf70 DEBUG GST_CAPS gstpad.c:2737:gst_pad_get_current_caps:<h264parse0:src> get current pad caps video/x-h264, stream-format=(string)avc, alignment=(string)au, level=(string)4.2, profile=(string)high, codec_data=(buffer)0164002affe1001b6764002aacc8501e0089f97011000003000100000300780f18319601000668e93864b22c, width=(int)1920, height=(int)1080, framerate=(fraction)60/1, pixel-aspect-ratio=(fraction)1/1, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8, parsed=(boolean)true
0:00:01.649227875 2032 0x249bf70 DEBUG GST_PADS gstpad.c:5363:store_sticky_event:<h264parse0:src> notify caps
0:00:01.649293500 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4105:check_sticky:<h264parse0:src> pushing all sticky events
0:00:01.649330667 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4034:push_sticky:<h264parse0:src> event stream-start was already received
0:00:01.649459875 2032 0x249bf70 DEBUG GST_CAPS gstutils.c:3185:gst_pad_query_accept_caps:<capsfilter0:sink> accept caps of video/x-h264, stream-format=(string)avc, alignment=(string)au, level=(string)4.2, profile=(string)high, codec_data=(buffer)0164002affe1001b6764002aacc8501e0089f97011000003000100000300780f18319601000668e93864b22c, width=(int)1920, height=(int)1080, framerate=(fraction)60/1, pixel-aspect-ratio=(fraction)1/1, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8, parsed=(boolean)true
0:00:01.649561375 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4173:gst_pad_query:<capsfilter0:sink> doing query 0xb44069b0 (accept-caps)
0:00:01.649627000 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4196:gst_pad_query:<capsfilter0:sink> sent query 0xb44069b0 (accept-caps), result 1
0:00:01.649938917 2032 0x249bf70 DEBUG GST_CAPS gstutils.c:3185:gst_pad_query_accept_caps:<src_0:proxypad3> accept caps of video/x-h264, stream-format=(string)avc, alignment=(string)au, parsed=(boolean)true, level=(string)4.2, profile=(string)high, codec_data=(buffer)0164002affe1001b6764002aacc8501e0089f97011000003000100000300780f18319601000668e93864b22c, width=(int)1920, height=(int)1080, framerate=(fraction)60/1, pixel-aspect-ratio=(fraction)1/1, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8
0:00:01.649993084 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4173:gst_pad_query:<src_0:proxypad3> doing query 0xb4406c00 (accept-caps)
0:00:01.654472417 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<src_0:proxypad3> data is passed
0:00:01.654765292 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3200:gst_pad_query_accept_caps_default:<src_0:proxypad3> query accept-caps accept-caps query: 0xb4406c00, GstQueryAcceptCaps, caps=(GstCaps)"video/x-h264\,\ stream-format\=\(string\)avc\,\ alignment\=\(string\)au\,\ parsed\=\(boolean\)true\,\ level\=\(string\)4.2\,\ profile\=\(string\)high\,\ codec_data\=\(buffer\)0164002affe1001b6764002aacc8501e0089f97011000003000100000300780f18319601000668e93864b22c\,\ width\=\(int\)1920\,\ height\=\(int\)1080\,\ framerate\=\(fraction\)60/1\,\ pixel-aspect-ratio\=\(fraction\)1/1\,\ chroma-format\=\(string\)4:2:0\,\ bit-depth-luma\=\(uint\)8\,\ bit-depth-chroma\=\(uint\)8", result=(boolean)false;
0:00:01.654811334 2032 0x249bf70 DEBUG GST_PADS gstutils.c:2782:gst_pad_proxy_query_accept_caps:<src_0:proxypad3> proxying accept caps query for src_0:proxypad3
0:00:01.654864042 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4300:gst_pad_peer_query:<parsebin0:src_0> peer query 0xb4406c00 (accept-caps)
0:00:01.654895250 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<parsebin0:src_0> data is passed
0:00:01.654921875 2032 0x249bf70 INFO GST_PADS gstpad.c:4357:gst_pad_peer_query:<parsebin0:src_0> pad has no peer
0:00:01.655010209 2032 0x249bf70 DEBUG GST_PADS gstutils.c:2793:gst_pad_proxy_query_accept_caps:<src_0:proxypad3> proxying accept caps query: 1
0:00:01.655145625 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3230:gst_pad_query_accept_caps_default:<src_0:proxypad3> allowed caps subset ANY, caps video/x-h264, stream-format=(string)avc, alignment=(string)au, parsed=(boolean)true, level=(string)4.2, profile=(string)high, codec_data=(buffer)0164002affe1001b6764002aacc8501e0089f97011000003000100000300780f18319601000668e93864b22c, width=(int)1920, height=(int)1080, framerate=(fraction)60/1, pixel-aspect-ratio=(fraction)1/1, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8
0:00:01.655228625 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3514:gst_pad_query_default:<src_0:proxypad3> not forwarding 0xb4406c00 (accept-caps) query
0:00:01.655269667 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4196:gst_pad_query:<src_0:proxypad3> sent query 0xb4406c00 (accept-caps), result 1
0:00:01.655437292 2032 0x249bf70 DEBUG GST_CAPS gstpad.c:2737:gst_pad_get_current_caps:<capsfilter0:sink> get current pad caps video/x-h264, stream-format=(string)avc, alignment=(string)au, level=(string)4.2, profile=(string)high, codec_data=(buffer)0164002affe1001b6764002aacc8501e0089f97011000003000100000300780f18319601000668e93864b22c, width=(int)1920, height=(int)1080, framerate=(fraction)60/1, pixel-aspect-ratio=(fraction)1/1, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8, parsed=(boolean)true
0:00:01.655596417 2032 0x249bf70 DEBUG GST_CAPS gstpad.c:2737:gst_pad_get_current_caps:<capsfilter0:src> get current pad caps video/x-h264, stream-format=(string)avc, alignment=(string)au, level=(string)4.2, profile=(string)high, codec_data=(buffer)0164002affe1001b6764002aacc8501e0089f97011000003000100000300780f18319601000668e93864b22c, width=(int)1920, height=(int)1080, framerate=(fraction)60/1, pixel-aspect-ratio=(fraction)1/1, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8, parsed=(boolean)true
0:00:01.660712834 2032 0x249bf70 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<capsfilter0:sink> sent event, ret ok
0:00:01.660760542 2032 0x249bf70 DEBUG GST_PADS gstpad.c:5363:store_sticky_event:<capsfilter0:sink> notify caps
0:00:01.660869750 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4056:push_sticky:<h264parse0:src> event caps marked received
0:00:01.660914209 2032 0x249bf70 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<h264parse0:sink> sent event, ret ok
0:00:01.660954084 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4056:push_sticky:<qtdemux0:video_0> event caps marked received
0:00:01.661017917 2032 0x249bf70 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<h264parse0:sink> sent event, ret ok
0:00:01.661057250 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4056:push_sticky:<qtdemux0:video_0> event segment marked received
0:00:01.661116292 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4105:check_sticky:<qtdemux0:video_0> pushing all sticky events
0:00:01.661147584 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4034:push_sticky:<qtdemux0:video_0> event stream-start was already received
0:00:01.661235250 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4034:push_sticky:<qtdemux0:video_0> event caps was already received
0:00:01.661274292 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4034:push_sticky:<qtdemux0:video_0> event segment was already received
0:00:01.661353959 2032 0x249bf70 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<h264parse0:sink> sent event, ret ok
0:00:01.661389125 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4056:push_sticky:<qtdemux0:video_0> event tag marked received
0:00:01.661472834 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4105:check_sticky:<qtdemux0:video_0> pushing all sticky events
0:00:01.661508250 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4034:push_sticky:<qtdemux0:video_0> event stream-start was already received
0:00:01.661542584 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4034:push_sticky:<qtdemux0:video_0> event caps was already received
0:00:01.661573167 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4034:push_sticky:<qtdemux0:video_0> event segment was already received
0:00:01.661603375 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4034:push_sticky:<qtdemux0:video_0> event tag was already received
0:00:01.661642084 2032 0x249bf70 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<h264parse0:sink> sent event, ret ok
0:00:01.661677167 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4056:push_sticky:<qtdemux0:video_0> event tag marked received
0:00:01.668826834 2032 0x249bf70 DEBUG GST_CAPS gstpad.c:2737:gst_pad_get_current_caps:<h264parse0:sink> get current pad caps video/x-h264, stream-format=(string)avc, alignment=(string)au, level=(string)4.2, profile=(string)high, codec_data=(buffer)0164002affe1001b6764002aacc8501e0089f97011000003000100000300780f18319601000668e93864b22cfdf8f800, width=(int)1920, height=(int)1080, framerate=(fraction)60/1, pixel-aspect-ratio=(fraction)1/1
0:00:01.671050292 2032 0x249bf70 DEBUG GST_CAPS gstpad.c:2709:gst_pad_has_current_caps:<h264parse0:src> check current pad caps video/x-h264, stream-format=(string)avc, alignment=(string)au, level=(string)4.2, profile=(string)high, codec_data=(buffer)0164002affe1001b6764002aacc8501e0089f97011000003000100000300780f18319601000668e93864b22c, width=(int)1920, height=(int)1080, framerate=(fraction)60/1, pixel-aspect-ratio=(fraction)1/1, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8, parsed=(boolean)true
0:00:01.671241500 2032 0x249bf70 DEBUG GST_CAPS gstpad.c:2737:gst_pad_get_current_caps:<h264parse0:sink> get current pad caps video/x-h264, stream-format=(string)avc, alignment=(string)au, level=(string)4.2, profile=(string)high, codec_data=(buffer)0164002affe1001b6764002aacc8501e0089f97011000003000100000300780f18319601000668e93864b22cfdf8f800, width=(int)1920, height=(int)1080, framerate=(fraction)60/1, pixel-aspect-ratio=(fraction)1/1
0:00:01.671508834 2032 0x249bf70 DEBUG GST_CAPS gstpad.c:2737:gst_pad_get_current_caps:<h264parse0:src> get current pad caps video/x-h264, stream-format=(string)avc, alignment=(string)au, level=(string)4.2, profile=(string)high, codec_data=(buffer)0164002affe1001b6764002aacc8501e0089f97011000003000100000300780f18319601000668e93864b22c, width=(int)1920, height=(int)1080, framerate=(fraction)60/1, pixel-aspect-ratio=(fraction)1/1, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8, parsed=(boolean)true
0:00:01.671581042 2032 0x249bf70 DEBUG GST_CAPS gstutils.c:3148:gst_pad_peer_query_caps:<h264parse0:src> get pad peer caps with filter video/x-h264
0:00:01.671632375 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4300:gst_pad_peer_query:<h264parse0:src> peer query 0xb4406c90 (caps)
0:00:01.671674917 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4173:gst_pad_query:<capsfilter0:sink> doing query 0xb4406c90 (caps)
0:00:01.671807750 2032 0x249bf70 DEBUG GST_CAPS gstutils.c:3148:gst_pad_peer_query_caps:<capsfilter0:src> get pad peer caps with filter video/x-h264, stream-format=(string){ avc, avc3, byte-stream }, alignment=(string)au, parsed=(boolean)true; video/x-h264, parsed=(boolean)true, stream-format=(string){ avc, avc3, byte-stream }, alignment=(string){ au, nal }
0:00:01.671852417 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4300:gst_pad_peer_query:<capsfilter0:src> peer query 0xb4406cc0 (caps)
0:00:01.671891875 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4173:gst_pad_query:<src_0:proxypad3> doing query 0xb4406cc0 (caps)
0:00:01.671929625 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<src_0:proxypad3> data is passed
0:00:01.672038209 2032 0x249bf70 DEBUG GST_CAPS gstpad.c:3259:gst_pad_query_caps_default:<src_0:proxypad3> query caps caps query: 0xb4406cc0, GstQueryCaps, filter=(GstCaps)"video/x-h264\,\ stream-format\=\(string\)\{\ avc\,\ avc3\,\ byte-stream\ \}\,\ alignment\=\(string\)au\,\ parsed\=\(boolean\)true\;\ video/x-h264\,\ parsed\=\(boolean\)true\,\ stream-format\=\(string\)\{\ avc\,\ avc3\,\ byte-stream\ \}\,\ alignment\=\(string\)\{\ au\,\ nal\ \}", caps=(GstCaps)"NULL";
0:00:01.673100709 2032 0x249bf70 DEBUG GST_PADS gstutils.c:2851:gst_pad_proxy_query_caps:<src_0:proxypad3> proxying caps query for src_0:proxypad3
0:00:01.673178125 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4300:gst_pad_peer_query:<parsebin0:src_0> peer query 0xb4406cc0 (caps)
0:00:01.673212042 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<parsebin0:src_0> data is passed
0:00:01.673238959 2032 0x249bf70 INFO GST_PADS gstpad.c:4357:gst_pad_peer_query:<parsebin0:src_0> pad has no peer
0:00:01.673288542 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3514:gst_pad_query_default:<src_0:proxypad3> not forwarding 0xb4406cc0 (caps) query
0:00:01.673326542 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4196:gst_pad_query:<src_0:proxypad3> sent query 0xb4406cc0 (caps), result 1
0:00:01.673400917 2032 0x249bf70 DEBUG GST_CAPS gstutils.c:3155:gst_pad_peer_query_caps:<capsfilter0:src> peer query returned video/x-h264, stream-format=(string){ avc, avc3, byte-stream }, alignment=(string)au, parsed=(boolean)true; video/x-h264, parsed=(boolean)true, stream-format=(string){ avc, avc3, byte-stream }, alignment=(string){ au, nal }
0:00:01.673580667 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4196:gst_pad_query:<capsfilter0:sink> sent query 0xb4406c90 (caps), result 1
0:00:01.673649125 2032 0x249bf70 DEBUG GST_CAPS gstutils.c:3155:gst_pad_peer_query_caps:<h264parse0:src> peer query returned video/x-h264, stream-format=(string){ avc, avc3, byte-stream }, alignment=(string)au, parsed=(boolean)true; video/x-h264, parsed=(boolean)true, stream-format=(string){ avc, avc3, byte-stream }, alignment=(string){ au, nal }
0:00:01.673861250 2032 0x249bf70 DEBUG GST_CAPS gstpad.c:2737:gst_pad_get_current_caps:<h264parse0:src> get current pad caps video/x-h264, stream-format=(string)avc, alignment=(string)au, level=(string)4.2, profile=(string)high, codec_data=(buffer)0164002affe1001b6764002aacc8501e0089f97011000003000100000300780f18319601000668e93864b22c, width=(int)1920, height=(int)1080, framerate=(fraction)60/1, pixel-aspect-ratio=(fraction)1/1, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8, parsed=(boolean)true
0:00:01.673939209 2032 0x249bf70 DEBUG GST_PADS gstpad.c:5363:store_sticky_event:<h264parse0:src> notify caps
0:00:01.674006917 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4105:check_sticky:<h264parse0:src> pushing all sticky events
0:00:01.674044125 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4034:push_sticky:<h264parse0:src> event stream-start was already received
0:00:01.674180917 2032 0x249bf70 DEBUG GST_CAPS gstutils.c:3185:gst_pad_query_accept_caps:<capsfilter0:sink> accept caps of video/x-h264, stream-format=(string)avc, alignment=(string)au, level=(string)4.2, profile=(string)high, codec_data=(buffer)0164002affe1001b6764002aacc8501e0089f97011000003000100000300780f18319601000668e93864b22c, width=(int)1920, height=(int)1080, framerate=(fraction)60/1, pixel-aspect-ratio=(fraction)1/1, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8, parsed=(boolean)true
0:00:01.678494875 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4173:gst_pad_query:<capsfilter0:sink> doing query 0xb4406cf0 (accept-caps)
0:00:01.678577042 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4196:gst_pad_query:<capsfilter0:sink> sent query 0xb4406cf0 (accept-caps), result 1
0:00:01.678820459 2032 0x249bf70 DEBUG GST_CAPS gstutils.c:3185:gst_pad_query_accept_caps:<src_0:proxypad3> accept caps of video/x-h264, stream-format=(string)avc, alignment=(string)au, parsed=(boolean)true, level=(string)4.2, profile=(string)high, codec_data=(buffer)0164002affe1001b6764002aacc8501e0089f97011000003000100000300780f18319601000668e93864b22c, width=(int)1920, height=(int)1080, framerate=(fraction)60/1, pixel-aspect-ratio=(fraction)1/1, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8
0:00:01.678865542 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4173:gst_pad_query:<src_0:proxypad3> doing query 0xb4406d20 (accept-caps)
0:00:01.678896417 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<src_0:proxypad3> data is passed
0:00:01.679045375 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3200:gst_pad_query_accept_caps_default:<src_0:proxypad3> query accept-caps accept-caps query: 0xb4406d20, GstQueryAcceptCaps, caps=(GstCaps)"video/x-h264\,\ stream-format\=\(string\)avc\,\ alignment\=\(string\)au\,\ parsed\=\(boolean\)true\,\ level\=\(string\)4.2\,\ profile\=\(string\)high\,\ codec_data\=\(buffer\)0164002affe1001b6764002aacc8501e0089f97011000003000100000300780f18319601000668e93864b22c\,\ width\=\(int\)1920\,\ height\=\(int\)1080\,\ framerate\=\(fraction\)60/1\,\ pixel-aspect-ratio\=\(fraction\)1/1\,\ chroma-format\=\(string\)4:2:0\,\ bit-depth-luma\=\(uint\)8\,\ bit-depth-chroma\=\(uint\)8", result=(boolean)false;
0:00:01.679083084 2032 0x249bf70 DEBUG GST_PADS gstutils.c:2782:gst_pad_proxy_query_accept_caps:<src_0:proxypad3> proxying accept caps query for src_0:proxypad3
0:00:01.679128375 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4300:gst_pad_peer_query:<parsebin0:src_0> peer query 0xb4406d20 (accept-caps)
0:00:01.679157709 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<parsebin0:src_0> data is passed
0:00:01.679183667 2032 0x249bf70 INFO GST_PADS gstpad.c:4357:gst_pad_peer_query:<parsebin0:src_0> pad has no peer
0:00:01.679249834 2032 0x249bf70 DEBUG GST_PADS gstutils.c:2793:gst_pad_proxy_query_accept_caps:<src_0:proxypad3> proxying accept caps query: 1
0:00:01.679372167 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3230:gst_pad_query_accept_caps_default:<src_0:proxypad3> allowed caps subset ANY, caps video/x-h264, stream-format=(string)avc, alignment=(string)au, parsed=(boolean)true, level=(string)4.2, profile=(string)high, codec_data=(buffer)0164002affe1001b6764002aacc8501e0089f97011000003000100000300780f18319601000668e93864b22c, width=(int)1920, height=(int)1080, framerate=(fraction)60/1, pixel-aspect-ratio=(fraction)1/1, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8
0:00:01.683553875 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3514:gst_pad_query_default:<src_0:proxypad3> not forwarding 0xb4406d20 (accept-caps) query
0:00:01.683614375 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4196:gst_pad_query:<src_0:proxypad3> sent query 0xb4406d20 (accept-caps), result 1
0:00:01.683812250 2032 0x249bf70 DEBUG GST_CAPS gstpad.c:2737:gst_pad_get_current_caps:<capsfilter0:sink> get current pad caps video/x-h264, stream-format=(string)avc, alignment=(string)au, level=(string)4.2, profile=(string)high, codec_data=(buffer)0164002affe1001b6764002aacc8501e0089f97011000003000100000300780f18319601000668e93864b22c, width=(int)1920, height=(int)1080, framerate=(fraction)60/1, pixel-aspect-ratio=(fraction)1/1, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8, parsed=(boolean)true
0:00:01.683953459 2032 0x249bf70 DEBUG GST_CAPS gstpad.c:2737:gst_pad_get_current_caps:<capsfilter0:src> get current pad caps video/x-h264, stream-format=(string)avc, alignment=(string)au, level=(string)4.2, profile=(string)high, codec_data=(buffer)0164002affe1001b6764002aacc8501e0089f97011000003000100000300780f18319601000668e93864b22c, width=(int)1920, height=(int)1080, framerate=(fraction)60/1, pixel-aspect-ratio=(fraction)1/1, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8, parsed=(boolean)true
0:00:01.684028875 2032 0x249bf70 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<capsfilter0:sink> sent event, ret ok
0:00:01.684064834 2032 0x249bf70 DEBUG GST_PADS gstpad.c:5363:store_sticky_event:<capsfilter0:sink> notify caps
0:00:01.684135875 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4056:push_sticky:<h264parse0:src> event caps marked received
0:00:01.685936542 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4300:gst_pad_peer_query:<h264parse0:sink> peer query 0xb4406d50 (seeking)
0:00:01.686026584 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4173:gst_pad_query:<qtdemux0:video_0> doing query 0xb4406d50 (seeking)
0:00:01.686075417 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4196:gst_pad_query:<qtdemux0:video_0> sent query 0xb4406d50 (seeking), result 0
0:00:01.686103334 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4242:gst_pad_query:<qtdemux0:video_0> query failed
0:00:01.686132459 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4363:gst_pad_peer_query:<h264parse0:sink> query failed
0:00:01.686189375 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4300:gst_pad_peer_query:<h264parse0:sink> peer query 0xb4406d80 (duration)
0:00:01.686228042 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4173:gst_pad_query:<qtdemux0:video_0> doing query 0xb4406d80 (duration)
0:00:01.686270250 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3514:gst_pad_query_default:<qtdemux0:video_0> forwarding 0xb4406d80 (duration) query
0:00:01.688552459 2032 0x249bf70 DEBUG GST_PADS gstpad.c:2968:gst_pad_iterate_internal_links_default:<qtdemux0:video_0> Making iterator
0:00:01.688626459 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4300:gst_pad_peer_query:<qtdemux0:sink> peer query 0xb4406d80 (duration)
0:00:01.688662875 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4173:gst_pad_query:<typefind:src> doing query 0xb4406d80 (duration)
0:00:01.688704334 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3514:gst_pad_query_default:<typefind:src> forwarding 0xb4406d80 (duration) query
0:00:01.688733709 2032 0x249bf70 DEBUG GST_PADS gstpad.c:2968:gst_pad_iterate_internal_links_default:<typefind:src> Making iterator
0:00:01.688770125 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4300:gst_pad_peer_query:<typefind:sink> peer query 0xb4406d80 (duration)
0:00:01.688804709 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4173:gst_pad_query:<sink:proxypad1> doing query 0xb4406d80 (duration)
0:00:01.688840084 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3514:gst_pad_query_default:<sink:proxypad1> forwarding 0xb4406d80 (duration) query
0:00:01.688882667 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4300:gst_pad_peer_query:<parsebin0:sink> peer query 0xb4406d80 (duration)
0:00:01.688919000 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4173:gst_pad_query:<sink:proxypad0> doing query 0xb4406d80 (duration)
0:00:01.688953209 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3514:gst_pad_query_default:<sink:proxypad0> forwarding 0xb4406d80 (duration) query
0:00:01.688991667 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4300:gst_pad_peer_query:<decodebin3-0:sink> peer query 0xb4406d80 (duration)
0:00:01.689027542 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4173:gst_pad_query:<filesrc0:src> doing query 0xb4406d80 (duration)
0:00:01.689123000 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4173:gst_pad_query:<filesrc0:src> doing query 0xb4406db0 (convert)
0:00:01.689170792 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4196:gst_pad_query:<filesrc0:src> sent query 0xb4406db0 (convert), result 0
0:00:01.689198167 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4242:gst_pad_query:<filesrc0:src> query failed
0:00:01.689240084 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4196:gst_pad_query:<filesrc0:src> sent query 0xb4406d80 (duration), result 0
0:00:01.689265209 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4242:gst_pad_query:<filesrc0:src> query failed
0:00:01.689290792 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4363:gst_pad_peer_query:<decodebin3-0:sink> query failed
0:00:01.689329584 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4196:gst_pad_query:<sink:proxypad0> sent query 0xb4406d80 (duration), result 0
0:00:01.689354209 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4242:gst_pad_query:<sink:proxypad0> query failed
0:00:01.689377500 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4363:gst_pad_peer_query:<parsebin0:sink> query failed
0:00:01.693339375 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4196:gst_pad_query:<sink:proxypad1> sent query 0xb4406d80 (duration), result 0
0:00:01.693379875 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4242:gst_pad_query:<sink:proxypad1> query failed
0:00:01.693405917 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4363:gst_pad_peer_query:<typefind:sink> query failed
0:00:01.693445667 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4196:gst_pad_query:<typefind:src> sent query 0xb4406d80 (duration), result 0
0:00:01.693470375 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4242:gst_pad_query:<typefind:src> query failed
0:00:01.693495500 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4363:gst_pad_peer_query:<qtdemux0:sink> query failed
0:00:01.693542834 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4196:gst_pad_query:<qtdemux0:video_0> sent query 0xb4406d80 (duration), result 1
0:00:01.694111709 2032 0x249bf70 DEBUG GST_CAPS gstpad.c:2709:gst_pad_has_current_caps:<h264parse0:src> check current pad caps video/x-h264, stream-format=(string)avc, alignment=(string)au, level=(string)4.2, profile=(string)high, codec_data=(buffer)0164002affe1001b6764002aacc8501e0089f97011000003000100000300780f18319601000668e93864b22c, width=(int)1920, height=(int)1080, framerate=(fraction)60/1, pixel-aspect-ratio=(fraction)1/1, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8, parsed=(boolean)true
0:00:01.694260167 2032 0x249bf70 DEBUG GST_CAPS gstpad.c:2737:gst_pad_get_current_caps:<h264parse0:src> get current pad caps video/x-h264, stream-format=(string)avc, alignment=(string)au, level=(string)4.2, profile=(string)high, codec_data=(buffer)0164002affe1001b6764002aacc8501e0089f97011000003000100000300780f18319601000668e93864b22c, width=(int)1920, height=(int)1080, framerate=(fraction)60/1, pixel-aspect-ratio=(fraction)1/1, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8, parsed=(boolean)true
0:00:01.694314875 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4105:check_sticky:<h264parse0:src> pushing all sticky events
0:00:01.694357084 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4034:push_sticky:<h264parse0:src> event stream-start was already received
0:00:01.694392042 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4034:push_sticky:<h264parse0:src> event caps was already received
0:00:01.694448000 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4105:check_sticky:<capsfilter0:src> pushing all sticky events
0:00:01.694482917 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4034:push_sticky:<capsfilter0:src> event stream-start was already received
0:00:01.694514000 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4034:push_sticky:<capsfilter0:src> event caps was already received
0:00:01.694555709 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<src_0:proxypad3> data is passed
0:00:01.694592542 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3713:probe_hook_marshal:<src_0:proxypad3> probe returned OK
0:00:01.694641000 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4105:check_sticky:<parsebin0:src_0> pushing all sticky events
0:00:01.698375750 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4034:push_sticky:<parsebin0:src_0> event stream-start was already received
0:00:01.698423834 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4034:push_sticky:<parsebin0:src_0> event caps was already received
0:00:01.698456834 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<parsebin0:src_0> data is passed
0:00:01.698490000 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3699:probe_hook_marshal:<parsebin0:src_0> asked to drop item
0:00:01.698515125 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3927:do_probe_callbacks:<parsebin0:src_0> data is dropped
0:00:01.698540167 2032 0x249bf70 DEBUG GST_PADS gstpad.c:5587:gst_pad_push_event_unchecked:<parsebin0:src_0> dropped event
0:00:01.698570000 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4061:push_sticky:<parsebin0:src_0> event segment was dropped, mark pending
0:00:01.698599834 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4068:push_sticky:<parsebin0:src_0> event stream-collection was ignored, mark pending
0:00:01.698641500 2032 0x249bf70 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<src_0:proxypad3> sent event, ret ok
0:00:01.698678292 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4056:push_sticky:<capsfilter0:src> event segment marked received
0:00:01.698708584 2032 0x249bf70 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<capsfilter0:sink> sent event, ret ok
0:00:01.698741709 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4056:push_sticky:<h264parse0:src> event segment marked received
0:00:01.698774084 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4105:check_sticky:<h264parse0:src> pushing all sticky events
0:00:01.698806709 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4034:push_sticky:<h264parse0:src> event stream-start was already received
0:00:01.698838584 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4034:push_sticky:<h264parse0:src> event caps was already received
0:00:01.698868625 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4034:push_sticky:<h264parse0:src> event segment was already received
0:00:01.698909917 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4105:check_sticky:<capsfilter0:src> pushing all sticky events
0:00:01.698942875 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4034:push_sticky:<capsfilter0:src> event stream-start was already received
0:00:01.698972375 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4034:push_sticky:<capsfilter0:src> event caps was already received
0:00:01.699003667 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4034:push_sticky:<capsfilter0:src> event segment was already received
0:00:01.699032334 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<src_0:proxypad3> data is passed
0:00:01.699129292 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3713:probe_hook_marshal:<src_0:proxypad3> probe returned OK
0:00:01.704132667 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4105:check_sticky:<parsebin0:src_0> pushing all sticky events
0:00:01.704185625 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4034:push_sticky:<parsebin0:src_0> event stream-start was already received
0:00:01.704218209 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4034:push_sticky:<parsebin0:src_0> event caps was already received
0:00:01.704250334 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<parsebin0:src_0> data is passed
0:00:01.704280000 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3699:probe_hook_marshal:<parsebin0:src_0> asked to drop item
0:00:01.704304709 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3927:do_probe_callbacks:<parsebin0:src_0> data is dropped
0:00:01.704329209 2032 0x249bf70 DEBUG GST_PADS gstpad.c:5587:gst_pad_push_event_unchecked:<parsebin0:src_0> dropped event
0:00:01.704357834 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4061:push_sticky:<parsebin0:src_0> event segment was dropped, mark pending
0:00:01.704384709 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<parsebin0:src_0> data is passed
0:00:01.704415500 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4034:push_sticky:<parsebin0:src_0> event stream-start was already received
0:00:01.704446875 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4034:push_sticky:<parsebin0:src_0> event caps was already received
0:00:01.704474000 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<parsebin0:src_0> data is passed
0:00:01.704500959 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3699:probe_hook_marshal:<parsebin0:src_0> asked to drop item
0:00:01.704525125 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3927:do_probe_callbacks:<parsebin0:src_0> data is dropped
0:00:01.704548709 2032 0x249bf70 DEBUG GST_PADS gstpad.c:5587:gst_pad_push_event_unchecked:<parsebin0:src_0> dropped event
0:00:01.704576250 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4061:push_sticky:<parsebin0:src_0> event segment was dropped, mark pending
0:00:01.704601834 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3699:probe_hook_marshal:<parsebin0:src_0> asked to drop item
0:00:01.704626375 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3927:do_probe_callbacks:<parsebin0:src_0> data is dropped
0:00:01.704651042 2032 0x249bf70 DEBUG GST_PADS gstpad.c:5587:gst_pad_push_event_unchecked:<parsebin0:src_0> dropped event
0:00:01.704681375 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4061:push_sticky:<parsebin0:src_0> event stream-collection was dropped, mark pending
0:00:01.704709209 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<parsebin0:src_0> data is passed
0:00:01.704739042 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4034:push_sticky:<parsebin0:src_0> event stream-start was already received
0:00:01.704768834 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4034:push_sticky:<parsebin0:src_0> event caps was already received
0:00:01.710643625 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<parsebin0:src_0> data is passed
0:00:01.710690834 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3699:probe_hook_marshal:<parsebin0:src_0> asked to drop item
0:00:01.710716959 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3927:do_probe_callbacks:<parsebin0:src_0> data is dropped
0:00:01.710741542 2032 0x249bf70 DEBUG GST_PADS gstpad.c:5587:gst_pad_push_event_unchecked:<parsebin0:src_0> dropped event
0:00:01.710774875 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4061:push_sticky:<parsebin0:src_0> event segment was dropped, mark pending
0:00:01.710803000 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<parsebin0:src_0> data is passed
0:00:01.710833084 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4034:push_sticky:<parsebin0:src_0> event stream-start was already received
0:00:01.710862709 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4034:push_sticky:<parsebin0:src_0> event caps was already received
0:00:01.710888750 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<parsebin0:src_0> data is passed
0:00:01.710914709 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3699:probe_hook_marshal:<parsebin0:src_0> asked to drop item
0:00:01.710940000 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3927:do_probe_callbacks:<parsebin0:src_0> data is dropped
0:00:01.710963542 2032 0x249bf70 DEBUG GST_PADS gstpad.c:5587:gst_pad_push_event_unchecked:<parsebin0:src_0> dropped event
0:00:01.710991917 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4061:push_sticky:<parsebin0:src_0> event segment was dropped, mark pending
0:00:01.711018875 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3699:probe_hook_marshal:<parsebin0:src_0> asked to drop item
0:00:01.711043917 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3927:do_probe_callbacks:<parsebin0:src_0> data is dropped
0:00:01.711067292 2032 0x249bf70 DEBUG GST_PADS gstpad.c:5587:gst_pad_push_event_unchecked:<parsebin0:src_0> dropped event
0:00:01.711095959 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4061:push_sticky:<parsebin0:src_0> event stream-collection was dropped, mark pending
0:00:01.711168167 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3699:probe_hook_marshal:<parsebin0:src_0> asked to drop item
0:00:01.711200459 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3927:do_probe_callbacks:<parsebin0:src_0> data is dropped
0:00:01.711225917 2032 0x249bf70 DEBUG GST_PADS gstpad.c:5587:gst_pad_push_event_unchecked:<parsebin0:src_0> dropped event
0:00:01.711255542 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4061:push_sticky:<parsebin0:src_0> event tag was dropped, mark pending
0:00:01.711295709 2032 0x249bf70 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<src_0:proxypad3> sent event, ret ok
0:00:01.711337000 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4056:push_sticky:<capsfilter0:src> event tag marked received
0:00:01.715778125 2032 0x249bf70 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<capsfilter0:sink> sent event, ret ok
0:00:01.715833250 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4056:push_sticky:<h264parse0:src> event tag marked received
0:00:01.715866834 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4105:check_sticky:<h264parse0:src> pushing all sticky events
0:00:01.715895875 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4034:push_sticky:<h264parse0:src> event stream-start was already received
0:00:01.715925167 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4034:push_sticky:<h264parse0:src> event caps was already received
0:00:01.715954292 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4034:push_sticky:<h264parse0:src> event segment was already received
0:00:01.715982500 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4034:push_sticky:<h264parse0:src> event tag was already received
0:00:01.716018875 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4105:check_sticky:<capsfilter0:src> pushing all sticky events
0:00:01.716048125 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4034:push_sticky:<capsfilter0:src> event stream-start was already received
0:00:01.716076250 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4034:push_sticky:<capsfilter0:src> event caps was already received
0:00:01.716104709 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4034:push_sticky:<capsfilter0:src> event segment was already received
0:00:01.716134250 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4034:push_sticky:<capsfilter0:src> event tag was already received
0:00:01.716167125 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<src_0:proxypad3> data is passed
0:00:01.716205625 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3713:probe_hook_marshal:<src_0:proxypad3> probe returned OK
0:00:01.716252584 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4105:check_sticky:<parsebin0:src_0> pushing all sticky events
0:00:01.716283250 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4034:push_sticky:<parsebin0:src_0> event stream-start was already received
0:00:01.716314417 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4034:push_sticky:<parsebin0:src_0> event caps was already received
0:00:01.716341875 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<parsebin0:src_0> data is passed
0:00:01.716369250 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3699:probe_hook_marshal:<parsebin0:src_0> asked to drop item
0:00:01.716393584 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3927:do_probe_callbacks:<parsebin0:src_0> data is dropped
0:00:01.716417792 2032 0x249bf70 DEBUG GST_PADS gstpad.c:5587:gst_pad_push_event_unchecked:<parsebin0:src_0> dropped event
0:00:01.716446167 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4061:push_sticky:<parsebin0:src_0> event segment was dropped, mark pending
0:00:01.716473667 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<parsebin0:src_0> data is passed
0:00:01.720467959 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4034:push_sticky:<parsebin0:src_0> event stream-start was already received
0:00:01.720522625 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4034:push_sticky:<parsebin0:src_0> event caps was already received
0:00:01.720555292 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<parsebin0:src_0> data is passed
0:00:01.720585959 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3699:probe_hook_marshal:<parsebin0:src_0> asked to drop item
0:00:01.720610667 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3927:do_probe_callbacks:<parsebin0:src_0> data is dropped
0:00:01.720635542 2032 0x249bf70 DEBUG GST_PADS gstpad.c:5587:gst_pad_push_event_unchecked:<parsebin0:src_0> dropped event
0:00:01.720664334 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4061:push_sticky:<parsebin0:src_0> event segment was dropped, mark pending
0:00:01.720691209 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3699:probe_hook_marshal:<parsebin0:src_0> asked to drop item
0:00:01.720715209 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3927:do_probe_callbacks:<parsebin0:src_0> data is dropped
0:00:01.720738334 2032 0x249bf70 DEBUG GST_PADS gstpad.c:5587:gst_pad_push_event_unchecked:<parsebin0:src_0> dropped event
0:00:01.720767000 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4061:push_sticky:<parsebin0:src_0> event stream-collection was dropped, mark pending
0:00:01.720793542 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<parsebin0:src_0> data is passed
0:00:01.720822209 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4034:push_sticky:<parsebin0:src_0> event stream-start was already received
0:00:01.720852625 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4034:push_sticky:<parsebin0:src_0> event caps was already received
0:00:01.720881625 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<parsebin0:src_0> data is passed
0:00:01.720909334 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3699:probe_hook_marshal:<parsebin0:src_0> asked to drop item
0:00:01.720933792 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3927:do_probe_callbacks:<parsebin0:src_0> data is dropped
0:00:01.720957792 2032 0x249bf70 DEBUG GST_PADS gstpad.c:5587:gst_pad_push_event_unchecked:<parsebin0:src_0> dropped event
0:00:01.720985125 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4061:push_sticky:<parsebin0:src_0> event segment was dropped, mark pending
0:00:01.721010542 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<parsebin0:src_0> data is passed
0:00:01.721038584 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4034:push_sticky:<parsebin0:src_0> event stream-start was already received
0:00:01.721067084 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4034:push_sticky:<parsebin0:src_0> event caps was already received
0:00:01.721093375 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<parsebin0:src_0> data is passed
0:00:01.721132375 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3699:probe_hook_marshal:<parsebin0:src_0> asked to drop item
0:00:01.721158500 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3927:do_probe_callbacks:<parsebin0:src_0> data is dropped
0:00:01.721183000 2032 0x249bf70 DEBUG GST_PADS gstpad.c:5587:gst_pad_push_event_unchecked:<parsebin0:src_0> dropped event
0:00:01.721212084 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4061:push_sticky:<parsebin0:src_0> event segment was dropped, mark pending
0:00:01.721239334 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3699:probe_hook_marshal:<parsebin0:src_0> asked to drop item
0:00:01.721264000 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3927:do_probe_callbacks:<parsebin0:src_0> data is dropped
0:00:01.721287375 2032 0x249bf70 DEBUG GST_PADS gstpad.c:5587:gst_pad_push_event_unchecked:<parsebin0:src_0> dropped event
0:00:01.721316500 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4061:push_sticky:<parsebin0:src_0> event stream-collection was dropped, mark pending
0:00:01.721344750 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3699:probe_hook_marshal:<parsebin0:src_0> asked to drop item
0:00:01.721370417 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3927:do_probe_callbacks:<parsebin0:src_0> data is dropped
0:00:01.721395417 2032 0x249bf70 DEBUG GST_PADS gstpad.c:5587:gst_pad_push_event_unchecked:<parsebin0:src_0> dropped event
0:00:01.721424042 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4061:push_sticky:<parsebin0:src_0> event tag was dropped, mark pending
0:00:01.721451125 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<parsebin0:src_0> data is passed
0:00:01.721480750 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4034:push_sticky:<parsebin0:src_0> event stream-start was already received
0:00:01.721509209 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4034:push_sticky:<parsebin0:src_0> event caps was already received
0:00:01.721535000 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<parsebin0:src_0> data is passed
0:00:01.721560709 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3699:probe_hook_marshal:<parsebin0:src_0> asked to drop item
0:00:01.721584209 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3927:do_probe_callbacks:<parsebin0:src_0> data is dropped
0:00:01.721608000 2032 0x249bf70 DEBUG GST_PADS gstpad.c:5587:gst_pad_push_event_unchecked:<parsebin0:src_0> dropped event
0:00:01.721635584 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4061:push_sticky:<parsebin0:src_0> event segment was dropped, mark pending
0:00:01.721662625 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<parsebin0:src_0> data is passed
0:00:01.721711667 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4034:push_sticky:<parsebin0:src_0> event stream-start was already received
0:00:01.721748334 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4034:push_sticky:<parsebin0:src_0> event caps was already received
0:00:01.724982417 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<parsebin0:src_0> data is passed
0:00:01.725029000 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3699:probe_hook_marshal:<parsebin0:src_0> asked to drop item
0:00:01.725056125 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3927:do_probe_callbacks:<parsebin0:src_0> data is dropped
0:00:01.725081250 2032 0x249bf70 DEBUG GST_PADS gstpad.c:5587:gst_pad_push_event_unchecked:<parsebin0:src_0> dropped event
0:00:01.725112125 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4061:push_sticky:<parsebin0:src_0> event segment was dropped, mark pending
0:00:01.725141084 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3699:probe_hook_marshal:<parsebin0:src_0> asked to drop item
0:00:01.725165459 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3927:do_probe_callbacks:<parsebin0:src_0> data is dropped
0:00:01.725188917 2032 0x249bf70 DEBUG GST_PADS gstpad.c:5587:gst_pad_push_event_unchecked:<parsebin0:src_0> dropped event
0:00:01.725217542 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4061:push_sticky:<parsebin0:src_0> event stream-collection was dropped, mark pending
0:00:01.725246500 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3699:probe_hook_marshal:<parsebin0:src_0> asked to drop item
0:00:01.725271792 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3927:do_probe_callbacks:<parsebin0:src_0> data is dropped
0:00:01.725295875 2032 0x249bf70 DEBUG GST_PADS gstpad.c:5587:gst_pad_push_event_unchecked:<parsebin0:src_0> dropped event
0:00:01.725324292 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4061:push_sticky:<parsebin0:src_0> event tag was dropped, mark pending
0:00:01.725369000 2032 0x249bf70 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<src_0:proxypad3> sent event, ret ok
0:00:01.725412375 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4056:push_sticky:<capsfilter0:src> event tag marked received
0:00:01.725445542 2032 0x249bf70 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<capsfilter0:sink> sent event, ret ok
0:00:01.725479000 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4056:push_sticky:<h264parse0:src> event tag marked received
0:00:01.725642042 2032 0x249bf70 DEBUG GST_CAPS gstpad.c:2737:gst_pad_get_current_caps:<h264parse0:src> get current pad caps video/x-h264, stream-format=(string)avc, alignment=(string)au, level=(string)4.2, profile=(string)high, codec_data=(buffer)0164002affe1001b6764002aacc8501e0089f97011000003000100000300780f18319601000668e93864b22c, width=(int)1920, height=(int)1080, framerate=(fraction)60/1, pixel-aspect-ratio=(fraction)1/1, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8, parsed=(boolean)true
0:00:01.726051875 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4105:check_sticky:<h264parse0:src> pushing all sticky events
0:00:01.726100084 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4034:push_sticky:<h264parse0:src> event stream-start was already received
0:00:01.729652584 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4034:push_sticky:<h264parse0:src> event caps was already received
0:00:01.729731667 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4034:push_sticky:<h264parse0:src> event segment was already received
0:00:01.729782209 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4105:check_sticky:<capsfilter0:src> pushing all sticky events
0:00:01.729814042 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4034:push_sticky:<capsfilter0:src> event stream-start was already received
0:00:01.729844042 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4034:push_sticky:<capsfilter0:src> event caps was already received
0:00:01.729873167 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4034:push_sticky:<capsfilter0:src> event segment was already received
0:00:01.729905334 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<src_0:proxypad3> data is passed
0:00:01.730001167 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3713:probe_hook_marshal:<src_0:proxypad3> probe returned OK
0:00:01.730051417 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4105:check_sticky:<parsebin0:src_0> pushing all sticky events
0:00:01.730084084 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4034:push_sticky:<parsebin0:src_0> event stream-start was already received
0:00:01.730113667 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4034:push_sticky:<parsebin0:src_0> event caps was already received
0:00:01.730141584 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<parsebin0:src_0> data is passed
0:00:01.730170834 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3699:probe_hook_marshal:<parsebin0:src_0> asked to drop item
0:00:01.730194875 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3927:do_probe_callbacks:<parsebin0:src_0> data is dropped
0:00:01.730219375 2032 0x249bf70 DEBUG GST_PADS gstpad.c:5587:gst_pad_push_event_unchecked:<parsebin0:src_0> dropped event
0:00:01.730248375 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4061:push_sticky:<parsebin0:src_0> event segment was dropped, mark pending
0:00:01.730274417 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<parsebin0:src_0> data is passed
0:00:01.730303834 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4034:push_sticky:<parsebin0:src_0> event stream-start was already received
0:00:01.730333375 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4034:push_sticky:<parsebin0:src_0> event caps was already received
0:00:01.730360709 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<parsebin0:src_0> data is passed
0:00:01.730386625 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3699:probe_hook_marshal:<parsebin0:src_0> asked to drop item
0:00:01.730410375 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3927:do_probe_callbacks:<parsebin0:src_0> data is dropped
0:00:01.730433709 2032 0x249bf70 DEBUG GST_PADS gstpad.c:5587:gst_pad_push_event_unchecked:<parsebin0:src_0> dropped event
0:00:01.733926125 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4061:push_sticky:<parsebin0:src_0> event segment was dropped, mark pending
0:00:01.733980167 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3699:probe_hook_marshal:<parsebin0:src_0> asked to drop item
0:00:01.734008000 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3927:do_probe_callbacks:<parsebin0:src_0> data is dropped
0:00:01.734032667 2032 0x249bf70 DEBUG GST_PADS gstpad.c:5587:gst_pad_push_event_unchecked:<parsebin0:src_0> dropped event
0:00:01.734062375 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4061:push_sticky:<parsebin0:src_0> event stream-collection was dropped, mark pending
0:00:01.734091792 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<parsebin0:src_0> data is passed
0:00:01.734123000 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4034:push_sticky:<parsebin0:src_0> event stream-start was already received
0:00:01.734152542 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4034:push_sticky:<parsebin0:src_0> event caps was already received
0:00:01.734179542 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<parsebin0:src_0> data is passed
0:00:01.734207000 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3699:probe_hook_marshal:<parsebin0:src_0> asked to drop item
0:00:01.734232709 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3927:do_probe_callbacks:<parsebin0:src_0> data is dropped
0:00:01.734256459 2032 0x249bf70 DEBUG GST_PADS gstpad.c:5587:gst_pad_push_event_unchecked:<parsebin0:src_0> dropped event
0:00:01.734284917 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4061:push_sticky:<parsebin0:src_0> event segment was dropped, mark pending
0:00:01.734311709 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<parsebin0:src_0> data is passed
0:00:01.734340709 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4034:push_sticky:<parsebin0:src_0> event stream-start was already received
0:00:01.734368709 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4034:push_sticky:<parsebin0:src_0> event caps was already received
0:00:01.734394292 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<parsebin0:src_0> data is passed
0:00:01.734419375 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3699:probe_hook_marshal:<parsebin0:src_0> asked to drop item
0:00:01.734444209 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3927:do_probe_callbacks:<parsebin0:src_0> data is dropped
0:00:01.734467667 2032 0x249bf70 DEBUG GST_PADS gstpad.c:5587:gst_pad_push_event_unchecked:<parsebin0:src_0> dropped event
0:00:01.734495000 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4061:push_sticky:<parsebin0:src_0> event segment was dropped, mark pending
0:00:01.734521500 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3699:probe_hook_marshal:<parsebin0:src_0> asked to drop item
0:00:01.734546292 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3927:do_probe_callbacks:<parsebin0:src_0> data is dropped
0:00:01.737975417 2032 0x249bf70 DEBUG GST_PADS gstpad.c:5587:gst_pad_push_event_unchecked:<parsebin0:src_0> dropped event
0:00:01.738026375 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4061:push_sticky:<parsebin0:src_0> event stream-collection was dropped, mark pending
0:00:01.738062667 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3699:probe_hook_marshal:<parsebin0:src_0> asked to drop item
0:00:01.738089750 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3927:do_probe_callbacks:<parsebin0:src_0> data is dropped
0:00:01.738113834 2032 0x249bf70 DEBUG GST_PADS gstpad.c:5587:gst_pad_push_event_unchecked:<parsebin0:src_0> dropped event
0:00:01.738141834 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4061:push_sticky:<parsebin0:src_0> event tag was dropped, mark pending
0:00:01.738168125 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<parsebin0:src_0> data is passed
0:00:01.738196917 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4034:push_sticky:<parsebin0:src_0> event stream-start was already received
0:00:01.738226292 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4034:push_sticky:<parsebin0:src_0> event caps was already received
0:00:01.738252834 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<parsebin0:src_0> data is passed
0:00:01.738279000 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3699:probe_hook_marshal:<parsebin0:src_0> asked to drop item
0:00:01.738303750 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3927:do_probe_callbacks:<parsebin0:src_0> data is dropped
0:00:01.738327542 2032 0x249bf70 DEBUG GST_PADS gstpad.c:5587:gst_pad_push_event_unchecked:<parsebin0:src_0> dropped event
0:00:01.738355250 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4061:push_sticky:<parsebin0:src_0> event segment was dropped, mark pending
0:00:01.738381000 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<parsebin0:src_0> data is passed
0:00:01.738408875 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4034:push_sticky:<parsebin0:src_0> event stream-start was already received
0:00:01.738438000 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4034:push_sticky:<parsebin0:src_0> event caps was already received
0:00:01.738463667 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<parsebin0:src_0> data is passed
0:00:01.738489209 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3699:probe_hook_marshal:<parsebin0:src_0> asked to drop item
0:00:01.738513750 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3927:do_probe_callbacks:<parsebin0:src_0> data is dropped
0:00:01.738536959 2032 0x249bf70 DEBUG GST_PADS gstpad.c:5587:gst_pad_push_event_unchecked:<parsebin0:src_0> dropped event
0:00:01.738564667 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4061:push_sticky:<parsebin0:src_0> event segment was dropped, mark pending
0:00:01.738591334 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3699:probe_hook_marshal:<parsebin0:src_0> asked to drop item
0:00:01.744227500 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3927:do_probe_callbacks:<parsebin0:src_0> data is dropped
0:00:01.744280167 2032 0x249bf70 DEBUG GST_PADS gstpad.c:5587:gst_pad_push_event_unchecked:<parsebin0:src_0> dropped event
0:00:01.744319542 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4061:push_sticky:<parsebin0:src_0> event stream-collection was dropped, mark pending
0:00:01.744355375 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3699:probe_hook_marshal:<parsebin0:src_0> asked to drop item
0:00:01.744380875 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3927:do_probe_callbacks:<parsebin0:src_0> data is dropped
0:00:01.744404709 2032 0x249bf70 DEBUG GST_PADS gstpad.c:5587:gst_pad_push_event_unchecked:<parsebin0:src_0> dropped event
0:00:01.744433084 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4061:push_sticky:<parsebin0:src_0> event tag was dropped, mark pending
0:00:01.744477125 2032 0x249bf70 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<src_0:proxypad3> sent event, ret ok
0:00:01.744517584 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4056:push_sticky:<capsfilter0:src> event tag marked received
0:00:01.744546875 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4034:push_sticky:<capsfilter0:src> event tag was already received
0:00:01.744576959 2032 0x249bf70 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<capsfilter0:sink> sent event, ret ok
0:00:01.744623334 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4056:push_sticky:<h264parse0:src> event tag marked received
0:00:01.744657542 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4034:push_sticky:<h264parse0:src> event tag was already received
0:00:01.744728667 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<src_0:proxypad3> data is passed
0:00:01.744765084 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4105:check_sticky:<parsebin0:src_0> pushing all sticky events
0:00:01.744794834 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4034:push_sticky:<parsebin0:src_0> event stream-start was already received
0:00:01.744824209 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4034:push_sticky:<parsebin0:src_0> event caps was already received
0:00:01.744851000 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<parsebin0:src_0> data is passed
0:00:01.744877709 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3699:probe_hook_marshal:<parsebin0:src_0> asked to drop item
0:00:01.744901709 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3927:do_probe_callbacks:<parsebin0:src_0> data is dropped
0:00:01.744925375 2032 0x249bf70 DEBUG GST_PADS gstpad.c:5587:gst_pad_push_event_unchecked:<parsebin0:src_0> dropped event
0:00:01.744954417 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4061:push_sticky:<parsebin0:src_0> event segment was dropped, mark pending
0:00:01.744980459 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<parsebin0:src_0> data is passed
0:00:01.748435334 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4034:push_sticky:<parsebin0:src_0> event stream-start was already received
0:00:01.748484375 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4034:push_sticky:<parsebin0:src_0> event caps was already received
0:00:01.748516167 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<parsebin0:src_0> data is passed
0:00:01.748544959 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3699:probe_hook_marshal:<parsebin0:src_0> asked to drop item
0:00:01.748571042 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3927:do_probe_callbacks:<parsebin0:src_0> data is dropped
0:00:01.748597042 2032 0x249bf70 DEBUG GST_PADS gstpad.c:5587:gst_pad_push_event_unchecked:<parsebin0:src_0> dropped event
0:00:01.748626584 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4061:push_sticky:<parsebin0:src_0> event segment was dropped, mark pending
0:00:01.748654792 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3699:probe_hook_marshal:<parsebin0:src_0> asked to drop item
0:00:01.748680500 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3927:do_probe_callbacks:<parsebin0:src_0> data is dropped
0:00:01.748706125 2032 0x249bf70 DEBUG GST_PADS gstpad.c:5587:gst_pad_push_event_unchecked:<parsebin0:src_0> dropped event
0:00:01.748735667 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4061:push_sticky:<parsebin0:src_0> event stream-collection was dropped, mark pending
0:00:01.748764167 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<parsebin0:src_0> data is passed
0:00:01.748793834 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4034:push_sticky:<parsebin0:src_0> event stream-start was already received
0:00:01.748822792 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4034:push_sticky:<parsebin0:src_0> event caps was already received
0:00:01.748849292 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<parsebin0:src_0> data is passed
0:00:01.748877750 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3699:probe_hook_marshal:<parsebin0:src_0> asked to drop item
0:00:01.748903625 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3927:do_probe_callbacks:<parsebin0:src_0> data is dropped
0:00:01.748928042 2032 0x249bf70 DEBUG GST_PADS gstpad.c:5587:gst_pad_push_event_unchecked:<parsebin0:src_0> dropped event
0:00:01.748957334 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4061:push_sticky:<parsebin0:src_0> event segment was dropped, mark pending
0:00:01.748985792 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<parsebin0:src_0> data is passed
0:00:01.749015917 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4034:push_sticky:<parsebin0:src_0> event stream-start was already received
0:00:01.749045250 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4034:push_sticky:<parsebin0:src_0> event caps was already received
0:00:01.749071792 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<parsebin0:src_0> data is passed
0:00:01.752796792 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3699:probe_hook_marshal:<parsebin0:src_0> asked to drop item
0:00:01.752838875 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3927:do_probe_callbacks:<parsebin0:src_0> data is dropped
0:00:01.752867334 2032 0x249bf70 DEBUG GST_PADS gstpad.c:5587:gst_pad_push_event_unchecked:<parsebin0:src_0> dropped event
0:00:01.752900167 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4061:push_sticky:<parsebin0:src_0> event segment was dropped, mark pending
0:00:01.752931750 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3699:probe_hook_marshal:<parsebin0:src_0> asked to drop item
0:00:01.752956292 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3927:do_probe_callbacks:<parsebin0:src_0> data is dropped
0:00:01.752980542 2032 0x249bf70 DEBUG GST_PADS gstpad.c:5587:gst_pad_push_event_unchecked:<parsebin0:src_0> dropped event
0:00:01.753010167 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4061:push_sticky:<parsebin0:src_0> event stream-collection was dropped, mark pending
0:00:01.753037292 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3699:probe_hook_marshal:<parsebin0:src_0> asked to drop item
0:00:01.753061959 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3927:do_probe_callbacks:<parsebin0:src_0> data is dropped
0:00:01.753085334 2032 0x249bf70 DEBUG GST_PADS gstpad.c:5587:gst_pad_push_event_unchecked:<parsebin0:src_0> dropped event
0:00:01.753113334 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4061:push_sticky:<parsebin0:src_0> event tag was dropped, mark pending
0:00:01.753141292 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<parsebin0:src_0> data is passed
0:00:01.753171542 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4034:push_sticky:<parsebin0:src_0> event stream-start was already received
0:00:01.753201709 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4034:push_sticky:<parsebin0:src_0> event caps was already received
0:00:01.753228792 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<parsebin0:src_0> data is passed
0:00:01.753255334 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3699:probe_hook_marshal:<parsebin0:src_0> asked to drop item
0:00:01.753279792 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3927:do_probe_callbacks:<parsebin0:src_0> data is dropped
0:00:01.753303000 2032 0x249bf70 DEBUG GST_PADS gstpad.c:5587:gst_pad_push_event_unchecked:<parsebin0:src_0> dropped event
0:00:01.753330834 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4061:push_sticky:<parsebin0:src_0> event segment was dropped, mark pending
0:00:01.753356500 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<parsebin0:src_0> data is passed
0:00:01.753384084 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4034:push_sticky:<parsebin0:src_0> event stream-start was already received
0:00:01.753413084 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4034:push_sticky:<parsebin0:src_0> event caps was already received
0:00:01.757082501 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<parsebin0:src_0> data is passed
0:00:01.757127209 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3699:probe_hook_marshal:<parsebin0:src_0> asked to drop item
0:00:01.757153501 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3927:do_probe_callbacks:<parsebin0:src_0> data is dropped
0:00:01.757178626 2032 0x249bf70 DEBUG GST_PADS gstpad.c:5587:gst_pad_push_event_unchecked:<parsebin0:src_0> dropped event
0:00:01.757208917 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4061:push_sticky:<parsebin0:src_0> event segment was dropped, mark pending
0:00:01.757236667 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3699:probe_hook_marshal:<parsebin0:src_0> asked to drop item
0:00:01.757261584 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3927:do_probe_callbacks:<parsebin0:src_0> data is dropped
0:00:01.757285751 2032 0x249bf70 DEBUG GST_PADS gstpad.c:5587:gst_pad_push_event_unchecked:<parsebin0:src_0> dropped event
0:00:01.757315084 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4061:push_sticky:<parsebin0:src_0> event stream-collection was dropped, mark pending
0:00:01.757342501 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3699:probe_hook_marshal:<parsebin0:src_0> asked to drop item
0:00:01.757366667 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3927:do_probe_callbacks:<parsebin0:src_0> data is dropped
0:00:01.757390334 2032 0x249bf70 DEBUG GST_PADS gstpad.c:5587:gst_pad_push_event_unchecked:<parsebin0:src_0> dropped event
0:00:01.757418501 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4061:push_sticky:<parsebin0:src_0> event tag was dropped, mark pending
0:00:01.757977376 2032 0x249bf70 DEBUG GST_PADS gstpad.c:1806:gst_pad_set_chain_function_full:<'':sink_0> chainfunc set to gst_multi_queue_chain
0:00:01.758034209 2032 0x249bf70 DEBUG GST_PADS gstpad.c:1771:gst_pad_set_activatemode_function_full:<'':sink_0> activatemodefunc set to gst_multi_queue_sink_activate_mode
0:00:01.758070584 2032 0x249bf70 DEBUG GST_PADS gstpad.c:1959:gst_pad_set_event_full_function_full:<'':sink_0> eventfullfunc for set to gst_multi_queue_sink_event
0:00:01.758104917 2032 0x249bf70 DEBUG GST_PADS gstpad.c:1992:gst_pad_set_query_function_full:<'':sink_0> queryfunc set to gst_multi_queue_sink_query
0:00:01.758138501 2032 0x249bf70 DEBUG GST_PADS gstpad.c:2026:gst_pad_set_iterate_internal_links_function_full:<'':sink_0> internal link iterator set to gst_multi_queue_iterate_internal_links
0:00:01.758253917 2032 0x249bf70 DEBUG GST_PADS gstpad.c:1771:gst_pad_set_activatemode_function_full:<'':src_0> activatemodefunc set to gst_multi_queue_src_activate_mode
0:00:01.758289501 2032 0x249bf70 DEBUG GST_PADS gstpad.c:1912:gst_pad_set_event_function_full:<'':src_0> eventfunc for set to gst_multi_queue_src_event
0:00:01.758322126 2032 0x249bf70 DEBUG GST_PADS gstpad.c:1992:gst_pad_set_query_function_full:<'':src_0> queryfunc set to gst_multi_queue_src_query
0:00:01.763752001 2032 0x249bf70 DEBUG GST_PADS gstpad.c:2026:gst_pad_set_iterate_internal_links_function_full:<'':src_0> internal link iterator set to gst_multi_queue_iterate_internal_links
0:00:01.763805667 2032 0x249bf70 DEBUG GST_PADS gstpad.c:1098:gst_pad_set_active:<'':src_0> activating pad from none
0:00:01.763839334 2032 0x249bf70 DEBUG GST_PADS gstpad.c:1003:pre_activate:<'':src_0> setting pad into push mode, unset flushing
0:00:01.763899667 2032 0x249bf70 DEBUG GST_PADS gstpad.c:1226:activate_mode_internal:<'':src_0> activated in push mode
0:00:01.763926834 2032 0x249bf70 DEBUG GST_PADS gstpad.c:1098:gst_pad_set_active:<'':sink_0> activating pad from none
0:00:01.763955834 2032 0x249bf70 DEBUG GST_PADS gstpad.c:1003:pre_activate:<'':sink_0> setting pad into push mode, unset flushing
0:00:01.763990417 2032 0x249bf70 DEBUG GST_PADS gstpad.c:1226:activate_mode_internal:<'':sink_0> activated in push mode
0:00:01.764023084 2032 0x249bf70 INFO GST_ELEMENT_PADS gstelement.c:759:gst_element_add_pad:<multiqueue0> adding pad 'src_0'
0:00:01.764066376 2032 0x249bf70 INFO GST_ELEMENT_PADS gstelement.c:759:gst_element_add_pad:<multiqueue0> adding pad 'sink_0'
0:00:01.764099542 2032 0x249bf70 DEBUG GST_PADS gstpad.c:6282:gst_pad_start_task:<multiqueue0:src_0> start task
0:00:01.764177209 2032 0x249bf70 INFO GST_PADS gstpad.c:6291:gst_pad_start_task:<multiqueue0:src_0> created task 0xb59264c0
0:00:01.764208251 2032 0x249bf70 DEBUG GST_PADS gstpad.c:6210:do_stream_status:<multiqueue0:src_0> doing stream-status 0
0:00:01.764259834 2032 0x249bf70 DEBUG GST_PADS gstpad.c:6237:do_stream_status:<multiqueue0:src_0> posting stream-status 0
0:00:01.764821542 2032 0x249bf70 INFO GST_PADS gstpad.c:2382:gst_pad_link_prepare: trying to link parsebin0:src_0 and multiqueue0:sink_0
0:00:01.764884584 2032 0x249bf70 INFO GST_PADS gstpad.c:2590:gst_pad_link_full: linked parsebin0:src_0 and multiqueue0:sink_0, successful
0:00:01.764931876 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<parsebin0:src_0> data is passed
0:00:01.764980751 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<src_0:proxypad3> data is passed
0:00:01.765026459 2032 0x249bf70 DEBUG GST_PADS gstpad.c:2968:gst_pad_iterate_internal_links_default:<h264parse0:src> Making iterator
0:00:01.765069209 2032 0x249bf70 DEBUG GST_PADS gstpad.c:2968:gst_pad_iterate_internal_links_default:<qtdemux0:video_0> Making iterator
0:00:01.765132292 2032 0x249bf70 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<filesrc0:src> sent event, ret ok
0:00:01.765191792 2032 0x249bf70 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<sink:proxypad0> sent event, ret ok
0:00:01.765226751 2032 0x249bf70 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<sink:proxypad1> sent event, ret ok
0:00:01.765802751 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:6210:do_stream_status:<multiqueue0:src_0> doing stream-status 1
0:00:01.769618376 2032 0x249bf70 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<typefind:src> sent event, ret ok
0:00:01.769680709 2032 0x249bf70 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<qtdemux0:video_0> sent event, ret ok
0:00:01.769718876 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:6237:do_stream_status:<multiqueue0:src_0> posting stream-status 1
0:00:01.769781626 2032 0x249bf70 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<h264parse0:src> sent event, ret ok
0:00:01.769818751 2032 0x249bf70 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<capsfilter0:src> sent event, ret ok
0:00:01.769867959 2032 0x249bf70 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<parsebin0:src_0> sent event, ret ok
0:00:01.769945001 2032 0x249bf70 DEBUG GST_PADS gstpad.c:1371:cleanup_hook:<parsebin0:src_0> cleaning up hook 2 with flags 00030123
0:00:01.769978417 2032 0x249bf70 DEBUG GST_PADS gstpad.c:1384:cleanup_hook:<parsebin0:src_0> remove blocking probe, now 0 left
0:00:01.770010792 2032 0x249bf70 DEBUG GST_PADS gstpad.c:1391:cleanup_hook:<parsebin0:src_0> last blocking probe removed, unblocking
0:00:01.770047376 2032 0x249bf70 DEBUG GST_PADS gstpad.c:1371:cleanup_hook:<parsebin0:src_0> cleaning up hook 1 with flags 00030401
0:00:01.770081459 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3713:probe_hook_marshal:<parsebin0:src_0> probe returned OK
0:00:01.770108542 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<parsebin0:src_0> data is passed
0:00:01.770135876 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4105:check_sticky:<parsebin0:src_0> pushing all sticky events
0:00:01.770166126 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<parsebin0:src_0> data is passed
0:00:01.770228751 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3713:probe_hook_marshal:<parsebin0:src_0> probe returned OK
0:00:01.770303376 2032 0x249bf70 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<multiqueue0:sink_0> sent event, ret ok
0:00:01.770362209 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4056:push_sticky:<parsebin0:src_0> event stream-start marked received
0:00:01.770392542 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<parsebin0:src_0> data is passed
0:00:01.770428292 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3713:probe_hook_marshal:<parsebin0:src_0> probe returned OK
0:00:01.770476542 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:4105:check_sticky:<multiqueue0:src_0> pushing all sticky events
0:00:01.770512667 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<multiqueue0:src_0> data is passed
0:00:01.770659959 2032 0x249bf70 DEBUG GST_CAPS gstutils.c:3185:gst_pad_query_accept_caps:<multiqueue0:sink_0> accept caps of video/x-h264, stream-format=(string)avc, alignment=(string)au, level=(string)4.2, profile=(string)high, codec_data=(buffer)0164002affe1001b6764002aacc8501e0089f97011000003000100000300780f18319601000668e93864b22c, width=(int)1920, height=(int)1080, framerate=(fraction)60/1, pixel-aspect-ratio=(fraction)1/1, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8, parsed=(boolean)true
0:00:01.775819917 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:3713:probe_hook_marshal:<multiqueue0:src_0> probe returned OK
0:00:01.775831459 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4173:gst_pad_query:<multiqueue0:sink_0> doing query 0xb4406c30 (accept-caps)
0:00:01.775896084 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:5597:gst_pad_push_event_unchecked:<multiqueue0:src_0> Dropping event stream-start because pad is not linked
0:00:01.775928709 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:4076:push_sticky:<multiqueue0:src_0> pad was not linked, mark pending
0:00:01.776043959 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3200:gst_pad_query_accept_caps_default:<multiqueue0:sink_0> query accept-caps accept-caps query: 0xb4406c30, GstQueryAcceptCaps, caps=(GstCaps)"video/x-h264\,\ stream-format\=\(string\)avc\,\ alignment\=\(string\)au\,\ level\=\(string\)4.2\,\ profile\=\(string\)high\,\ codec_data\=\(buffer\)0164002affe1001b6764002aacc8501e0089f97011000003000100000300780f18319601000668e93864b22c\,\ width\=\(int\)1920\,\ height\=\(int\)1080\,\ framerate\=\(fraction\)60/1\,\ pixel-aspect-ratio\=\(fraction\)1/1\,\ chroma-format\=\(string\)4:2:0\,\ bit-depth-luma\=\(uint\)8\,\ bit-depth-chroma\=\(uint\)8\,\ parsed\=\(boolean\)true", result=(boolean)false;
0:00:01.776091292 2032 0x249bf70 DEBUG GST_PADS gstutils.c:2782:gst_pad_proxy_query_accept_caps:<multiqueue0:sink_0> proxying accept caps query for multiqueue0:sink_0
0:00:01.776148001 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4300:gst_pad_peer_query:<multiqueue0:src_0> peer query 0xb4406c30 (accept-caps)
0:00:01.776179209 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<multiqueue0:src_0> data is passed
0:00:01.776214626 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3704:probe_hook_marshal:<multiqueue0:src_0> probe handled data
0:00:01.776240501 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3942:do_probe_callbacks:<multiqueue0:src_0> data was handled
0:00:01.776269459 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4368:gst_pad_peer_query:<multiqueue0:src_0> probe stopped: custom-success
0:00:01.776305792 2032 0x249bf70 DEBUG GST_PADS gstutils.c:2793:gst_pad_proxy_query_accept_caps:<multiqueue0:sink_0> proxying accept caps query: 1
0:00:01.776448917 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3230:gst_pad_query_accept_caps_default:<multiqueue0:sink_0> allowed caps subset ANY, caps video/x-h264, stream-format=(string)avc, alignment=(string)au, level=(string)4.2, profile=(string)high, codec_data=(buffer)0164002affe1001b6764002aacc8501e0089f97011000003000100000300780f18319601000668e93864b22c, width=(int)1920, height=(int)1080, framerate=(fraction)60/1, pixel-aspect-ratio=(fraction)1/1, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8, parsed=(boolean)true
0:00:01.782285292 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3514:gst_pad_query_default:<multiqueue0:sink_0> not forwarding 0xb4406c30 (accept-caps) query
0:00:01.782338917 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4196:gst_pad_query:<multiqueue0:sink_0> sent query 0xb4406c30 (accept-caps), result 1
0:00:01.782415001 2032 0x249bf70 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<multiqueue0:sink_0> sent event, ret ok
0:00:01.782442667 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:5363:store_sticky_event:<multiqueue0:src_0> notify caps
0:00:01.782448001 2032 0x249bf70 DEBUG GST_PADS gstpad.c:5363:store_sticky_event:<multiqueue0:sink_0> notify caps
0:00:01.782544876 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:4105:check_sticky:<multiqueue0:src_0> pushing all sticky events
0:00:01.782569876 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4056:push_sticky:<parsebin0:src_0> event caps marked received
0:00:01.782585792 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:4034:push_sticky:<multiqueue0:src_0> event stream-start was already received
0:00:01.782604376 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<parsebin0:src_0> data is passed
0:00:01.782614042 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<multiqueue0:src_0> data is passed
0:00:01.782637084 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3713:probe_hook_marshal:<parsebin0:src_0> probe returned OK
0:00:01.782716334 2032 0x249bf70 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<multiqueue0:sink_0> sent event, ret ok
0:00:01.782758042 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4056:push_sticky:<parsebin0:src_0> event segment marked received
0:00:01.782789084 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<parsebin0:src_0> data is passed
0:00:01.782816167 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3713:probe_hook_marshal:<parsebin0:src_0> probe returned OK
0:00:01.782834917 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:2026:gst_pad_set_iterate_internal_links_function_full:<GstProxyPad@0x249f600> internal link iterator set to gst_proxy_pad_iterate_internal_links_default
0:00:01.782860376 2032 0x249bf70 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<multiqueue0:sink_0> sent event, ret ok
0:00:01.782885251 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:1771:gst_pad_set_activatemode_function_full:<GstGhostPad@0x249f600> activatemodefunc set to gst_ghost_pad_activate_mode_default
0:00:01.782894626 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4056:push_sticky:<parsebin0:src_0> event stream-collection marked received
0:00:01.782940834 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:1879:gst_pad_set_getrange_function_full:<'':video_0> getrangefunc set to gst_proxy_pad_getrange_default
0:00:01.789014542 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<parsebin0:src_0> data is passed
0:00:01.789073084 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3713:probe_hook_marshal:<parsebin0:src_0> probe returned OK
0:00:01.789103917 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:2026:gst_pad_set_iterate_internal_links_function_full:<GstProxyPad@0x24a0bd0> internal link iterator set to gst_proxy_pad_iterate_internal_links_default
0:00:01.789132792 2032 0x249bf70 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<multiqueue0:sink_0> sent event, ret ok
0:00:01.789173876 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4056:push_sticky:<parsebin0:src_0> event tag marked received
0:00:01.789184251 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:1806:gst_pad_set_chain_function_full:<'':proxypad4> chainfunc set to gst_proxy_pad_chain_default
0:00:01.789203917 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<parsebin0:src_0> data is passed
0:00:01.789219667 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:1843:gst_pad_set_chain_list_function_full:<'':proxypad4> chainlistfunc set to gst_proxy_pad_chain_list_default
0:00:01.789230126 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3713:probe_hook_marshal:<parsebin0:src_0> probe returned OK
0:00:01.789256167 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:1771:gst_pad_set_activatemode_function_full:<video_0:proxypad4> activatemodefunc set to gst_ghost_pad_internal_activate_mode_default
0:00:01.789270126 2032 0x249bf70 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<multiqueue0:sink_0> sent event, ret ok
0:00:01.789308542 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4056:push_sticky:<parsebin0:src_0> event tag marked received
0:00:01.789309834 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:1098:gst_pad_set_active:<'':video_0> activating pad from none
0:00:01.789352959 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:1003:pre_activate:<'':video_0> setting pad into push mode, unset flushing
0:00:01.789391167 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:1003:pre_activate:<video_0:proxypad4> setting pad into push mode, unset flushing
0:00:01.789432084 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:1330:gst_pad_activate_mode:<'':video_0> already activated in push mode
0:00:01.789471001 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:1226:activate_mode_internal:<video_0:proxypad4> activated in push mode
0:00:01.789571167 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:1226:activate_mode_internal:<'':video_0> activated in push mode
0:00:01.790049584 2032 0x249bf70 DEBUG GST_CAPS gstpad.c:2709:gst_pad_has_current_caps:<h264parse0:src> check current pad caps video/x-h264, stream-format=(string)avc, alignment=(string)au, level=(string)4.2, profile=(string)high, codec_data=(buffer)0164002affe1001b6764002aacc8501e0089f97011000003000100000300780f18319601000668e93864b22c, width=(int)1920, height=(int)1080, framerate=(fraction)60/1, pixel-aspect-ratio=(fraction)1/1, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8, parsed=(boolean)true
0:00:01.796411251 2032 0x249bf70 DEBUG GST_CAPS gstpad.c:2709:gst_pad_has_current_caps:<h264parse0:src> check current pad caps video/x-h264, stream-format=(string)avc, alignment=(string)au, level=(string)4.2, profile=(string)high, codec_data=(buffer)0164002affe1001b6764002aacc8501e0089f97011000003000100000300780f18319601000668e93864b22c, width=(int)1920, height=(int)1080, framerate=(fraction)60/1, pixel-aspect-ratio=(fraction)1/1, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8, parsed=(boolean)true
0:00:01.796507751 2032 0x249bf70 DEBUG GST_PADS gstpad.c:1678:gst_pad_check_reconfigure:<capsfilter0:src> remove RECONFIGURE flag
0:00:01.796645209 2032 0x249bf70 DEBUG GST_CAPS gstpad.c:2737:gst_pad_get_current_caps:<capsfilter0:sink> get current pad caps video/x-h264, stream-format=(string)avc, alignment=(string)au, level=(string)4.2, profile=(string)high, codec_data=(buffer)0164002affe1001b6764002aacc8501e0089f97011000003000100000300780f18319601000668e93864b22c, width=(int)1920, height=(int)1080, framerate=(fraction)60/1, pixel-aspect-ratio=(fraction)1/1, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8, parsed=(boolean)true
0:00:01.796912584 2032 0x249bf70 DEBUG GST_CAPS gstutils.c:3185:gst_pad_query_accept_caps:<src_0:proxypad3> accept caps of video/x-h264, stream-format=(string)avc, alignment=(string)au, parsed=(boolean)true, level=(string)4.2, profile=(string)high, codec_data=(buffer)0164002affe1001b6764002aacc8501e0089f97011000003000100000300780f18319601000668e93864b22c, width=(int)1920, height=(int)1080, framerate=(fraction)60/1, pixel-aspect-ratio=(fraction)1/1, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8
0:00:01.796979709 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4173:gst_pad_query:<src_0:proxypad3> doing query 0xb4406d80 (accept-caps)
0:00:01.797015876 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<src_0:proxypad3> data is passed
0:00:01.797194959 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3200:gst_pad_query_accept_caps_default:<src_0:proxypad3> query accept-caps accept-caps query: 0xb4406d80, GstQueryAcceptCaps, caps=(GstCaps)"video/x-h264\,\ stream-format\=\(string\)avc\,\ alignment\=\(string\)au\,\ parsed\=\(boolean\)true\,\ level\=\(string\)4.2\,\ profile\=\(string\)high\,\ codec_data\=\(buffer\)0164002affe1001b6764002aacc8501e0089f97011000003000100000300780f18319601000668e93864b22c\,\ width\=\(int\)1920\,\ height\=\(int\)1080\,\ framerate\=\(fraction\)60/1\,\ pixel-aspect-ratio\=\(fraction\)1/1\,\ chroma-format\=\(string\)4:2:0\,\ bit-depth-luma\=\(uint\)8\,\ bit-depth-chroma\=\(uint\)8", result=(boolean)false;
0:00:01.797243667 2032 0x249bf70 DEBUG GST_PADS gstutils.c:2782:gst_pad_proxy_query_accept_caps:<src_0:proxypad3> proxying accept caps query for src_0:proxypad3
0:00:01.797303834 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4300:gst_pad_peer_query:<parsebin0:src_0> peer query 0xb4406d80 (accept-caps)
0:00:01.797338834 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<parsebin0:src_0> data is passed
0:00:01.801964709 2032 0xb59272a8 DEBUG GST_ELEMENT_PADS gstelement.c:317:gst_element_base_class_init: type GstVideoDecoder : factory (nil)
0:00:01.803233751 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3704:probe_hook_marshal:<parsebin0:src_0> probe handled data
0:00:01.803280751 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3942:do_probe_callbacks:<parsebin0:src_0> data was handled
0:00:01.803316709 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4368:gst_pad_peer_query:<parsebin0:src_0> probe stopped: custom-success
0:00:01.803361709 2032 0x249bf70 DEBUG GST_PADS gstutils.c:2793:gst_pad_proxy_query_accept_caps:<src_0:proxypad3> proxying accept caps query: 1
0:00:01.803372376 2032 0xb59272a8 DEBUG GST_ELEMENT_PADS gstelement.c:317:gst_element_base_class_init: type GstH264Decoder : factory (nil)
0:00:01.803466459 2032 0xb59272a8 DEBUG GST_ELEMENT_PADS gstelement.c:317:gst_element_base_class_init: type GstV4l2CodecH264Dec : factory (nil)
0:00:01.803529376 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3230:gst_pad_query_accept_caps_default:<src_0:proxypad3> allowed caps subset ANY, caps video/x-h264, stream-format=(string)avc, alignment=(string)au, parsed=(boolean)true, level=(string)4.2, profile=(string)high, codec_data=(buffer)0164002affe1001b6764002aacc8501e0089f97011000003000100000300780f18319601000668e93864b22c, width=(int)1920, height=(int)1080, framerate=(fraction)60/1, pixel-aspect-ratio=(fraction)1/1, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8
0:00:01.803531334 2032 0xb59272a8 DEBUG GST_ELEMENT_PADS gstelement.c:317:gst_element_base_class_init: type v4l2slh264dec : factory 0x2486000
0:00:01.803589376 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3514:gst_pad_query_default:<src_0:proxypad3> not forwarding 0xb4406d80 (accept-caps) query
0:00:01.803630834 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4196:gst_pad_query:<src_0:proxypad3> sent query 0xb4406d80 (accept-caps), result 1
0:00:01.803822334 2032 0x249bf70 DEBUG GST_CAPS gstpad.c:2737:gst_pad_get_current_caps:<capsfilter0:sink> get current pad caps video/x-h264, stream-format=(string)avc, alignment=(string)au, level=(string)4.2, profile=(string)high, codec_data=(buffer)0164002affe1001b6764002aacc8501e0089f97011000003000100000300780f18319601000668e93864b22c, width=(int)1920, height=(int)1080, framerate=(fraction)60/1, pixel-aspect-ratio=(fraction)1/1, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8, parsed=(boolean)true
0:00:01.803956334 2032 0x249bf70 DEBUG GST_CAPS gstpad.c:2737:gst_pad_get_current_caps:<capsfilter0:src> get current pad caps video/x-h264, stream-format=(string)avc, alignment=(string)au, level=(string)4.2, profile=(string)high, codec_data=(buffer)0164002affe1001b6764002aacc8501e0089f97011000003000100000300780f18319601000668e93864b22c, width=(int)1920, height=(int)1080, framerate=(fraction)60/1, pixel-aspect-ratio=(fraction)1/1, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8, parsed=(boolean)true
0:00:01.804026167 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:1806:gst_pad_set_chain_function_full:<'':sink> chainfunc set to gst_video_decoder_chain
0:00:01.804047584 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<src_0:proxypad3> data is passed
0:00:01.804073542 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:1912:gst_pad_set_event_function_full:<'':sink> eventfunc for set to gst_video_decoder_sink_event
0:00:01.810275501 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<parsebin0:src_0> data is passed
0:00:01.810281626 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:1992:gst_pad_set_query_function_full:<'':sink> queryfunc set to gst_video_decoder_sink_query
0:00:01.810362084 2032 0xb59272a8 INFO GST_ELEMENT_PADS gstelement.c:759:gst_element_add_pad:<GstVideoDecoder@0xb380efd0> adding pad 'sink'
0:00:01.810508959 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:1912:gst_pad_set_event_function_full:<'':src> eventfunc for set to gst_video_decoder_src_event
0:00:01.810554209 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:1992:gst_pad_set_query_function_full:<'':src> queryfunc set to gst_video_decoder_src_query
0:00:01.810588167 2032 0xb59272a8 INFO GST_ELEMENT_PADS gstelement.c:759:gst_element_add_pad:<GstVideoDecoder@0xb380efd0> adding pad 'src'
0:00:01.810824667 2032 0x249bf70 DEBUG GST_CAPS gstpad.c:2709:gst_pad_has_current_caps:<h264parse0:src> check current pad caps video/x-h264, stream-format=(string)avc, alignment=(string)au, level=(string)4.2, profile=(string)high, codec_data=(buffer)0164002affe1001b6764002aacc8501e0089f97011000003000100000300780f18319601000668e93864b22c, width=(int)1920, height=(int)1080, framerate=(fraction)60/1, pixel-aspect-ratio=(fraction)1/1, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8, parsed=(boolean)true
0:00:01.811008959 2032 0x249bf70 DEBUG GST_CAPS gstpad.c:2709:gst_pad_has_current_caps:<h264parse0:src> check current pad caps video/x-h264, stream-format=(string)avc, alignment=(string)au, level=(string)4.2, profile=(string)high, codec_data=(buffer)0164002affe1001b6764002aacc8501e0089f97011000003000100000300780f18319601000668e93864b22c, width=(int)1920, height=(int)1080, framerate=(fraction)60/1, pixel-aspect-ratio=(fraction)1/1, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8, parsed=(boolean)true
0:00:01.811031792 2032 0xb59272a8 INFO GST_ELEMENT_PADS gstelement.c:1016:gst_element_get_static_pad: found pad v4l2slh264dec0:sink
0:00:01.811073917 2032 0xb59272a8 INFO GST_ELEMENT_PADS gstelement.c:1016:gst_element_get_static_pad: found pad v4l2slh264dec0:src
0:00:01.811090459 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<src_0:proxypad3> data is passed
0:00:01.811125209 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<parsebin0:src_0> data is passed
0:00:01.811155376 2032 0xb59272a8 INFO GST_PADS gstpad.c:2382:gst_pad_link_prepare: trying to link multiqueue0:src_0 and v4l2slh264dec0:sink
0:00:01.811200834 2032 0xb59272a8 INFO GST_PADS gstpad.c:2590:gst_pad_link_full: linked multiqueue0:src_0 and v4l2slh264dec0:sink, successful
0:00:01.811238376 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<multiqueue0:src_0> data is passed
0:00:01.811281667 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<parsebin0:src_0> data is passed
0:00:01.811466167 2032 0x249bf70 DEBUG GST_CAPS gstpad.c:2709:gst_pad_has_current_caps:<h264parse0:src> check current pad caps video/x-h264, stream-format=(string)avc, alignment=(string)au, level=(string)4.2, profile=(string)high, codec_data=(buffer)0164002affe1001b6764002aacc8501e0089f97011000003000100000300780f18319601000668e93864b22c, width=(int)1920, height=(int)1080, framerate=(fraction)60/1, pixel-aspect-ratio=(fraction)1/1, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8, parsed=(boolean)true
0:00:01.817032584 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<src_0:proxypad3> data is passed
0:00:01.817170626 2032 0x249bf70 DEBUG GST_CAPS gstpad.c:2709:gst_pad_has_current_caps:<h264parse0:src> check current pad caps video/x-h264, stream-format=(string)avc, alignment=(string)au, level=(string)4.2, profile=(string)high, codec_data=(buffer)0164002affe1001b6764002aacc8501e0089f97011000003000100000300780f18319601000668e93864b22c, width=(int)1920, height=(int)1080, framerate=(fraction)60/1, pixel-aspect-ratio=(fraction)1/1, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8, parsed=(boolean)true
0:00:01.817253959 2032 0x249bf70 DEBUG GST_PADS gstpad.c:1678:gst_pad_check_reconfigure:<capsfilter0:src> remove RECONFIGURE flag
0:00:01.817396292 2032 0x249bf70 DEBUG GST_CAPS gstpad.c:2737:gst_pad_get_current_caps:<capsfilter0:sink> get current pad caps video/x-h264, stream-format=(string)avc, alignment=(string)au, level=(string)4.2, profile=(string)high, codec_data=(buffer)0164002affe1001b6764002aacc8501e0089f97011000003000100000300780f18319601000668e93864b22c, width=(int)1920, height=(int)1080, framerate=(fraction)60/1, pixel-aspect-ratio=(fraction)1/1, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8, parsed=(boolean)true
0:00:01.817253209 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:2968:gst_pad_iterate_internal_links_default:<h264parse0:src> Making iterator
0:00:01.817481959 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:2968:gst_pad_iterate_internal_links_default:<qtdemux0:video_0> Making iterator
0:00:01.817560626 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<filesrc0:src> sent event, ret ok
0:00:01.817662792 2032 0x249bf70 DEBUG GST_CAPS gstutils.c:3185:gst_pad_query_accept_caps:<src_0:proxypad3> accept caps of video/x-h264, stream-format=(string)avc, alignment=(string)au, parsed=(boolean)true, level=(string)4.2, profile=(string)high, codec_data=(buffer)0164002affe1001b6764002aacc8501e0089f97011000003000100000300780f18319601000668e93864b22c, width=(int)1920, height=(int)1080, framerate=(fraction)60/1, pixel-aspect-ratio=(fraction)1/1, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8
0:00:01.817673334 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<sink:proxypad0> sent event, ret ok
0:00:01.817760042 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<sink:proxypad1> sent event, ret ok
0:00:01.817756376 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4173:gst_pad_query:<src_0:proxypad3> doing query 0xb4406db0 (accept-caps)
0:00:01.817796584 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<typefind:src> sent event, ret ok
0:00:01.817817459 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<src_0:proxypad3> data is passed
0:00:01.823132167 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<qtdemux0:video_0> sent event, ret ok
0:00:01.823186417 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<h264parse0:src> sent event, ret ok
0:00:01.823219542 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<capsfilter0:src> sent event, ret ok
0:00:01.823257209 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<parsebin0:src_0> sent event, ret ok
0:00:01.823284876 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3200:gst_pad_query_accept_caps_default:<src_0:proxypad3> query accept-caps accept-caps query: 0xb4406db0, GstQueryAcceptCaps, caps=(GstCaps)"video/x-h264\,\ stream-format\=\(string\)avc\,\ alignment\=\(string\)au\,\ parsed\=\(boolean\)true\,\ level\=\(string\)4.2\,\ profile\=\(string\)high\,\ codec_data\=\(buffer\)0164002affe1001b6764002aacc8501e0089f97011000003000100000300780f18319601000668e93864b22c\,\ width\=\(int\)1920\,\ height\=\(int\)1080\,\ framerate\=\(fraction\)60/1\,\ pixel-aspect-ratio\=\(fraction\)1/1\,\ chroma-format\=\(string\)4:2:0\,\ bit-depth-luma\=\(uint\)8\,\ bit-depth-chroma\=\(uint\)8", result=(boolean)false;
0:00:01.823291292 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<multiqueue0:src_0> sent event, ret ok
0:00:01.823404209 2032 0x249bf70 DEBUG GST_PADS gstutils.c:2782:gst_pad_proxy_query_accept_caps:<src_0:proxypad3> proxying accept caps query for src_0:proxypad3
0:00:01.823468292 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4300:gst_pad_peer_query:<parsebin0:src_0> peer query 0xb4406db0 (accept-caps)
0:00:01.823501626 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<parsebin0:src_0> data is passed
0:00:01.823582834 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3704:probe_hook_marshal:<parsebin0:src_0> probe handled data
0:00:01.823618334 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3942:do_probe_callbacks:<parsebin0:src_0> data was handled
0:00:01.823649667 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4368:gst_pad_peer_query:<parsebin0:src_0> probe stopped: custom-success
0:00:01.823693709 2032 0x249bf70 DEBUG GST_PADS gstutils.c:2793:gst_pad_proxy_query_accept_caps:<src_0:proxypad3> proxying accept caps query: 1
0:00:01.823854792 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3230:gst_pad_query_accept_caps_default:<src_0:proxypad3> allowed caps subset ANY, caps video/x-h264, stream-format=(string)avc, alignment=(string)au, parsed=(boolean)true, level=(string)4.2, profile=(string)high, codec_data=(buffer)0164002affe1001b6764002aacc8501e0089f97011000003000100000300780f18319601000668e93864b22c, width=(int)1920, height=(int)1080, framerate=(fraction)60/1, pixel-aspect-ratio=(fraction)1/1, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8
0:00:01.823906959 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3514:gst_pad_query_default:<src_0:proxypad3> not forwarding 0xb4406db0 (accept-caps) query
0:00:01.823983917 2032 0xb59272a8 DEBUG GST_CAPS gstutils.c:3185:gst_pad_query_accept_caps:<v4l2slh264dec0:sink> accept caps of video/x-h264, stream-format=(string)avc, alignment=(string)au, level=(string)4.2, profile=(string)high, codec_data=(buffer)0164002affe1001b6764002aacc8501e0089f97011000003000100000300780f18319601000668e93864b22c, width=(int)1920, height=(int)1080, framerate=(fraction)60/1, pixel-aspect-ratio=(fraction)1/1, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8, parsed=(boolean)true
0:00:01.829766042 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4196:gst_pad_query:<src_0:proxypad3> sent query 0xb4406db0 (accept-caps), result 1
0:00:01.829778501 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:4173:gst_pad_query:<v4l2slh264dec0:sink> doing query 0xb44070f0 (accept-caps)
0:00:01.829975042 2032 0xb59272a8 DEBUG GST_CAPS gstutils.c:3102:gst_pad_query_caps:<v4l2slh264dec0:sink> get pad caps with filter video/x-h264, stream-format=(string)avc, alignment=(string)au, level=(string)4.2, profile=(string)high, codec_data=(buffer)0164002affe1001b6764002aacc8501e0089f97011000003000100000300780f18319601000668e93864b22c, width=(int)1920, height=(int)1080, framerate=(fraction)60/1, pixel-aspect-ratio=(fraction)1/1, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8, parsed=(boolean)true
0:00:01.829979292 2032 0x249bf70 DEBUG GST_CAPS gstpad.c:2737:gst_pad_get_current_caps:<capsfilter0:sink> get current pad caps video/x-h264, stream-format=(string)avc, alignment=(string)au, level=(string)4.2, profile=(string)high, codec_data=(buffer)0164002affe1001b6764002aacc8501e0089f97011000003000100000300780f18319601000668e93864b22c, width=(int)1920, height=(int)1080, framerate=(fraction)60/1, pixel-aspect-ratio=(fraction)1/1, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8, parsed=(boolean)true
0:00:01.830021417 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:4173:gst_pad_query:<v4l2slh264dec0:sink> doing query 0xb4407120 (caps)
0:00:01.830104376 2032 0x249bf70 DEBUG GST_CAPS gstpad.c:2737:gst_pad_get_current_caps:<capsfilter0:src> get current pad caps video/x-h264, stream-format=(string)avc, alignment=(string)au, level=(string)4.2, profile=(string)high, codec_data=(buffer)0164002affe1001b6764002aacc8501e0089f97011000003000100000300780f18319601000668e93864b22c, width=(int)1920, height=(int)1080, framerate=(fraction)60/1, pixel-aspect-ratio=(fraction)1/1, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8, parsed=(boolean)true
0:00:01.830137334 2032 0xb59272a8 DEBUG GST_CAPS gstutils.c:3148:gst_pad_peer_query_caps:<v4l2slh264dec0:src> get pad peer caps with filter video/x-raw, width=(int)1920, height=(int)1080, framerate=(fraction)60/1, pixel-aspect-ratio=(fraction)1/1
0:00:01.830177584 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:4300:gst_pad_peer_query:<v4l2slh264dec0:src> peer query 0xb4407150 (caps)
0:00:01.830186917 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<src_0:proxypad3> data is passed
0:00:01.830205209 2032 0xb59272a8 INFO GST_PADS gstpad.c:4357:gst_pad_peer_query:<v4l2slh264dec0:src> pad has no peer
0:00:01.830223167 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<parsebin0:src_0> data is passed
0:00:01.830358709 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:4196:gst_pad_query:<v4l2slh264dec0:sink> sent query 0xb4407120 (caps), result 1
0:00:01.836685709 2032 0xb59272a8 DEBUG GST_CAPS gstutils.c:3109:gst_pad_query_caps:<v4l2slh264dec0:sink> query returned video/x-h264, width=(int)1920, height=(int)1080, framerate=(fraction)60/1, pixel-aspect-ratio=(fraction)1/1, stream-format=(string)avc, alignment=(string)au, level=(string)4.2, profile=(string)high, codec_data=(buffer)0164002affe1001b6764002aacc8501e0089f97011000003000100000300780f18319601000668e93864b22c, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8, parsed=(boolean)true
0:00:01.836787917 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:4196:gst_pad_query:<v4l2slh264dec0:sink> sent query 0xb44070f0 (accept-caps), result 1
0:00:01.836937126 2032 0xb59272a8 DEBUG GST_PADS gstghostpad.c:821:gst_ghost_pad_set_target:<'':video_0> set target v4l2slh264dec0:src
0:00:01.836968209 2032 0x249bf70 DEBUG GST_CAPS gstpad.c:2709:gst_pad_has_current_caps:<h264parse0:src> check current pad caps video/x-h264, stream-format=(string)avc, alignment=(string)au, level=(string)4.2, profile=(string)high, codec_data=(buffer)0164002affe1001b6764002aacc8501e0089f97011000003000100000300780f18319601000668e93864b22c, width=(int)1920, height=(int)1080, framerate=(fraction)60/1, pixel-aspect-ratio=(fraction)1/1, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8, parsed=(boolean)true
0:00:01.836977959 2032 0xb59272a8 DEBUG GST_PADS gstghostpad.c:842:gst_ghost_pad_set_target:<'':video_0> connecting internal pad to target <v4l2slh264dec0:src>
0:00:01.837140834 2032 0x249bf70 DEBUG GST_CAPS gstpad.c:2709:gst_pad_has_current_caps:<h264parse0:src> check current pad caps video/x-h264, stream-format=(string)avc, alignment=(string)au, level=(string)4.2, profile=(string)high, codec_data=(buffer)0164002affe1001b6764002aacc8501e0089f97011000003000100000300780f18319601000668e93864b22c, width=(int)1920, height=(int)1080, framerate=(fraction)60/1, pixel-aspect-ratio=(fraction)1/1, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8, parsed=(boolean)true
0:00:01.837156459 2032 0xb59272a8 INFO GST_PADS gstpad.c:2382:gst_pad_link_prepare: trying to link v4l2slh264dec0:src and video_0:proxypad4
0:00:01.837210751 2032 0xb59272a8 INFO GST_PADS gstpad.c:2590:gst_pad_link_full: linked v4l2slh264dec0:src and video_0:proxypad4, successful
0:00:01.837217626 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<src_0:proxypad3> data is passed
0:00:01.837252001 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<parsebin0:src_0> data is passed
0:00:01.837292334 2032 0xb59272a8 INFO GST_ELEMENT_PADS gstelement.c:759:gst_element_add_pad:<decodebin3-0> adding pad 'video_0'
0:00:01.837362459 2032 0xb59272a8 INFO GST_PIPELINE gst/parse/grammar.y:554:gst_parse_found_pad: trying delayed linking one pad some pad of GstDecodebin3 named decodebin3-0 to some pad of GstKMSSink named kmssink0
0:00:01.837406751 2032 0xb59272a8 INFO GST_ELEMENT_PADS gstutils.c:1816:gst_element_link_pads_full: trying to link element decodebin3-0:(any) to element kmssink0:(any)
0:00:01.837576292 2032 0x249bf70 DEBUG GST_CAPS gstpad.c:2709:gst_pad_has_current_caps:<h264parse0:src> check current pad caps video/x-h264, stream-format=(string)avc, alignment=(string)au, level=(string)4.2, profile=(string)high, codec_data=(buffer)0164002affe1001b6764002aacc8501e0089f97011000003000100000300780f18319601000668e93864b22c, width=(int)1920, height=(int)1080, framerate=(fraction)60/1, pixel-aspect-ratio=(fraction)1/1, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8, parsed=(boolean)true
0:00:01.843160167 2032 0xb59272a8 DEBUG GST_ELEMENT_PADS gstutils.c:1925:gst_element_link_pads_full: looping through allowed src and dest pads
0:00:01.843217042 2032 0xb59272a8 DEBUG GST_ELEMENT_PADS gstutils.c:1928:gst_element_link_pads_full: trying src pad decodebin3-0:sink
0:00:01.843248209 2032 0xb59272a8 DEBUG GST_ELEMENT_PADS gstutils.c:1928:gst_element_link_pads_full: trying src pad decodebin3-0:video_0
0:00:01.843283501 2032 0xb59272a8 DEBUG GST_ELEMENT_PADS gstutils.c:1148:gst_element_get_compatible_pad: finding pad in kmssink0 compatible with decodebin3-0:video_0
0:00:01.843325417 2032 0x249bf70 DEBUG GST_CAPS gstpad.c:2709:gst_pad_has_current_caps:<h264parse0:src> check current pad caps video/x-h264, stream-format=(string)avc, alignment=(string)au, level=(string)4.2, profile=(string)high, codec_data=(buffer)0164002affe1001b6764002aacc8501e0089f97011000003000100000300780f18319601000668e93864b22c, width=(int)1920, height=(int)1080, framerate=(fraction)60/1, pixel-aspect-ratio=(fraction)1/1, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8, parsed=(boolean)true
0:00:01.843425042 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<src_0:proxypad3> data is passed
0:00:01.843469459 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<parsebin0:src_0> data is passed
0:00:01.843330626 2032 0xb59272a8 INFO GST_PADS gstutils.c:1079:gst_pad_check_link: trying to link decodebin3-0:video_0 and kmssink0:sink
0:00:01.843580209 2032 0xb59272a8 DEBUG GST_CAPS gstutils.c:3102:gst_pad_query_caps:<decodebin3-0:video_0> get pad caps with filter (NULL)
0:00:01.843635792 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:4173:gst_pad_query:<decodebin3-0:video_0> doing query 0xb4407180 (caps)
0:00:01.843703626 2032 0xb59272a8 DEBUG GST_CAPS gstpad.c:3259:gst_pad_query_caps_default:<decodebin3-0:video_0> query caps caps query: 0xb4407180, GstQueryCaps, filter=(GstCaps)"NULL", caps=(GstCaps)"NULL";
0:00:01.843740001 2032 0xb59272a8 DEBUG GST_PADS gstutils.c:2851:gst_pad_proxy_query_caps:<decodebin3-0:video_0> proxying caps query for decodebin3-0:video_0
0:00:01.843799292 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:4300:gst_pad_peer_query:<video_0:proxypad4> peer query 0xb4407180 (caps)
0:00:01.843830501 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<video_0:proxypad4> data is passed
0:00:01.843865667 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:4173:gst_pad_query:<v4l2slh264dec0:src> doing query 0xb4407180 (caps)
0:00:01.843903417 2032 0x249bf70 DEBUG GST_CAPS gstpad.c:2709:gst_pad_has_current_caps:<h264parse0:src> check current pad caps video/x-h264, stream-format=(string)avc, alignment=(string)au, level=(string)4.2, profile=(string)high, codec_data=(buffer)0164002affe1001b6764002aacc8501e0089f97011000003000100000300780f18319601000668e93864b22c, width=(int)1920, height=(int)1080, framerate=(fraction)60/1, pixel-aspect-ratio=(fraction)1/1, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8, parsed=(boolean)true
0:00:01.843914334 2032 0xb59272a8 DEBUG GST_CAPS gstpad.c:3259:gst_pad_query_caps_default:<v4l2slh264dec0:src> query caps caps query: 0xb4407180, GstQueryCaps, filter=(GstCaps)"NULL", caps=(GstCaps)"NULL";
0:00:01.849620834 2032 0xb59272a8 DEBUG GST_CAPS gstpad.c:3283:gst_pad_query_caps_default:<v4l2slh264dec0:src> trying pad template caps
0:00:01.849740542 2032 0xb59272a8 DEBUG GST_CAPS gstpad.c:3312:gst_pad_query_caps_default:<v4l2slh264dec0:src> using caps 0xb4408b68 video/x-raw, format=(string){ NV12, YUY2, NV12_4L4, NV12_32L32 }, width=(int)[ 1, 2147483647 ], height=(int)[ 1, 2147483647 ], framerate=(fraction)[ 0/1, 2147483647/1 ]
0:00:01.849769959 2032 0x249bf70 DEBUG GST_CAPS gstpad.c:2709:gst_pad_has_current_caps:<h264parse0:src> check current pad caps video/x-h264, stream-format=(string)avc, alignment=(string)au, level=(string)4.2, profile=(string)high, codec_data=(buffer)0164002affe1001b6764002aacc8501e0089f97011000003000100000300780f18319601000668e93864b22c, width=(int)1920, height=(int)1080, framerate=(fraction)60/1, pixel-aspect-ratio=(fraction)1/1, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8, parsed=(boolean)true
0:00:01.849787251 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:3514:gst_pad_query_default:<v4l2slh264dec0:src> not forwarding 0xb4407180 (caps) query
0:00:01.849823917 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:4196:gst_pad_query:<v4l2slh264dec0:src> sent query 0xb4407180 (caps), result 1
0:00:01.849848417 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<src_0:proxypad3> data is passed
0:00:01.849882542 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<parsebin0:src_0> data is passed
0:00:01.849885376 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:3514:gst_pad_query_default:<decodebin3-0:video_0> not forwarding 0xb4407180 (caps) query
0:00:01.849926667 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:4196:gst_pad_query:<decodebin3-0:video_0> sent query 0xb4407180 (caps), result 1
0:00:01.849993917 2032 0xb59272a8 DEBUG GST_CAPS gstutils.c:3109:gst_pad_query_caps:<decodebin3-0:video_0> query returned video/x-raw, format=(string){ NV12, YUY2, NV12_4L4, NV12_32L32 }, width=(int)[ 1, 2147483647 ], height=(int)[ 1, 2147483647 ], framerate=(fraction)[ 0/1, 2147483647/1 ]
0:00:01.850031084 2032 0xb59272a8 DEBUG GST_CAPS gstutils.c:3102:gst_pad_query_caps:<kmssink0:sink> get pad caps with filter (NULL)
0:00:01.850073167 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:4173:gst_pad_query:<kmssink0:sink> doing query 0xb44071b0 (caps)
0:00:01.850201417 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:4196:gst_pad_query:<kmssink0:sink> sent query 0xb44071b0 (caps), result 1
0:00:01.850277417 2032 0xb59272a8 DEBUG GST_CAPS gstutils.c:3109:gst_pad_query_caps:<kmssink0:sink> query returned video/x-raw, format=(string){ BGR16, RGB, RGB16, BGR, RGBx, BGRx, NV16, NV12, NV21, NV61, UYVY, YUY2, YVYU, I420, Y42B, YV12 }, width=(int)[ 0, 8192 ], height=(int)[ 0, 8192 ], framerate=(fraction)[ 0/1, 2147483647/1 ]
0:00:01.850295084 2032 0x249bf70 DEBUG GST_CAPS gstpad.c:2709:gst_pad_has_current_caps:<h264parse0:src> check current pad caps video/x-h264, stream-format=(string)avc, alignment=(string)au, level=(string)4.2, profile=(string)high, codec_data=(buffer)0164002affe1001b6764002aacc8501e0089f97011000003000100000300780f18319601000668e93864b22c, width=(int)1920, height=(int)1080, framerate=(fraction)60/1, pixel-aspect-ratio=(fraction)1/1, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8, parsed=(boolean)true
0:00:01.856438501 2032 0xb59272a8 DEBUG GST_ELEMENT_PADS gstutils.c:1207:gst_element_get_compatible_pad: found existing unlinked compatible pad kmssink0:sink
0:00:01.856494876 2032 0xb59272a8 INFO GST_PADS gstutils.c:1632:prepare_link_maybe_ghosting: decodebin3-0 and kmssink0 in same bin, no need for ghost pads
0:00:01.856545292 2032 0x249bf70 DEBUG GST_CAPS gstpad.c:2709:gst_pad_has_current_caps:<h264parse0:src> check current pad caps video/x-h264, stream-format=(string)avc, alignment=(string)au, level=(string)4.2, profile=(string)high, codec_data=(buffer)0164002affe1001b6764002aacc8501e0089f97011000003000100000300780f18319601000668e93864b22c, width=(int)1920, height=(int)1080, framerate=(fraction)60/1, pixel-aspect-ratio=(fraction)1/1, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8, parsed=(boolean)true
0:00:01.856578834 2032 0xb59272a8 INFO GST_PADS gstpad.c:2382:gst_pad_link_prepare: trying to link decodebin3-0:video_0 and kmssink0:sink
0:00:01.856621084 2032 0xb59272a8 DEBUG GST_CAPS gstutils.c:3102:gst_pad_query_caps:<decodebin3-0:video_0> get pad caps with filter (NULL)
0:00:01.856627876 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<src_0:proxypad3> data is passed
0:00:01.856666792 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<parsebin0:src_0> data is passed
0:00:01.856704167 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:4173:gst_pad_query:<decodebin3-0:video_0> doing query 0xb3808260 (caps)
0:00:01.856862751 2032 0xb59272a8 DEBUG GST_CAPS gstpad.c:3259:gst_pad_query_caps_default:<decodebin3-0:video_0> query caps caps query: 0xb3808260, GstQueryCaps, filter=(GstCaps)"NULL", caps=(GstCaps)"NULL";
0:00:01.856914251 2032 0xb59272a8 DEBUG GST_PADS gstutils.c:2851:gst_pad_proxy_query_caps:<decodebin3-0:video_0> proxying caps query for decodebin3-0:video_0
0:00:01.857040417 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:4300:gst_pad_peer_query:<video_0:proxypad4> peer query 0xb3808260 (caps)
0:00:01.857084792 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<video_0:proxypad4> data is passed
0:00:01.857127417 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:4173:gst_pad_query:<v4l2slh264dec0:src> doing query 0xb3808260 (caps)
0:00:01.857211834 2032 0xb59272a8 DEBUG GST_CAPS gstpad.c:3259:gst_pad_query_caps_default:<v4l2slh264dec0:src> query caps caps query: 0xb3808260, GstQueryCaps, filter=(GstCaps)"NULL", caps=(GstCaps)"NULL";
0:00:01.857321501 2032 0x249bf70 DEBUG GST_CAPS gstpad.c:2709:gst_pad_has_current_caps:<h264parse0:src> check current pad caps video/x-h264, stream-format=(string)avc, alignment=(string)au, level=(string)4.2, profile=(string)high, codec_data=(buffer)0164002affe1001b6764002aacc8501e0089f97011000003000100000300780f18319601000668e93864b22c, width=(int)1920, height=(int)1080, framerate=(fraction)60/1, pixel-aspect-ratio=(fraction)1/1, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8, parsed=(boolean)true
0:00:01.863004292 2032 0xb59272a8 DEBUG GST_CAPS gstpad.c:3283:gst_pad_query_caps_default:<v4l2slh264dec0:src> trying pad template caps
0:00:01.863128626 2032 0xb59272a8 DEBUG GST_CAPS gstpad.c:3312:gst_pad_query_caps_default:<v4l2slh264dec0:src> using caps 0xb4408b68 video/x-raw, format=(string){ NV12, YUY2, NV12_4L4, NV12_32L32 }, width=(int)[ 1, 2147483647 ], height=(int)[ 1, 2147483647 ], framerate=(fraction)[ 0/1, 2147483647/1 ]
0:00:01.863160917 2032 0x249bf70 DEBUG GST_CAPS gstpad.c:2709:gst_pad_has_current_caps:<h264parse0:src> check current pad caps video/x-h264, stream-format=(string)avc, alignment=(string)au, level=(string)4.2, profile=(string)high, codec_data=(buffer)0164002affe1001b6764002aacc8501e0089f97011000003000100000300780f18319601000668e93864b22c, width=(int)1920, height=(int)1080, framerate=(fraction)60/1, pixel-aspect-ratio=(fraction)1/1, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8, parsed=(boolean)true
0:00:01.863173459 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:3514:gst_pad_query_default:<v4l2slh264dec0:src> not forwarding 0xb3808260 (caps) query
0:00:01.863247501 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<src_0:proxypad3> data is passed
0:00:01.863376917 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<parsebin0:src_0> data is passed
0:00:01.863375126 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:4196:gst_pad_query:<v4l2slh264dec0:src> sent query 0xb3808260 (caps), result 1
0:00:01.863472209 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:3514:gst_pad_query_default:<decodebin3-0:video_0> not forwarding 0xb3808260 (caps) query
0:00:01.863513209 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:4196:gst_pad_query:<decodebin3-0:video_0> sent query 0xb3808260 (caps), result 1
0:00:01.863585001 2032 0xb59272a8 DEBUG GST_CAPS gstutils.c:3109:gst_pad_query_caps:<decodebin3-0:video_0> query returned video/x-raw, format=(string){ NV12, YUY2, NV12_4L4, NV12_32L32 }, width=(int)[ 1, 2147483647 ], height=(int)[ 1, 2147483647 ], framerate=(fraction)[ 0/1, 2147483647/1 ]
0:00:01.863625667 2032 0xb59272a8 DEBUG GST_CAPS gstutils.c:3102:gst_pad_query_caps:<kmssink0:sink> get pad caps with filter (NULL)
0:00:01.863671542 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:4173:gst_pad_query:<kmssink0:sink> doing query 0xb3808290 (caps)
0:00:01.863791376 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:4196:gst_pad_query:<kmssink0:sink> sent query 0xb3808290 (caps), result 1
0:00:01.863797334 2032 0x249bf70 DEBUG GST_CAPS gstpad.c:2709:gst_pad_has_current_caps:<h264parse0:src> check current pad caps video/x-h264, stream-format=(string)avc, alignment=(string)au, level=(string)4.2, profile=(string)high, codec_data=(buffer)0164002affe1001b6764002aacc8501e0089f97011000003000100000300780f18319601000668e93864b22c, width=(int)1920, height=(int)1080, framerate=(fraction)60/1, pixel-aspect-ratio=(fraction)1/1, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8, parsed=(boolean)true
0:00:01.863870042 2032 0xb59272a8 DEBUG GST_CAPS gstutils.c:3109:gst_pad_query_caps:<kmssink0:sink> query returned video/x-raw, format=(string){ BGR16, RGB, RGB16, BGR, RGBx, BGRx, NV16, NV12, NV21, NV61, UYVY, YUY2, YVYU, I420, Y42B, YV12 }, width=(int)[ 0, 8192 ], height=(int)[ 0, 8192 ], framerate=(fraction)[ 0/1, 2147483647/1 ]
0:00:01.869322417 2032 0xb59272a8 DEBUG GST_CAPS gstpad.c:2282:gst_pad_link_check_compatible_unlocked:<decodebin3-0:video_0> src caps video/x-raw, format=(string){ NV12, YUY2, NV12_4L4, NV12_32L32 }, width=(int)[ 1, 2147483647 ], height=(int)[ 1, 2147483647 ], framerate=(fraction)[ 0/1, 2147483647/1 ]
0:00:01.869323126 2032 0x249bf70 DEBUG GST_CAPS gstpad.c:2709:gst_pad_has_current_caps:<h264parse0:src> check current pad caps video/x-h264, stream-format=(string)avc, alignment=(string)au, level=(string)4.2, profile=(string)high, codec_data=(buffer)0164002affe1001b6764002aacc8501e0089f97011000003000100000300780f18319601000668e93864b22c, width=(int)1920, height=(int)1080, framerate=(fraction)60/1, pixel-aspect-ratio=(fraction)1/1, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8, parsed=(boolean)true
0:00:01.869412626 2032 0xb59272a8 DEBUG GST_CAPS gstpad.c:2284:gst_pad_link_check_compatible_unlocked:<kmssink0:sink> sink caps video/x-raw, format=(string){ BGR16, RGB, RGB16, BGR, RGBx, BGRx, NV16, NV12, NV21, NV61, UYVY, YUY2, YVYU, I420, Y42B, YV12 }, width=(int)[ 0, 8192 ], height=(int)[ 0, 8192 ], framerate=(fraction)[ 0/1, 2147483647/1 ]
0:00:01.869471542 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4105:check_sticky:<h264parse0:src> pushing all sticky events
0:00:01.869482209 2032 0xb59272a8 DEBUG GST_CAPS gstpad.c:2302:gst_pad_link_check_compatible_unlocked: caps are compatible
0:00:01.869510251 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4034:push_sticky:<h264parse0:src> event stream-start was already received
0:00:01.869530917 2032 0xb59272a8 INFO GST_PADS gstpad.c:2590:gst_pad_link_full: linked decodebin3-0:video_0 and kmssink0:sink, successful
0:00:01.869543417 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4034:push_sticky:<h264parse0:src> event caps was already received
0:00:01.869573167 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4034:push_sticky:<h264parse0:src> event segment was already received
0:00:01.869588292 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<video_0:proxypad4> data is passed
0:00:01.869612376 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4105:check_sticky:<capsfilter0:src> pushing all sticky events
0:00:01.869622376 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:3713:probe_hook_marshal:<video_0:proxypad4> probe returned OK
0:00:01.869642667 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4034:push_sticky:<capsfilter0:src> event stream-start was already received
0:00:01.869664001 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<decodebin3-0:video_0> sent event, ret error
0:00:01.875696501 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4034:push_sticky:<capsfilter0:src> event caps was already received
0:00:01.875747501 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4034:push_sticky:<capsfilter0:src> event segment was already received
0:00:01.875787751 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<src_0:proxypad3> data is passed
0:00:01.875808501 2032 0xb59272a8 DEBUG GST_ELEMENT_PADS gstutils.c:1948:gst_element_link_pads_full: linked pad decodebin3-0:video_0 to pad kmssink0:sink
0:00:01.875865542 2032 0xb59272a8 DEBUG GST_PIPELINE gst/parse/grammar.y:564:gst_parse_found_pad: delayed linking one pad some pad of GstDecodebin3 named decodebin3-0 to some pad of GstKMSSink named kmssink0 worked
0:00:01.875873542 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3713:probe_hook_marshal:<src_0:proxypad3> probe returned OK
0:00:01.875927626 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4105:check_sticky:<parsebin0:src_0> pushing all sticky events
0:00:01.875965167 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4034:push_sticky:<parsebin0:src_0> event stream-start was already received
0:00:01.875999959 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4034:push_sticky:<parsebin0:src_0> event caps was already received
0:00:01.876036417 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4034:push_sticky:<parsebin0:src_0> event segment was already received
0:00:01.876074792 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4034:push_sticky:<parsebin0:src_0> event stream-collection was already received
0:00:01.876117459 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<parsebin0:src_0> data is passed
0:00:01.876151001 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3713:probe_hook_marshal:<parsebin0:src_0> probe returned OK
0:00:01.876270626 2032 0x249bf70 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<multiqueue0:sink_0> sent event, ret ok
0:00:01.876336084 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4056:push_sticky:<parsebin0:src_0> event tag marked received
0:00:01.876380501 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4034:push_sticky:<parsebin0:src_0> event tag was already received
0:00:01.876431667 2032 0x249bf70 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<src_0:proxypad3> sent event, ret ok
0:00:01.876472501 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4056:push_sticky:<capsfilter0:src> event tag marked received
0:00:01.876510917 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4034:push_sticky:<capsfilter0:src> event tag was already received
0:00:01.876546167 2032 0x249bf70 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<capsfilter0:sink> sent event, ret ok
0:00:01.876551126 2032 0xb59272a8 DEBUG GST_ELEMENT_PADS gstelement.c:3227:gst_element_pads_activate:<v4l2slh264dec0> activate pads
0:00:01.876581959 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4056:push_sticky:<h264parse0:src> event tag marked received
0:00:01.881337876 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4034:push_sticky:<h264parse0:src> event tag was already received
0:00:01.881337709 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:1098:gst_pad_set_active:<v4l2slh264dec0:src> activating pad from none
0:00:01.881417876 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:1003:pre_activate:<v4l2slh264dec0:src> setting pad into push mode, unset flushing
0:00:01.881439126 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<src_0:proxypad3> data is passed
0:00:01.881476584 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<parsebin0:src_0> data is passed
0:00:01.881459501 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:1226:activate_mode_internal:<v4l2slh264dec0:src> activated in push mode
0:00:01.881585001 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:1098:gst_pad_set_active:<v4l2slh264dec0:sink> activating pad from none
0:00:01.881622459 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:1003:pre_activate:<v4l2slh264dec0:sink> setting pad into push mode, unset flushing
0:00:01.881659876 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:1015:pre_activate:<v4l2slh264dec0:sink> reschedule events on peer multiqueue0:src_0
0:00:01.881731084 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:1226:activate_mode_internal:<v4l2slh264dec0:sink> activated in push mode
0:00:01.881779917 2032 0xb59272a8 DEBUG GST_ELEMENT_PADS gstelement.c:3246:gst_element_pads_activate:<v4l2slh264dec0> pad activation successful
0:00:01.881959417 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:3713:probe_hook_marshal:<multiqueue0:src_0> probe returned OK
0:00:01.882008917 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<multiqueue0:src_0> data is passed
0:00:01.882011334 2032 0x249bf70 DEBUG GST_CAPS gstpad.c:2709:gst_pad_has_current_caps:<h264parse0:src> check current pad caps video/x-h264, stream-format=(string)avc, alignment=(string)au, level=(string)4.2, profile=(string)high, codec_data=(buffer)0164002affe1001b6764002aacc8501e0089f97011000003000100000300780f18319601000668e93864b22c, width=(int)1920, height=(int)1080, framerate=(fraction)60/1, pixel-aspect-ratio=(fraction)1/1, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8, parsed=(boolean)true
0:00:01.882057626 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:3713:probe_hook_marshal:<multiqueue0:src_0> probe returned OK
0:00:01.882115917 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:4105:check_sticky:<v4l2slh264dec0:src> pushing all sticky events
0:00:01.882148126 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<video_0:proxypad4> data is passed
0:00:01.882176834 2032 0x249bf70 DEBUG GST_CAPS gstpad.c:2709:gst_pad_has_current_caps:<h264parse0:src> check current pad caps video/x-h264, stream-format=(string)avc, alignment=(string)au, level=(string)4.2, profile=(string)high, codec_data=(buffer)0164002affe1001b6764002aacc8501e0089f97011000003000100000300780f18319601000668e93864b22c, width=(int)1920, height=(int)1080, framerate=(fraction)60/1, pixel-aspect-ratio=(fraction)1/1, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8, parsed=(boolean)true
0:00:01.882191167 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:4105:check_sticky:<decodebin3-0:video_0> pushing all sticky events
0:00:01.887320501 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4105:check_sticky:<h264parse0:src> pushing all sticky events
0:00:01.887359376 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<kmssink0:sink> sent event, ret ok
0:00:01.887372376 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4034:push_sticky:<h264parse0:src> event stream-start was already received
0:00:01.887405042 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4034:push_sticky:<h264parse0:src> event caps was already received
0:00:01.887409376 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:4056:push_sticky:<decodebin3-0:video_0> event stream-start marked received
0:00:01.887437459 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4034:push_sticky:<h264parse0:src> event segment was already received
0:00:01.887449584 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<video_0:proxypad4> sent event, ret ok
0:00:01.887480876 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4105:check_sticky:<capsfilter0:src> pushing all sticky events
0:00:01.887485876 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:4056:push_sticky:<v4l2slh264dec0:src> event stream-start marked received
0:00:01.887551709 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4034:push_sticky:<capsfilter0:src> event stream-start was already received
0:00:01.887561376 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<v4l2slh264dec0:sink> sent event, ret ok
0:00:01.887587584 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4034:push_sticky:<capsfilter0:src> event caps was already received
0:00:01.887605084 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:4056:push_sticky:<multiqueue0:src_0> event stream-start marked received
0:00:01.887618292 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4034:push_sticky:<capsfilter0:src> event segment was already received
0:00:01.887649876 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<src_0:proxypad3> data is passed
0:00:01.887737584 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3713:probe_hook_marshal:<src_0:proxypad3> probe returned OK
0:00:01.887750042 2032 0xb59272a8 DEBUG GST_CAPS gstutils.c:3185:gst_pad_query_accept_caps:<v4l2slh264dec0:sink> accept caps of video/x-h264, stream-format=(string)avc, alignment=(string)au, level=(string)4.2, profile=(string)high, codec_data=(buffer)0164002affe1001b6764002aacc8501e0089f97011000003000100000300780f18319601000668e93864b22c, width=(int)1920, height=(int)1080, framerate=(fraction)60/1, pixel-aspect-ratio=(fraction)1/1, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8, parsed=(boolean)true
0:00:01.887785251 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4105:check_sticky:<parsebin0:src_0> pushing all sticky events
0:00:01.893361876 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4034:push_sticky:<parsebin0:src_0> event stream-start was already received
0:00:01.893364126 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:4173:gst_pad_query:<v4l2slh264dec0:sink> doing query 0xb3808320 (accept-caps)
0:00:01.893410834 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4034:push_sticky:<parsebin0:src_0> event caps was already received
0:00:01.893442626 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4034:push_sticky:<parsebin0:src_0> event segment was already received
0:00:01.893474209 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4034:push_sticky:<parsebin0:src_0> event stream-collection was already received
0:00:01.893505584 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<parsebin0:src_0> data is passed
0:00:01.893537334 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3713:probe_hook_marshal:<parsebin0:src_0> probe returned OK
0:00:01.893554792 2032 0xb59272a8 DEBUG GST_CAPS gstutils.c:3102:gst_pad_query_caps:<v4l2slh264dec0:sink> get pad caps with filter video/x-h264, stream-format=(string)avc, alignment=(string)au, level=(string)4.2, profile=(string)high, codec_data=(buffer)0164002affe1001b6764002aacc8501e0089f97011000003000100000300780f18319601000668e93864b22c, width=(int)1920, height=(int)1080, framerate=(fraction)60/1, pixel-aspect-ratio=(fraction)1/1, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8, parsed=(boolean)true
0:00:01.893598709 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:4173:gst_pad_query:<v4l2slh264dec0:sink> doing query 0xb3808350 (caps)
0:00:01.893596667 2032 0x249bf70 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<multiqueue0:sink_0> sent event, ret ok
0:00:01.893661084 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4056:push_sticky:<parsebin0:src_0> event tag marked received
0:00:01.893725251 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4034:push_sticky:<parsebin0:src_0> event tag was already received
0:00:01.893760459 2032 0xb59272a8 DEBUG GST_CAPS gstutils.c:3148:gst_pad_peer_query_caps:<v4l2slh264dec0:src> get pad peer caps with filter video/x-raw, width=(int)1920, height=(int)1080, framerate=(fraction)60/1, pixel-aspect-ratio=(fraction)1/1
0:00:01.893769626 2032 0x249bf70 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<src_0:proxypad3> sent event, ret ok
0:00:01.893801917 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:4300:gst_pad_peer_query:<v4l2slh264dec0:src> peer query 0xb3808380 (caps)
0:00:01.893804959 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4056:push_sticky:<capsfilter0:src> event tag marked received
0:00:01.893838209 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:4173:gst_pad_query:<video_0:proxypad4> doing query 0xb3808380 (caps)
0:00:01.897008292 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<video_0:proxypad4> data is passed
0:00:01.897020626 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4034:push_sticky:<capsfilter0:src> event tag was already received
0:00:01.897069792 2032 0x249bf70 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<capsfilter0:sink> sent event, ret ok
0:00:01.897112876 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4056:push_sticky:<h264parse0:src> event tag marked received
0:00:01.897145126 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4034:push_sticky:<h264parse0:src> event tag was already received
0:00:01.897176709 2032 0xb59272a8 DEBUG GST_CAPS gstpad.c:3259:gst_pad_query_caps_default:<video_0:proxypad4> query caps caps query: 0xb3808380, GstQueryCaps, filter=(GstCaps)"video/x-raw\,\ width\=\(int\)1920\,\ height\=\(int\)1080\,\ framerate\=\(fraction\)60/1\,\ pixel-aspect-ratio\=\(fraction\)1/1", caps=(GstCaps)"NULL";
0:00:01.897213042 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<src_0:proxypad3> data is passed
0:00:01.897212792 2032 0xb59272a8 DEBUG GST_PADS gstutils.c:2851:gst_pad_proxy_query_caps:<video_0:proxypad4> proxying caps query for video_0:proxypad4
0:00:01.897249626 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<parsebin0:src_0> data is passed
0:00:01.897309042 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:4300:gst_pad_peer_query:<decodebin3-0:video_0> peer query 0xb3808380 (caps)
0:00:01.897350459 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:4173:gst_pad_query:<kmssink0:sink> doing query 0xb3808380 (caps)
0:00:01.897490417 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:4196:gst_pad_query:<kmssink0:sink> sent query 0xb3808380 (caps), result 1
0:00:01.897617542 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:3514:gst_pad_query_default:<video_0:proxypad4> not forwarding 0xb3808380 (caps) query
0:00:01.897664626 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:4196:gst_pad_query:<video_0:proxypad4> sent query 0xb3808380 (caps), result 1
0:00:01.897790417 2032 0xb59272a8 DEBUG GST_CAPS gstutils.c:3155:gst_pad_peer_query_caps:<v4l2slh264dec0:src> peer query returned video/x-raw, width=(int)1920, height=(int)1080, framerate=(fraction)60/1, pixel-aspect-ratio=(fraction)1/1, format=(string){ BGR16, RGB, RGB16, BGR, RGBx, BGRx, NV16, NV12, NV21, NV61, UYVY, YUY2, YVYU, I420, Y42B, YV12 }
0:00:01.897860542 2032 0x249bf70 DEBUG GST_CAPS gstpad.c:2709:gst_pad_has_current_caps:<h264parse0:src> check current pad caps video/x-h264, stream-format=(string)avc, alignment=(string)au, level=(string)4.2, profile=(string)high, codec_data=(buffer)0164002affe1001b6764002aacc8501e0089f97011000003000100000300780f18319601000668e93864b22c, width=(int)1920, height=(int)1080, framerate=(fraction)60/1, pixel-aspect-ratio=(fraction)1/1, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8, parsed=(boolean)true
0:00:01.898027459 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:4196:gst_pad_query:<v4l2slh264dec0:sink> sent query 0xb3808350 (caps), result 1
0:00:01.898030167 2032 0x249bf70 DEBUG GST_CAPS gstpad.c:2709:gst_pad_has_current_caps:<h264parse0:src> check current pad caps video/x-h264, stream-format=(string)avc, alignment=(string)au, level=(string)4.2, profile=(string)high, codec_data=(buffer)0164002affe1001b6764002aacc8501e0089f97011000003000100000300780f18319601000668e93864b22c, width=(int)1920, height=(int)1080, framerate=(fraction)60/1, pixel-aspect-ratio=(fraction)1/1, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8, parsed=(boolean)true
0:00:01.898152709 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<src_0:proxypad3> data is passed
0:00:01.898195751 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<parsebin0:src_0> data is passed
0:00:01.898243542 2032 0xb59272a8 DEBUG GST_CAPS gstutils.c:3109:gst_pad_query_caps:<v4l2slh264dec0:sink> query returned video/x-h264, width=(int)1920, height=(int)1080, framerate=(fraction)60/1, pixel-aspect-ratio=(fraction)1/1, stream-format=(string)avc, alignment=(string)au, level=(string)4.2, profile=(string)high, codec_data=(buffer)0164002affe1001b6764002aacc8501e0089f97011000003000100000300780f18319601000668e93864b22c, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8, parsed=(boolean)true
0:00:01.898329459 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:4196:gst_pad_query:<v4l2slh264dec0:sink> sent query 0xb3808320 (accept-caps), result 1
0:00:01.898570709 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:4300:gst_pad_peer_query:<v4l2slh264dec0:sink> peer query 0xb3808630 (latency)
0:00:01.898582126 2032 0x249bf70 DEBUG GST_CAPS gstpad.c:2709:gst_pad_has_current_caps:<h264parse0:src> check current pad caps video/x-h264, stream-format=(string)avc, alignment=(string)au, level=(string)4.2, profile=(string)high, codec_data=(buffer)0164002affe1001b6764002aacc8501e0089f97011000003000100000300780f18319601000668e93864b22c, width=(int)1920, height=(int)1080, framerate=(fraction)60/1, pixel-aspect-ratio=(fraction)1/1, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8, parsed=(boolean)true
0:00:01.898619459 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:4173:gst_pad_query:<multiqueue0:src_0> doing query 0xb3808630 (latency)
0:00:01.898650376 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<multiqueue0:src_0> data is passed
0:00:01.898714792 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:4300:gst_pad_peer_query:<multiqueue0:sink_0> peer query 0xb3808660 (latency)
0:00:01.898729834 2032 0x249bf70 DEBUG GST_CAPS gstpad.c:2709:gst_pad_has_current_caps:<h264parse0:src> check current pad caps video/x-h264, stream-format=(string)avc, alignment=(string)au, level=(string)4.2, profile=(string)high, codec_data=(buffer)0164002affe1001b6764002aacc8501e0089f97011000003000100000300780f18319601000668e93864b22c, width=(int)1920, height=(int)1080, framerate=(fraction)60/1, pixel-aspect-ratio=(fraction)1/1, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8, parsed=(boolean)true
0:00:01.898753292 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:4173:gst_pad_query:<parsebin0:src_0> doing query 0xb3808660 (latency)
0:00:01.898782209 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<parsebin0:src_0> data is passed
0:00:01.898792709 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<src_0:proxypad3> data is passed
0:00:01.902452376 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<parsebin0:src_0> data is passed
0:00:01.902465792 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:4300:gst_pad_peer_query:<src_0:proxypad3> peer query 0xb3808690 (latency)
0:00:01.902526834 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<src_0:proxypad3> data is passed
0:00:01.902569876 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:4173:gst_pad_query:<capsfilter0:src> doing query 0xb3808690 (latency)
0:00:01.902607001 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:4300:gst_pad_peer_query:<capsfilter0:sink> peer query 0xb3808690 (latency)
0:00:01.902641167 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:4173:gst_pad_query:<h264parse0:src> doing query 0xb3808690 (latency)
0:00:01.902678084 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:4300:gst_pad_peer_query:<h264parse0:sink> peer query 0xb3808690 (latency)
0:00:01.902712709 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:4173:gst_pad_query:<qtdemux0:video_0> doing query 0xb3808690 (latency)
0:00:01.902745251 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:2968:gst_pad_iterate_internal_links_default:<qtdemux0:video_0> Making iterator
0:00:01.902796334 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:4300:gst_pad_peer_query:<qtdemux0:sink> peer query 0xb38086c0 (latency)
0:00:01.902831376 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:4173:gst_pad_query:<typefind:src> doing query 0xb38086c0 (latency)
0:00:01.902862584 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:2968:gst_pad_iterate_internal_links_default:<typefind:src> Making iterator
0:00:01.902893876 2032 0x249bf70 DEBUG GST_CAPS gstpad.c:2709:gst_pad_has_current_caps:<h264parse0:src> check current pad caps video/x-h264, stream-format=(string)avc, alignment=(string)au, level=(string)4.2, profile=(string)high, codec_data=(buffer)0164002affe1001b6764002aacc8501e0089f97011000003000100000300780f18319601000668e93864b22c, width=(int)1920, height=(int)1080, framerate=(fraction)60/1, pixel-aspect-ratio=(fraction)1/1, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8, parsed=(boolean)true
0:00:01.902908709 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:4300:gst_pad_peer_query:<typefind:sink> peer query 0xb38086f0 (latency)
0:00:01.902944542 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:4173:gst_pad_query:<sink:proxypad1> doing query 0xb38086f0 (latency)
0:00:01.902992459 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:4300:gst_pad_peer_query:<parsebin0:sink> peer query 0xb3808720 (latency)
0:00:01.903026501 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:4173:gst_pad_query:<sink:proxypad0> doing query 0xb3808720 (latency)
0:00:01.903049876 2032 0x249bf70 DEBUG GST_CAPS gstpad.c:2709:gst_pad_has_current_caps:<h264parse0:src> check current pad caps video/x-h264, stream-format=(string)avc, alignment=(string)au, level=(string)4.2, profile=(string)high, codec_data=(buffer)0164002affe1001b6764002aacc8501e0089f97011000003000100000300780f18319601000668e93864b22c, width=(int)1920, height=(int)1080, framerate=(fraction)60/1, pixel-aspect-ratio=(fraction)1/1, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8, parsed=(boolean)true
0:00:01.903075334 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:4300:gst_pad_peer_query:<decodebin3-0:sink> peer query 0xb3808750 (latency)
0:00:01.907837667 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:4173:gst_pad_query:<filesrc0:src> doing query 0xb3808750 (latency)
0:00:01.907850292 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<src_0:proxypad3> data is passed
0:00:01.907913126 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:4196:gst_pad_query:<filesrc0:src> sent query 0xb3808750 (latency), result 1
0:00:01.907916917 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<parsebin0:src_0> data is passed
0:00:01.907991751 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:3514:gst_pad_query_default:<sink:proxypad0> not forwarding 0xb3808720 (latency) query
0:00:01.908031626 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:4196:gst_pad_query:<sink:proxypad0> sent query 0xb3808720 (latency), result 1
0:00:01.908079876 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:3514:gst_pad_query_default:<sink:proxypad1> not forwarding 0xb38086f0 (latency) query
0:00:01.908119751 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:4196:gst_pad_query:<sink:proxypad1> sent query 0xb38086f0 (latency), result 1
0:00:01.908170292 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:3514:gst_pad_query_default:<typefind:src> not forwarding 0xb38086c0 (latency) query
0:00:01.908210501 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:4196:gst_pad_query:<typefind:src> sent query 0xb38086c0 (latency), result 1
0:00:01.908258334 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:3514:gst_pad_query_default:<qtdemux0:video_0> not forwarding 0xb3808690 (latency) query
0:00:01.908299251 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:4196:gst_pad_query:<qtdemux0:video_0> sent query 0xb3808690 (latency), result 1
0:00:01.908352959 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:4196:gst_pad_query:<h264parse0:src> sent query 0xb3808690 (latency), result 1
0:00:01.908393834 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:4196:gst_pad_query:<capsfilter0:src> sent query 0xb3808690 (latency), result 1
0:00:01.908446167 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:3514:gst_pad_query_default:<parsebin0:src_0> not forwarding 0xb3808660 (latency) query
0:00:01.908486334 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:4196:gst_pad_query:<parsebin0:src_0> sent query 0xb3808660 (latency), result 1
0:00:01.908542126 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:3514:gst_pad_query_default:<multiqueue0:src_0> not forwarding 0xb3808630 (latency) query
0:00:01.908585876 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:4196:gst_pad_query:<multiqueue0:src_0> sent query 0xb3808630 (latency), result 1
0:00:01.908708292 2032 0x249bf70 DEBUG GST_CAPS gstpad.c:2709:gst_pad_has_current_caps:<h264parse0:src> check current pad caps video/x-h264, stream-format=(string)avc, alignment=(string)au, level=(string)4.2, profile=(string)high, codec_data=(buffer)0164002affe1001b6764002aacc8501e0089f97011000003000100000300780f18319601000668e93864b22c, width=(int)1920, height=(int)1080, framerate=(fraction)60/1, pixel-aspect-ratio=(fraction)1/1, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8, parsed=(boolean)true
0:00:01.912650292 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:1678:gst_pad_check_reconfigure:<v4l2slh264dec0:src> remove RECONFIGURE flag
0:00:01.912658667 2032 0x249bf70 DEBUG GST_CAPS gstpad.c:2709:gst_pad_has_current_caps:<h264parse0:src> check current pad caps video/x-h264, stream-format=(string)avc, alignment=(string)au, level=(string)4.2, profile=(string)high, codec_data=(buffer)0164002affe1001b6764002aacc8501e0089f97011000003000100000300780f18319601000668e93864b22c, width=(int)1920, height=(int)1080, framerate=(fraction)60/1, pixel-aspect-ratio=(fraction)1/1, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8, parsed=(boolean)true
0:00:01.912785709 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<src_0:proxypad3> data is passed
0:00:01.912826417 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<parsebin0:src_0> data is passed
0:00:01.912884209 2032 0xb59272a8 DEBUG GST_CAPS gstutils.c:3148:gst_pad_peer_query_caps:<v4l2slh264dec0:src> get pad peer caps with filter video/x-raw, format=(string)NV12_32L32; video/x-raw, format=(string){ NV12_32L32, NV12 }
0:00:01.912935917 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:4300:gst_pad_peer_query:<v4l2slh264dec0:src> peer query 0xb3808780 (caps)
0:00:01.912975042 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:4173:gst_pad_query:<video_0:proxypad4> doing query 0xb3808780 (caps)
0:00:01.913005792 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<video_0:proxypad4> data is passed
0:00:01.913081876 2032 0xb59272a8 DEBUG GST_CAPS gstpad.c:3259:gst_pad_query_caps_default:<video_0:proxypad4> query caps caps query: 0xb3808780, GstQueryCaps, filter=(GstCaps)"video/x-raw\,\ format\=\(string\)NV12_32L32\;\ video/x-raw\,\ format\=\(string\)\{\ NV12_32L32\,\ NV12\ \}", caps=(GstCaps)"NULL";
0:00:01.913120209 2032 0xb59272a8 DEBUG GST_PADS gstutils.c:2851:gst_pad_proxy_query_caps:<video_0:proxypad4> proxying caps query for video_0:proxypad4
0:00:01.913170334 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:4300:gst_pad_peer_query:<decodebin3-0:video_0> peer query 0xb3808780 (caps)
0:00:01.913206626 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:4173:gst_pad_query:<kmssink0:sink> doing query 0xb3808780 (caps)
0:00:01.913216292 2032 0x249bf70 DEBUG GST_CAPS gstpad.c:2709:gst_pad_has_current_caps:<h264parse0:src> check current pad caps video/x-h264, stream-format=(string)avc, alignment=(string)au, level=(string)4.2, profile=(string)high, codec_data=(buffer)0164002affe1001b6764002aacc8501e0089f97011000003000100000300780f18319601000668e93864b22c, width=(int)1920, height=(int)1080, framerate=(fraction)60/1, pixel-aspect-ratio=(fraction)1/1, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8, parsed=(boolean)true
0:00:01.913402042 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:4196:gst_pad_query:<kmssink0:sink> sent query 0xb3808780 (caps), result 1
0:00:01.917589584 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:3514:gst_pad_query_default:<video_0:proxypad4> not forwarding 0xb3808780 (caps) query
0:00:01.917645292 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:4196:gst_pad_query:<video_0:proxypad4> sent query 0xb3808780 (caps), result 1
0:00:01.917654167 2032 0x249bf70 DEBUG GST_CAPS gstpad.c:2709:gst_pad_has_current_caps:<h264parse0:src> check current pad caps video/x-h264, stream-format=(string)avc, alignment=(string)au, level=(string)4.2, profile=(string)high, codec_data=(buffer)0164002affe1001b6764002aacc8501e0089f97011000003000100000300780f18319601000668e93864b22c, width=(int)1920, height=(int)1080, framerate=(fraction)60/1, pixel-aspect-ratio=(fraction)1/1, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8, parsed=(boolean)true
0:00:01.917732584 2032 0xb59272a8 DEBUG GST_CAPS gstutils.c:3155:gst_pad_peer_query_caps:<v4l2slh264dec0:src> peer query returned video/x-raw, format=(string)NV12, width=(int)[ 0, 8192 ], height=(int)[ 0, 8192 ], framerate=(fraction)[ 0/1, 2147483647/1 ]
0:00:01.917760542 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<src_0:proxypad3> data is passed
0:00:01.917797959 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<parsebin0:src_0> data is passed
0:00:01.917986792 2032 0xb59272a8 DEBUG GST_CAPS gstpad.c:2737:gst_pad_get_current_caps:<v4l2slh264dec0:sink> get current pad caps (NULL)
0:00:01.918031084 2032 0xb59272a8 DEBUG GST_CAPS gstpad.c:2737:gst_pad_get_current_caps:<v4l2slh264dec0:src> get current pad caps (NULL)
0:00:01.918086209 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:5363:store_sticky_event:<v4l2slh264dec0:src> notify caps
0:00:01.918145917 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:4105:check_sticky:<v4l2slh264dec0:src> pushing all sticky events
0:00:01.918183417 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:4034:push_sticky:<v4l2slh264dec0:src> event stream-start was already received
0:00:01.918210584 2032 0x249bf70 DEBUG GST_CAPS gstpad.c:2709:gst_pad_has_current_caps:<h264parse0:src> check current pad caps video/x-h264, stream-format=(string)avc, alignment=(string)au, level=(string)4.2, profile=(string)high, codec_data=(buffer)0164002affe1001b6764002aacc8501e0089f97011000003000100000300780f18319601000668e93864b22c, width=(int)1920, height=(int)1080, framerate=(fraction)60/1, pixel-aspect-ratio=(fraction)1/1, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8, parsed=(boolean)true
0:00:01.918225459 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<video_0:proxypad4> data is passed
0:00:01.918358084 2032 0x249bf70 DEBUG GST_CAPS gstpad.c:2709:gst_pad_has_current_caps:<h264parse0:src> check current pad caps video/x-h264, stream-format=(string)avc, alignment=(string)au, level=(string)4.2, profile=(string)high, codec_data=(buffer)0164002affe1001b6764002aacc8501e0089f97011000003000100000300780f18319601000668e93864b22c, width=(int)1920, height=(int)1080, framerate=(fraction)60/1, pixel-aspect-ratio=(fraction)1/1, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8, parsed=(boolean)true
0:00:01.918386584 2032 0xb59272a8 DEBUG GST_CAPS gstutils.c:3185:gst_pad_query_accept_caps:<video_0:proxypad4> accept caps of video/x-raw, format=(string)NV12, width=(int)1920, height=(int)1080, interlace-mode=(string)progressive, multiview-mode=(string)mono, multiview-flags=(GstVideoMultiviewFlagsSet)0:ffffffff:/right-view-first/left-flipped/left-flopped/right-flipped/right-flopped/half-aspect/mixed-mono, pixel-aspect-ratio=(fraction)1/1, framerate=(fraction)60/1
0:00:01.921907792 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:4173:gst_pad_query:<video_0:proxypad4> doing query 0xb38088f0 (accept-caps)
0:00:01.921907792 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<src_0:proxypad3> data is passed
0:00:01.921952334 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<video_0:proxypad4> data is passed
0:00:01.921976126 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<parsebin0:src_0> data is passed
0:00:01.922159417 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:3200:gst_pad_query_accept_caps_default:<video_0:proxypad4> query accept-caps accept-caps query: 0xb38088f0, GstQueryAcceptCaps, caps=(GstCaps)"video/x-raw\,\ format\=\(string\)NV12\,\ width\=\(int\)1920\,\ height\=\(int\)1080\,\ interlace-mode\=\(string\)progressive\,\ multiview-mode\=\(string\)mono\,\ multiview-flags\=\(GstVideoMultiviewFlagsSet\)0:ffffffff:/right-view-first/left-flipped/left-flopped/right-flipped/right-flopped/half-aspect/mixed-mono\,\ pixel-aspect-ratio\=\(fraction\)1/1\,\ framerate\=\(fraction\)60/1", result=(boolean)false;
0:00:01.922209876 2032 0xb59272a8 DEBUG GST_PADS gstutils.c:2782:gst_pad_proxy_query_accept_caps:<video_0:proxypad4> proxying accept caps query for video_0:proxypad4
0:00:01.922272167 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:4300:gst_pad_peer_query:<decodebin3-0:video_0> peer query 0xb38088f0 (accept-caps)
0:00:01.922312042 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:4173:gst_pad_query:<kmssink0:sink> doing query 0xb38088f0 (accept-caps)
0:00:01.922402376 2032 0x249bf70 DEBUG GST_CAPS gstpad.c:2709:gst_pad_has_current_caps:<h264parse0:src> check current pad caps video/x-h264, stream-format=(string)avc, alignment=(string)au, level=(string)4.2, profile=(string)high, codec_data=(buffer)0164002affe1001b6764002aacc8501e0089f97011000003000100000300780f18319601000668e93864b22c, width=(int)1920, height=(int)1080, framerate=(fraction)60/1, pixel-aspect-ratio=(fraction)1/1, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8, parsed=(boolean)true
0:00:01.922446584 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:4196:gst_pad_query:<kmssink0:sink> sent query 0xb38088f0 (accept-caps), result 1
0:00:01.922493209 2032 0xb59272a8 DEBUG GST_PADS gstutils.c:2793:gst_pad_proxy_query_accept_caps:<video_0:proxypad4> proxying accept caps query: 1
0:00:01.922557834 2032 0x249bf70 DEBUG GST_CAPS gstpad.c:2709:gst_pad_has_current_caps:<h264parse0:src> check current pad caps video/x-h264, stream-format=(string)avc, alignment=(string)au, level=(string)4.2, profile=(string)high, codec_data=(buffer)0164002affe1001b6764002aacc8501e0089f97011000003000100000300780f18319601000668e93864b22c, width=(int)1920, height=(int)1080, framerate=(fraction)60/1, pixel-aspect-ratio=(fraction)1/1, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8, parsed=(boolean)true
0:00:01.922595001 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:3230:gst_pad_query_accept_caps_default:<video_0:proxypad4> allowed caps subset ANY, caps video/x-raw, format=(string)NV12, width=(int)1920, height=(int)1080, interlace-mode=(string)progressive, multiview-mode=(string)mono, multiview-flags=(GstVideoMultiviewFlagsSet)0:ffffffff:/right-view-first/left-flipped/left-flopped/right-flipped/right-flopped/half-aspect/mixed-mono, pixel-aspect-ratio=(fraction)1/1, framerate=(fraction)60/1
0:00:01.926445209 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<src_0:proxypad3> data is passed
0:00:01.926440334 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:3514:gst_pad_query_default:<video_0:proxypad4> not forwarding 0xb38088f0 (accept-caps) query
0:00:01.926496751 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<parsebin0:src_0> data is passed
0:00:01.926518209 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:4196:gst_pad_query:<video_0:proxypad4> sent query 0xb38088f0 (accept-caps), result 1
0:00:01.926582751 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:5363:store_sticky_event:<decodebin3-0:video_0> notify caps
0:00:01.926639042 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:4105:check_sticky:<decodebin3-0:video_0> pushing all sticky events
0:00:01.926676834 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:4034:push_sticky:<decodebin3-0:video_0> event stream-start was already received
0:00:01.926817459 2032 0xb59272a8 DEBUG GST_CAPS gstutils.c:3185:gst_pad_query_accept_caps:<kmssink0:sink> accept caps of video/x-raw, format=(string)NV12, width=(int)1920, height=(int)1080, interlace-mode=(string)progressive, multiview-mode=(string)mono, multiview-flags=(GstVideoMultiviewFlagsSet)0:ffffffff:/right-view-first/left-flipped/left-flopped/right-flipped/right-flopped/half-aspect/mixed-mono, pixel-aspect-ratio=(fraction)1/1, framerate=(fraction)60/1
0:00:01.926877001 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:4173:gst_pad_query:<kmssink0:sink> doing query 0xb3808860 (accept-caps)
0:00:01.926922251 2032 0x249bf70 DEBUG GST_CAPS gstpad.c:2709:gst_pad_has_current_caps:<h264parse0:src> check current pad caps video/x-h264, stream-format=(string)avc, alignment=(string)au, level=(string)4.2, profile=(string)high, codec_data=(buffer)0164002affe1001b6764002aacc8501e0089f97011000003000100000300780f18319601000668e93864b22c, width=(int)1920, height=(int)1080, framerate=(fraction)60/1, pixel-aspect-ratio=(fraction)1/1, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8, parsed=(boolean)true
0:00:01.926993001 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:4196:gst_pad_query:<kmssink0:sink> sent query 0xb3808860 (accept-caps), result 1
0:00:01.927038251 2032 0xb59272a8 DEBUG GST_CAPS gstpad.c:2737:gst_pad_get_current_caps:<kmssink0:sink> get current pad caps (NULL)
0:00:01.927075751 2032 0x249bf70 DEBUG GST_CAPS gstpad.c:2709:gst_pad_has_current_caps:<h264parse0:src> check current pad caps video/x-h264, stream-format=(string)avc, alignment=(string)au, level=(string)4.2, profile=(string)high, codec_data=(buffer)0164002affe1001b6764002aacc8501e0089f97011000003000100000300780f18319601000668e93864b22c, width=(int)1920, height=(int)1080, framerate=(fraction)60/1, pixel-aspect-ratio=(fraction)1/1, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8, parsed=(boolean)true
0:00:01.927144167 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<kmssink0:sink> sent event, ret ok
0:00:01.931626084 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:5363:store_sticky_event:<kmssink0:sink> notify caps
0:00:01.931657084 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<src_0:proxypad3> data is passed
0:00:01.931696001 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<parsebin0:src_0> data is passed
0:00:01.931711084 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:4056:push_sticky:<decodebin3-0:video_0> event caps marked received
0:00:01.931758459 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<video_0:proxypad4> sent event, ret ok
0:00:01.931788626 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:5363:store_sticky_event:<video_0:proxypad4> notify caps
0:00:01.931835209 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:4056:push_sticky:<v4l2slh264dec0:src> event caps marked received
0:00:01.931892376 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:4300:gst_pad_peer_query:<v4l2slh264dec0:src> peer query 0xb3808830 (allocation)
0:00:01.931934167 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:4173:gst_pad_query:<video_0:proxypad4> doing query 0xb3808830 (allocation)
0:00:01.931963334 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<video_0:proxypad4> data is passed
0:00:01.932003376 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:3514:gst_pad_query_default:<video_0:proxypad4> forwarding 0xb3808830 (allocation) query
0:00:01.932049417 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:4300:gst_pad_peer_query:<decodebin3-0:video_0> peer query 0xb3808830 (allocation)
0:00:01.932083001 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:4173:gst_pad_query:<kmssink0:sink> doing query 0xb3808830 (allocation)
0:00:01.933006459 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:4196:gst_pad_query:<kmssink0:sink> sent query 0xb3808830 (allocation), result 1
0:00:01.933072876 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:4196:gst_pad_query:<video_0:proxypad4> sent query 0xb3808830 (allocation), result 1
0:00:02.016023501 2032 0xb59272a8 DEBUG GST_CAPS gstpad.c:2737:gst_pad_get_current_caps:<v4l2slh264dec0:src> get current pad caps video/x-raw, format=(string)NV12, width=(int)1920, height=(int)1080, interlace-mode=(string)progressive, multiview-mode=(string)mono, multiview-flags=(GstVideoMultiviewFlagsSet)0:ffffffff:/right-view-first/left-flipped/left-flopped/right-flipped/right-flopped/half-aspect/mixed-mono, pixel-aspect-ratio=(fraction)1/1, framerate=(fraction)60/1
Redistribute latency...
0:00:02.016453959 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<v4l2slh264dec0:sink> sent event, ret ok
0:00:02.016506376 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:5363:store_sticky_event:<v4l2slh264dec0:sink> notify caps
0:00:02.016528626 2032 0x237d280 DEBUG GST_ELEMENT_PADS gstelement.c:2088:gst_element_query: send query on element pipeline0
0:00:02.016581626 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:4056:push_sticky:<multiqueue0:src_0> event caps marked received
0:00:02.016593459 2032 0x237d280 DEBUG GST_ELEMENT_PADS gstelement.c:2088:gst_element_query: send query on element kmssink0
0:00:02.016677709 2032 0x237d280 DEBUG GST_ELEMENT_PADS gstelement.c:1982:gst_element_send_event: send latency event on element pipeline0
0:00:02.016701501 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:4105:check_sticky:<multiqueue0:src_0> pushing all sticky events
0:00:02.016729959 2032 0x237d280 DEBUG GST_ELEMENT_PADS gstelement.c:1982:gst_element_send_event: send latency event on element kmssink0
0:00:02.016740542 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:4034:push_sticky:<multiqueue0:src_0> event stream-start was already received
0:00:02.016770626 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:4034:push_sticky:<multiqueue0:src_0> event caps was already received
0:00:02.016801292 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<multiqueue0:src_0> data is passed
0:00:02.016833751 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:3713:probe_hook_marshal:<multiqueue0:src_0> probe returned OK
0:00:02.016882209 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<v4l2slh264dec0:sink> sent event, ret ok
0:00:02.016920709 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:4056:push_sticky:<multiqueue0:src_0> event segment marked received
0:00:02.016991126 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:4105:check_sticky:<multiqueue0:src_0> pushing all sticky events
0:00:02.017030167 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:4034:push_sticky:<multiqueue0:src_0> event stream-start was already received
0:00:02.017065584 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:4034:push_sticky:<multiqueue0:src_0> event caps was already received
0:00:02.017100167 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:4034:push_sticky:<multiqueue0:src_0> event segment was already received
0:00:02.017132292 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<multiqueue0:src_0> data is passed
0:00:02.017160834 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:3713:probe_hook_marshal:<multiqueue0:src_0> probe returned OK
0:00:02.017201792 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<v4l2slh264dec0:sink> sent event, ret ok
0:00:02.017235542 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:4056:push_sticky:<multiqueue0:src_0> event stream-collection marked received
0:00:02.017301834 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:4105:check_sticky:<multiqueue0:src_0> pushing all sticky events
0:00:02.017529376 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:4034:push_sticky:<multiqueue0:src_0> event stream-start was already received
0:00:02.017582917 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:4034:push_sticky:<multiqueue0:src_0> event caps was already received
0:00:02.017614792 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:4034:push_sticky:<multiqueue0:src_0> event segment was already received
0:00:02.017648542 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:4034:push_sticky:<multiqueue0:src_0> event stream-collection was already received
0:00:02.017679751 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<multiqueue0:src_0> data is passed
0:00:02.017749084 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:3713:probe_hook_marshal:<multiqueue0:src_0> probe returned OK
0:00:02.017851667 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<v4l2slh264dec0:sink> sent event, ret ok
0:00:02.017895417 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:4056:push_sticky:<multiqueue0:src_0> event tag marked received
0:00:02.017961834 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:4105:check_sticky:<multiqueue0:src_0> pushing all sticky events
0:00:02.017996917 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:4034:push_sticky:<multiqueue0:src_0> event stream-start was already received
0:00:02.018026917 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:4034:push_sticky:<multiqueue0:src_0> event caps was already received
0:00:02.018056001 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:4034:push_sticky:<multiqueue0:src_0> event segment was already received
0:00:02.018085001 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:4034:push_sticky:<multiqueue0:src_0> event stream-collection was already received
0:00:02.018117251 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:4034:push_sticky:<multiqueue0:src_0> event tag was already received
0:00:02.018145292 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<multiqueue0:src_0> data is passed
0:00:02.018173542 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:3713:probe_hook_marshal:<multiqueue0:src_0> probe returned OK
0:00:02.018210417 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<v4l2slh264dec0:sink> sent event, ret ok
0:00:02.018244501 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:4056:push_sticky:<multiqueue0:src_0> event tag marked received
0:00:02.018315459 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<multiqueue0:src_0> data is passed
0:00:02.018347959 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:3693:probe_hook_marshal:<multiqueue0:src_0> asked to remove hook
0:00:02.018383584 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:1371:cleanup_hook:<multiqueue0:src_0> cleaning up hook 2 with flags 00030103
0:00:02.021127459 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<multiqueue0:src_0> data is passed
0:00:02.038157001 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<multiqueue0:src_0> data is passed
0:00:02.046253334 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<multiqueue0:src_0> data is passed
0:00:02.057228084 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<multiqueue0:src_0> data is passed
0:00:02.068671917 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:4105:check_sticky:<v4l2slh264dec0:src> pushing all sticky events
0:00:02.068807501 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:4034:push_sticky:<v4l2slh264dec0:src> event stream-start was already received
0:00:02.068868626 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:4034:push_sticky:<v4l2slh264dec0:src> event caps was already received
0:00:02.068942709 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<video_0:proxypad4> data is passed
0:00:02.069030959 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:4105:check_sticky:<decodebin3-0:video_0> pushing all sticky events
0:00:02.069087959 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:4034:push_sticky:<decodebin3-0:video_0> event stream-start was already received
0:00:02.069128834 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:4034:push_sticky:<decodebin3-0:video_0> event caps was already received
0:00:02.069212709 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<kmssink0:sink> sent event, ret ok
0:00:02.069279917 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:4056:push_sticky:<decodebin3-0:video_0> event segment marked received
0:00:02.069330709 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<video_0:proxypad4> sent event, ret ok
0:00:02.069374667 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:4056:push_sticky:<v4l2slh264dec0:src> event segment marked received
0:00:02.069410584 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:4105:check_sticky:<v4l2slh264dec0:src> pushing all sticky events
0:00:02.069446209 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:4034:push_sticky:<v4l2slh264dec0:src> event stream-start was already received
0:00:02.069481876 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:4034:push_sticky:<v4l2slh264dec0:src> event caps was already received
0:00:02.069538376 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:4034:push_sticky:<v4l2slh264dec0:src> event segment was already received
0:00:02.069666584 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<video_0:proxypad4> data is passed
0:00:02.069914959 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:4105:check_sticky:<decodebin3-0:video_0> pushing all sticky events
0:00:02.069958834 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:4034:push_sticky:<decodebin3-0:video_0> event stream-start was already received
0:00:02.070024959 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:4034:push_sticky:<decodebin3-0:video_0> event caps was already received
0:00:02.070072792 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:4034:push_sticky:<decodebin3-0:video_0> event segment was already received
0:00:02.070140042 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<kmssink0:sink> sent event, ret ok
0:00:02.070176959 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:4056:push_sticky:<decodebin3-0:video_0> event stream-collection marked received
0:00:02.070216959 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<video_0:proxypad4> sent event, ret ok
0:00:02.070255709 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:4056:push_sticky:<v4l2slh264dec0:src> event stream-collection marked received
0:00:02.070290209 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:4105:check_sticky:<v4l2slh264dec0:src> pushing all sticky events
0:00:02.070320376 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:4034:push_sticky:<v4l2slh264dec0:src> event stream-start was already received
0:00:02.070350959 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:4034:push_sticky:<v4l2slh264dec0:src> event caps was already received
0:00:02.070382626 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:4034:push_sticky:<v4l2slh264dec0:src> event segment was already received
0:00:02.070413376 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:4034:push_sticky:<v4l2slh264dec0:src> event stream-collection was already received
0:00:02.070446334 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<video_0:proxypad4> data is passed
0:00:02.070497417 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:4105:check_sticky:<decodebin3-0:video_0> pushing all sticky events
0:00:02.070568001 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:4034:push_sticky:<decodebin3-0:video_0> event stream-start was already received
0:00:02.070608417 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:4034:push_sticky:<decodebin3-0:video_0> event caps was already received
0:00:02.070643959 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:4034:push_sticky:<decodebin3-0:video_0> event segment was already received
0:00:02.070675834 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:4034:push_sticky:<decodebin3-0:video_0> event stream-collection was already received
0:00:02.070885501 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<kmssink0:sink> sent event, ret ok
0:00:02.070944459 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:4056:push_sticky:<decodebin3-0:video_0> event tag marked received
0:00:02.070986376 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<video_0:proxypad4> sent event, ret ok
0:00:02.071025459 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:4056:push_sticky:<v4l2slh264dec0:src> event tag marked received
0:00:02.071061626 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:4105:check_sticky:<v4l2slh264dec0:src> pushing all sticky events
0:00:02.071093959 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:4034:push_sticky:<v4l2slh264dec0:src> event stream-start was already received
0:00:02.071127834 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:4034:push_sticky:<v4l2slh264dec0:src> event caps was already received
0:00:02.071160334 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:4034:push_sticky:<v4l2slh264dec0:src> event segment was already received
0:00:02.071191667 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:4034:push_sticky:<v4l2slh264dec0:src> event stream-collection was already received
0:00:02.071222542 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:4034:push_sticky:<v4l2slh264dec0:src> event tag was already received
0:00:02.071260167 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<video_0:proxypad4> data is passed
0:00:02.071305417 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:4105:check_sticky:<decodebin3-0:video_0> pushing all sticky events
0:00:02.071336001 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:4034:push_sticky:<decodebin3-0:video_0> event stream-start was already received
0:00:02.071364542 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:4034:push_sticky:<decodebin3-0:video_0> event caps was already received
0:00:02.071392334 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:4034:push_sticky:<decodebin3-0:video_0> event segment was already received
0:00:02.071420292 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:4034:push_sticky:<decodebin3-0:video_0> event stream-collection was already received
0:00:02.071450251 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:4034:push_sticky:<decodebin3-0:video_0> event tag was already received
0:00:02.071564084 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<kmssink0:sink> sent event, ret ok
0:00:02.071618167 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:4056:push_sticky:<decodebin3-0:video_0> event tag marked received
0:00:02.071659792 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<video_0:proxypad4> sent event, ret ok
0:00:02.071695209 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:4056:push_sticky:<v4l2slh264dec0:src> event tag marked received
0:00:02.072162751 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<video_0:proxypad4> data is passed
0:00:02.072536376 2032 0xb59272a8 WARN kmsallocator gstkmsallocator.c:553:gst_kms_allocator_dmabuf_import:<KMSMemory::allocator> Failed to close GEM handle: Invalid argument 22
0:00:02.097290251 2032 0xb59272a8 DEBUG GST_PADS gstghostpad.c:783:gst_ghost_pad_get_target:<decodebin3-0:sink> get target parsebin0:sink
0:00:02.097536334 2032 0xb59272a8 DEBUG GST_PADS gstghostpad.c:783:gst_ghost_pad_get_target:<decodebin3-0:video_0> get target v4l2slh264dec0:src
0:00:02.098087542 2032 0xb59272a8 DEBUG GST_CAPS gstpad.c:2737:gst_pad_get_current_caps:<v4l2slh264dec0:src> get current pad caps video/x-raw, format=(string)NV12, width=(int)1920, height=(int)1080, interlace-mode=(string)progressive, multiview-mode=(string)mono, multiview-flags=(GstVideoMultiviewFlagsSet)0:ffffffff:/right-view-first/left-flipped/left-flopped/right-flipped/right-flopped/half-aspect/mixed-mono, pixel-aspect-ratio=(fraction)1/1, framerate=(fraction)60/1
0:00:02.098199751 2032 0xb59272a8 DEBUG GST_CAPS gstpad.c:2737:gst_pad_get_current_caps:<video_0:proxypad4> get current pad caps video/x-raw, format=(string)NV12, width=(int)1920, height=(int)1080, interlace-mode=(string)progressive, multiview-mode=(string)mono, multiview-flags=(GstVideoMultiviewFlagsSet)0:ffffffff:/right-view-first/left-flipped/left-flopped/right-flipped/right-flopped/half-aspect/mixed-mono, pixel-aspect-ratio=(fraction)1/1, framerate=(fraction)60/1
0:00:02.098537834 2032 0xb59272a8 DEBUG GST_PADS gstghostpad.c:783:gst_ghost_pad_get_target:<parsebin0:sink> get target typefind:sink
0:00:02.098746126 2032 0xb59272a8 DEBUG GST_PADS gstghostpad.c:783:gst_ghost_pad_get_target:<parsebin0:src_0> get target capsfilter0:src
0:00:02.099299376 2032 0xb59272a8 DEBUG GST_CAPS gstpad.c:2737:gst_pad_get_current_caps:<capsfilter0:src> get current pad caps video/x-h264, stream-format=(string)avc, alignment=(string)au, level=(string)4.2, profile=(string)high, codec_data=(buffer)0164002affe1001b6764002aacc8501e0089f97011000003000100000300780f18319601000668e93864b22c, width=(int)1920, height=(int)1080, framerate=(fraction)60/1, pixel-aspect-ratio=(fraction)1/1, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8, parsed=(boolean)true
0:00:02.099428501 2032 0xb59272a8 DEBUG GST_CAPS gstpad.c:2737:gst_pad_get_current_caps:<src_0:proxypad3> get current pad caps video/x-h264, stream-format=(string)avc, alignment=(string)au, level=(string)4.2, profile=(string)high, codec_data=(buffer)0164002affe1001b6764002aacc8501e0089f97011000003000100000300780f18319601000668e93864b22c, width=(int)1920, height=(int)1080, framerate=(fraction)60/1, pixel-aspect-ratio=(fraction)1/1, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8, parsed=(boolean)true
0:00:02.099925584 2032 0xb59272a8 DEBUG GST_CAPS gstpad.c:2737:gst_pad_get_current_caps:<h264parse0:src> get current pad caps video/x-h264, stream-format=(string)avc, alignment=(string)au, level=(string)4.2, profile=(string)high, codec_data=(buffer)0164002affe1001b6764002aacc8501e0089f97011000003000100000300780f18319601000668e93864b22c, width=(int)1920, height=(int)1080, framerate=(fraction)60/1, pixel-aspect-ratio=(fraction)1/1, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8, parsed=(boolean)true
0:00:02.100047042 2032 0xb59272a8 DEBUG GST_CAPS gstpad.c:2737:gst_pad_get_current_caps:<capsfilter0:sink> get current pad caps video/x-h264, stream-format=(string)avc, alignment=(string)au, level=(string)4.2, profile=(string)high, codec_data=(buffer)0164002affe1001b6764002aacc8501e0089f97011000003000100000300780f18319601000668e93864b22c, width=(int)1920, height=(int)1080, framerate=(fraction)60/1, pixel-aspect-ratio=(fraction)1/1, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8, parsed=(boolean)true
0:00:02.100562876 2032 0xb59272a8 DEBUG GST_CAPS gstpad.c:2737:gst_pad_get_current_caps:<qtdemux0:video_0> get current pad caps video/x-h264, stream-format=(string)avc, alignment=(string)au, level=(string)4.2, profile=(string)high, codec_data=(buffer)0164002affe1001b6764002aacc8501e0089f97011000003000100000300780f18319601000668e93864b22cfdf8f800, width=(int)1920, height=(int)1080, framerate=(fraction)60/1, pixel-aspect-ratio=(fraction)1/1
0:00:02.100679584 2032 0xb59272a8 DEBUG GST_CAPS gstpad.c:2737:gst_pad_get_current_caps:<h264parse0:sink> get current pad caps video/x-h264, stream-format=(string)avc, alignment=(string)au, level=(string)4.2, profile=(string)high, codec_data=(buffer)0164002affe1001b6764002aacc8501e0089f97011000003000100000300780f18319601000668e93864b22cfdf8f800, width=(int)1920, height=(int)1080, framerate=(fraction)60/1, pixel-aspect-ratio=(fraction)1/1
0:00:02.101106126 2032 0xb59272a8 DEBUG GST_CAPS gstpad.c:2737:gst_pad_get_current_caps:<sink:proxypad1> get current pad caps (NULL)
0:00:02.101151042 2032 0xb59272a8 DEBUG GST_CAPS gstpad.c:2737:gst_pad_get_current_caps:<typefind:sink> get current pad caps (NULL)
0:00:02.101208251 2032 0xb59272a8 DEBUG GST_CAPS gstpad.c:2737:gst_pad_get_current_caps:<typefind:src> get current pad caps (NULL)
0:00:02.101237792 2032 0xb59272a8 DEBUG GST_CAPS gstpad.c:2737:gst_pad_get_current_caps:<qtdemux0:sink> get current pad caps (NULL)
0:00:02.101315959 2032 0xb59272a8 DEBUG GST_CAPS gstpad.c:2737:gst_pad_get_current_caps:<sink:proxypad0> get current pad caps (NULL)
0:00:02.101349751 2032 0xb59272a8 DEBUG GST_CAPS gstpad.c:2737:gst_pad_get_current_caps:<parsebin0:sink> get current pad caps (NULL)
0:00:02.101512501 2032 0xb59272a8 DEBUG GST_CAPS gstpad.c:2737:gst_pad_get_current_caps:<parsebin0:src_0> get current pad caps video/x-h264, stream-format=(string)avc, alignment=(string)au, level=(string)4.2, profile=(string)high, codec_data=(buffer)0164002affe1001b6764002aacc8501e0089f97011000003000100000300780f18319601000668e93864b22c, width=(int)1920, height=(int)1080, framerate=(fraction)60/1, pixel-aspect-ratio=(fraction)1/1, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8, parsed=(boolean)true
0:00:02.101626292 2032 0xb59272a8 DEBUG GST_CAPS gstpad.c:2737:gst_pad_get_current_caps:<multiqueue0:sink_0> get current pad caps video/x-h264, stream-format=(string)avc, alignment=(string)au, level=(string)4.2, profile=(string)high, codec_data=(buffer)0164002affe1001b6764002aacc8501e0089f97011000003000100000300780f18319601000668e93864b22c, width=(int)1920, height=(int)1080, framerate=(fraction)60/1, pixel-aspect-ratio=(fraction)1/1, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8, parsed=(boolean)true
0:00:02.102535792 2032 0xb59272a8 DEBUG GST_CAPS gstpad.c:2737:gst_pad_get_current_caps:<multiqueue0:src_0> get current pad caps video/x-h264, stream-format=(string)avc, alignment=(string)au, level=(string)4.2, profile=(string)high, codec_data=(buffer)0164002affe1001b6764002aacc8501e0089f97011000003000100000300780f18319601000668e93864b22c, width=(int)1920, height=(int)1080, framerate=(fraction)60/1, pixel-aspect-ratio=(fraction)1/1, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8, parsed=(boolean)true
0:00:02.102680542 2032 0xb59272a8 DEBUG GST_CAPS gstpad.c:2737:gst_pad_get_current_caps:<v4l2slh264dec0:sink> get current pad caps video/x-h264, stream-format=(string)avc, alignment=(string)au, level=(string)4.2, profile=(string)high, codec_data=(buffer)0164002affe1001b6764002aacc8501e0089f97011000003000100000300780f18319601000668e93864b22c, width=(int)1920, height=(int)1080, framerate=(fraction)60/1, pixel-aspect-ratio=(fraction)1/1, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8, parsed=(boolean)true
0:00:02.102946667 2032 0xb59272a8 DEBUG GST_CAPS gstpad.c:2737:gst_pad_get_current_caps:<decodebin3-0:video_0> get current pad caps video/x-raw, format=(string)NV12, width=(int)1920, height=(int)1080, interlace-mode=(string)progressive, multiview-mode=(string)mono, multiview-flags=(GstVideoMultiviewFlagsSet)0:ffffffff:/right-view-first/left-flipped/left-flopped/right-flipped/right-flopped/half-aspect/mixed-mono, pixel-aspect-ratio=(fraction)1/1, framerate=(fraction)60/1
0:00:02.103039917 2032 0xb59272a8 DEBUG GST_CAPS gstpad.c:2737:gst_pad_get_current_caps:<kmssink0:sink> get current pad caps video/x-raw, format=(string)NV12, width=(int)1920, height=(int)1080, interlace-mode=(string)progressive, multiview-mode=(string)mono, multiview-flags=(GstVideoMultiviewFlagsSet)0:ffffffff:/right-view-first/left-flipped/left-flopped/right-flipped/right-flopped/half-aspect/mixed-mono, pixel-aspect-ratio=(fraction)1/1, framerate=(fraction)60/1
0:00:02.103375334 2032 0xb59272a8 DEBUG GST_CAPS gstpad.c:2737:gst_pad_get_current_caps:<filesrc0:src> get current pad caps (NULL)
0:00:02.103414042 2032 0xb59272a8 DEBUG GST_CAPS gstpad.c:2737:gst_pad_get_current_caps:<decodebin3-0:sink> get current pad caps (NULL)
Pipeline is PREROLLED ...
Setting pipeline to PLAYING ...
0:00:02.104361667 2032 0x237d280 DEBUG GST_ELEMENT_PADS gstelement.c:2088:gst_element_query: send query on element pipeline0
0:00:02.104437209 2032 0x237d280 DEBUG GST_ELEMENT_PADS gstelement.c:2088:gst_element_query: send query on element kmssink0
0:00:02.104631001 2032 0x237d280 DEBUG GST_PADS gstpad.c:4300:gst_pad_peer_query:<kmssink0:sink> peer query 0x249afb0 (latency)
0:00:02.104676417 2032 0x237d280 DEBUG GST_PADS gstpad.c:4173:gst_pad_query:<decodebin3-0:video_0> doing query 0x249afb0 (latency)
0:00:02.104736001 2032 0x237d280 DEBUG GST_PADS gstpad.c:4300:gst_pad_peer_query:<video_0:proxypad4> peer query 0x249b000 (latency)
0:00:02.104770334 2032 0x237d280 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<video_0:proxypad4> data is passed
0:00:02.104807126 2032 0x237d280 DEBUG GST_PADS gstpad.c:4173:gst_pad_query:<v4l2slh264dec0:src> doing query 0x249b000 (latency)
0:00:02.104845251 2032 0x237d280 DEBUG GST_PADS gstpad.c:4300:gst_pad_peer_query:<v4l2slh264dec0:sink> peer query 0x249b000 (latency)
0:00:02.104877959 2032 0x237d280 DEBUG GST_PADS gstpad.c:4173:gst_pad_query:<multiqueue0:src_0> doing query 0x249b000 (latency)
0:00:02.104904417 2032 0x237d280 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<multiqueue0:src_0> data is passed
0:00:02.104958251 2032 0x237d280 DEBUG GST_PADS gstpad.c:4300:gst_pad_peer_query:<multiqueue0:sink_0> peer query 0x249b030 (latency)
0:00:02.104992459 2032 0x237d280 DEBUG GST_PADS gstpad.c:4173:gst_pad_query:<parsebin0:src_0> doing query 0x249b030 (latency)
0:00:02.105019417 2032 0x237d280 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<parsebin0:src_0> data is passed
0:00:02.105064626 2032 0x237d280 DEBUG GST_PADS gstpad.c:4300:gst_pad_peer_query:<src_0:proxypad3> peer query 0x249b060 (latency)
0:00:02.105092917 2032 0x237d280 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<src_0:proxypad3> data is passed
0:00:02.105126292 2032 0x237d280 DEBUG GST_PADS gstpad.c:4173:gst_pad_query:<capsfilter0:src> doing query 0x249b060 (latency)
0:00:02.105160709 2032 0x237d280 DEBUG GST_PADS gstpad.c:4300:gst_pad_peer_query:<capsfilter0:sink> peer query 0x249b060 (latency)
0:00:02.105193376 2032 0x237d280 DEBUG GST_PADS gstpad.c:4173:gst_pad_query:<h264parse0:src> doing query 0x249b060 (latency)
0:00:02.105227751 2032 0x237d280 DEBUG GST_PADS gstpad.c:4300:gst_pad_peer_query:<h264parse0:sink> peer query 0x249b060 (latency)
0:00:02.105259084 2032 0x237d280 DEBUG GST_PADS gstpad.c:4173:gst_pad_query:<qtdemux0:video_0> doing query 0x249b060 (latency)
0:00:02.105288542 2032 0x237d280 DEBUG GST_PADS gstpad.c:2968:gst_pad_iterate_internal_links_default:<qtdemux0:video_0> Making iterator
0:00:02.105349626 2032 0x237d280 DEBUG GST_PADS gstpad.c:4300:gst_pad_peer_query:<qtdemux0:sink> peer query 0x249b090 (latency)
0:00:02.105384167 2032 0x237d280 DEBUG GST_PADS gstpad.c:4173:gst_pad_query:<typefind:src> doing query 0x249b090 (latency)
0:00:02.105434542 2032 0x237d280 DEBUG GST_PADS gstpad.c:2968:gst_pad_iterate_internal_links_default:<typefind:src> Making iterator
0:00:02.105478126 2032 0x237d280 DEBUG GST_PADS gstpad.c:4300:gst_pad_peer_query:<typefind:sink> peer query 0x249b0c0 (latency)
0:00:02.105513126 2032 0x237d280 DEBUG GST_PADS gstpad.c:4173:gst_pad_query:<sink:proxypad1> doing query 0x249b0c0 (latency)
0:00:02.105559001 2032 0x237d280 DEBUG GST_PADS gstpad.c:4300:gst_pad_peer_query:<parsebin0:sink> peer query 0x249b0f0 (latency)
0:00:02.105743751 2032 0x237d280 DEBUG GST_PADS gstpad.c:4173:gst_pad_query:<sink:proxypad0> doing query 0x249b0f0 (latency)
0:00:02.105800751 2032 0x237d280 DEBUG GST_PADS gstpad.c:4300:gst_pad_peer_query:<decodebin3-0:sink> peer query 0x249b120 (latency)
0:00:02.105835459 2032 0x237d280 DEBUG GST_PADS gstpad.c:4173:gst_pad_query:<filesrc0:src> doing query 0x249b120 (latency)
0:00:02.105885876 2032 0x237d280 DEBUG GST_PADS gstpad.c:4196:gst_pad_query:<filesrc0:src> sent query 0x249b120 (latency), result 1
0:00:02.105940001 2032 0x237d280 DEBUG GST_PADS gstpad.c:3514:gst_pad_query_default:<sink:proxypad0> not forwarding 0x249b0f0 (latency) query
0:00:02.105977292 2032 0x237d280 DEBUG GST_PADS gstpad.c:4196:gst_pad_query:<sink:proxypad0> sent query 0x249b0f0 (latency), result 1
0:00:02.106134917 2032 0x237d280 DEBUG GST_PADS gstpad.c:3514:gst_pad_query_default:<sink:proxypad1> not forwarding 0x249b0c0 (latency) query
0:00:02.106182584 2032 0x237d280 DEBUG GST_PADS gstpad.c:4196:gst_pad_query:<sink:proxypad1> sent query 0x249b0c0 (latency), result 1
0:00:02.106226542 2032 0x237d280 DEBUG GST_PADS gstpad.c:3514:gst_pad_query_default:<typefind:src> not forwarding 0x249b090 (latency) query
0:00:02.106259792 2032 0x237d280 DEBUG GST_PADS gstpad.c:4196:gst_pad_query:<typefind:src> sent query 0x249b090 (latency), result 1
0:00:02.106303459 2032 0x237d280 DEBUG GST_PADS gstpad.c:3514:gst_pad_query_default:<qtdemux0:video_0> not forwarding 0x249b060 (latency) query
0:00:02.106340834 2032 0x237d280 DEBUG GST_PADS gstpad.c:4196:gst_pad_query:<qtdemux0:video_0> sent query 0x249b060 (latency), result 1
0:00:02.106386251 2032 0x237d280 DEBUG GST_PADS gstpad.c:4196:gst_pad_query:<h264parse0:src> sent query 0x249b060 (latency), result 1
0:00:02.106422792 2032 0x237d280 DEBUG GST_PADS gstpad.c:4196:gst_pad_query:<capsfilter0:src> sent query 0x249b060 (latency), result 1
0:00:02.106470126 2032 0x237d280 DEBUG GST_PADS gstpad.c:3514:gst_pad_query_default:<parsebin0:src_0> not forwarding 0x249b030 (latency) query
0:00:02.106505792 2032 0x237d280 DEBUG GST_PADS gstpad.c:4196:gst_pad_query:<parsebin0:src_0> sent query 0x249b030 (latency), result 1
0:00:02.106547292 2032 0x237d280 DEBUG GST_PADS gstpad.c:3514:gst_pad_query_default:<multiqueue0:src_0> not forwarding 0x249b000 (latency) query
0:00:02.106581167 2032 0x237d280 DEBUG GST_PADS gstpad.c:4196:gst_pad_query:<multiqueue0:src_0> sent query 0x249b000 (latency), result 1
0:00:02.106631459 2032 0x237d280 DEBUG GST_PADS gstpad.c:4196:gst_pad_query:<v4l2slh264dec0:src> sent query 0x249b000 (latency), result 1
0:00:02.106680584 2032 0x237d280 DEBUG GST_PADS gstpad.c:3514:gst_pad_query_default:<decodebin3-0:video_0> not forwarding 0x249afb0 (latency) query
0:00:02.106717209 2032 0x237d280 DEBUG GST_PADS gstpad.c:4196:gst_pad_query:<decodebin3-0:video_0> sent query 0x249afb0 (latency), result 1
0:00:02.106800376 2032 0x237d280 DEBUG GST_ELEMENT_PADS gstelement.c:1982:gst_element_send_event: send latency event on element pipeline0
0:00:02.106851959 2032 0x237d280 DEBUG GST_ELEMENT_PADS gstelement.c:1982:gst_element_send_event: send latency event on element kmssink0
0:00:02.106911042 2032 0x237d280 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<video_0:proxypad4> data is passed
0:00:02.106944792 2032 0x237d280 DEBUG GST_PADS gstpad.c:3713:probe_hook_marshal:<video_0:proxypad4> probe returned OK
0:00:02.106981751 2032 0x237d280 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<multiqueue0:src_0> data is passed
0:00:02.107014709 2032 0x237d280 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<parsebin0:src_0> data is passed
0:00:02.107048501 2032 0x237d280 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<src_0:proxypad3> data is passed
0:00:02.107086126 2032 0x237d280 DEBUG GST_PADS gstpad.c:2968:gst_pad_iterate_internal_links_default:<h264parse0:src> Making iterator
0:00:02.107305751 2032 0x237d280 DEBUG GST_PADS gstpad.c:2968:gst_pad_iterate_internal_links_default:<qtdemux0:video_0> Making iterator
0:00:02.107394251 2032 0x237d280 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<filesrc0:src> sent event, ret ok
0:00:02.107437876 2032 0x237d280 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<sink:proxypad0> sent event, ret ok
0:00:02.107475001 2032 0x237d280 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<sink:proxypad1> sent event, ret ok
0:00:02.107640167 2032 0x237d280 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<typefind:src> sent event, ret ok
0:00:02.107695084 2032 0x237d280 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<qtdemux0:video_0> sent event, ret ok
0:00:02.107729417 2032 0x237d280 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<h264parse0:src> sent event, ret ok
0:00:02.107760667 2032 0x237d280 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<capsfilter0:src> sent event, ret ok
0:00:02.107904709 2032 0x237d280 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<parsebin0:src_0> sent event, ret ok
0:00:02.107944209 2032 0x237d280 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<multiqueue0:src_0> sent event, ret ok
0:00:02.107975959 2032 0x237d280 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<v4l2slh264dec0:src> sent event, ret ok
0:00:02.108011792 2032 0x237d280 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<decodebin3-0:video_0> sent event, ret ok
0:00:02.129449792 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<multiqueue0:src_0> data is passed
0:00:02.130317209 2032 0x237d280 DEBUG GST_PADS gstghostpad.c:783:gst_ghost_pad_get_target:<decodebin3-0:sink> get target parsebin0:sink
0:00:02.130773876 2032 0x237d280 DEBUG GST_PADS gstghostpad.c:783:gst_ghost_pad_get_target:<decodebin3-0:video_0> get target v4l2slh264dec0:src
0:00:02.131532251 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<video_0:proxypad4> data is passed
0:00:02.131678792 2032 0x237d280 DEBUG GST_CAPS gstpad.c:2737:gst_pad_get_current_caps:<v4l2slh264dec0:src> get current pad caps video/x-raw, format=(string)NV12, width=(int)1920, height=(int)1080, interlace-mode=(string)progressive, multiview-mode=(string)mono, multiview-flags=(GstVideoMultiviewFlagsSet)0:ffffffff:/right-view-first/left-flipped/left-flopped/right-flipped/right-flopped/half-aspect/mixed-mono, pixel-aspect-ratio=(fraction)1/1, framerate=(fraction)60/1
0:00:02.131801751 2032 0x237d280 DEBUG GST_CAPS gstpad.c:2737:gst_pad_get_current_caps:<video_0:proxypad4> get current pad caps video/x-raw, format=(string)NV12, width=(int)1920, height=(int)1080, interlace-mode=(string)progressive, multiview-mode=(string)mono, multiview-flags=(GstVideoMultiviewFlagsSet)0:ffffffff:/right-view-first/left-flipped/left-flopped/right-flipped/right-flopped/half-aspect/mixed-mono, pixel-aspect-ratio=(fraction)1/1, framerate=(fraction)60/1
0:00:02.131910959 2032 0xb59272a8 WARN kmsallocator gstkmsallocator.c:553:gst_kms_allocator_dmabuf_import:<KMSMemory::allocator> Failed to close GEM handle: Invalid argument 22
0:00:02.132423292 2032 0x237d280 DEBUG GST_PADS gstghostpad.c:783:gst_ghost_pad_get_target:<parsebin0:sink> get target typefind:sink
0:00:02.132669001 2032 0x237d280 DEBUG GST_PADS gstghostpad.c:783:gst_ghost_pad_get_target:<parsebin0:src_0> get target capsfilter0:src
0:00:02.133288917 2032 0x237d280 DEBUG GST_CAPS gstpad.c:2737:gst_pad_get_current_caps:<capsfilter0:src> get current pad caps video/x-h264, stream-format=(string)avc, alignment=(string)au, level=(string)4.2, profile=(string)high, codec_data=(buffer)0164002affe1001b6764002aacc8501e0089f97011000003000100000300780f18319601000668e93864b22c, width=(int)1920, height=(int)1080, framerate=(fraction)60/1, pixel-aspect-ratio=(fraction)1/1, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8, parsed=(boolean)true
0:00:02.133416917 2032 0x237d280 DEBUG GST_CAPS gstpad.c:2737:gst_pad_get_current_caps:<src_0:proxypad3> get current pad caps video/x-h264, stream-format=(string)avc, alignment=(string)au, level=(string)4.2, profile=(string)high, codec_data=(buffer)0164002affe1001b6764002aacc8501e0089f97011000003000100000300780f18319601000668e93864b22c, width=(int)1920, height=(int)1080, framerate=(fraction)60/1, pixel-aspect-ratio=(fraction)1/1, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8, parsed=(boolean)true
0:00:02.134277751 2032 0x237d280 DEBUG GST_CAPS gstpad.c:2737:gst_pad_get_current_caps:<h264parse0:src> get current pad caps video/x-h264, stream-format=(string)avc, alignment=(string)au, level=(string)4.2, profile=(string)high, codec_data=(buffer)0164002affe1001b6764002aacc8501e0089f97011000003000100000300780f18319601000668e93864b22c, width=(int)1920, height=(int)1080, framerate=(fraction)60/1, pixel-aspect-ratio=(fraction)1/1, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8, parsed=(boolean)true
0:00:02.134422501 2032 0x237d280 DEBUG GST_CAPS gstpad.c:2737:gst_pad_get_current_caps:<capsfilter0:sink> get current pad caps video/x-h264, stream-format=(string)avc, alignment=(string)au, level=(string)4.2, profile=(string)high, codec_data=(buffer)0164002affe1001b6764002aacc8501e0089f97011000003000100000300780f18319601000668e93864b22c, width=(int)1920, height=(int)1080, framerate=(fraction)60/1, pixel-aspect-ratio=(fraction)1/1, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8, parsed=(boolean)true
0:00:02.135025917 2032 0x237d280 DEBUG GST_CAPS gstpad.c:2737:gst_pad_get_current_caps:<qtdemux0:video_0> get current pad caps video/x-h264, stream-format=(string)avc, alignment=(string)au, level=(string)4.2, profile=(string)high, codec_data=(buffer)0164002affe1001b6764002aacc8501e0089f97011000003000100000300780f18319601000668e93864b22cfdf8f800, width=(int)1920, height=(int)1080, framerate=(fraction)60/1, pixel-aspect-ratio=(fraction)1/1
0:00:02.135249042 2032 0x237d280 DEBUG GST_CAPS gstpad.c:2737:gst_pad_get_current_caps:<h264parse0:sink> get current pad caps video/x-h264, stream-format=(string)avc, alignment=(string)au, level=(string)4.2, profile=(string)high, codec_data=(buffer)0164002affe1001b6764002aacc8501e0089f97011000003000100000300780f18319601000668e93864b22cfdf8f800, width=(int)1920, height=(int)1080, framerate=(fraction)60/1, pixel-aspect-ratio=(fraction)1/1
0:00:02.135853126 2032 0x237d280 DEBUG GST_CAPS gstpad.c:2737:gst_pad_get_current_caps:<sink:proxypad1> get current pad caps (NULL)
0:00:02.135896084 2032 0x237d280 DEBUG GST_CAPS gstpad.c:2737:gst_pad_get_current_caps:<typefind:sink> get current pad caps (NULL)
0:00:02.135956334 2032 0x237d280 DEBUG GST_CAPS gstpad.c:2737:gst_pad_get_current_caps:<typefind:src> get current pad caps (NULL)
0:00:02.135986042 2032 0x237d280 DEBUG GST_CAPS gstpad.c:2737:gst_pad_get_current_caps:<qtdemux0:sink> get current pad caps (NULL)
0:00:02.136067334 2032 0x237d280 DEBUG GST_CAPS gstpad.c:2737:gst_pad_get_current_caps:<sink:proxypad0> get current pad caps (NULL)
0:00:02.136102459 2032 0x237d280 DEBUG GST_CAPS gstpad.c:2737:gst_pad_get_current_caps:<parsebin0:sink> get current pad caps (NULL)
0:00:02.136262626 2032 0x237d280 DEBUG GST_CAPS gstpad.c:2737:gst_pad_get_current_caps:<parsebin0:src_0> get current pad caps video/x-h264, stream-format=(string)avc, alignment=(string)au, level=(string)4.2, profile=(string)high, codec_data=(buffer)0164002affe1001b6764002aacc8501e0089f97011000003000100000300780f18319601000668e93864b22c, width=(int)1920, height=(int)1080, framerate=(fraction)60/1, pixel-aspect-ratio=(fraction)1/1, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8, parsed=(boolean)true
0:00:02.136379792 2032 0x237d280 DEBUG GST_CAPS gstpad.c:2737:gst_pad_get_current_caps:<multiqueue0:sink_0> get current pad caps video/x-h264, stream-format=(string)avc, alignment=(string)au, level=(string)4.2, profile=(string)high, codec_data=(buffer)0164002affe1001b6764002aacc8501e0089f97011000003000100000300780f18319601000668e93864b22c, width=(int)1920, height=(int)1080, framerate=(fraction)60/1, pixel-aspect-ratio=(fraction)1/1, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8, parsed=(boolean)true
0:00:02.137357459 2032 0x237d280 DEBUG GST_CAPS gstpad.c:2737:gst_pad_get_current_caps:<multiqueue0:src_0> get current pad caps video/x-h264, stream-format=(string)avc, alignment=(string)au, level=(string)4.2, profile=(string)high, codec_data=(buffer)0164002affe1001b6764002aacc8501e0089f97011000003000100000300780f18319601000668e93864b22c, width=(int)1920, height=(int)1080, framerate=(fraction)60/1, pixel-aspect-ratio=(fraction)1/1, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8, parsed=(boolean)true
0:00:02.137574126 2032 0x237d280 DEBUG GST_CAPS gstpad.c:2737:gst_pad_get_current_caps:<v4l2slh264dec0:sink> get current pad caps video/x-h264, stream-format=(string)avc, alignment=(string)au, level=(string)4.2, profile=(string)high, codec_data=(buffer)0164002affe1001b6764002aacc8501e0089f97011000003000100000300780f18319601000668e93864b22c, width=(int)1920, height=(int)1080, framerate=(fraction)60/1, pixel-aspect-ratio=(fraction)1/1, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8, parsed=(boolean)true
0:00:02.137927042 2032 0x237d280 DEBUG GST_CAPS gstpad.c:2737:gst_pad_get_current_caps:<decodebin3-0:video_0> get current pad caps video/x-raw, format=(string)NV12, width=(int)1920, height=(int)1080, interlace-mode=(string)progressive, multiview-mode=(string)mono, multiview-flags=(GstVideoMultiviewFlagsSet)0:ffffffff:/right-view-first/left-flipped/left-flopped/right-flipped/right-flopped/half-aspect/mixed-mono, pixel-aspect-ratio=(fraction)1/1, framerate=(fraction)60/1
0:00:02.138024709 2032 0x237d280 DEBUG GST_CAPS gstpad.c:2737:gst_pad_get_current_caps:<kmssink0:sink> get current pad caps video/x-raw, format=(string)NV12, width=(int)1920, height=(int)1080, interlace-mode=(string)progressive, multiview-mode=(string)mono, multiview-flags=(GstVideoMultiviewFlagsSet)0:ffffffff:/right-view-first/left-flipped/left-flopped/right-flipped/right-flopped/half-aspect/mixed-mono, pixel-aspect-ratio=(fraction)1/1, framerate=(fraction)60/1
0:00:02.138397667 2032 0x237d280 DEBUG GST_CAPS gstpad.c:2737:gst_pad_get_current_caps:<filesrc0:src> get current pad caps (NULL)
0:00:02.138438084 2032 0x237d280 DEBUG GST_CAPS gstpad.c:2737:gst_pad_get_current_caps:<decodebin3-0:sink> get current pad caps (NULL)
0:00:02.162516376 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<video_0:proxypad4> data is passed
Redistribute latency...
0:00:02.162593376 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:3713:probe_hook_marshal:<video_0:proxypad4> probe returned OK
0:00:02.162630667 2032 0x237d280 DEBUG GST_ELEMENT_PADS gstelement.c:2088:gst_element_query: send query on element pipeline0
0:00:02.162669584 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<multiqueue0:src_0> data is passed
0:00:02.162692834 2032 0x237d280 DEBUG GST_ELEMENT_PADS gstelement.c:2088:gst_element_query: send query on element kmssink0
0:00:02.162708167 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<parsebin0:src_0> data is passed
0:00:02.162745834 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<src_0:proxypad3> data is passed
0:00:02.162745876 2032 0x237d280 DEBUG GST_PADS gstpad.c:4300:gst_pad_peer_query:<kmssink0:sink> peer query 0x249b180 (latency)
0:00:02.162822459 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:2968:gst_pad_iterate_internal_links_default:<h264parse0:src> Making iterator
0:00:02.162834542 2032 0x237d280 DEBUG GST_PADS gstpad.c:4173:gst_pad_query:<decodebin3-0:video_0> doing query 0x249b180 (latency)
0:00:02.162865709 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:2968:gst_pad_iterate_internal_links_default:<qtdemux0:video_0> Making iterator
0:00:02.162888417 2032 0x237d280 DEBUG GST_PADS gstpad.c:4300:gst_pad_peer_query:<video_0:proxypad4> peer query 0x249b1b0 (latency)
0:00:02.162916584 2032 0x237d280 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<video_0:proxypad4> data is passed
0:00:02.162930709 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<filesrc0:src> sent event, ret ok
0:00:02.162951126 2032 0x237d280 DEBUG GST_PADS gstpad.c:4173:gst_pad_query:<v4l2slh264dec0:src> doing query 0x249b1b0 (latency)
0:00:02.162968876 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<sink:proxypad0> sent event, ret ok
0:00:02.162989917 2032 0x237d280 DEBUG GST_PADS gstpad.c:4300:gst_pad_peer_query:<v4l2slh264dec0:sink> peer query 0x249b1b0 (latency)
0:00:02.163005376 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<sink:proxypad1> sent event, ret ok
0:00:02.163025001 2032 0x237d280 DEBUG GST_PADS gstpad.c:4173:gst_pad_query:<multiqueue0:src_0> doing query 0x249b1b0 (latency)
0:00:02.163037584 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<typefind:src> sent event, ret ok
0:00:02.163053001 2032 0x237d280 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<multiqueue0:src_0> data is passed
0:00:02.163072084 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<qtdemux0:video_0> sent event, ret ok
0:00:02.163105626 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<h264parse0:src> sent event, ret ok
0:00:02.163106626 2032 0x237d280 DEBUG GST_PADS gstpad.c:4300:gst_pad_peer_query:<multiqueue0:sink_0> peer query 0x249b200 (latency)
0:00:02.163152751 2032 0x237d280 DEBUG GST_PADS gstpad.c:4173:gst_pad_query:<parsebin0:src_0> doing query 0x249b200 (latency)
0:00:02.163166834 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<capsfilter0:src> sent event, ret ok
0:00:02.163181959 2032 0x237d280 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<parsebin0:src_0> data is passed
0:00:02.163204792 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<parsebin0:src_0> sent event, ret ok
0:00:02.163230417 2032 0x237d280 DEBUG GST_PADS gstpad.c:4300:gst_pad_peer_query:<src_0:proxypad3> peer query 0x249b230 (latency)
0:00:02.163237584 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<multiqueue0:src_0> sent event, ret ok
0:00:02.163257792 2032 0x237d280 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<src_0:proxypad3> data is passed
0:00:02.163267959 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<v4l2slh264dec0:src> sent event, ret ok
0:00:02.163291667 2032 0x237d280 DEBUG GST_PADS gstpad.c:4173:gst_pad_query:<capsfilter0:src> doing query 0x249b230 (latency)
0:00:02.163311167 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<decodebin3-0:video_0> sent event, ret ok
0:00:02.163328042 2032 0x237d280 DEBUG GST_PADS gstpad.c:4300:gst_pad_peer_query:<capsfilter0:sink> peer query 0x249b230 (latency)
0:00:02.163361917 2032 0x237d280 DEBUG GST_PADS gstpad.c:4173:gst_pad_query:<h264parse0:src> doing query 0x249b230 (latency)
0:00:02.163401209 2032 0x237d280 DEBUG GST_PADS gstpad.c:4300:gst_pad_peer_query:<h264parse0:sink> peer query 0x249b230 (latency)
0:00:02.163437834 2032 0x237d280 DEBUG GST_PADS gstpad.c:4173:gst_pad_query:<qtdemux0:video_0> doing query 0x249b230 (latency)
0:00:02.163495709 2032 0x237d280 DEBUG GST_PADS gstpad.c:2968:gst_pad_iterate_internal_links_default:<qtdemux0:video_0> Making iterator
0:00:02.163543084 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<multiqueue0:src_0> data is passed
0:00:02.163548584 2032 0x237d280 DEBUG GST_PADS gstpad.c:4300:gst_pad_peer_query:<qtdemux0:sink> peer query 0x249af80 (latency)
0:00:02.163618001 2032 0x237d280 DEBUG GST_PADS gstpad.c:4173:gst_pad_query:<typefind:src> doing query 0x249af80 (latency)
0:00:02.163652167 2032 0x237d280 DEBUG GST_PADS gstpad.c:2968:gst_pad_iterate_internal_links_default:<typefind:src> Making iterator
0:00:02.163906459 2032 0x237d280 DEBUG GST_PADS gstpad.c:4300:gst_pad_peer_query:<typefind:sink> peer query 0x249afb0 (latency)
0:00:02.163961917 2032 0x237d280 DEBUG GST_PADS gstpad.c:4173:gst_pad_query:<sink:proxypad1> doing query 0x249afb0 (latency)
0:00:02.164027084 2032 0x237d280 DEBUG GST_PADS gstpad.c:4300:gst_pad_peer_query:<parsebin0:sink> peer query 0x249b000 (latency)
0:00:02.164161167 2032 0x237d280 DEBUG GST_PADS gstpad.c:4173:gst_pad_query:<sink:proxypad0> doing query 0x249b000 (latency)
0:00:02.164301709 2032 0x237d280 DEBUG GST_PADS gstpad.c:4300:gst_pad_peer_query:<decodebin3-0:sink> peer query 0x249b030 (latency)
0:00:02.164355626 2032 0x237d280 DEBUG GST_PADS gstpad.c:4173:gst_pad_query:<filesrc0:src> doing query 0x249b030 (latency)
0:00:02.164420751 2032 0x237d280 DEBUG GST_PADS gstpad.c:4196:gst_pad_query:<filesrc0:src> sent query 0x249b030 (latency), result 1
0:00:02.164480376 2032 0x237d280 DEBUG GST_PADS gstpad.c:3514:gst_pad_query_default:<sink:proxypad0> not forwarding 0x249b000 (latency) query
0:00:02.164518084 2032 0x237d280 DEBUG GST_PADS gstpad.c:4196:gst_pad_query:<sink:proxypad0> sent query 0x249b000 (latency), result 1
0:00:02.164566084 2032 0x237d280 DEBUG GST_PADS gstpad.c:3514:gst_pad_query_default:<sink:proxypad1> not forwarding 0x249afb0 (latency) query
0:00:02.164687792 2032 0x237d280 DEBUG GST_PADS gstpad.c:4196:gst_pad_query:<sink:proxypad1> sent query 0x249afb0 (latency), result 1
0:00:02.164816876 2032 0x237d280 DEBUG GST_PADS gstpad.c:3514:gst_pad_query_default:<typefind:src> not forwarding 0x249af80 (latency) query
0:00:02.165204917 2032 0x237d280 DEBUG GST_PADS gstpad.c:4196:gst_pad_query:<typefind:src> sent query 0x249af80 (latency), result 1
0:00:02.165262376 2032 0x237d280 DEBUG GST_PADS gstpad.c:3514:gst_pad_query_default:<qtdemux0:video_0> not forwarding 0x249b230 (latency) query
0:00:02.165303209 2032 0x237d280 DEBUG GST_PADS gstpad.c:4196:gst_pad_query:<qtdemux0:video_0> sent query 0x249b230 (latency), result 1
0:00:02.165358334 2032 0x237d280 DEBUG GST_PADS gstpad.c:4196:gst_pad_query:<h264parse0:src> sent query 0x249b230 (latency), result 1
0:00:02.165424042 2032 0x237d280 DEBUG GST_PADS gstpad.c:4196:gst_pad_query:<capsfilter0:src> sent query 0x249b230 (latency), result 1
0:00:02.165559167 2032 0xb59272a8 WARN videodecoder gstvideodecoder.c:3670:gst_video_decoder_clip_and_push_buf:<v4l2slh264dec0> Dropping frame due to QoS. start:0:00:00.066666666 deadline:0:00:00.033333333 earliest_time:0:00:00.054955831
0:00:02.165746626 2032 0x237d280 DEBUG GST_PADS gstpad.c:3514:gst_pad_query_default:<parsebin0:src_0> not forwarding 0x249b200 (latency) query
0:00:02.165809917 2032 0x237d280 DEBUG GST_PADS gstpad.c:4196:gst_pad_query:<parsebin0:src_0> sent query 0x249b200 (latency), result 1
0:00:02.165875209 2032 0x237d280 DEBUG GST_PADS gstpad.c:3514:gst_pad_query_default:<multiqueue0:src_0> not forwarding 0x249b1b0 (latency) query
0:00:02.165918167 2032 0x237d280 DEBUG GST_PADS gstpad.c:4196:gst_pad_query:<multiqueue0:src_0> sent query 0x249b1b0 (latency), result 1
0:00:02.165921084 2032 0xb59272a8 WARN videodecoder gstvideodecoder.c:3670:gst_video_decoder_clip_and_push_buf:<v4l2slh264dec0> Dropping frame due to QoS. start:0:00:00.083333333 deadline:0:00:00.050000000 earliest_time:0:00:00.054955831
0:00:02.166016084 2032 0x237d280 DEBUG GST_PADS gstpad.c:4196:gst_pad_query:<v4l2slh264dec0:src> sent query 0x249b1b0 (latency), result 1
0:00:02.166082334 2032 0x237d280 DEBUG GST_PADS gstpad.c:3514:gst_pad_query_default:<decodebin3-0:video_0> not forwarding 0x249b180 (latency) query
0:00:02.166123959 2032 0x237d280 DEBUG GST_PADS gstpad.c:4196:gst_pad_query:<decodebin3-0:video_0> sent query 0x249b180 (latency), result 1
0:00:02.166237709 2032 0x237d280 DEBUG GST_ELEMENT_PADS gstelement.c:1982:gst_element_send_event: send latency event on element pipeline0
0:00:02.166306417 2032 0x237d280 DEBUG GST_ELEMENT_PADS gstelement.c:1982:gst_element_send_event: send latency event on element kmssink0
0:00:02.166379292 2032 0x237d280 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<video_0:proxypad4> data is passed
0:00:02.166423751 2032 0x237d280 DEBUG GST_PADS gstpad.c:3713:probe_hook_marshal:<video_0:proxypad4> probe returned OK
0:00:02.166469626 2032 0x237d280 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<multiqueue0:src_0> data is passed
0:00:02.166508917 2032 0x237d280 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<parsebin0:src_0> data is passed
0:00:02.166553626 2032 0x237d280 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<src_0:proxypad3> data is passed
0:00:02.166771292 2032 0x249bf70 DEBUG GST_CAPS gstpad.c:2709:gst_pad_has_current_caps:<h264parse0:src> check current pad caps video/x-h264, stream-format=(string)avc, alignment=(string)au, level=(string)4.2, profile=(string)high, codec_data=(buffer)0164002affe1001b6764002aacc8501e0089f97011000003000100000300780f18319601000668e93864b22c, width=(int)1920, height=(int)1080, framerate=(fraction)60/1, pixel-aspect-ratio=(fraction)1/1, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8, parsed=(boolean)true
0:00:02.166904626 2032 0x237d280 DEBUG GST_PADS gstpad.c:2968:gst_pad_iterate_internal_links_default:<h264parse0:src> Making iterator
0:00:02.166965251 2032 0x237d280 DEBUG GST_PADS gstpad.c:2968:gst_pad_iterate_internal_links_default:<qtdemux0:video_0> Making iterator
0:00:02.167006917 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<multiqueue0:src_0> data is passed
0:00:02.167016251 2032 0x249bf70 DEBUG GST_CAPS gstpad.c:2709:gst_pad_has_current_caps:<h264parse0:src> check current pad caps video/x-h264, stream-format=(string)avc, alignment=(string)au, level=(string)4.2, profile=(string)high, codec_data=(buffer)0164002affe1001b6764002aacc8501e0089f97011000003000100000300780f18319601000668e93864b22c, width=(int)1920, height=(int)1080, framerate=(fraction)60/1, pixel-aspect-ratio=(fraction)1/1, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8, parsed=(boolean)true
0:00:02.167116501 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<src_0:proxypad3> data is passed
0:00:02.167170209 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<parsebin0:src_0> data is passed
0:00:02.167038792 2032 0x237d280 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<filesrc0:src> sent event, ret ok
0:00:02.167382501 2032 0x237d280 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<sink:proxypad0> sent event, ret ok
0:00:02.167430751 2032 0x237d280 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<sink:proxypad1> sent event, ret ok
0:00:02.167466417 2032 0x237d280 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<typefind:src> sent event, ret ok
0:00:02.167503542 2032 0x237d280 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<qtdemux0:video_0> sent event, ret ok
0:00:02.167540251 2032 0x237d280 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<h264parse0:src> sent event, ret ok
0:00:02.167573709 2032 0x237d280 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<capsfilter0:src> sent event, ret ok
0:00:02.167619542 2032 0x237d280 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<parsebin0:src_0> sent event, ret ok
0:00:02.167657334 2032 0x237d280 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<multiqueue0:src_0> sent event, ret ok
0:00:02.167695667 2032 0x237d280 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<v4l2slh264dec0:src> sent event, ret ok
0:00:02.167741834 2032 0x237d280 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<decodebin3-0:video_0> sent event, ret ok
New clock: GstSystemClock
0:00:02.177046459 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<video_0:proxypad4> data is passed
0:00:02.177457209 2032 0xb59272a8 WARN kmsallocator gstkmsallocator.c:553:gst_kms_allocator_dmabuf_import:<KMSMemory::allocator> Failed to close GEM handle: Invalid argument 22
0:00:02.195671667 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<video_0:proxypad4> data is passed
0:00:02.195739501 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:3713:probe_hook_marshal:<video_0:proxypad4> probe returned OK
0:00:02.195793376 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<multiqueue0:src_0> data is passed
0:00:02.195835001 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<parsebin0:src_0> data is passed
0:00:02.195872626 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<src_0:proxypad3> data is passed
0:00:02.195921834 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:2968:gst_pad_iterate_internal_links_default:<h264parse0:src> Making iterator
0:00:02.195960834 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:2968:gst_pad_iterate_internal_links_default:<qtdemux0:video_0> Making iterator
0:00:02.196034251 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<filesrc0:src> sent event, ret ok
0:00:02.196076626 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<sink:proxypad0> sent event, ret ok
0:00:02.196118292 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<sink:proxypad1> sent event, ret ok
0:00:02.196151251 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<typefind:src> sent event, ret ok
0:00:02.196185334 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<qtdemux0:video_0> sent event, ret ok
0:00:02.196219001 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<h264parse0:src> sent event, ret ok
0:00:02.196253167 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<capsfilter0:src> sent event, ret ok
0:00:02.196290167 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<parsebin0:src_0> sent event, ret ok
0:00:02.196321834 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<multiqueue0:src_0> sent event, ret ok
0:00:02.196354001 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<v4l2slh264dec0:src> sent event, ret ok
0:00:02.196396084 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<decodebin3-0:video_0> sent event, ret ok
0:00:02.196537751 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<multiqueue0:src_0> data is passed
0:00:02.197567292 2032 0x249bf70 DEBUG GST_CAPS gstpad.c:2709:gst_pad_has_current_caps:<h264parse0:src> check current pad caps video/x-h264, stream-format=(string)avc, alignment=(string)au, level=(string)4.2, profile=(string)high, codec_data=(buffer)0164002affe1001b6764002aacc8501e0089f97011000003000100000300780f18319601000668e93864b22c, width=(int)1920, height=(int)1080, framerate=(fraction)60/1, pixel-aspect-ratio=(fraction)1/1, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8, parsed=(boolean)true
0:00:02.197832792 2032 0x249bf70 DEBUG GST_CAPS gstpad.c:2709:gst_pad_has_current_caps:<h264parse0:src> check current pad caps video/x-h264, stream-format=(string)avc, alignment=(string)au, level=(string)4.2, profile=(string)high, codec_data=(buffer)0164002affe1001b6764002aacc8501e0089f97011000003000100000300780f18319601000668e93864b22c, width=(int)1920, height=(int)1080, framerate=(fraction)60/1, pixel-aspect-ratio=(fraction)1/1, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8, parsed=(boolean)true
0:00:02.197935376 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<src_0:proxypad3> data is passed
0:00:02.197981376 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<parsebin0:src_0> data is passed
0:00:02.202073876 2032 0xb59272a8 WARN videodecoder gstvideodecoder.c:3670:gst_video_decoder_clip_and_push_buf:<v4l2slh264dec0> Dropping frame due to QoS. start:0:00:00.116666666 deadline:0:00:00.083333333 earliest_time:0:00:00.096034831
0:00:02.202564917 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:4105:check_sticky:<multiqueue0:src_0> pushing all sticky events
0:00:02.202633459 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:4034:push_sticky:<multiqueue0:src_0> event stream-start was already received
0:00:02.202668334 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:4034:push_sticky:<multiqueue0:src_0> event caps was already received
0:00:02.202701501 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:4034:push_sticky:<multiqueue0:src_0> event segment was already received
0:00:02.202732792 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:4034:push_sticky:<multiqueue0:src_0> event stream-collection was already received
0:00:02.202767042 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<multiqueue0:src_0> data is passed
0:00:02.202803334 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:3713:probe_hook_marshal:<multiqueue0:src_0> probe returned OK
0:00:02.202948126 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<v4l2slh264dec0:sink> sent event, ret ok
0:00:02.203025417 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:4056:push_sticky:<multiqueue0:src_0> event tag marked received
0:00:02.203060709 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:4034:push_sticky:<multiqueue0:src_0> event tag was already received
0:00:02.203169834 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<multiqueue0:src_0> data is passed
0:00:02.203833292 2032 0x249bf70 DEBUG GST_CAPS gstpad.c:2709:gst_pad_has_current_caps:<h264parse0:src> check current pad caps video/x-h264, stream-format=(string)avc, alignment=(string)au, level=(string)4.2, profile=(string)high, codec_data=(buffer)0164002affe1001b6764002aacc8501e0089f97011000003000100000300780f18319601000668e93864b22c, width=(int)1920, height=(int)1080, framerate=(fraction)60/1, pixel-aspect-ratio=(fraction)1/1, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8, parsed=(boolean)true
0:00:02.204075459 2032 0x249bf70 DEBUG GST_CAPS gstpad.c:2709:gst_pad_has_current_caps:<h264parse0:src> check current pad caps video/x-h264, stream-format=(string)avc, alignment=(string)au, level=(string)4.2, profile=(string)high, codec_data=(buffer)0164002affe1001b6764002aacc8501e0089f97011000003000100000300780f18319601000668e93864b22c, width=(int)1920, height=(int)1080, framerate=(fraction)60/1, pixel-aspect-ratio=(fraction)1/1, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8, parsed=(boolean)true
0:00:02.204201792 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<src_0:proxypad3> data is passed
0:00:02.204255959 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<parsebin0:src_0> data is passed
0:00:02.211284209 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:4105:check_sticky:<multiqueue0:src_0> pushing all sticky events
0:00:02.211413167 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:4034:push_sticky:<multiqueue0:src_0> event stream-start was already received
0:00:02.211454167 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:4034:push_sticky:<multiqueue0:src_0> event caps was already received
0:00:02.211489209 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:4034:push_sticky:<multiqueue0:src_0> event segment was already received
0:00:02.211520792 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:4034:push_sticky:<multiqueue0:src_0> event stream-collection was already received
0:00:02.211577126 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<multiqueue0:src_0> data is passed
0:00:02.211630126 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:3713:probe_hook_marshal:<multiqueue0:src_0> probe returned OK
0:00:02.211786334 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<v4l2slh264dec0:sink> sent event, ret ok
0:00:02.211883667 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:4056:push_sticky:<multiqueue0:src_0> event tag marked received
0:00:02.211927501 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:4034:push_sticky:<multiqueue0:src_0> event tag was already received
0:00:02.212149751 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<multiqueue0:src_0> data is passed
0:00:02.212846251 2032 0x249bf70 DEBUG GST_CAPS gstpad.c:2709:gst_pad_has_current_caps:<h264parse0:src> check current pad caps video/x-h264, stream-format=(string)avc, alignment=(string)au, level=(string)4.2, profile=(string)high, codec_data=(buffer)0164002affe1001b6764002aacc8501e0089f97011000003000100000300780f18319601000668e93864b22c, width=(int)1920, height=(int)1080, framerate=(fraction)60/1, pixel-aspect-ratio=(fraction)1/1, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8, parsed=(boolean)true
0:00:02.213080376 2032 0x249bf70 DEBUG GST_CAPS gstpad.c:2709:gst_pad_has_current_caps:<h264parse0:src> check current pad caps video/x-h264, stream-format=(string)avc, alignment=(string)au, level=(string)4.2, profile=(string)high, codec_data=(buffer)0164002affe1001b6764002aacc8501e0089f97011000003000100000300780f18319601000668e93864b22c, width=(int)1920, height=(int)1080, framerate=(fraction)60/1, pixel-aspect-ratio=(fraction)1/1, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8, parsed=(boolean)true
0:00:02.213256792 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4105:check_sticky:<h264parse0:src> pushing all sticky events
0:00:02.213306292 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4034:push_sticky:<h264parse0:src> event stream-start was already received
0:00:02.213343251 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4034:push_sticky:<h264parse0:src> event caps was already received
0:00:02.213375959 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4034:push_sticky:<h264parse0:src> event segment was already received
0:00:02.213424709 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4105:check_sticky:<capsfilter0:src> pushing all sticky events
0:00:02.213458792 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4034:push_sticky:<capsfilter0:src> event stream-start was already received
0:00:02.213489834 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4034:push_sticky:<capsfilter0:src> event caps was already received
0:00:02.213523251 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4034:push_sticky:<capsfilter0:src> event segment was already received
0:00:02.213568542 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<src_0:proxypad3> data is passed
0:00:02.213752792 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3713:probe_hook_marshal:<src_0:proxypad3> probe returned OK
0:00:02.213828917 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4105:check_sticky:<parsebin0:src_0> pushing all sticky events
0:00:02.213868834 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4034:push_sticky:<parsebin0:src_0> event stream-start was already received
0:00:02.213901876 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4034:push_sticky:<parsebin0:src_0> event caps was already received
0:00:02.213936251 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4034:push_sticky:<parsebin0:src_0> event segment was already received
0:00:02.213968751 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4034:push_sticky:<parsebin0:src_0> event stream-collection was already received
0:00:02.213999376 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<parsebin0:src_0> data is passed
0:00:02.214031709 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3713:probe_hook_marshal:<parsebin0:src_0> probe returned OK
0:00:02.223878042 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<multiqueue0:src_0> data is passed
0:00:02.223884084 2032 0x249bf70 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<multiqueue0:sink_0> sent event, ret ok
0:00:02.224052042 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4056:push_sticky:<parsebin0:src_0> event tag marked received
0:00:02.224104209 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4034:push_sticky:<parsebin0:src_0> event tag was already received
0:00:02.224157376 2032 0x249bf70 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<src_0:proxypad3> sent event, ret ok
0:00:02.224210626 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4056:push_sticky:<capsfilter0:src> event tag marked received
0:00:02.224247042 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4034:push_sticky:<capsfilter0:src> event tag was already received
0:00:02.224281292 2032 0x249bf70 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<capsfilter0:sink> sent event, ret ok
0:00:02.224321459 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4056:push_sticky:<h264parse0:src> event tag marked received
0:00:02.224353209 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4034:push_sticky:<h264parse0:src> event tag was already received
0:00:02.224430501 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<src_0:proxypad3> data is passed
0:00:02.224474792 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<parsebin0:src_0> data is passed
0:00:02.225041417 2032 0x249bf70 DEBUG GST_CAPS gstpad.c:2709:gst_pad_has_current_caps:<h264parse0:src> check current pad caps video/x-h264, stream-format=(string)avc, alignment=(string)au, level=(string)4.2, profile=(string)high, codec_data=(buffer)0164002affe1001b6764002aacc8501e0089f97011000003000100000300780f18319601000668e93864b22c, width=(int)1920, height=(int)1080, framerate=(fraction)60/1, pixel-aspect-ratio=(fraction)1/1, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8, parsed=(boolean)true
0:00:02.225215084 2032 0x249bf70 DEBUG GST_CAPS gstpad.c:2709:gst_pad_has_current_caps:<h264parse0:src> check current pad caps video/x-h264, stream-format=(string)avc, alignment=(string)au, level=(string)4.2, profile=(string)high, codec_data=(buffer)0164002affe1001b6764002aacc8501e0089f97011000003000100000300780f18319601000668e93864b22c, width=(int)1920, height=(int)1080, framerate=(fraction)60/1, pixel-aspect-ratio=(fraction)1/1, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8, parsed=(boolean)true
0:00:02.225298917 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<src_0:proxypad3> data is passed
0:00:02.225334709 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<parsebin0:src_0> data is passed
0:00:02.237240626 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<video_0:proxypad4> data is passed
0:00:02.237619001 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<video_0:proxypad4> data is passed
0:00:02.237673251 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:3713:probe_hook_marshal:<video_0:proxypad4> probe returned OK
0:00:02.237785834 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<multiqueue0:src_0> data is passed
0:00:02.237848084 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<parsebin0:src_0> data is passed
0:00:02.237898834 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<src_0:proxypad3> data is passed
0:00:02.237979917 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:2968:gst_pad_iterate_internal_links_default:<h264parse0:src> Making iterator
0:00:02.238031376 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:2968:gst_pad_iterate_internal_links_default:<qtdemux0:video_0> Making iterator
0:00:02.238125209 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<filesrc0:src> sent event, ret ok
0:00:02.238178792 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<sink:proxypad0> sent event, ret ok
0:00:02.238218209 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<sink:proxypad1> sent event, ret ok
0:00:02.238252167 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<typefind:src> sent event, ret ok
0:00:02.238284251 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<qtdemux0:video_0> sent event, ret ok
0:00:02.238315709 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<h264parse0:src> sent event, ret ok
0:00:02.238344959 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<capsfilter0:src> sent event, ret ok
0:00:02.238381751 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<parsebin0:src_0> sent event, ret ok
0:00:02.238415501 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<multiqueue0:src_0> sent event, ret ok
0:00:02.238451084 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<v4l2slh264dec0:src> sent event, ret ok
0:00:02.238496376 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<decodebin3-0:video_0> sent event, ret ok
0:00:02.238732334 2032 0xb59272a8 WARN videodecoder gstvideodecoder.c:3670:gst_video_decoder_clip_and_push_buf:<v4l2slh264dec0> Dropping frame due to QoS. start:0:00:00.150000000 deadline:0:00:00.116666667 earliest_time:0:00:00.183041166
0:00:02.239014292 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<multiqueue0:src_0> data is passed
0:00:02.239530959 2032 0x249bf70 DEBUG GST_CAPS gstpad.c:2709:gst_pad_has_current_caps:<h264parse0:src> check current pad caps video/x-h264, stream-format=(string)avc, alignment=(string)au, level=(string)4.2, profile=(string)high, codec_data=(buffer)0164002affe1001b6764002aacc8501e0089f97011000003000100000300780f18319601000668e93864b22c, width=(int)1920, height=(int)1080, framerate=(fraction)60/1, pixel-aspect-ratio=(fraction)1/1, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8, parsed=(boolean)true
0:00:02.239738292 2032 0x249bf70 DEBUG GST_CAPS gstpad.c:2709:gst_pad_has_current_caps:<h264parse0:src> check current pad caps video/x-h264, stream-format=(string)avc, alignment=(string)au, level=(string)4.2, profile=(string)high, codec_data=(buffer)0164002affe1001b6764002aacc8501e0089f97011000003000100000300780f18319601000668e93864b22c, width=(int)1920, height=(int)1080, framerate=(fraction)60/1, pixel-aspect-ratio=(fraction)1/1, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8, parsed=(boolean)true
0:00:02.239842959 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<src_0:proxypad3> data is passed
0:00:02.239883501 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<parsebin0:src_0> data is passed
0:00:02.248438459 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:4105:check_sticky:<v4l2slh264dec0:src> pushing all sticky events
0:00:02.248547001 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:4034:push_sticky:<v4l2slh264dec0:src> event stream-start was already received
0:00:02.248583709 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:4034:push_sticky:<v4l2slh264dec0:src> event caps was already received
0:00:02.248616501 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:4034:push_sticky:<v4l2slh264dec0:src> event segment was already received
0:00:02.248647292 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:4034:push_sticky:<v4l2slh264dec0:src> event stream-collection was already received
0:00:02.248693626 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<video_0:proxypad4> data is passed
0:00:02.248750209 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:4105:check_sticky:<decodebin3-0:video_0> pushing all sticky events
0:00:02.248782459 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:4034:push_sticky:<decodebin3-0:video_0> event stream-start was already received
0:00:02.248812542 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:4034:push_sticky:<decodebin3-0:video_0> event caps was already received
0:00:02.248841959 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:4034:push_sticky:<decodebin3-0:video_0> event segment was already received
0:00:02.248871292 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:4034:push_sticky:<decodebin3-0:video_0> event stream-collection was already received
0:00:02.249048709 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<kmssink0:sink> sent event, ret ok
0:00:02.249114667 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:4056:push_sticky:<decodebin3-0:video_0> event tag marked received
0:00:02.249154751 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:4034:push_sticky:<decodebin3-0:video_0> event tag was already received
0:00:02.249200376 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<video_0:proxypad4> sent event, ret ok
0:00:02.249257459 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:4056:push_sticky:<v4l2slh264dec0:src> event tag marked received
0:00:02.249293292 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:4034:push_sticky:<v4l2slh264dec0:src> event tag was already received
0:00:02.249331167 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:4105:check_sticky:<v4l2slh264dec0:src> pushing all sticky events
0:00:02.249364167 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:4034:push_sticky:<v4l2slh264dec0:src> event stream-start was already received
0:00:02.249393459 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:4034:push_sticky:<v4l2slh264dec0:src> event caps was already received
0:00:02.249423876 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:4034:push_sticky:<v4l2slh264dec0:src> event segment was already received
0:00:02.249452167 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:4034:push_sticky:<v4l2slh264dec0:src> event stream-collection was already received
0:00:02.249486376 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<video_0:proxypad4> data is passed
0:00:02.249528042 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:4105:check_sticky:<decodebin3-0:video_0> pushing all sticky events
0:00:02.249562126 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:4034:push_sticky:<decodebin3-0:video_0> event stream-start was already received
0:00:02.249593626 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:4034:push_sticky:<decodebin3-0:video_0> event caps was already received
0:00:02.249624334 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:4034:push_sticky:<decodebin3-0:video_0> event segment was already received
0:00:02.249654834 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:4034:push_sticky:<decodebin3-0:video_0> event stream-collection was already received
0:00:02.249812917 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<kmssink0:sink> sent event, ret ok
0:00:02.249868834 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:4056:push_sticky:<decodebin3-0:video_0> event tag marked received
0:00:02.249909834 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:4034:push_sticky:<decodebin3-0:video_0> event tag was already received
0:00:02.249953376 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<video_0:proxypad4> sent event, ret ok
0:00:02.249999959 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:4056:push_sticky:<v4l2slh264dec0:src> event tag marked received
0:00:02.250031792 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:4034:push_sticky:<v4l2slh264dec0:src> event tag was already received
0:00:02.250178876 2032 0xb59272a8 WARN videodecoder gstvideodecoder.c:3670:gst_video_decoder_clip_and_push_buf:<v4l2slh264dec0> Dropping frame due to QoS. start:0:00:00.166666666 deadline:0:00:00.133333333 earliest_time:0:00:00.183041166
0:00:02.250446001 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<multiqueue0:src_0> data is passed
0:00:02.250997334 2032 0x249bf70 DEBUG GST_CAPS gstpad.c:2709:gst_pad_has_current_caps:<h264parse0:src> check current pad caps video/x-h264, stream-format=(string)avc, alignment=(string)au, level=(string)4.2, profile=(string)high, codec_data=(buffer)0164002affe1001b6764002aacc8501e0089f97011000003000100000300780f18319601000668e93864b22c, width=(int)1920, height=(int)1080, framerate=(fraction)60/1, pixel-aspect-ratio=(fraction)1/1, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8, parsed=(boolean)true
0:00:02.251205792 2032 0x249bf70 DEBUG GST_CAPS gstpad.c:2709:gst_pad_has_current_caps:<h264parse0:src> check current pad caps video/x-h264, stream-format=(string)avc, alignment=(string)au, level=(string)4.2, profile=(string)high, codec_data=(buffer)0164002affe1001b6764002aacc8501e0089f97011000003000100000300780f18319601000668e93864b22c, width=(int)1920, height=(int)1080, framerate=(fraction)60/1, pixel-aspect-ratio=(fraction)1/1, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8, parsed=(boolean)true
0:00:02.251310501 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<src_0:proxypad3> data is passed
0:00:02.251355751 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<parsebin0:src_0> data is passed
0:00:02.259973542 2032 0xb59272a8 WARN videodecoder gstvideodecoder.c:3670:gst_video_decoder_clip_and_push_buf:<v4l2slh264dec0> Dropping frame due to QoS. start:0:00:00.183333333 deadline:0:00:00.150000000 earliest_time:0:00:00.183041166
0:00:02.260322167 2032 0xb59272a8 WARN videodecoder gstvideodecoder.c:3670:gst_video_decoder_clip_and_push_buf:<v4l2slh264dec0> Dropping frame due to QoS. start:0:00:00.200000000 deadline:0:00:00.166666667 earliest_time:0:00:00.183041166
0:00:02.260609667 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<multiqueue0:src_0> data is passed
0:00:02.261602792 2032 0x249bf70 DEBUG GST_CAPS gstpad.c:2709:gst_pad_has_current_caps:<h264parse0:src> check current pad caps video/x-h264, stream-format=(string)avc, alignment=(string)au, level=(string)4.2, profile=(string)high, codec_data=(buffer)0164002affe1001b6764002aacc8501e0089f97011000003000100000300780f18319601000668e93864b22c, width=(int)1920, height=(int)1080, framerate=(fraction)60/1, pixel-aspect-ratio=(fraction)1/1, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8, parsed=(boolean)true
0:00:02.261907334 2032 0x249bf70 DEBUG GST_CAPS gstpad.c:2709:gst_pad_has_current_caps:<h264parse0:src> check current pad caps video/x-h264, stream-format=(string)avc, alignment=(string)au, level=(string)4.2, profile=(string)high, codec_data=(buffer)0164002affe1001b6764002aacc8501e0089f97011000003000100000300780f18319601000668e93864b22c, width=(int)1920, height=(int)1080, framerate=(fraction)60/1, pixel-aspect-ratio=(fraction)1/1, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8, parsed=(boolean)true
0:00:02.262023917 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<src_0:proxypad3> data is passed
0:00:02.262074501 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<parsebin0:src_0> data is passed
0:00:02.271261917 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<video_0:proxypad4> data is passed
0:00:02.311578584 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<video_0:proxypad4> data is passed
0:00:02.311654001 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:3713:probe_hook_marshal:<video_0:proxypad4> probe returned OK
0:00:02.311706334 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<multiqueue0:src_0> data is passed
0:00:02.311748126 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<parsebin0:src_0> data is passed
0:00:02.311787626 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<src_0:proxypad3> data is passed
0:00:02.311842251 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:2968:gst_pad_iterate_internal_links_default:<h264parse0:src> Making iterator
0:00:02.311883709 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:2968:gst_pad_iterate_internal_links_default:<qtdemux0:video_0> Making iterator
0:00:02.311954709 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<filesrc0:src> sent event, ret ok
0:00:02.311992084 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<sink:proxypad0> sent event, ret ok
0:00:02.312029167 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<sink:proxypad1> sent event, ret ok
0:00:02.312061334 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<typefind:src> sent event, ret ok
0:00:02.312098834 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<qtdemux0:video_0> sent event, ret ok
0:00:02.312134959 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<h264parse0:src> sent event, ret ok
0:00:02.312168626 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<capsfilter0:src> sent event, ret ok
0:00:02.312207626 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<parsebin0:src_0> sent event, ret ok
0:00:02.312242292 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<multiqueue0:src_0> sent event, ret ok
0:00:02.312276084 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<v4l2slh264dec0:src> sent event, ret ok
0:00:02.312324334 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<decodebin3-0:video_0> sent event, ret ok
0:00:02.312483876 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<multiqueue0:src_0> data is passed
0:00:02.313179917 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<multiqueue0:src_0> data is passed
0:00:02.313179876 2032 0x249bf70 DEBUG GST_CAPS gstpad.c:2709:gst_pad_has_current_caps:<h264parse0:src> check current pad caps video/x-h264, stream-format=(string)avc, alignment=(string)au, level=(string)4.2, profile=(string)high, codec_data=(buffer)0164002affe1001b6764002aacc8501e0089f97011000003000100000300780f18319601000668e93864b22c, width=(int)1920, height=(int)1080, framerate=(fraction)60/1, pixel-aspect-ratio=(fraction)1/1, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8, parsed=(boolean)true
0:00:02.313454917 2032 0x249bf70 DEBUG GST_CAPS gstpad.c:2709:gst_pad_has_current_caps:<h264parse0:src> check current pad caps video/x-h264, stream-format=(string)avc, alignment=(string)au, level=(string)4.2, profile=(string)high, codec_data=(buffer)0164002affe1001b6764002aacc8501e0089f97011000003000100000300780f18319601000668e93864b22c, width=(int)1920, height=(int)1080, framerate=(fraction)60/1, pixel-aspect-ratio=(fraction)1/1, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8, parsed=(boolean)true
0:00:02.313560542 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<src_0:proxypad3> data is passed
0:00:02.313610376 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<parsebin0:src_0> data is passed
0:00:02.314743084 2032 0x249bf70 DEBUG GST_CAPS gstpad.c:2709:gst_pad_has_current_caps:<h264parse0:src> check current pad caps video/x-h264, stream-format=(string)avc, alignment=(string)au, level=(string)4.2, profile=(string)high, codec_data=(buffer)0164002affe1001b6764002aacc8501e0089f97011000003000100000300780f18319601000668e93864b22c, width=(int)1920, height=(int)1080, framerate=(fraction)60/1, pixel-aspect-ratio=(fraction)1/1, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8, parsed=(boolean)true
0:00:02.314924334 2032 0x249bf70 DEBUG GST_CAPS gstpad.c:2709:gst_pad_has_current_caps:<h264parse0:src> check current pad caps video/x-h264, stream-format=(string)avc, alignment=(string)au, level=(string)4.2, profile=(string)high, codec_data=(buffer)0164002affe1001b6764002aacc8501e0089f97011000003000100000300780f18319601000668e93864b22c, width=(int)1920, height=(int)1080, framerate=(fraction)60/1, pixel-aspect-ratio=(fraction)1/1, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8, parsed=(boolean)true
0:00:02.315057917 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4105:check_sticky:<h264parse0:src> pushing all sticky events
0:00:02.315098917 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4034:push_sticky:<h264parse0:src> event stream-start was already received
0:00:02.315132667 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4034:push_sticky:<h264parse0:src> event caps was already received
0:00:02.315163584 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4034:push_sticky:<h264parse0:src> event segment was already received
0:00:02.315328251 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4105:check_sticky:<capsfilter0:src> pushing all sticky events
0:00:02.315374084 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4034:push_sticky:<capsfilter0:src> event stream-start was already received
0:00:02.315410376 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4034:push_sticky:<capsfilter0:src> event caps was already received
0:00:02.315441167 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4034:push_sticky:<capsfilter0:src> event segment was already received
0:00:02.315477626 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<src_0:proxypad3> data is passed
0:00:02.315585084 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3713:probe_hook_marshal:<src_0:proxypad3> probe returned OK
0:00:02.315796376 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4105:check_sticky:<parsebin0:src_0> pushing all sticky events
0:00:02.315840251 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4034:push_sticky:<parsebin0:src_0> event stream-start was already received
0:00:02.315871959 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4034:push_sticky:<parsebin0:src_0> event caps was already received
0:00:02.315903209 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4034:push_sticky:<parsebin0:src_0> event segment was already received
0:00:02.315934792 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4034:push_sticky:<parsebin0:src_0> event stream-collection was already received
0:00:02.315963626 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<parsebin0:src_0> data is passed
0:00:02.315994584 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3713:probe_hook_marshal:<parsebin0:src_0> probe returned OK
0:00:02.326107126 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<multiqueue0:src_0> data is passed
0:00:02.326112751 2032 0x249bf70 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<multiqueue0:sink_0> sent event, ret ok
0:00:02.326240042 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4056:push_sticky:<parsebin0:src_0> event tag marked received
0:00:02.326286709 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4034:push_sticky:<parsebin0:src_0> event tag was already received
0:00:02.326338417 2032 0x249bf70 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<src_0:proxypad3> sent event, ret ok
0:00:02.326381209 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4056:push_sticky:<capsfilter0:src> event tag marked received
0:00:02.326413459 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4034:push_sticky:<capsfilter0:src> event tag was already received
0:00:02.326450501 2032 0x249bf70 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<capsfilter0:sink> sent event, ret ok
0:00:02.326521042 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4056:push_sticky:<h264parse0:src> event tag marked received
0:00:02.326558876 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4034:push_sticky:<h264parse0:src> event tag was already received
0:00:02.326639376 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<src_0:proxypad3> data is passed
0:00:02.326683917 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<parsebin0:src_0> data is passed
0:00:02.327251584 2032 0x249bf70 DEBUG GST_CAPS gstpad.c:2709:gst_pad_has_current_caps:<h264parse0:src> check current pad caps video/x-h264, stream-format=(string)avc, alignment=(string)au, level=(string)4.2, profile=(string)high, codec_data=(buffer)0164002affe1001b6764002aacc8501e0089f97011000003000100000300780f18319601000668e93864b22c, width=(int)1920, height=(int)1080, framerate=(fraction)60/1, pixel-aspect-ratio=(fraction)1/1, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8, parsed=(boolean)true
0:00:02.327440584 2032 0x249bf70 DEBUG GST_CAPS gstpad.c:2709:gst_pad_has_current_caps:<h264parse0:src> check current pad caps video/x-h264, stream-format=(string)avc, alignment=(string)au, level=(string)4.2, profile=(string)high, codec_data=(buffer)0164002affe1001b6764002aacc8501e0089f97011000003000100000300780f18319601000668e93864b22c, width=(int)1920, height=(int)1080, framerate=(fraction)60/1, pixel-aspect-ratio=(fraction)1/1, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8, parsed=(boolean)true
0:00:02.327523709 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<src_0:proxypad3> data is passed
0:00:02.327564042 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<parsebin0:src_0> data is passed
0:00:02.336226584 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<video_0:proxypad4> data is passed
0:00:02.336602334 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<video_0:proxypad4> data is passed
0:00:02.336657792 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:3713:probe_hook_marshal:<video_0:proxypad4> probe returned OK
0:00:02.336722292 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<multiqueue0:src_0> data is passed
0:00:02.336775792 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<parsebin0:src_0> data is passed
0:00:02.336826501 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<src_0:proxypad3> data is passed
0:00:02.336898334 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:2968:gst_pad_iterate_internal_links_default:<h264parse0:src> Making iterator
0:00:02.336957126 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:2968:gst_pad_iterate_internal_links_default:<qtdemux0:video_0> Making iterator
0:00:02.337063042 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<filesrc0:src> sent event, ret ok
0:00:02.337119501 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<sink:proxypad0> sent event, ret ok
0:00:02.337159417 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<sink:proxypad1> sent event, ret ok
0:00:02.337190959 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<typefind:src> sent event, ret ok
0:00:02.337224334 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<qtdemux0:video_0> sent event, ret ok
0:00:02.337257667 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<h264parse0:src> sent event, ret ok
0:00:02.337288709 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<capsfilter0:src> sent event, ret ok
0:00:02.337331167 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<parsebin0:src_0> sent event, ret ok
0:00:02.337370626 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<multiqueue0:src_0> sent event, ret ok
0:00:02.337406251 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<v4l2slh264dec0:src> sent event, ret ok
0:00:02.337455501 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<decodebin3-0:video_0> sent event, ret ok
0:00:02.337768084 2032 0xb59272a8 WARN videodecoder gstvideodecoder.c:3670:gst_video_decoder_clip_and_push_buf:<v4l2slh264dec0> Dropping frame due to QoS. start:0:00:00.250000000 deadline:0:00:00.216666667 earliest_time:0:00:00.280995416
0:00:02.338087751 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<multiqueue0:src_0> data is passed
0:00:02.338579626 2032 0x249bf70 DEBUG GST_CAPS gstpad.c:2709:gst_pad_has_current_caps:<h264parse0:src> check current pad caps video/x-h264, stream-format=(string)avc, alignment=(string)au, level=(string)4.2, profile=(string)high, codec_data=(buffer)0164002affe1001b6764002aacc8501e0089f97011000003000100000300780f18319601000668e93864b22c, width=(int)1920, height=(int)1080, framerate=(fraction)60/1, pixel-aspect-ratio=(fraction)1/1, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8, parsed=(boolean)true
0:00:02.338790959 2032 0x249bf70 DEBUG GST_CAPS gstpad.c:2709:gst_pad_has_current_caps:<h264parse0:src> check current pad caps video/x-h264, stream-format=(string)avc, alignment=(string)au, level=(string)4.2, profile=(string)high, codec_data=(buffer)0164002affe1001b6764002aacc8501e0089f97011000003000100000300780f18319601000668e93864b22c, width=(int)1920, height=(int)1080, framerate=(fraction)60/1, pixel-aspect-ratio=(fraction)1/1, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8, parsed=(boolean)true
0:00:02.338950917 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<src_0:proxypad3> data is passed
0:00:02.339006001 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<parsebin0:src_0> data is passed
0:00:02.346797876 2032 0xb59272a8 WARN videodecoder gstvideodecoder.c:3670:gst_video_decoder_clip_and_push_buf:<v4l2slh264dec0> Dropping frame due to QoS. start:0:00:00.266666666 deadline:0:00:00.233333333 earliest_time:0:00:00.280995416
0:00:02.347135917 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<multiqueue0:src_0> data is passed
0:00:02.347681876 2032 0x249bf70 DEBUG GST_CAPS gstpad.c:2709:gst_pad_has_current_caps:<h264parse0:src> check current pad caps video/x-h264, stream-format=(string)avc, alignment=(string)au, level=(string)4.2, profile=(string)high, codec_data=(buffer)0164002affe1001b6764002aacc8501e0089f97011000003000100000300780f18319601000668e93864b22c, width=(int)1920, height=(int)1080, framerate=(fraction)60/1, pixel-aspect-ratio=(fraction)1/1, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8, parsed=(boolean)true
0:00:02.347900042 2032 0x249bf70 DEBUG GST_CAPS gstpad.c:2709:gst_pad_has_current_caps:<h264parse0:src> check current pad caps video/x-h264, stream-format=(string)avc, alignment=(string)au, level=(string)4.2, profile=(string)high, codec_data=(buffer)0164002affe1001b6764002aacc8501e0089f97011000003000100000300780f18319601000668e93864b22c, width=(int)1920, height=(int)1080, framerate=(fraction)60/1, pixel-aspect-ratio=(fraction)1/1, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8, parsed=(boolean)true
0:00:02.348000417 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<src_0:proxypad3> data is passed
0:00:02.348043126 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<parsebin0:src_0> data is passed
0:00:02.357952501 2032 0xb59272a8 WARN videodecoder gstvideodecoder.c:3670:gst_video_decoder_clip_and_push_buf:<v4l2slh264dec0> Dropping frame due to QoS. start:0:00:00.283333333 deadline:0:00:00.250000000 earliest_time:0:00:00.280995416
0:00:02.358262501 2032 0xb59272a8 WARN videodecoder gstvideodecoder.c:3670:gst_video_decoder_clip_and_push_buf:<v4l2slh264dec0> Dropping frame due to QoS. start:0:00:00.300000000 deadline:0:00:00.266666667 earliest_time:0:00:00.280995416
0:00:02.358541501 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<multiqueue0:src_0> data is passed
0:00:02.359425292 2032 0x249bf70 DEBUG GST_CAPS gstpad.c:2709:gst_pad_has_current_caps:<h264parse0:src> check current pad caps video/x-h264, stream-format=(string)avc, alignment=(string)au, level=(string)4.2, profile=(string)high, codec_data=(buffer)0164002affe1001b6764002aacc8501e0089f97011000003000100000300780f18319601000668e93864b22c, width=(int)1920, height=(int)1080, framerate=(fraction)60/1, pixel-aspect-ratio=(fraction)1/1, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8, parsed=(boolean)true
0:00:02.359665334 2032 0x249bf70 DEBUG GST_CAPS gstpad.c:2709:gst_pad_has_current_caps:<h264parse0:src> check current pad caps video/x-h264, stream-format=(string)avc, alignment=(string)au, level=(string)4.2, profile=(string)high, codec_data=(buffer)0164002affe1001b6764002aacc8501e0089f97011000003000100000300780f18319601000668e93864b22c, width=(int)1920, height=(int)1080, framerate=(fraction)60/1, pixel-aspect-ratio=(fraction)1/1, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8, parsed=(boolean)true
0:00:02.359777001 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<src_0:proxypad3> data is passed
0:00:02.359826626 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<parsebin0:src_0> data is passed
0:00:02.369001042 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<video_0:proxypad4> data is passed
0:00:02.387809542 2032 0xb59272a8 WARN kmsallocator gstkmsallocator.c:553:gst_kms_allocator_dmabuf_import:<KMSMemory::allocator> Failed to close GEM handle: Invalid argument 22
0:00:02.410985084 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<video_0:proxypad4> data is passed
0:00:02.411052584 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:3713:probe_hook_marshal:<video_0:proxypad4> probe returned OK
0:00:02.411104042 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<multiqueue0:src_0> data is passed
0:00:02.411144167 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<parsebin0:src_0> data is passed
0:00:02.411184917 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<src_0:proxypad3> data is passed
0:00:02.411233584 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:2968:gst_pad_iterate_internal_links_default:<h264parse0:src> Making iterator
0:00:02.411273459 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:2968:gst_pad_iterate_internal_links_default:<qtdemux0:video_0> Making iterator
0:00:02.411341292 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<filesrc0:src> sent event, ret ok
0:00:02.411380751 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<sink:proxypad0> sent event, ret ok
0:00:02.411418292 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<sink:proxypad1> sent event, ret ok
0:00:02.411449751 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<typefind:src> sent event, ret ok
0:00:02.411484334 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<qtdemux0:video_0> sent event, ret ok
0:00:02.411519417 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<h264parse0:src> sent event, ret ok
0:00:02.411550376 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<capsfilter0:src> sent event, ret ok
0:00:02.411588917 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<parsebin0:src_0> sent event, ret ok
0:00:02.411622167 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<multiqueue0:src_0> sent event, ret ok
0:00:02.411653626 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<v4l2slh264dec0:src> sent event, ret ok
0:00:02.411695209 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<decodebin3-0:video_0> sent event, ret ok
0:00:02.411845959 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<multiqueue0:src_0> data is passed
0:00:02.412512834 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:4105:check_sticky:<multiqueue0:src_0> pushing all sticky events
0:00:02.412582959 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:4034:push_sticky:<multiqueue0:src_0> event stream-start was already received
0:00:02.412596834 2032 0x249bf70 DEBUG GST_CAPS gstpad.c:2709:gst_pad_has_current_caps:<h264parse0:src> check current pad caps video/x-h264, stream-format=(string)avc, alignment=(string)au, level=(string)4.2, profile=(string)high, codec_data=(buffer)0164002affe1001b6764002aacc8501e0089f97011000003000100000300780f18319601000668e93864b22c, width=(int)1920, height=(int)1080, framerate=(fraction)60/1, pixel-aspect-ratio=(fraction)1/1, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8, parsed=(boolean)true
0:00:02.412619917 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:4034:push_sticky:<multiqueue0:src_0> event caps was already received
0:00:02.412653209 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:4034:push_sticky:<multiqueue0:src_0> event segment was already received
0:00:02.412686251 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:4034:push_sticky:<multiqueue0:src_0> event stream-collection was already received
0:00:02.412718626 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<multiqueue0:src_0> data is passed
0:00:02.412752459 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:3713:probe_hook_marshal:<multiqueue0:src_0> probe returned OK
0:00:02.412775167 2032 0x249bf70 DEBUG GST_CAPS gstpad.c:2709:gst_pad_has_current_caps:<h264parse0:src> check current pad caps video/x-h264, stream-format=(string)avc, alignment=(string)au, level=(string)4.2, profile=(string)high, codec_data=(buffer)0164002affe1001b6764002aacc8501e0089f97011000003000100000300780f18319601000668e93864b22c, width=(int)1920, height=(int)1080, framerate=(fraction)60/1, pixel-aspect-ratio=(fraction)1/1, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8, parsed=(boolean)true
0:00:02.412865667 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<v4l2slh264dec0:sink> sent event, ret ok
0:00:02.412880209 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<src_0:proxypad3> data is passed
0:00:02.412920876 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:4056:push_sticky:<multiqueue0:src_0> event tag marked received
0:00:02.412921167 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<parsebin0:src_0> data is passed
0:00:02.412955584 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:4034:push_sticky:<multiqueue0:src_0> event tag was already received
0:00:02.413037167 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<multiqueue0:src_0> data is passed
0:00:02.413747167 2032 0x249bf70 DEBUG GST_CAPS gstpad.c:2709:gst_pad_has_current_caps:<h264parse0:src> check current pad caps video/x-h264, stream-format=(string)avc, alignment=(string)au, level=(string)4.2, profile=(string)high, codec_data=(buffer)0164002affe1001b6764002aacc8501e0089f97011000003000100000300780f18319601000668e93864b22c, width=(int)1920, height=(int)1080, framerate=(fraction)60/1, pixel-aspect-ratio=(fraction)1/1, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8, parsed=(boolean)true
0:00:02.413982126 2032 0x249bf70 DEBUG GST_CAPS gstpad.c:2709:gst_pad_has_current_caps:<h264parse0:src> check current pad caps video/x-h264, stream-format=(string)avc, alignment=(string)au, level=(string)4.2, profile=(string)high, codec_data=(buffer)0164002affe1001b6764002aacc8501e0089f97011000003000100000300780f18319601000668e93864b22c, width=(int)1920, height=(int)1080, framerate=(fraction)60/1, pixel-aspect-ratio=(fraction)1/1, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8, parsed=(boolean)true
0:00:02.414078251 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<src_0:proxypad3> data is passed
0:00:02.414120667 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<parsebin0:src_0> data is passed
0:00:02.425243917 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<multiqueue0:src_0> data is passed
0:00:02.425770417 2032 0x249bf70 DEBUG GST_CAPS gstpad.c:2709:gst_pad_has_current_caps:<h264parse0:src> check current pad caps video/x-h264, stream-format=(string)avc, alignment=(string)au, level=(string)4.2, profile=(string)high, codec_data=(buffer)0164002affe1001b6764002aacc8501e0089f97011000003000100000300780f18319601000668e93864b22c, width=(int)1920, height=(int)1080, framerate=(fraction)60/1, pixel-aspect-ratio=(fraction)1/1, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8, parsed=(boolean)true
0:00:02.425997376 2032 0x249bf70 DEBUG GST_CAPS gstpad.c:2709:gst_pad_has_current_caps:<h264parse0:src> check current pad caps video/x-h264, stream-format=(string)avc, alignment=(string)au, level=(string)4.2, profile=(string)high, codec_data=(buffer)0164002affe1001b6764002aacc8501e0089f97011000003000100000300780f18319601000668e93864b22c, width=(int)1920, height=(int)1080, framerate=(fraction)60/1, pixel-aspect-ratio=(fraction)1/1, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8, parsed=(boolean)true
0:00:02.426099709 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<src_0:proxypad3> data is passed
0:00:02.426143084 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<parsebin0:src_0> data is passed
0:00:02.436144917 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<video_0:proxypad4> data is passed
0:00:02.436524292 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<video_0:proxypad4> data is passed
0:00:02.436574584 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:3713:probe_hook_marshal:<video_0:proxypad4> probe returned OK
0:00:02.436636417 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<multiqueue0:src_0> data is passed
0:00:02.436688292 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<parsebin0:src_0> data is passed
0:00:02.436743084 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<src_0:proxypad3> data is passed
0:00:02.436801376 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:2968:gst_pad_iterate_internal_links_default:<h264parse0:src> Making iterator
0:00:02.436850959 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:2968:gst_pad_iterate_internal_links_default:<qtdemux0:video_0> Making iterator
0:00:02.436940751 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<filesrc0:src> sent event, ret ok
0:00:02.436996167 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<sink:proxypad0> sent event, ret ok
0:00:02.437040167 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<sink:proxypad1> sent event, ret ok
0:00:02.437072834 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<typefind:src> sent event, ret ok
0:00:02.437106084 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<qtdemux0:video_0> sent event, ret ok
0:00:02.437140334 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<h264parse0:src> sent event, ret ok
0:00:02.437169376 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<capsfilter0:src> sent event, ret ok
0:00:02.437206834 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<parsebin0:src_0> sent event, ret ok
0:00:02.437242001 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<multiqueue0:src_0> sent event, ret ok
0:00:02.437276709 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<v4l2slh264dec0:src> sent event, ret ok
0:00:02.437322459 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<decodebin3-0:video_0> sent event, ret ok
0:00:02.437569542 2032 0xb59272a8 WARN videodecoder gstvideodecoder.c:3670:gst_video_decoder_clip_and_push_buf:<v4l2slh264dec0> Dropping frame due to QoS. start:0:00:00.350000000 deadline:0:00:00.316666667 earliest_time:0:00:00.380845082
0:00:02.437897542 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<multiqueue0:src_0> data is passed
0:00:02.438424876 2032 0x249bf70 DEBUG GST_CAPS gstpad.c:2709:gst_pad_has_current_caps:<h264parse0:src> check current pad caps video/x-h264, stream-format=(string)avc, alignment=(string)au, level=(string)4.2, profile=(string)high, codec_data=(buffer)0164002affe1001b6764002aacc8501e0089f97011000003000100000300780f18319601000668e93864b22c, width=(int)1920, height=(int)1080, framerate=(fraction)60/1, pixel-aspect-ratio=(fraction)1/1, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8, parsed=(boolean)true
0:00:02.438656501 2032 0x249bf70 DEBUG GST_CAPS gstpad.c:2709:gst_pad_has_current_caps:<h264parse0:src> check current pad caps video/x-h264, stream-format=(string)avc, alignment=(string)au, level=(string)4.2, profile=(string)high, codec_data=(buffer)0164002affe1001b6764002aacc8501e0089f97011000003000100000300780f18319601000668e93864b22c, width=(int)1920, height=(int)1080, framerate=(fraction)60/1, pixel-aspect-ratio=(fraction)1/1, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8, parsed=(boolean)true
0:00:02.438760792 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<src_0:proxypad3> data is passed
0:00:02.438808709 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<parsebin0:src_0> data is passed
0:00:02.447408917 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:4105:check_sticky:<v4l2slh264dec0:src> pushing all sticky events
0:00:02.447496667 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:4034:push_sticky:<v4l2slh264dec0:src> event stream-start was already received
0:00:02.447537084 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:4034:push_sticky:<v4l2slh264dec0:src> event caps was already received
0:00:02.447573084 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:4034:push_sticky:<v4l2slh264dec0:src> event segment was already received
0:00:02.447603709 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:4034:push_sticky:<v4l2slh264dec0:src> event stream-collection was already received
0:00:02.447647834 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<video_0:proxypad4> data is passed
0:00:02.447707501 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:4105:check_sticky:<decodebin3-0:video_0> pushing all sticky events
0:00:02.447738751 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:4034:push_sticky:<decodebin3-0:video_0> event stream-start was already received
0:00:02.447768584 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:4034:push_sticky:<decodebin3-0:video_0> event caps was already received
0:00:02.447797667 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:4034:push_sticky:<decodebin3-0:video_0> event segment was already received
0:00:02.447827251 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:4034:push_sticky:<decodebin3-0:video_0> event stream-collection was already received
0:00:02.447997042 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<kmssink0:sink> sent event, ret ok
0:00:02.448056001 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:4056:push_sticky:<decodebin3-0:video_0> event tag marked received
0:00:02.448095209 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:4034:push_sticky:<decodebin3-0:video_0> event tag was already received
0:00:02.448139292 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<video_0:proxypad4> sent event, ret ok
0:00:02.448186334 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:4056:push_sticky:<v4l2slh264dec0:src> event tag marked received
0:00:02.448222334 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:4034:push_sticky:<v4l2slh264dec0:src> event tag was already received
0:00:02.448342834 2032 0xb59272a8 WARN videodecoder gstvideodecoder.c:3670:gst_video_decoder_clip_and_push_buf:<v4l2slh264dec0> Dropping frame due to QoS. start:0:00:00.366666666 deadline:0:00:00.333333333 earliest_time:0:00:00.380845082
0:00:02.448627084 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<multiqueue0:src_0> data is passed
0:00:02.449266126 2032 0x249bf70 DEBUG GST_CAPS gstpad.c:2709:gst_pad_has_current_caps:<h264parse0:src> check current pad caps video/x-h264, stream-format=(string)avc, alignment=(string)au, level=(string)4.2, profile=(string)high, codec_data=(buffer)0164002affe1001b6764002aacc8501e0089f97011000003000100000300780f18319601000668e93864b22c, width=(int)1920, height=(int)1080, framerate=(fraction)60/1, pixel-aspect-ratio=(fraction)1/1, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8, parsed=(boolean)true
0:00:02.449461417 2032 0x249bf70 DEBUG GST_CAPS gstpad.c:2709:gst_pad_has_current_caps:<h264parse0:src> check current pad caps video/x-h264, stream-format=(string)avc, alignment=(string)au, level=(string)4.2, profile=(string)high, codec_data=(buffer)0164002affe1001b6764002aacc8501e0089f97011000003000100000300780f18319601000668e93864b22c, width=(int)1920, height=(int)1080, framerate=(fraction)60/1, pixel-aspect-ratio=(fraction)1/1, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8, parsed=(boolean)true
0:00:02.449558917 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<src_0:proxypad3> data is passed
0:00:02.449598876 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<parsebin0:src_0> data is passed
0:00:02.458841043 2032 0xb59272a8 WARN videodecoder gstvideodecoder.c:3670:gst_video_decoder_clip_and_push_buf:<v4l2slh264dec0> Dropping frame due to QoS. start:0:00:00.383333333 deadline:0:00:00.350000000 earliest_time:0:00:00.380845082
0:00:02.459175834 2032 0xb59272a8 WARN videodecoder gstvideodecoder.c:3670:gst_video_decoder_clip_and_push_buf:<v4l2slh264dec0> Dropping frame due to QoS. start:0:00:00.400000000 deadline:0:00:00.366666667 earliest_time:0:00:00.380845082
0:00:02.459466084 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<multiqueue0:src_0> data is passed
0:00:02.460255126 2032 0x249bf70 DEBUG GST_CAPS gstpad.c:2709:gst_pad_has_current_caps:<h264parse0:src> check current pad caps video/x-h264, stream-format=(string)avc, alignment=(string)au, level=(string)4.2, profile=(string)high, codec_data=(buffer)0164002affe1001b6764002aacc8501e0089f97011000003000100000300780f18319601000668e93864b22c, width=(int)1920, height=(int)1080, framerate=(fraction)60/1, pixel-aspect-ratio=(fraction)1/1, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8, parsed=(boolean)true
0:00:02.460488501 2032 0x249bf70 DEBUG GST_CAPS gstpad.c:2709:gst_pad_has_current_caps:<h264parse0:src> check current pad caps video/x-h264, stream-format=(string)avc, alignment=(string)au, level=(string)4.2, profile=(string)high, codec_data=(buffer)0164002affe1001b6764002aacc8501e0089f97011000003000100000300780f18319601000668e93864b22c, width=(int)1920, height=(int)1080, framerate=(fraction)60/1, pixel-aspect-ratio=(fraction)1/1, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8, parsed=(boolean)true
0:00:02.460601959 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<src_0:proxypad3> data is passed
0:00:02.460643834 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<parsebin0:src_0> data is passed
0:00:02.469834376 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<video_0:proxypad4> data is passed
0:00:02.487803168 2032 0xb59272a8 WARN kmsallocator gstkmsallocator.c:553:gst_kms_allocator_dmabuf_import:<KMSMemory::allocator> Failed to close GEM handle: Invalid argument 22
0:00:02.510374459 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<video_0:proxypad4> data is passed
0:00:02.510444918 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:3713:probe_hook_marshal:<video_0:proxypad4> probe returned OK
0:00:02.510497584 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<multiqueue0:src_0> data is passed
0:00:02.510538709 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<parsebin0:src_0> data is passed
0:00:02.510577918 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<src_0:proxypad3> data is passed
0:00:02.510627251 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:2968:gst_pad_iterate_internal_links_default:<h264parse0:src> Making iterator
0:00:02.510666959 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:2968:gst_pad_iterate_internal_links_default:<qtdemux0:video_0> Making iterator
0:00:02.510737834 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<filesrc0:src> sent event, ret ok
0:00:02.510778418 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<sink:proxypad0> sent event, ret ok
0:00:02.510814793 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<sink:proxypad1> sent event, ret ok
0:00:02.510847251 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<typefind:src> sent event, ret ok
0:00:02.510883501 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<qtdemux0:video_0> sent event, ret ok
0:00:02.510919293 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<h264parse0:src> sent event, ret ok
0:00:02.510951001 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<capsfilter0:src> sent event, ret ok
0:00:02.510987043 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<parsebin0:src_0> sent event, ret ok
0:00:02.511020334 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<multiqueue0:src_0> sent event, ret ok
0:00:02.511052793 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<v4l2slh264dec0:src> sent event, ret ok
0:00:02.511095793 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<decodebin3-0:video_0> sent event, ret ok
0:00:02.511241418 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<multiqueue0:src_0> data is passed
0:00:02.511717418 2032 0x249bf70 DEBUG GST_CAPS gstpad.c:2709:gst_pad_has_current_caps:<h264parse0:src> check current pad caps video/x-h264, stream-format=(string)avc, alignment=(string)au, level=(string)4.2, profile=(string)high, codec_data=(buffer)0164002affe1001b6764002aacc8501e0089f97011000003000100000300780f18319601000668e93864b22c, width=(int)1920, height=(int)1080, framerate=(fraction)60/1, pixel-aspect-ratio=(fraction)1/1, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8, parsed=(boolean)true
0:00:02.511875751 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:4105:check_sticky:<multiqueue0:src_0> pushing all sticky events
0:00:02.511925084 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:4034:push_sticky:<multiqueue0:src_0> event stream-start was already received
0:00:02.511984918 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:4034:push_sticky:<multiqueue0:src_0> event caps was already received
0:00:02.511923709 2032 0x249bf70 DEBUG GST_CAPS gstpad.c:2709:gst_pad_has_current_caps:<h264parse0:src> check current pad caps video/x-h264, stream-format=(string)avc, alignment=(string)au, level=(string)4.2, profile=(string)high, codec_data=(buffer)0164002affe1001b6764002aacc8501e0089f97011000003000100000300780f18319601000668e93864b22c, width=(int)1920, height=(int)1080, framerate=(fraction)60/1, pixel-aspect-ratio=(fraction)1/1, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8, parsed=(boolean)true
0:00:02.512021626 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:4034:push_sticky:<multiqueue0:src_0> event segment was already received
0:00:02.512055626 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:4034:push_sticky:<multiqueue0:src_0> event stream-collection was already received
0:00:02.512103334 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<multiqueue0:src_0> data is passed
0:00:02.512114834 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<src_0:proxypad3> data is passed
0:00:02.512139959 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:3713:probe_hook_marshal:<multiqueue0:src_0> probe returned OK
0:00:02.512158626 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<parsebin0:src_0> data is passed
0:00:02.512264209 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<v4l2slh264dec0:sink> sent event, ret ok
0:00:02.512327501 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:4056:push_sticky:<multiqueue0:src_0> event tag marked received
0:00:02.512362334 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:4034:push_sticky:<multiqueue0:src_0> event tag was already received
0:00:02.512454168 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<multiqueue0:src_0> data is passed
0:00:02.512906751 2032 0x249bf70 DEBUG GST_CAPS gstpad.c:2709:gst_pad_has_current_caps:<h264parse0:src> check current pad caps video/x-h264, stream-format=(string)avc, alignment=(string)au, level=(string)4.2, profile=(string)high, codec_data=(buffer)0164002affe1001b6764002aacc8501e0089f97011000003000100000300780f18319601000668e93864b22c, width=(int)1920, height=(int)1080, framerate=(fraction)60/1, pixel-aspect-ratio=(fraction)1/1, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8, parsed=(boolean)true
0:00:02.513103084 2032 0x249bf70 DEBUG GST_CAPS gstpad.c:2709:gst_pad_has_current_caps:<h264parse0:src> check current pad caps video/x-h264, stream-format=(string)avc, alignment=(string)au, level=(string)4.2, profile=(string)high, codec_data=(buffer)0164002affe1001b6764002aacc8501e0089f97011000003000100000300780f18319601000668e93864b22c, width=(int)1920, height=(int)1080, framerate=(fraction)60/1, pixel-aspect-ratio=(fraction)1/1, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8, parsed=(boolean)true
0:00:02.513195251 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<src_0:proxypad3> data is passed
0:00:02.513236084 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<parsebin0:src_0> data is passed
0:00:02.524799584 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<multiqueue0:src_0> data is passed
0:00:02.525271501 2032 0x249bf70 DEBUG GST_CAPS gstpad.c:2709:gst_pad_has_current_caps:<h264parse0:src> check current pad caps video/x-h264, stream-format=(string)avc, alignment=(string)au, level=(string)4.2, profile=(string)high, codec_data=(buffer)0164002affe1001b6764002aacc8501e0089f97011000003000100000300780f18319601000668e93864b22c, width=(int)1920, height=(int)1080, framerate=(fraction)60/1, pixel-aspect-ratio=(fraction)1/1, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8, parsed=(boolean)true
0:00:02.525509209 2032 0x249bf70 DEBUG GST_CAPS gstpad.c:2709:gst_pad_has_current_caps:<h264parse0:src> check current pad caps video/x-h264, stream-format=(string)avc, alignment=(string)au, level=(string)4.2, profile=(string)high, codec_data=(buffer)0164002affe1001b6764002aacc8501e0089f97011000003000100000300780f18319601000668e93864b22c, width=(int)1920, height=(int)1080, framerate=(fraction)60/1, pixel-aspect-ratio=(fraction)1/1, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8, parsed=(boolean)true
0:00:02.525604126 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<src_0:proxypad3> data is passed
0:00:02.525648501 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<parsebin0:src_0> data is passed
0:00:02.535512543 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<video_0:proxypad4> data is passed
0:00:02.535883543 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<video_0:proxypad4> data is passed
0:00:02.535933001 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:3713:probe_hook_marshal:<video_0:proxypad4> probe returned OK
0:00:02.535994626 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<multiqueue0:src_0> data is passed
0:00:02.536043584 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<parsebin0:src_0> data is passed
0:00:02.536090876 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<src_0:proxypad3> data is passed
0:00:02.536150043 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:2968:gst_pad_iterate_internal_links_default:<h264parse0:src> Making iterator
0:00:02.536200334 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:2968:gst_pad_iterate_internal_links_default:<qtdemux0:video_0> Making iterator
0:00:02.536288959 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<filesrc0:src> sent event, ret ok
0:00:02.536341918 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<sink:proxypad0> sent event, ret ok
0:00:02.536387418 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<sink:proxypad1> sent event, ret ok
0:00:02.536424168 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<typefind:src> sent event, ret ok
0:00:02.536458334 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<qtdemux0:video_0> sent event, ret ok
0:00:02.536493251 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<h264parse0:src> sent event, ret ok
0:00:02.536523751 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<capsfilter0:src> sent event, ret ok
0:00:02.536561334 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<parsebin0:src_0> sent event, ret ok
0:00:02.536595918 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<multiqueue0:src_0> sent event, ret ok
0:00:02.536629251 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<v4l2slh264dec0:src> sent event, ret ok
0:00:02.536674543 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<decodebin3-0:video_0> sent event, ret ok
0:00:02.536914084 2032 0xb59272a8 WARN videodecoder gstvideodecoder.c:3670:gst_video_decoder_clip_and_push_buf:<v4l2slh264dec0> Dropping frame due to QoS. start:0:00:00.450000000 deadline:0:00:00.416666667 earliest_time:0:00:00.479562166
0:00:02.537200834 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<multiqueue0:src_0> data is passed
0:00:02.537809251 2032 0x249bf70 DEBUG GST_CAPS gstpad.c:2709:gst_pad_has_current_caps:<h264parse0:src> check current pad caps video/x-h264, stream-format=(string)avc, alignment=(string)au, level=(string)4.2, profile=(string)high, codec_data=(buffer)0164002affe1001b6764002aacc8501e0089f97011000003000100000300780f18319601000668e93864b22c, width=(int)1920, height=(int)1080, framerate=(fraction)60/1, pixel-aspect-ratio=(fraction)1/1, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8, parsed=(boolean)true
0:00:02.538049084 2032 0x249bf70 DEBUG GST_CAPS gstpad.c:2709:gst_pad_has_current_caps:<h264parse0:src> check current pad caps video/x-h264, stream-format=(string)avc, alignment=(string)au, level=(string)4.2, profile=(string)high, codec_data=(buffer)0164002affe1001b6764002aacc8501e0089f97011000003000100000300780f18319601000668e93864b22c, width=(int)1920, height=(int)1080, framerate=(fraction)60/1, pixel-aspect-ratio=(fraction)1/1, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8, parsed=(boolean)true
0:00:02.538151709 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<src_0:proxypad3> data is passed
0:00:02.538194876 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<parsebin0:src_0> data is passed
0:00:02.546813959 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:4105:check_sticky:<v4l2slh264dec0:src> pushing all sticky events
0:00:02.546918876 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:4034:push_sticky:<v4l2slh264dec0:src> event stream-start was already received
0:00:02.546957293 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:4034:push_sticky:<v4l2slh264dec0:src> event caps was already received
0:00:02.546993001 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:4034:push_sticky:<v4l2slh264dec0:src> event segment was already received
0:00:02.547024376 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:4034:push_sticky:<v4l2slh264dec0:src> event stream-collection was already received
0:00:02.547071501 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<video_0:proxypad4> data is passed
0:00:02.547130626 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:4105:check_sticky:<decodebin3-0:video_0> pushing all sticky events
0:00:02.547162293 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:4034:push_sticky:<decodebin3-0:video_0> event stream-start was already received
0:00:02.547192668 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:4034:push_sticky:<decodebin3-0:video_0> event caps was already received
0:00:02.547222376 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:4034:push_sticky:<decodebin3-0:video_0> event segment was already received
0:00:02.547251459 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:4034:push_sticky:<decodebin3-0:video_0> event stream-collection was already received
0:00:02.547425751 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<kmssink0:sink> sent event, ret ok
0:00:02.547486834 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:4056:push_sticky:<decodebin3-0:video_0> event tag marked received
0:00:02.547524543 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:4034:push_sticky:<decodebin3-0:video_0> event tag was already received
0:00:02.547572793 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<video_0:proxypad4> sent event, ret ok
0:00:02.547620376 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:4056:push_sticky:<v4l2slh264dec0:src> event tag marked received
0:00:02.547654334 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:4034:push_sticky:<v4l2slh264dec0:src> event tag was already received
0:00:02.547772918 2032 0xb59272a8 WARN videodecoder gstvideodecoder.c:3670:gst_video_decoder_clip_and_push_buf:<v4l2slh264dec0> Dropping frame due to QoS. start:0:00:00.466666666 deadline:0:00:00.433333333 earliest_time:0:00:00.479562166
0:00:02.548061626 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<multiqueue0:src_0> data is passed
0:00:02.548625876 2032 0x249bf70 DEBUG GST_CAPS gstpad.c:2709:gst_pad_has_current_caps:<h264parse0:src> check current pad caps video/x-h264, stream-format=(string)avc, alignment=(string)au, level=(string)4.2, profile=(string)high, codec_data=(buffer)0164002affe1001b6764002aacc8501e0089f97011000003000100000300780f18319601000668e93864b22c, width=(int)1920, height=(int)1080, framerate=(fraction)60/1, pixel-aspect-ratio=(fraction)1/1, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8, parsed=(boolean)true
0:00:02.548828584 2032 0x249bf70 DEBUG GST_CAPS gstpad.c:2709:gst_pad_has_current_caps:<h264parse0:src> check current pad caps video/x-h264, stream-format=(string)avc, alignment=(string)au, level=(string)4.2, profile=(string)high, codec_data=(buffer)0164002affe1001b6764002aacc8501e0089f97011000003000100000300780f18319601000668e93864b22c, width=(int)1920, height=(int)1080, framerate=(fraction)60/1, pixel-aspect-ratio=(fraction)1/1, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8, parsed=(boolean)true
0:00:02.548973876 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4105:check_sticky:<h264parse0:src> pushing all sticky events
0:00:02.549020709 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4034:push_sticky:<h264parse0:src> event stream-start was already received
0:00:02.549055751 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4034:push_sticky:<h264parse0:src> event caps was already received
0:00:02.549086834 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4034:push_sticky:<h264parse0:src> event segment was already received
0:00:02.549132418 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4105:check_sticky:<capsfilter0:src> pushing all sticky events
0:00:02.549164418 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4034:push_sticky:<capsfilter0:src> event stream-start was already received
0:00:02.549194459 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4034:push_sticky:<capsfilter0:src> event caps was already received
0:00:02.549223543 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4034:push_sticky:<capsfilter0:src> event segment was already received
0:00:02.549291168 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<src_0:proxypad3> data is passed
0:00:02.549406543 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3713:probe_hook_marshal:<src_0:proxypad3> probe returned OK
0:00:02.549470084 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4105:check_sticky:<parsebin0:src_0> pushing all sticky events
0:00:02.549505959 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4034:push_sticky:<parsebin0:src_0> event stream-start was already received
0:00:02.549539834 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4034:push_sticky:<parsebin0:src_0> event caps was already received
0:00:02.549571334 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4034:push_sticky:<parsebin0:src_0> event segment was already received
0:00:02.549603668 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4034:push_sticky:<parsebin0:src_0> event stream-collection was already received
0:00:02.549632334 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<parsebin0:src_0> data is passed
0:00:02.549664209 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3713:probe_hook_marshal:<parsebin0:src_0> probe returned OK
0:00:02.558333626 2032 0xb59272a8 WARN videodecoder gstvideodecoder.c:3670:gst_video_decoder_clip_and_push_buf:<v4l2slh264dec0> Dropping frame due to QoS. start:0:00:00.483333333 deadline:0:00:00.450000000 earliest_time:0:00:00.479562166
0:00:02.558685084 2032 0xb59272a8 WARN videodecoder gstvideodecoder.c:3670:gst_video_decoder_clip_and_push_buf:<v4l2slh264dec0> Dropping frame due to QoS. start:0:00:00.500000000 deadline:0:00:00.466666667 earliest_time:0:00:00.479562166
0:00:02.558922293 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<multiqueue0:src_0> data is passed
0:00:02.558946668 2032 0x249bf70 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<multiqueue0:sink_0> sent event, ret ok
0:00:02.559007043 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4056:push_sticky:<parsebin0:src_0> event tag marked received
0:00:02.559048001 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4034:push_sticky:<parsebin0:src_0> event tag was already received
0:00:02.559101126 2032 0x249bf70 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<src_0:proxypad3> sent event, ret ok
0:00:02.559155834 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4056:push_sticky:<capsfilter0:src> event tag marked received
0:00:02.559193334 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4034:push_sticky:<capsfilter0:src> event tag was already received
0:00:02.559229209 2032 0x249bf70 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<capsfilter0:sink> sent event, ret ok
0:00:02.559268209 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4056:push_sticky:<h264parse0:src> event tag marked received
0:00:02.559308626 2032 0x249bf70 DEBUG GST_PADS gstpad.c:4034:push_sticky:<h264parse0:src> event tag was already received
0:00:02.559399334 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<src_0:proxypad3> data is passed
0:00:02.559441876 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<parsebin0:src_0> data is passed
0:00:02.560246709 2032 0x249bf70 DEBUG GST_CAPS gstpad.c:2709:gst_pad_has_current_caps:<h264parse0:src> check current pad caps video/x-h264, stream-format=(string)avc, alignment=(string)au, level=(string)4.2, profile=(string)high, codec_data=(buffer)0164002affe1001b6764002aacc8501e0089f97011000003000100000300780f18319601000668e93864b22c, width=(int)1920, height=(int)1080, framerate=(fraction)60/1, pixel-aspect-ratio=(fraction)1/1, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8, parsed=(boolean)true
0:00:02.560447168 2032 0x249bf70 DEBUG GST_CAPS gstpad.c:2709:gst_pad_has_current_caps:<h264parse0:src> check current pad caps video/x-h264, stream-format=(string)avc, alignment=(string)au, level=(string)4.2, profile=(string)high, codec_data=(buffer)0164002affe1001b6764002aacc8501e0089f97011000003000100000300780f18319601000668e93864b22c, width=(int)1920, height=(int)1080, framerate=(fraction)60/1, pixel-aspect-ratio=(fraction)1/1, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8, parsed=(boolean)true
0:00:02.560538751 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<src_0:proxypad3> data is passed
0:00:02.560577876 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<parsebin0:src_0> data is passed
0:00:02.569562334 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<video_0:proxypad4> data is passed
0:00:02.587810709 2032 0xb59272a8 WARN kmsallocator gstkmsallocator.c:553:gst_kms_allocator_dmabuf_import:<KMSMemory::allocator> Failed to close GEM handle: Invalid argument 22
0:00:02.609792501 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<video_0:proxypad4> data is passed
0:00:02.609860709 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:3713:probe_hook_marshal:<video_0:proxypad4> probe returned OK
0:00:02.609912584 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<multiqueue0:src_0> data is passed
0:00:02.609953751 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<parsebin0:src_0> data is passed
0:00:02.609993751 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<src_0:proxypad3> data is passed
0:00:02.610043543 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:2968:gst_pad_iterate_internal_links_default:<h264parse0:src> Making iterator
0:00:02.610083751 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:2968:gst_pad_iterate_internal_links_default:<qtdemux0:video_0> Making iterator
0:00:02.610153001 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<filesrc0:src> sent event, ret ok
0:00:02.610191751 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<sink:proxypad0> sent event, ret ok
0:00:02.610228293 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<sink:proxypad1> sent event, ret ok
0:00:02.610260626 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<typefind:src> sent event, ret ok
0:00:02.610297418 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<qtdemux0:video_0> sent event, ret ok
0:00:02.610331043 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<h264parse0:src> sent event, ret ok
0:00:02.610362168 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<capsfilter0:src> sent event, ret ok
0:00:02.610401793 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<parsebin0:src_0> sent event, ret ok
0:00:02.610434293 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<multiqueue0:src_0> sent event, ret ok
0:00:02.610465834 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<v4l2slh264dec0:src> sent event, ret ok
0:00:02.610510334 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<decodebin3-0:video_0> sent event, ret ok
0:00:02.610659334 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<multiqueue0:src_0> data is passed
0:00:02.611142043 2032 0x249bf70 DEBUG GST_CAPS gstpad.c:2709:gst_pad_has_current_caps:<h264parse0:src> check current pad caps video/x-h264, stream-format=(string)avc, alignment=(string)au, level=(string)4.2, profile=(string)high, codec_data=(buffer)0164002affe1001b6764002aacc8501e0089f97011000003000100000300780f18319601000668e93864b22c, width=(int)1920, height=(int)1080, framerate=(fraction)60/1, pixel-aspect-ratio=(fraction)1/1, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8, parsed=(boolean)true
0:00:02.611278584 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<multiqueue0:src_0> data is passed
0:00:02.611335084 2032 0x249bf70 DEBUG GST_CAPS gstpad.c:2709:gst_pad_has_current_caps:<h264parse0:src> check current pad caps video/x-h264, stream-format=(string)avc, alignment=(string)au, level=(string)4.2, profile=(string)high, codec_data=(buffer)0164002affe1001b6764002aacc8501e0089f97011000003000100000300780f18319601000668e93864b22c, width=(int)1920, height=(int)1080, framerate=(fraction)60/1, pixel-aspect-ratio=(fraction)1/1, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8, parsed=(boolean)true
0:00:02.611410459 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<src_0:proxypad3> data is passed
0:00:02.611450668 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<parsebin0:src_0> data is passed
0:00:02.611876459 2032 0x249bf70 DEBUG GST_CAPS gstpad.c:2709:gst_pad_has_current_caps:<h264parse0:src> check current pad caps video/x-h264, stream-format=(string)avc, alignment=(string)au, level=(string)4.2, profile=(string)high, codec_data=(buffer)0164002affe1001b6764002aacc8501e0089f97011000003000100000300780f18319601000668e93864b22c, width=(int)1920, height=(int)1080, framerate=(fraction)60/1, pixel-aspect-ratio=(fraction)1/1, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8, parsed=(boolean)true
0:00:02.612091918 2032 0x249bf70 DEBUG GST_CAPS gstpad.c:2709:gst_pad_has_current_caps:<h264parse0:src> check current pad caps video/x-h264, stream-format=(string)avc, alignment=(string)au, level=(string)4.2, profile=(string)high, codec_data=(buffer)0164002affe1001b6764002aacc8501e0089f97011000003000100000300780f18319601000668e93864b22c, width=(int)1920, height=(int)1080, framerate=(fraction)60/1, pixel-aspect-ratio=(fraction)1/1, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8, parsed=(boolean)true
0:00:02.612189168 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<src_0:proxypad3> data is passed
0:00:02.612229834 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<parsebin0:src_0> data is passed
0:00:02.622488293 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<multiqueue0:src_0> data is passed
0:00:02.622935959 2032 0x249bf70 DEBUG GST_CAPS gstpad.c:2709:gst_pad_has_current_caps:<h264parse0:src> check current pad caps video/x-h264, stream-format=(string)avc, alignment=(string)au, level=(string)4.2, profile=(string)high, codec_data=(buffer)0164002affe1001b6764002aacc8501e0089f97011000003000100000300780f18319601000668e93864b22c, width=(int)1920, height=(int)1080, framerate=(fraction)60/1, pixel-aspect-ratio=(fraction)1/1, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8, parsed=(boolean)true
0:00:02.623166043 2032 0x249bf70 DEBUG GST_CAPS gstpad.c:2709:gst_pad_has_current_caps:<h264parse0:src> check current pad caps video/x-h264, stream-format=(string)avc, alignment=(string)au, level=(string)4.2, profile=(string)high, codec_data=(buffer)0164002affe1001b6764002aacc8501e0089f97011000003000100000300780f18319601000668e93864b22c, width=(int)1920, height=(int)1080, framerate=(fraction)60/1, pixel-aspect-ratio=(fraction)1/1, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8, parsed=(boolean)true
0:00:02.623265251 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<src_0:proxypad3> data is passed
0:00:02.623309626 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<parsebin0:src_0> data is passed
0:00:02.633329584 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<video_0:proxypad4> data is passed
0:00:02.633744709 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<video_0:proxypad4> data is passed
0:00:02.633807876 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:3713:probe_hook_marshal:<video_0:proxypad4> probe returned OK
0:00:02.633870376 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<multiqueue0:src_0> data is passed
0:00:02.633919959 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<parsebin0:src_0> data is passed
0:00:02.633970751 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<src_0:proxypad3> data is passed
0:00:02.634027876 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:2968:gst_pad_iterate_internal_links_default:<h264parse0:src> Making iterator
0:00:02.634077709 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:2968:gst_pad_iterate_internal_links_default:<qtdemux0:video_0> Making iterator
0:00:02.634168709 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<filesrc0:src> sent event, ret ok
0:00:02.634216918 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<sink:proxypad0> sent event, ret ok
0:00:02.634256334 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<sink:proxypad1> sent event, ret ok
0:00:02.634289001 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<typefind:src> sent event, ret ok
0:00:02.634323001 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<qtdemux0:video_0> sent event, ret ok
0:00:02.634355709 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<h264parse0:src> sent event, ret ok
0:00:02.634385793 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<capsfilter0:src> sent event, ret ok
0:00:02.634421668 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<parsebin0:src_0> sent event, ret ok
0:00:02.634453959 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<multiqueue0:src_0> sent event, ret ok
0:00:02.634484001 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<v4l2slh264dec0:src> sent event, ret ok
0:00:02.634528293 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:5915:gst_pad_send_event_unchecked:<decodebin3-0:video_0> sent event, ret ok
0:00:02.634762043 2032 0xb59272a8 WARN videodecoder gstvideodecoder.c:3670:gst_video_decoder_clip_and_push_buf:<v4l2slh264dec0> Dropping frame due to QoS. start:0:00:00.550000000 deadline:0:00:00.516666667 earliest_time:0:00:00.575203332
0:00:02.635029668 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<multiqueue0:src_0> data is passed
0:00:02.635918459 2032 0x249bf70 DEBUG GST_CAPS gstpad.c:2709:gst_pad_has_current_caps:<h264parse0:src> check current pad caps video/x-h264, stream-format=(string)avc, alignment=(string)au, level=(string)4.2, profile=(string)high, codec_data=(buffer)0164002affe1001b6764002aacc8501e0089f97011000003000100000300780f18319601000668e93864b22c, width=(int)1920, height=(int)1080, framerate=(fraction)60/1, pixel-aspect-ratio=(fraction)1/1, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8, parsed=(boolean)true
0:00:02.636117959 2032 0x249bf70 DEBUG GST_CAPS gstpad.c:2709:gst_pad_has_current_caps:<h264parse0:src> check current pad caps video/x-h264, stream-format=(string)avc, alignment=(string)au, level=(string)4.2, profile=(string)high, codec_data=(buffer)0164002affe1001b6764002aacc8501e0089f97011000003000100000300780f18319601000668e93864b22c, width=(int)1920, height=(int)1080, framerate=(fraction)60/1, pixel-aspect-ratio=(fraction)1/1, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8, parsed=(boolean)true
0:00:02.636219543 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<src_0:proxypad3> data is passed
0:00:02.636263584 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<parsebin0:src_0> data is passed
0:00:02.644697501 2032 0xb59272a8 WARN videodecoder gstvideodecoder.c:3670:gst_video_decoder_clip_and_push_buf:<v4l2slh264dec0> Dropping frame due to QoS. start:0:00:00.566666666 deadline:0:00:00.533333333 earliest_time:0:00:00.575203332
0:00:02.645042001 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<multiqueue0:src_0> data is passed
0:00:02.645573168 2032 0x249bf70 DEBUG GST_CAPS gstpad.c:2709:gst_pad_has_current_caps:<h264parse0:src> check current pad caps video/x-h264, stream-format=(string)avc, alignment=(string)au, level=(string)4.2, profile=(string)high, codec_data=(buffer)0164002affe1001b6764002aacc8501e0089f97011000003000100000300780f18319601000668e93864b22c, width=(int)1920, height=(int)1080, framerate=(fraction)60/1, pixel-aspect-ratio=(fraction)1/1, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8, parsed=(boolean)true
0:00:02.645996459 2032 0x249bf70 DEBUG GST_CAPS gstpad.c:2709:gst_pad_has_current_caps:<h264parse0:src> check current pad caps video/x-h264, stream-format=(string)avc, alignment=(string)au, level=(string)4.2, profile=(string)high, codec_data=(buffer)0164002affe1001b6764002aacc8501e0089f97011000003000100000300780f18319601000668e93864b22c, width=(int)1920, height=(int)1080, framerate=(fraction)60/1, pixel-aspect-ratio=(fraction)1/1, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8, parsed=(boolean)true
0:00:02.646108793 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<src_0:proxypad3> data is passed
0:00:02.646149668 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<parsebin0:src_0> data is passed
0:00:02.655869626 2032 0xb59272a8 WARN videodecoder gstvideodecoder.c:3670:gst_video_decoder_clip_and_push_buf:<v4l2slh264dec0> Dropping frame due to QoS. start:0:00:00.583333333 deadline:0:00:00.550000000 earliest_time:0:00:00.575203332
0:00:02.656191376 2032 0xb59272a8 WARN videodecoder gstvideodecoder.c:3670:gst_video_decoder_clip_and_push_buf:<v4l2slh264dec0> Dropping frame due to QoS. start:0:00:00.600000000 deadline:0:00:00.566666667 earliest_time:0:00:00.575203332
0:00:02.656421418 2032 0xb59272a8 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<multiqueue0:src_0> data is passed
0:00:02.657299834 2032 0x249bf70 DEBUG GST_CAPS gstpad.c:2709:gst_pad_has_current_caps:<h264parse0:src> check current pad caps video/x-h264, stream-format=(string)avc, alignment=(string)au, level=(string)4.2, profile=(string)high, codec_data=(buffer)0164002affe1001b6764002aacc8501e0089f97011000003000100000300780f18319601000668e93864b22c, width=(int)1920, height=(int)1080, framerate=(fraction)60/1, pixel-aspect-ratio=(fraction)1/1, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8, parsed=(boolean)true
0:00:02.657521251 2032 0x249bf70 DEBUG GST_CAPS gstpad.c:2709:gst_pad_has_current_caps:<h264parse0:src> check current pad caps video/x-h264, stream-format=(string)avc, alignment=(string)au, level=(string)4.2, profile=(string)high, codec_data=(buffer)0164002affe1001b6764002aacc8501e0089f97011000003000100000300780f18319601000668e93864b22c, width=(int)1920, height=(int)1080, framerate=(fraction)60/1, pixel-aspect-ratio=(fraction)1/1, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8, parsed=(boolean)true
0:00:02.657836293 2032 0x249bf70 DEBUG GST_PADS gstpad.c:3935:do_probe_callbacks:<src_0:proxypad3> data is passed
digraph pipeline {
rankdir=LR;
fontname="sans";
fontsize="10";
labelloc=t;
nodesep=.1;
ranksep=.2;
label="<GstPipeline>\npipeline0\n[>]";
node [style="filled,rounded", shape=box, fontsize="9", fontname="sans", margin="0.0,0.0"];
edge [labelfontsize="6", fontsize="9", fontname="monospace"];
legend [
pos="0,0!",
margin="0.05,0.05",
style="filled",
label="Legend\lElement-States: [~] void-pending, [0] null, [-] ready, [=] paused, [>] playing\lPad-Activation: [-] none, [>] push, [<] pull\lPad-Flags: [b]locked, [f]lushing, [b]locking, [E]OS; upper-case is set\lPad-Task: [T] has started task, [t] has paused task\l",
];
subgraph cluster_kmssink0_0x204ead0 {
fontname="Bitstream Vera Sans";
fontsize="8";
style="filled,rounded";
color=black;
label="GstKMSSink\nkmssink0\n[>]\nmax-lateness=5000000\nqos=TRUE\nlast-sample=((GstSample*) 0xb3a21e60)\nprocessing-deadline=15000000\ndriver-name=\"sun4i-drm\"\nconnector-id=51\nplane-id=31\ndisplay-width=1360\ndisplay-height=768";
subgraph cluster_kmssink0_0x204ead0_sink {
label="";
style="invis";
kmssink0_0x204ead0_sink_0x2042230 [color=black, fillcolor="#aaaaff", label="sink\n[>][bfb]", height="0.2", style="filled,solid"];
}
fillcolor="#aaaaff";
}
subgraph cluster_decodebin3_0_0x20440a0 {
fontname="Bitstream Vera Sans";
fontsize="8";
style="filled,rounded";
color=black;
label="GstDecodebin3\ndecodebin3-0\n[>]\ncaps=video/x-raw(ANY); audio/x-raw(ANY); text/x-raw(ANY); subpicture/x-dvd; subpictur…";
subgraph cluster_decodebin3_0_0x20440a0_sink {
label="";
style="invis";
_proxypad0_0x2047090 [color=black, fillcolor="#ddddff", label="proxypad0\n[<][bfb]", height="0.2", style="filled,solid"];
decodebin3_0_0x20440a0_sink_0x2046040 -> _proxypad0_0x2047090 [style=dashed, minlen=0]
decodebin3_0_0x20440a0_sink_0x2046040 [color=black, fillcolor="#ddddff", label="sink\n[<][bfb]", height="0.2", style="filled,solid"];
}
subgraph cluster_decodebin3_0_0x20440a0_src {
label="";
style="invis";
_proxypad5_0xb45311d0 [color=black, fillcolor="#ffdddd", label="proxypad5\n[>][bfb]", height="0.2", style="filled,solid"];
_proxypad5_0xb45311d0 -> decodebin3_0_0x20440a0_video_0_0x2046600 [style=dashed, minlen=0]
decodebin3_0_0x20440a0_video_0_0x2046600 [color=black, fillcolor="#ffdddd", label="video_0\n[>][bfb]", height="0.2", style="filled,dotted"];
_proxypad6_0xb4531770 [color=black, fillcolor="#ffdddd", label="proxypad6\n[>][bfb]", height="0.2", style="filled,solid"];
_proxypad6_0xb4531770 -> decodebin3_0_0x20440a0_audio_0_0x2046bc0 [style=dashed, minlen=0]
decodebin3_0_0x20440a0_audio_0_0x2046bc0 [color=black, fillcolor="#ffdddd", label="audio_0\n[>][bfb]", height="0.2", style="filled,dotted"];
}
decodebin3_0_0x20440a0_sink_0x2046040 -> decodebin3_0_0x20440a0_video_0_0x2046600 [style="invis"];
fillcolor="#ffffff";
subgraph cluster_faad0_0xb3007298 {
fontname="Bitstream Vera Sans";
fontsize="8";
style="filled,rounded";
color=black;
label="GstFaad\nfaad0\n[>]";
subgraph cluster_faad0_0xb3007298_sink {
label="";
style="invis";
faad0_0xb3007298_sink_0xb4504d10 [color=black, fillcolor="#aaaaff", label="sink\n[>][bfb]", height="0.2", style="filled,solid"];
}
subgraph cluster_faad0_0xb3007298_src {
label="";
style="invis";
faad0_0xb3007298_src_0xb4504e68 [color=black, fillcolor="#ffaaaa", label="src\n[>][bfb]", height="0.2", style="filled,solid"];
}
faad0_0xb3007298_sink_0xb4504d10 -> faad0_0xb3007298_src_0xb4504e68 [style="invis"];
fillcolor="#aaffaa";
}
faad0_0xb3007298_src_0xb4504e68 -> _proxypad6_0xb4531770 [label="audio/x-raw\l format: S16LE\l layout: interleaved\l rate: 48000\l channels: 2\l channel-mask: 0x0000000000000003\l"]
subgraph cluster_v4l2slh264dec0_0xb3a0f040 {
fontname="Bitstream Vera Sans";
fontsize="8";
style="filled,rounded";
color=black;
label="v4l2slh264dec\nv4l2slh264dec0\n[>]";
subgraph cluster_v4l2slh264dec0_0xb3a0f040_sink {
label="";
style="invis";
v4l2slh264dec0_0xb3a0f040_sink_0xb45047b0 [color=black, fillcolor="#aaaaff", label="sink\n[>][bfb]", height="0.2", style="filled,solid"];
}
subgraph cluster_v4l2slh264dec0_0xb3a0f040_src {
label="";
style="invis";
v4l2slh264dec0_0xb3a0f040_src_0xb4504908 [color=black, fillcolor="#ffaaaa", label="src\n[>][bfb]", height="0.2", style="filled,solid"];
}
v4l2slh264dec0_0xb3a0f040_sink_0xb45047b0 -> v4l2slh264dec0_0xb3a0f040_src_0xb4504908 [style="invis"];
fillcolor="#aaffaa";
}
v4l2slh264dec0_0xb3a0f040_src_0xb4504908 -> _proxypad5_0xb45311d0 [label="video/x-raw\l format: NV12\l width: 1920\l height: 1080\l interlace-mode: progressive\l multiview-mode: mono\l multiview-flags: 0:ffffffff:/right-view...\l pixel-aspect-ratio: 1/1\l colorimetry: bt709\l framerate: 30/1\l"]
subgraph cluster_parsebin0_0x204f1c0 {
fontname="Bitstream Vera Sans";
fontsize="8";
style="filled,rounded";
color=black;
label="GstParseBin\nparsebin0\n[>]";
subgraph cluster_parsebin0_0x204f1c0_sink {
label="";
style="invis";
_proxypad1_0x20471f8 [color=black, fillcolor="#ddddff", label="proxypad1\n[<][bfb]", height="0.2", style="filled,solid"];
parsebin0_0x204f1c0_sink_0x20461b0 -> _proxypad1_0x20471f8 [style=dashed, minlen=0]
parsebin0_0x204f1c0_sink_0x20461b0 [color=black, fillcolor="#ddddff", label="sink\n[<][bfb]", height="0.2", style="filled,solid"];
}
subgraph cluster_parsebin0_0x204f1c0_src {
label="";
style="invis";
_proxypad3_0x2047630 [color=black, fillcolor="#ffdddd", label="proxypad3\n[>][bfb]", height="0.2", style="filled,solid"];
_proxypad3_0x2047630 -> parsebin0_0x204f1c0_src_0_0xb5a28150 [style=dashed, minlen=0]
parsebin0_0x204f1c0_src_0_0xb5a28150 [color=black, fillcolor="#ffdddd", label="src_0\n[>][bfb]", height="0.2", style="filled,dotted"];
_proxypad4_0x2047bd0 [color=black, fillcolor="#ffdddd", label="proxypad4\n[>][bfb]", height="0.2", style="filled,solid"];
_proxypad4_0x2047bd0 -> parsebin0_0x204f1c0_src_1_0xb5a287b0 [style=dashed, minlen=0]
parsebin0_0x204f1c0_src_1_0xb5a287b0 [color=black, fillcolor="#ffdddd", label="src_1\n[>][bfb]", height="0.2", style="filled,dotted"];
}
parsebin0_0x204f1c0_sink_0x20461b0 -> parsebin0_0x204f1c0_src_0_0xb5a28150 [style="invis"];
fillcolor="#ffffff";
subgraph cluster_aacparse0_0xb45342e8 {
fontname="Bitstream Vera Sans";
fontsize="8";
style="filled,rounded";
color=black;
label="GstAacParse\naacparse0\n[>]";
subgraph cluster_aacparse0_0xb45342e8_sink {
label="";
style="invis";
aacparse0_0xb45342e8_sink_0xb4504500 [color=black, fillcolor="#aaaaff", label="sink\n[>][bfb]", height="0.2", style="filled,solid"];
}
subgraph cluster_aacparse0_0xb45342e8_src {
label="";
style="invis";
aacparse0_0xb45342e8_src_0xb4504658 [color=black, fillcolor="#ffaaaa", label="src\n[>][bfb]", height="0.2", style="filled,solid"];
}
aacparse0_0xb45342e8_sink_0xb4504500 -> aacparse0_0xb45342e8_src_0xb4504658 [style="invis"];
fillcolor="#aaffaa";
}
aacparse0_0xb45342e8_src_0xb4504658 -> _proxypad4_0x2047bd0 [label="audio/mpeg\l mpegversion: 4\l framed: true\l stream-format: raw\l level: 2\l base-profile: lc\l profile: lc\l codec_data: 1190\l rate: 48000\l channels: 2\l"]
subgraph cluster_capsfilter0_0xb452c188 {
fontname="Bitstream Vera Sans";
fontsize="8";
style="filled,rounded";
color=black;
label="GstCapsFilter\ncapsfilter0\n[>]\ncaps=video/x-h264, stream-format=(string){ avc, avc3, byte-stream }, alignment=(strin…";
subgraph cluster_capsfilter0_0xb452c188_sink {
label="";
style="invis";
capsfilter0_0xb452c188_sink_0xb45040f8 [color=black, fillcolor="#aaaaff", label="sink\n[>][bfb]", height="0.2", style="filled,solid"];
}
subgraph cluster_capsfilter0_0xb452c188_src {
label="";
style="invis";
capsfilter0_0xb452c188_src_0xb4504250 [color=black, fillcolor="#ffaaaa", label="src\n[>][bfb]", height="0.2", style="filled,solid"];
}
capsfilter0_0xb452c188_sink_0xb45040f8 -> capsfilter0_0xb452c188_src_0xb4504250 [style="invis"];
fillcolor="#aaffaa";
}
capsfilter0_0xb452c188_src_0xb4504250 -> _proxypad3_0x2047630 [label="video/x-h264\l stream-format: avc\l alignment: au\l level: 4\l profile: high\l codec_data: 01640028ffe1001d676400...\l width: 1920\l height: 1080\l framerate: 30/1\l pixel-aspect-ratio: 1/1\l colorimetry: bt709\l chroma-format: 4:2:0\l bit-depth-luma: 8\l bit-depth-chroma: 8\l parsed: true\l"]
subgraph cluster_h264parse0_0xb4526860 {
fontname="Bitstream Vera Sans";
fontsize="8";
style="filled,rounded";
color=black;
label="GstH264Parse\nh264parse0\n[>]";
subgraph cluster_h264parse0_0xb4526860_sink {
label="";
style="invis";
h264parse0_0xb4526860_sink_0x2042cf0 [color=black, fillcolor="#aaaaff", label="sink\n[>][bfb]", height="0.2", style="filled,solid"];
}
subgraph cluster_h264parse0_0xb4526860_src {
label="";
style="invis";
h264parse0_0xb4526860_src_0x2042e48 [color=black, fillcolor="#ffaaaa", label="src\n[>][bfb]", height="0.2", style="filled,solid"];
}
h264parse0_0xb4526860_sink_0x2042cf0 -> h264parse0_0xb4526860_src_0x2042e48 [style="invis"];
fillcolor="#aaffaa";
}
h264parse0_0xb4526860_src_0x2042e48 -> capsfilter0_0xb452c188_sink_0xb45040f8 [label="video/x-h264\l stream-format: avc\l alignment: au\l level: 4\l profile: high\l codec_data: 01640028ffe1001d676400...\l width: 1920\l height: 1080\l framerate: 30/1\l pixel-aspect-ratio: 1/1\l colorimetry: bt709\l chroma-format: 4:2:0\l bit-depth-luma: 8\l bit-depth-chroma: 8\l parsed: true\l"]
subgraph cluster_qtdemux0_0x2040b80 {
fontname="Bitstream Vera Sans";
fontsize="8";
style="filled,rounded";
color=black;
label="GstQTDemux\nqtdemux0\n[>]";
subgraph cluster_qtdemux0_0x2040b80_sink {
label="";
style="invis";
qtdemux0_0x2040b80_sink_0x2042638 [color=black, fillcolor="#aaaaff", label="sink\n[<][bfb][T]", height="0.2", style="filled,solid"];
}
subgraph cluster_qtdemux0_0x2040b80_src {
label="";
style="invis";
qtdemux0_0x2040b80_video_0_0x2042b98 [color=black, fillcolor="#ffaaaa", label="video_0\n[>][bfb]", height="0.2", style="filled,dotted"];
qtdemux0_0x2040b80_audio_0_0xb45043a8 [color=black, fillcolor="#ffaaaa", label="audio_0\n[>][bfb]", height="0.2", style="filled,dotted"];
}
qtdemux0_0x2040b80_sink_0x2042638 -> qtdemux0_0x2040b80_video_0_0x2042b98 [style="invis"];
fillcolor="#aaffaa";
}
qtdemux0_0x2040b80_video_0_0x2042b98 -> h264parse0_0xb4526860_sink_0x2042cf0 [label="video/x-h264\l stream-format: avc\l alignment: au\l level: 4\l profile: high\l codec_data: 01640028ffe1001d676400...\l width: 1920\l height: 1080\l framerate: 30/1\l pixel-aspect-ratio: 1/1\l colorimetry: bt709\l"]
qtdemux0_0x2040b80_audio_0_0xb45043a8 -> aacparse0_0xb45342e8_sink_0xb4504500 [label="audio/mpeg\l mpegversion: 4\l framed: true\l stream-format: raw\l level: 2\l base-profile: lc\l profile: lc\l codec_data: 1190\l rate: 48000\l channels: 2\l"]
subgraph cluster_typefind_0x2055080 {
fontname="Bitstream Vera Sans";
fontsize="8";
style="filled,rounded";
color=black;
label="GstTypeFindElement\ntypefind\n[>]\ncaps=video/quicktime, variant=(string)iso";
subgraph cluster_typefind_0x2055080_sink {
label="";
style="invis";
typefind_0x2055080_sink_0x2042388 [color=black, fillcolor="#aaaaff", label="sink\n[<][bfb][t]", height="0.2", style="filled,solid"];
}
subgraph cluster_typefind_0x2055080_src {
label="";
style="invis";
typefind_0x2055080_src_0x20424e0 [color=black, fillcolor="#ffaaaa", label="src\n[<][bfb]", height="0.2", style="filled,solid"];
}
typefind_0x2055080_sink_0x2042388 -> typefind_0x2055080_src_0x20424e0 [style="invis"];
fillcolor="#aaffaa";
}
_proxypad1_0x20471f8 -> typefind_0x2055080_sink_0x2042388 [label="ANY"]
typefind_0x2055080_src_0x20424e0 -> qtdemux0_0x2040b80_sink_0x2042638 [labeldistance="10", labelangle="0", label=" ", taillabel="ANY", headlabel="video/quicktime\lvideo/mj2\laudio/x-m4a\lapplication/x-3gp\l"]
}
_proxypad0_0x2047090 -> parsebin0_0x204f1c0_sink_0x20461b0 [label="ANY"]
parsebin0_0x204f1c0_src_0_0xb5a28150 -> multiqueue0_0x2048018_sink_0_0x2055628 [label="video/x-h264\l stream-format: avc\l alignment: au\l level: 4\l profile: high\l codec_data: 01640028ffe1001d676400...\l width: 1920\l height: 1080\l framerate: 30/1\l pixel-aspect-ratio: 1/1\l colorimetry: bt709\l chroma-format: 4:2:0\l bit-depth-luma: 8\l bit-depth-chroma: 8\l parsed: true\l"]
parsebin0_0x204f1c0_src_1_0xb5a287b0 -> multiqueue0_0x2048018_sink_1_0x20558e8 [label="audio/mpeg\l mpegversion: 4\l framed: true\l stream-format: raw\l level: 2\l base-profile: lc\l profile: lc\l codec_data: 1190\l rate: 48000\l channels: 2\l"]
subgraph cluster_multiqueue0_0x2048018 {
fontname="Bitstream Vera Sans";
fontsize="8";
style="filled,rounded";
color=black;
label="GstMultiQueue\nmultiqueue0\n[>]\nmax-size-buffers=0\nmax-size-time=427999999\nsync-by-running-time=TRUE\nuse-interleave=TRUE\nmin-interleave-time=300000000";
subgraph cluster_multiqueue0_0x2048018_sink {
label="";
style="invis";
multiqueue0_0x2048018_sink_0_0x2055628 [color=black, fillcolor="#aaaaff", label="sink_0\ngroup-id=4\ncurrent-level-buffers=13\ncurrent-level-bytes=61660\ncurrent-level-time=433333333\n[>][bfb]", height="0.2", style="filled,dashed"];
multiqueue0_0x2048018_sink_1_0x20558e8 [color=black, fillcolor="#aaaaff", label="sink_1\ngroup-id=2\ncurrent-level-buffers=30\ncurrent-level-bytes=20270\ncurrent-level-time=661333334\n[>][bfb]", height="0.2", style="filled,dashed"];
}
subgraph cluster_multiqueue0_0x2048018_src {
label="";
style="invis";
multiqueue0_0x2048018_src_0_0x2055788 [color=black, fillcolor="#ffaaaa", label="src_0\ngroup-id=4\ncurrent-level-buffers=13\ncurrent-level-bytes=61660\ncurrent-level-time=433333333\n[>][bfb][T]", height="0.2", style="filled,dotted"];
multiqueue0_0x2048018_src_1_0x2055a48 [color=black, fillcolor="#ffaaaa", label="src_1\ngroup-id=2\ncurrent-level-buffers=30\ncurrent-level-bytes=20270\ncurrent-level-time=661333334\n[>][bfb][T]", height="0.2", style="filled,dotted"];
}
multiqueue0_0x2048018_sink_0_0x2055628 -> multiqueue0_0x2048018_src_0_0x2055788 [style="invis"];
fillcolor="#aaffaa";
}
multiqueue0_0x2048018_src_0_0x2055788 -> v4l2slh264dec0_0xb3a0f040_sink_0xb45047b0 [label="video/x-h264\l stream-format: avc\l alignment: au\l level: 4\l profile: high\l codec_data: 01640028ffe1001d676400...\l width: 1920\l height: 1080\l framerate: 30/1\l pixel-aspect-ratio: 1/1\l colorimetry: bt709\l chroma-format: 4:2:0\l bit-depth-luma: 8\l bit-depth-chroma: 8\l parsed: true\l"]
multiqueue0_0x2048018_src_1_0x2055a48 -> faad0_0xb3007298_sink_0xb4504d10 [label="audio/mpeg\l mpegversion: 4\l framed: true\l stream-format: raw\l level: 2\l base-profile: lc\l profile: lc\l codec_data: 1190\l rate: 48000\l channels: 2\l"]
}
decodebin3_0_0x20440a0_video_0_0x2046600 -> kmssink0_0x204ead0_sink_0x2042230 [label="video/x-raw\l format: NV12\l width: 1920\l height: 1080\l interlace-mode: progressive\l multiview-mode: mono\l multiview-flags: 0:ffffffff:/right-view...\l pixel-aspect-ratio: 1/1\l colorimetry: bt709\l framerate: 30/1\l"]
subgraph cluster_filesrc0_0x2040238 {
fontname="Bitstream Vera Sans";
fontsize="8";
style="filled,rounded";
color=black;
label="GstFileSrc\nfilesrc0\n[>]\nlocation=\"/media/usb/h264/file_example_mp4_1920_18mg.mp4 (1080p).mp4\"";
subgraph cluster_filesrc0_0x2040238_src {
label="";
style="invis";
filesrc0_0x2040238_src_0x20420d8 [color=black, fillcolor="#ffaaaa", label="src\n[<][bfb]", height="0.2", style="filled,solid"];
}
fillcolor="#ffaaaa";
}
filesrc0_0x2040238_src_0x20420d8 -> decodebin3_0_0x20440a0_sink_0x2046040 [label="ANY"]
}
This file has been truncated, but you can view the full file.
0:00:00.000894167 2614 0x1f1e800 INFO GST_INIT gst.c:592:init_pre: Initializing GStreamer Core Library version 1.20.3
0:00:00.001198167 2614 0x1f1e800 INFO GST_INIT gst.c:593:init_pre: Using library installed in /usr/lib/arm-linux-gnueabihf
0:00:00.001322375 2614 0x1f1e800 INFO GST_INIT gst.c:611:init_pre: Linux orangepipc 5.17.11-sunxi #22.05.1 SMP Sat May 28 08:28:35 UTC 2022 armv7l
0:00:00.004555792 2614 0x1f1e800 INFO GST_INIT gstmessage.c:129:_priv_gst_message_initialize: init messages
0:00:00.009694500 2614 0x1f1e800 INFO GST_INIT gstcontext.c:86:_priv_gst_context_initialize: init contexts
0:00:00.013004500 2614 0x1f1e800 INFO GST_PLUGIN_LOADING gstplugin.c:324:_priv_gst_plugin_initialize: registering 0 static plugins
0:00:00.014184083 2614 0x1f1e800 INFO GST_PLUGIN_LOADING gstplugin.c:232:gst_plugin_register_static: registered static plugin "staticelements"
0:00:00.014385000 2614 0x1f1e800 INFO GST_PLUGIN_LOADING gstplugin.c:234:gst_plugin_register_static: added static plugin "staticelements", result: 1
0:00:00.015113875 2614 0x1f1e800 INFO GST_REGISTRY gstregistry.c:1827:ensure_current_registry: reading registry cache: /home/pi/.cache/gstreamer-1.0/registry.armv7l.bin
0:00:00.112865208 2614 0x1f1e800 INFO GST_REGISTRY gstregistrybinary.c:683:priv_gst_registry_binary_read_cache: loaded /home/pi/.cache/gstreamer-1.0/registry.armv7l.bin in 0.097510 seconds
0:00:00.113202208 2614 0x1f1e800 INFO GST_REGISTRY gstregistry.c:1693:scan_and_update_registry: Validating plugins from registry cache: /home/pi/.cache/gstreamer-1.0/registry.armv7l.bin
0:00:00.120170750 2614 0x1f1e800 INFO GST_REGISTRY gstregistry.c:1785:scan_and_update_registry: Registry cache has not changed
0:00:00.120268708 2614 0x1f1e800 INFO GST_REGISTRY gstregistry.c:1862:ensure_current_registry: registry reading and updating done, result = 1
0:00:00.120302667 2614 0x1f1e800 INFO GST_INIT gst.c:833:init_post: GLib runtime version: 2.72.1
0:00:00.120337000 2614 0x1f1e800 INFO GST_INIT gst.c:835:init_post: GLib headers version: 2.72.1
0:00:00.120359833 2614 0x1f1e800 INFO GST_INIT gst.c:837:init_post: initialized GStreamer successfully
0:00:00.120942042 2614 0x1f1e800 INFO GST_PIPELINE gstparse.c:344:gst_parse_launch_full: parsing pipeline description 'filesrc location=/media/usb/h264/file_example_mp4_1920_18mg.mp4\ (1080p).mp4 ! decodebin3 ! kmssink '
0:00:00.121035083 2614 0x1f1e800 DEBUG GST_PIPELINE parse.l:135:priv_gst_parse_yylex: flex: IDENTIFIER: filesrc
0:00:00.124855583 2614 0x1f1e800 INFO GST_PLUGIN_LOADING gstplugin.c:987:_priv_gst_plugin_load_file_for_registry: plugin "/usr/lib/arm-linux-gnueabihf/gstreamer-1.0/libgstcoreelements.so" loaded
0:00:00.124958708 2614 0x1f1e800 INFO GST_ELEMENT_FACTORY gstelementfactory.c:489:gst_element_factory_create_with_properties: creating element "filesrc"
0:00:00.125608417 2614 0x1f1e800 INFO GST_ELEMENT_PADS gstelement.c:759:gst_element_add_pad:<GstBaseSrc@0x2040238> adding pad 'src'
0:00:00.125723833 2614 0x1f1e800 DEBUG GST_PIPELINE parse.l:181:priv_gst_parse_yylex: flex: SPACE: [ ]
0:00:00.125772042 2614 0x1f1e800 DEBUG GST_PIPELINE parse.l:93:priv_gst_parse_yylex: flex: ASSIGNMENT: location=/media/usb/h264/file_example_mp4_1920_18mg.mp4\ (1080p).mp4
0:00:00.125865625 2614 0x1f1e800 INFO filesrc gstfilesrc.c:237:gst_file_src_set_location: filename : /media/usb/h264/file_example_mp4_1920_18mg.mp4 (1080p).mp4
0:00:00.125892833 2614 0x1f1e800 INFO filesrc gstfilesrc.c:238:gst_file_src_set_location: uri : file:///media/usb/h264/file_example_mp4_1920_18mg.mp4%20(1080p).mp4
0:00:00.125934917 2614 0x1f1e800 DEBUG GST_PIPELINE parse.l:181:priv_gst_parse_yylex: flex: SPACE: [ ]
0:00:00.125963792 2614 0x1f1e800 DEBUG GST_PIPELINE parse.l:146:priv_gst_parse_yylex: flex: LINK: !
0:00:00.126013083 2614 0x1f1e800 DEBUG GST_PIPELINE parse.l:181:priv_gst_parse_yylex: flex: SPACE: [ ]
0:00:00.126042292 2614 0x1f1e800 DEBUG GST_PIPELINE parse.l:135:priv_gst_parse_yylex: flex: IDENTIFIER: decodebin3
0:00:00.133727042 2614 0x1f1e800 INFO GST_PLUGIN_LOADING gstplugin.c:987:_priv_gst_plugin_load_file_for_registry: plugin "/usr/lib/arm-linux-gnueabihf/gstreamer-1.0/libgstplayback.so" loaded
0:00:00.133842458 2614 0x1f1e800 INFO GST_ELEMENT_FACTORY gstelementfactory.c:489:gst_element_factory_create_with_properties: creating element "decodebin3"
0:00:00.134966750 2614 0x1f1e800 INFO GST_ELEMENT_PADS gstelement.c:759:gst_element_add_pad:<GstDecodebin3@0x20440a0> adding pad 'sink'
0:00:00.135062833 2614 0x1f1e800 INFO GST_ELEMENT_FACTORY gstelementfactory.c:489:gst_element_factory_create_with_properties: creating element "multiqueue"
0:00:00.135753667 2614 0x1f1e800 DEBUG GST_PIPELINE parse.l:181:priv_gst_parse_yylex: flex: SPACE: [ ]
0:00:00.135814500 2614 0x1f1e800 DEBUG GST_PIPELINE parse.l:146:priv_gst_parse_yylex: flex: LINK: !
0:00:00.135866667 2614 0x1f1e800 DEBUG GST_PIPELINE parse.l:181:priv_gst_parse_yylex: flex: SPACE: [ ]
0:00:00.135900792 2614 0x1f1e800 DEBUG GST_PIPELINE parse.l:135:priv_gst_parse_yylex: flex: IDENTIFIER: kmssink
0:00:00.138593125 2614 0x1f1e800 INFO GST_PLUGIN_LOADING gstplugin.c:987:_priv_gst_plugin_load_file_for_registry: plugin "/usr/lib/arm-linux-gnueabihf/gstreamer-1.0/libgstkms.so" loaded
0:00:00.138681500 2614 0x1f1e800 INFO GST_ELEMENT_FACTORY gstelementfactory.c:489:gst_element_factory_create_with_properties: creating element "kmssink"
0:00:00.140407958 2614 0x1f1e800 INFO GST_ELEMENT_PADS gstelement.c:759:gst_element_add_pad:<GstBaseSink@0x204ead0> adding pad 'sink'
0:00:00.140675917 2614 0x1f1e800 DEBUG GST_PIPELINE parse.l:181:priv_gst_parse_yylex: flex: SPACE: [ ]
0:00:00.140750417 2614 0x1f1e800 DEBUG GST_PIPELINE gst/parse/grammar.y:1226:priv_gst_parse_launch: got 3 elements and 2 links
0:00:00.140790208 2614 0x1f1e800 INFO GST_ELEMENT_FACTORY gstelementfactory.c:489:gst_element_factory_create_with_properties: creating element "pipeline"
0:00:00.141225583 2614 0x1f1e800 INFO GST_PIPELINE gst/parse/grammar.y:683:gst_parse_perform_link: linking some pad of GstFileSrc named filesrc0 to some pad of GstDecodebin3 named decodebin3-0 (0/0) with caps "(NULL)"
0:00:00.141284417 2614 0x1f1e800 INFO GST_ELEMENT_PADS gstutils.c:1816:gst_element_link_pads_full: trying to link element filesrc0:(any) to element decodebin3-0:(any)
0:00:00.141341750 2614 0x1f1e800 INFO GST_PADS gstutils.c:1079:gst_pad_check_link: trying to link filesrc0:src and decodebin3-0:sink
0:00:00.141466625 2614 0x1f1e800 INFO GST_PADS gstpad.c:4357:gst_pad_peer_query:<sink:proxypad0> pad has no peer
0:00:00.141534500 2614 0x1f1e800 INFO GST_PADS gstutils.c:1632:prepare_link_maybe_ghosting: filesrc0 and decodebin3-0 in same bin, no need for ghost pads
0:00:00.141610625 2614 0x1f1e800 INFO GST_PADS gstpad.c:2382:gst_pad_link_prepare: trying to link filesrc0:src and decodebin3-0:sink
0:00:00.141689375 2614 0x1f1e800 INFO GST_PADS gstpad.c:4357:gst_pad_peer_query:<sink:proxypad0> pad has no peer
0:00:00.141764542 2614 0x1f1e800 INFO GST_ELEMENT_FACTORY gstelementfactory.c:489:gst_element_factory_create_with_properties: creating element "parsebin"
0:00:00.142588167 2614 0x1f1e800 INFO GST_ELEMENT_FACTORY gstelementfactory.c:489:gst_element_factory_create_with_properties: creating element "typefind"
0:00:00.142815750 2614 0x1f1e800 INFO GST_ELEMENT_PADS gstelement.c:759:gst_element_add_pad:<GstTypeFindElement@0x2055080> adding pad 'sink'
0:00:00.142954958 2614 0x1f1e800 INFO GST_ELEMENT_PADS gstelement.c:759:gst_element_add_pad:<GstTypeFindElement@0x2055080> adding pad 'src'
0:00:00.143176875 2614 0x1f1e800 INFO GST_ELEMENT_PADS gstelement.c:1016:gst_element_get_static_pad: found pad typefind:sink
0:00:00.143371292 2614 0x1f1e800 INFO GST_PADS gstpad.c:2382:gst_pad_link_prepare: trying to link sink:proxypad1 and typefind:sink
0:00:00.143421792 2614 0x1f1e800 INFO GST_PADS gstpad.c:2590:gst_pad_link_full: linked sink:proxypad1 and typefind:sink, successful
0:00:00.143447042 2614 0x1f1e800 INFO GST_EVENT gstevent.c:1660:gst_event_new_reconfigure: creating reconfigure event
0:00:00.143539625 2614 0x1f1e800 INFO GST_ELEMENT_PADS gstelement.c:759:gst_element_add_pad:<GstParseBin@0x204f1c0> adding pad 'sink'
0:00:00.143625750 2614 0x1f1e800 INFO GST_ELEMENT_PADS gstelement.c:1016:gst_element_get_static_pad: found pad parsebin0:sink
0:00:00.143791208 2614 0x1f1e800 INFO GST_PADS gstpad.c:2382:gst_pad_link_prepare: trying to link sink:proxypad0 and parsebin0:sink
0:00:00.143836333 2614 0x1f1e800 INFO GST_PADS gstpad.c:2590:gst_pad_link_full: linked sink:proxypad0 and parsebin0:sink, successful
0:00:00.143861000 2614 0x1f1e800 INFO GST_EVENT gstevent.c:1660:gst_event_new_reconfigure: creating reconfigure event
0:00:00.143904708 2614 0x1f1e800 INFO GST_EVENT gstpad.c:5946:gst_pad_send_event_unchecked:<filesrc0:src> Received event on flushing pad. Discarding
0:00:00.144021208 2614 0x1f1e800 INFO GST_STATES gstbin.c:2479:gst_bin_element_set_state:<typefind> current NULL pending VOID_PENDING, desired next NULL
0:00:00.144059833 2614 0x1f1e800 INFO GST_STATES gstbin.c:2597:gst_bin_element_set_state:<typefind> skipping transition from NULL to NULL
0:00:00.144103417 2614 0x1f1e800 INFO GST_STATES gstbin.c:2928:gst_bin_change_state_func:<parsebin0> child 'typefind' changed state to 1(NULL) successfully
0:00:00.144151083 2614 0x1f1e800 INFO GST_STATES gstelement.c:2806:gst_element_continue_state:<parsebin0> completed state change to NULL
0:00:00.144193208 2614 0x1f1e800 INFO GST_PADS gstpad.c:2590:gst_pad_link_full: linked filesrc0:src and decodebin3-0:sink, successful
0:00:00.144218958 2614 0x1f1e800 INFO GST_EVENT gstevent.c:1660:gst_event_new_reconfigure: creating reconfigure event
0:00:00.144249583 2614 0x1f1e800 INFO GST_EVENT gstpad.c:5946:gst_pad_send_event_unchecked:<filesrc0:src> Received event on flushing pad. Discarding
0:00:00.144364250 2614 0x1f1e800 INFO GST_PIPELINE gst/parse/grammar.y:683:gst_parse_perform_link: linking some pad of GstDecodebin3 named decodebin3-0 to some pad of GstKMSSink named kmssink0 (0/0) with caps "(NULL)"
0:00:00.144404875 2614 0x1f1e800 INFO GST_ELEMENT_PADS gstutils.c:1816:gst_element_link_pads_full: trying to link element decodebin3-0:(any) to element kmssink0:(any)
0:00:00.144569625 2614 0x1f1e800 INFO GST_ELEMENT_PADS gstelement.c:1013:gst_element_get_static_pad: no such pad 'video_%u' in element "decodebin3-0"
0:00:00.144636708 2614 0x1f1e800 INFO GST_ELEMENT_PADS gstutils.c:1270:gst_element_get_compatible_pad:<decodebin3-0> Could not find a compatible pad to link to kmssink0:sink
0:00:00.144677458 2614 0x1f1e800 INFO default gstutils.c:2206:gst_element_link_pads_filtered: Could not link pads: decodebin3-0:(null) - kmssink0:(null)
0:00:00.144721458 2614 0x1f1e800 DEBUG GST_PIPELINE gst/parse/grammar.y:597:gst_parse_perform_delayed_link: trying delayed link some pad of GstDecodebin3 named decodebin3-0 to some pad of GstKMSSink named kmssink0
Setting pipeline to PAUSED ...
0:00:00.145084500 2614 0x1f1e800 INFO GST_STATES gstbin.c:2479:gst_bin_element_set_state:<kmssink0> current NULL pending VOID_PENDING, desired next READY
0:00:01.212402084 2614 0x1f1e800 INFO kmssink gstkmssink.c:366:log_drm_version:<kmssink0> DRM v1.0.0 [sun4i-drm — Allwinner sun4i Display Engine — 20150629]
0:00:01.212513792 2614 0x1f1e800 INFO kmssink gstkmssink.c:411:get_drm_caps:<kmssink0> prime import (✓) / prime export (✓) / async page flip (✗)
0:00:01.530695542 2614 0x1f1e800 INFO kmssink gstkmssink.c:544:ensure_allowed_caps:<kmssink0> ignoring format BX12
0:00:01.530788126 2614 0x1f1e800 INFO kmssink gstkmssink.c:544:ensure_allowed_caps:<kmssink0> ignoring format BX15
0:00:01.530821334 2614 0x1f1e800 INFO kmssink gstkmssink.c:544:ensure_allowed_caps:<kmssink0> ignoring format BX24
0:00:01.530894917 2614 0x1f1e800 INFO kmssink gstkmssink.c:544:ensure_allowed_caps:<kmssink0> ignoring format RX12
0:00:01.530929084 2614 0x1f1e800 INFO kmssink gstkmssink.c:544:ensure_allowed_caps:<kmssink0> ignoring format RX15
0:00:01.530959001 2614 0x1f1e800 INFO kmssink gstkmssink.c:544:ensure_allowed_caps:<kmssink0> ignoring format RX24
0:00:01.530987334 2614 0x1f1e800 INFO kmssink gstkmssink.c:544:ensure_allowed_caps:<kmssink0> ignoring format XB15
0:00:01.531015959 2614 0x1f1e800 INFO kmssink gstkmssink.c:544:ensure_allowed_caps:<kmssink0> ignoring format XB12
0:00:01.531063334 2614 0x1f1e800 INFO kmssink gstkmssink.c:544:ensure_allowed_caps:<kmssink0> ignoring format XR15
0:00:01.531094834 2614 0x1f1e800 INFO kmssink gstkmssink.c:544:ensure_allowed_caps:<kmssink0> ignoring format XR12
0:00:01.531223959 2614 0x1f1e800 INFO kmssink gstkmssink.c:544:ensure_allowed_caps:<kmssink0> ignoring format VYUY
0:00:01.531312376 2614 0x1f1e800 INFO kmssink gstkmssink.c:544:ensure_allowed_caps:<kmssink0> ignoring format YU11
0:00:01.531429792 2614 0x1f1e800 INFO kmssink gstkmssink.c:544:ensure_allowed_caps:<kmssink0> ignoring format YV11
0:00:01.531496334 2614 0x1f1e800 INFO kmssink gstkmssink.c:544:ensure_allowed_caps:<kmssink0> ignoring format YV16
0:00:01.531997542 2614 0x1f1e800 INFO kmssink gstkmssink.c:791:gst_kms_sink_start:<kmssink0> connector id = 51 / crtc id = 49 / plane id = 31
0:00:01.532039834 2614 0x1f1e800 INFO kmssink gstkmssink.c:813:gst_kms_sink_start:<kmssink0> display size: pixels = 1360x768 / millimeters = 1600x900
0:00:01.532124584 2614 0x1f1e800 INFO GST_STATES gstelement.c:2806:gst_element_continue_state:<kmssink0> completed state change to READY
0:00:01.532164542 2614 0x1f1e800 INFO GST_STATES gstelement.c:2706:_priv_gst_element_state_changed:<kmssink0> notifying about state-changed NULL to READY (VOID_PENDING pending)
0:00:01.532302917 2614 0x1f1e800 INFO GST_STATES gstbin.c:2928:gst_bin_change_state_func:<pipeline0> child 'kmssink0' changed state to 2(READY) successfully
0:00:01.532388542 2614 0x1f1e800 INFO GST_STATES gstbin.c:2479:gst_bin_element_set_state:<decodebin3-0> current NULL pending VOID_PENDING, desired next READY
0:00:01.532479084 2614 0x1f1e800 INFO GST_STATES gstbin.c:2479:gst_bin_element_set_state:<parsebin0> current NULL pending VOID_PENDING, desired next READY
0:00:01.532677542 2614 0x1f1e800 INFO GST_STATES gstbin.c:2479:gst_bin_element_set_state:<typefind> current NULL pending VOID_PENDING, desired next READY
0:00:01.532725709 2614 0x1f1e800 INFO GST_STATES gstelement.c:2806:gst_element_continue_state:<typefind> completed state change to READY
0:00:01.532759584 2614 0x1f1e800 INFO GST_STATES gstelement.c:2706:_priv_gst_element_state_changed:<typefind> notifying about state-changed NULL to READY (VOID_PENDING pending)
0:00:01.532830959 2614 0x1f1e800 INFO GST_STATES gstbin.c:2928:gst_bin_change_state_func:<parsebin0> child 'typefind' changed state to 2(READY) successfully
0:00:01.532882834 2614 0x1f1e800 INFO GST_STATES gstelement.c:2806:gst_element_continue_state:<parsebin0> completed state change to READY
0:00:01.532918501 2614 0x1f1e800 INFO GST_STATES gstelement.c:2706:_priv_gst_element_state_changed:<parsebin0> notifying about state-changed NULL to READY (VOID_PENDING pending)
0:00:01.532979584 2614 0x1f1e800 INFO GST_STATES gstbin.c:2928:gst_bin_change_state_func:<decodebin3-0> child 'parsebin0' changed state to 2(READY) successfully
0:00:01.533023167 2614 0x1f1e800 INFO GST_STATES gstbin.c:2479:gst_bin_element_set_state:<multiqueue0> current NULL pending VOID_PENDING, desired next READY
0:00:01.533058501 2614 0x1f1e800 INFO GST_STATES gstelement.c:2806:gst_element_continue_state:<multiqueue0> completed state change to READY
0:00:01.533111792 2614 0x1f1e800 INFO GST_STATES gstelement.c:2706:_priv_gst_element_state_changed:<multiqueue0> notifying about state-changed NULL to READY (VOID_PENDING pending)
0:00:01.533170167 2614 0x1f1e800 INFO GST_STATES gstbin.c:2928:gst_bin_change_state_func:<decodebin3-0> child 'multiqueue0' changed state to 2(READY) successfully
0:00:01.533213626 2614 0x1f1e800 INFO GST_STATES gstelement.c:2806:gst_element_continue_state:<decodebin3-0> completed state change to READY
0:00:01.533247167 2614 0x1f1e800 INFO GST_STATES gstelement.c:2706:_priv_gst_element_state_changed:<decodebin3-0> notifying about state-changed NULL to READY (VOID_PENDING pending)
0:00:01.533293792 2614 0x1f1e800 INFO GST_STATES gstbin.c:2928:gst_bin_change_state_func:<pipeline0> child 'decodebin3-0' changed state to 2(READY) successfully
0:00:01.533334334 2614 0x1f1e800 INFO GST_STATES gstbin.c:2479:gst_bin_element_set_state:<filesrc0> current NULL pending VOID_PENDING, desired next READY
0:00:01.533371459 2614 0x1f1e800 INFO GST_STATES gstelement.c:2806:gst_element_continue_state:<filesrc0> completed state change to READY
0:00:01.533406584 2614 0x1f1e800 INFO GST_STATES gstelement.c:2706:_priv_gst_element_state_changed:<filesrc0> notifying about state-changed NULL to READY (VOID_PENDING pending)
0:00:01.533456751 2614 0x1f1e800 INFO GST_STATES gstbin.c:2928:gst_bin_change_state_func:<pipeline0> child 'filesrc0' changed state to 2(READY) successfully
0:00:01.533506667 2614 0x1f1e800 INFO GST_STATES gstelement.c:2778:gst_element_continue_state:<pipeline0> committing state from NULL to READY, pending PAUSED, next PAUSED
0:00:01.533540751 2614 0x1f1e800 INFO GST_STATES gstelement.c:2706:_priv_gst_element_state_changed:<pipeline0> notifying about state-changed NULL to READY (PAUSED pending)
0:00:01.533831626 2614 0x1f1e800 INFO GST_STATES gstbin.c:2069:gst_bin_get_state_func:<pipeline0> getting state
0:00:01.533873709 2614 0x1f1e800 INFO GST_STATES gstelement.c:2522:gst_element_get_state_func:<pipeline0> waiting for element to commit state
0:00:01.533916042 2614 0x1f1e800 INFO GST_STATES gstelement.c:2537:gst_element_get_state_func:<pipeline0> timed out
0:00:01.534578167 2614 0x1f1e800 INFO GST_STATES gstbin.c:2069:gst_bin_get_state_func:<decodebin3-0> getting state
0:00:01.534868209 2614 0x1f1e800 INFO GST_STATES gstbin.c:2069:gst_bin_get_state_func:<parsebin0> getting state
0:00:01.536022876 2614 0x1f1e800 INFO default gstdebugutils.c:879:gst_debug_bin_to_dot_file: wrote bin graph to : '/home/pi/gst-dots//0.00.01.533572584-gst-launch.NULL_READY.dot'
0:00:01.536170709 2614 0x1f1e800 INFO GST_STATES gstelement.c:2786:gst_element_continue_state:<pipeline0> continue state change READY to PAUSED, final PAUSED
0:00:01.536278751 2614 0x1f1e800 INFO GST_STATES gstbin.c:2479:gst_bin_element_set_state:<kmssink0> current READY pending VOID_PENDING, desired next PAUSED
0:00:01.536382126 2614 0x1f1e800 INFO GST_STATES gstbin.c:2935:gst_bin_change_state_func:<pipeline0> child 'kmssink0' is changing state asynchronously to PAUSED
0:00:01.536434167 2614 0x1f1e800 INFO GST_STATES gstbin.c:2479:gst_bin_element_set_state:<decodebin3-0> current READY pending VOID_PENDING, desired next PAUSED
0:00:01.536501667 2614 0x1f1e800 INFO GST_STATES gstbin.c:2479:gst_bin_element_set_state:<parsebin0> current READY pending VOID_PENDING, desired next PAUSED
0:00:01.536599292 2614 0x1f1e800 INFO GST_STATES gstbin.c:2479:gst_bin_element_set_state:<typefind> current READY pending VOID_PENDING, desired next PAUSED
0:00:01.536705667 2614 0x1f1e800 INFO filesrc gstfilesrc.c:465:gst_file_src_start:<filesrc0> opening file /media/usb/h264/file_example_mp4_1920_18mg.mp4 (1080p).mp4
0:00:01.536856501 2614 0x1f1e800 WARN basesrc gstbasesrc.c:3688:gst_base_src_start_complete:<filesrc0> pad not activated yet
0:00:01.537063417 2614 0x1f1e800 INFO filesrc gstfilesrc.c:465:gst_file_src_start:<filesrc0> opening file /media/usb/h264/file_example_mp4_1920_18mg.mp4 (1080p).mp4
0:00:01.537319126 2614 0x1f1e800 INFO task gsttask.c:516:gst_task_set_lock: setting stream lock 0x20423d4 on task 0x205b028
0:00:01.537360917 2614 0x1f1e800 INFO GST_PADS gstpad.c:6291:gst_pad_start_task:<typefind:sink> created task 0x205b028
0:00:01.537775667 2614 0x1f1e800 INFO GST_STATES gstelement.c:2806:gst_element_continue_state:<typefind> completed state change to PAUSED
0:00:01.537836709 2614 0x1f1e800 INFO GST_STATES gstelement.c:2706:_priv_gst_element_state_changed:<typefind> notifying about state-changed READY to PAUSED (VOID_PENDING pending)
0:00:01.537927251 2614 0x1f1e800 INFO GST_STATES gstbin.c:2928:gst_bin_change_state_func:<parsebin0> child 'typefind' changed state to 3(PAUSED) successfully
0:00:01.538005376 2614 0x1f1e800 INFO GST_STATES gstelement.c:2806:gst_element_continue_state:<parsebin0> completed state change to PAUSED
0:00:01.538013001 2614 0x203f440 INFO GST_ELEMENT_PADS gstelement.c:1016:gst_element_get_static_pad: found pad typefind:sink
0:00:01.538048251 2614 0x1f1e800 INFO GST_STATES gstelement.c:2706:_priv_gst_element_state_changed:<parsebin0> notifying about state-changed READY to PAUSED (VOID_PENDING pending)
0:00:01.538120126 2614 0x1f1e800 INFO GST_STATES gstbin.c:2928:gst_bin_change_state_func:<decodebin3-0> child 'parsebin0' changed state to 3(PAUSED) successfully
0:00:01.538177917 2614 0x1f1e800 INFO GST_STATES gstbin.c:2479:gst_bin_element_set_state:<multiqueue0> current READY pending VOID_PENDING, desired next PAUSED
0:00:01.538312334 2614 0x1f1e800 INFO GST_STATES gstelement.c:2806:gst_element_continue_state:<multiqueue0> completed state change to PAUSED
0:00:01.538365459 2614 0x1f1e800 INFO GST_STATES gstelement.c:2706:_priv_gst_element_state_changed:<multiqueue0> notifying about state-changed READY to PAUSED (VOID_PENDING pending)
0:00:01.538449501 2614 0x1f1e800 INFO GST_STATES gstbin.c:2928:gst_bin_change_state_func:<decodebin3-0> child 'multiqueue0' changed state to 3(PAUSED) successfully
0:00:01.538518292 2614 0x1f1e800 INFO GST_STATES gstelement.c:2806:gst_element_continue_state:<decodebin3-0> completed state change to PAUSED
0:00:01.538574542 2614 0x1f1e800 INFO GST_STATES gstelement.c:2706:_priv_gst_element_state_changed:<decodebin3-0> notifying about state-changed READY to PAUSED (VOID_PENDING pending)
0:00:01.538646334 2614 0x1f1e800 INFO GST_STATES gstbin.c:2928:gst_bin_change_state_func:<pipeline0> child 'decodebin3-0' changed state to 3(PAUSED) successfully
0:00:01.538699626 2614 0x1f1e800 INFO GST_STATES gstbin.c:2479:gst_bin_element_set_state:<filesrc0> current READY pending VOID_PENDING, desired next PAUSED
0:00:01.538759917 2614 0x1f1e800 INFO GST_STATES gstelement.c:2806:gst_element_continue_state:<filesrc0> completed state change to PAUSED
0:00:01.538797751 2614 0x1f1e800 INFO GST_STATES gstelement.c:2706:_priv_gst_element_state_changed:<filesrc0> notifying about state-changed READY to PAUSED (VOID_PENDING pending)
0:00:01.538858626 2614 0x1f1e800 INFO GST_STATES gstbin.c:2928:gst_bin_change_state_func:<pipeline0> child 'filesrc0' changed state to 3(PAUSED) successfully
0:00:01.538918584 2614 0x1f1e800 INFO pipeline gstpipeline.c:533:gst_pipeline_change_state:<pipeline0> pipeline is not live
Pipeline is PREROLLING ...
0:00:01.546191001 2614 0x203f440 INFO GST_TYPEFIND gsttypefind.c:72:gst_type_find_register: registering typefind function for video/x-msvideo
0:00:01.546500917 2614 0x203f440 INFO GST_TYPEFIND gsttypefind.c:72:gst_type_find_register: registering typefind function for audio/qcelp
0:00:01.546601834 2614 0x203f440 INFO GST_TYPEFIND gsttypefind.c:72:gst_type_find_register: registering typefind function for video/x-cdxa
0:00:01.546687667 2614 0x203f440 INFO GST_TYPEFIND gsttypefind.c:72:gst_type_find_register: registering typefind function for audio/riff-midi
0:00:01.546766876 2614 0x203f440 INFO GST_TYPEFIND gsttypefind.c:72:gst_type_find_register: registering typefind function for audio/x-wav
0:00:01.546877876 2614 0x203f440 INFO GST_TYPEFIND gsttypefind.c:72:gst_type_find_register: registering typefind function for image/webp
0:00:01.546963251 2614 0x203f440 INFO GST_TYPEFIND gsttypefind.c:72:gst_type_find_register: registering typefind function for video/x-ms-asf
0:00:01.547038376 2614 0x203f440 INFO GST_TYPEFIND gsttypefind.c:72:gst_type_find_register: registering typefind function for video/x-vcd
0:00:01.547129334 2614 0x203f440 INFO GST_TYPEFIND gsttypefind.c:72:gst_type_find_register: registering typefind function for audio/x-imelody
0:00:01.547201834 2614 0x203f440 INFO GST_TYPEFIND gsttypefind.c:72:gst_type_find_register: registering typefind function for application/x-scc
0:00:01.547294292 2614 0x203f440 INFO GST_TYPEFIND gsttypefind.c:72:gst_type_find_register: registering typefind function for application/vnd.rn-realmedia
0:00:01.547372001 2614 0x203f440 INFO GST_TYPEFIND gsttypefind.c:72:gst_type_find_register: registering typefind function for application/x-pn-realaudio
0:00:01.547446709 2614 0x203f440 INFO GST_TYPEFIND gsttypefind.c:72:gst_type_find_register: registering typefind function for video/x-flv
0:00:01.547543709 2614 0x203f440 INFO GST_TYPEFIND gsttypefind.c:72:gst_type_find_register: registering typefind function for audio/x-nist
0:00:01.547615751 2614 0x203f440 INFO GST_TYPEFIND gsttypefind.c:72:gst_type_find_register: registering typefind function for audio/x-voc
0:00:01.547683959 2614 0x203f440 INFO GST_TYPEFIND gsttypefind.c:72:gst_type_find_register: registering typefind function for audio/x-w64
0:00:01.547762709 2614 0x203f440 INFO GST_TYPEFIND gsttypefind.c:72:gst_type_find_register: registering typefind function for audio/x-rf64
0:00:01.547836542 2614 0x203f440 INFO GST_TYPEFIND gsttypefind.c:72:gst_type_find_register: registering typefind function for image/gif
0:00:01.547904709 2614 0x203f440 INFO GST_TYPEFIND gsttypefind.c:72:gst_type_find_register: registering typefind function for image/png
0:00:01.547967376 2614 0x203f440 INFO GST_TYPEFIND gsttypefind.c:72:gst_type_find_register: registering typefind function for video/x-mve
0:00:01.548031376 2614 0x203f440 INFO GST_TYPEFIND gsttypefind.c:72:gst_type_find_register: registering typefind function for audio/x-amr-nb-sh
0:00:01.548097417 2614 0x203f440 INFO GST_TYPEFIND gsttypefind.c:72:gst_type_find_register: registering typefind function for audio/x-amr-wb-sh
0:00:01.548165292 2614 0x203f440 INFO GST_TYPEFIND gsttypefind.c:72:gst_type_find_register: registering typefind function for audio/x-sid
0:00:01.548233584 2614 0x203f440 INFO GST_TYPEFIND gsttypefind.c:72:gst_type_find_register: registering typefind function for image/x-xcf
0:00:01.548297001 2614 0x203f440 INFO GST_TYPEFIND gsttypefind.c:72:gst_type_find_register: registering typefind function for video/x-mng
0:00:01.548395209 2614 0x203f440 INFO GST_TYPEFIND gsttypefind.c:72:gst_type_find_register: registering typefind function for image/x-jng
0:00:01.548468626 2614 0x203f440 INFO GST_TYPEFIND gsttypefind.c:72:gst_type_find_register: registering typefind function for image/x-xpixmap
0:00:01.548536834 2614 0x203f440 INFO GST_TYPEFIND gsttypefind.c:72:gst_type_find_register: registering typefind function for image/x-sun-raster
0:00:01.548604251 2614 0x203f440 INFO GST_TYPEFIND gsttypefind.c:72:gst_type_find_register: registering typefind function for application/x-bzip
0:00:01.548670709 2614 0x203f440 INFO GST_TYPEFIND gsttypefind.c:72:gst_type_find_register: registering typefind function for application/x-gzip
0:00:01.548740376 2614 0x203f440 INFO GST_TYPEFIND gsttypefind.c:72:gst_type_find_register: registering typefind function for application/zip
0:00:01.548813376 2614 0x203f440 INFO GST_TYPEFIND gsttypefind.c:72:gst_type_find_register: registering typefind function for application/x-compress
0:00:01.548881626 2614 0x203f440 INFO GST_TYPEFIND gsttypefind.c:72:gst_type_find_register: registering typefind function for application/x-executable
0:00:01.548944084 2614 0x203f440 INFO GST_TYPEFIND gsttypefind.c:72:gst_type_find_register: registering typefind function for audio/x-spc
0:00:01.549029001 2614 0x203f440 INFO GST_TYPEFIND gsttypefind.c:72:gst_type_find_register: registering typefind function for audio/x-caf
0:00:01.549102042 2614 0x203f440 INFO GST_TYPEFIND gsttypefind.c:72:gst_type_find_register: registering typefind function for application/x-rar
0:00:01.549171751 2614 0x203f440 INFO GST_TYPEFIND gsttypefind.c:72:gst_type_find_register: registering typefind function for audio/x-nsf
0:00:01.549262792 2614 0x203f440 INFO GST_TYPEFIND gsttypefind.c:72:gst_type_find_register: registering typefind function for audio/x-gym
0:00:01.549328501 2614 0x203f440 INFO GST_TYPEFIND gsttypefind.c:72:gst_type_find_register: registering typefind function for audio/x-ay
0:00:01.549398917 2614 0x203f440 INFO GST_TYPEFIND gsttypefind.c:72:gst_type_find_register: registering typefind function for audio/x-gbs
0:00:01.549478834 2614 0x203f440 INFO GST_TYPEFIND gsttypefind.c:72:gst_type_find_register: registering typefind function for audio/x-vgm
0:00:01.549547667 2614 0x203f440 INFO GST_TYPEFIND gsttypefind.c:72:gst_type_find_register: registering typefind function for audio/x-sap
0:00:01.549616917 2614 0x203f440 INFO GST_TYPEFIND gsttypefind.c:72:gst_type_find_register: registering typefind function for video/x-ivf
0:00:01.549685001 2614 0x203f440 INFO GST_TYPEFIND gsttypefind.c:72:gst_type_find_register: registering typefind function for audio/x-kss
0:00:01.549751167 2614 0x203f440 INFO GST_TYPEFIND gsttypefind.c:72:gst_type_find_register: registering typefind function for application/pdf
0:00:01.549818751 2614 0x203f440 INFO GST_TYPEFIND gsttypefind.c:72:gst_type_find_register: registering typefind function for application/msword
0:00:01.549888167 2614 0x203f440 INFO GST_TYPEFIND gsttypefind.c:72:gst_type_find_register: registering typefind function for application/octet-stream
0:00:01.549977959 2614 0x203f440 INFO GST_TYPEFIND gsttypefind.c:72:gst_type_find_register: registering typefind function for image/vnd.adobe.photoshop
0:00:01.550056209 2614 0x203f440 INFO GST_TYPEFIND gsttypefind.c:72:gst_type_find_register: registering typefind function for audio/x-xi
0:00:01.550150876 2614 0x203f440 INFO GST_TYPEFIND gsttypefind.c:72:gst_type_find_register: registering typefind function for audio/x-tap-dmp
0:00:01.550289876 2614 0x203f440 INFO GST_TYPEFIND gsttypefind.c:72:gst_type_find_register: registering typefind function for audio/x-musepack
0:00:01.550417251 2614 0x203f440 INFO GST_TYPEFIND gsttypefind.c:72:gst_type_find_register: registering typefind function for audio/x-au
0:00:01.550503001 2614 0x203f440 INFO GST_TYPEFIND gsttypefind.c:72:gst_type_find_register: registering typefind function for application/x-mcc
0:00:01.550573876 2614 0x203f440 INFO GST_TYPEFIND gsttypefind.c:72:gst_type_find_register: registering typefind function for audio/midi
0:00:01.550651042 2614 0x203f440 INFO GST_TYPEFIND gsttypefind.c:72:gst_type_find_register: registering typefind function for audio/mobile-xmf
0:00:01.550739667 2614 0x203f440 INFO GST_TYPEFIND gsttypefind.c:72:gst_type_find_register: registering typefind function for video/x-fli
0:00:01.550817501 2614 0x203f440 INFO GST_TYPEFIND gsttypefind.c:72:gst_type_find_register: registering typefind function for application/x-id3v2
0:00:01.550886709 2614 0x203f440 INFO GST_TYPEFIND gsttypefind.c:72:gst_type_find_register: registering typefind function for application/x-id3v1
0:00:01.550960751 2614 0x203f440 INFO GST_TYPEFIND gsttypefind.c:72:gst_type_find_register: registering typefind function for application/x-apetag
0:00:01.551035167 2614 0x203f440 INFO GST_TYPEFIND gsttypefind.c:72:gst_type_find_register: registering typefind function for audio/x-ttafile
0:00:01.551106334 2614 0x203f440 INFO GST_TYPEFIND gsttypefind.c:72:gst_type_find_register: registering typefind function for audio/x-mod
0:00:01.551250084 2614 0x203f440 INFO GST_TYPEFIND gsttypefind.c:72:gst_type_find_register: registering typefind function for audio/mpeg
0:00:01.551328584 2614 0x203f440 INFO GST_TYPEFIND gsttypefind.c:72:gst_type_find_register: registering typefind function for audio/x-ac3
0:00:01.551401584 2614 0x203f440 INFO GST_TYPEFIND gsttypefind.c:72:gst_type_find_register: registering typefind function for audio/x-dts
0:00:01.551489001 2614 0x203f440 INFO GST_TYPEFIND gsttypefind.c:72:gst_type_find_register: registering typefind function for audio/x-gsm
0:00:01.551580709 2614 0x203f440 INFO GST_TYPEFIND gsttypefind.c:72:gst_type_find_register: registering typefind function for video/mpeg-sys
0:00:01.551684417 2614 0x203f440 INFO GST_TYPEFIND gsttypefind.c:72:gst_type_find_register: registering typefind function for video/mpegts
0:00:01.551773334 2614 0x203f440 INFO GST_TYPEFIND gsttypefind.c:72:gst_type_find_register: registering typefind function for application/ogg
0:00:01.551857751 2614 0x203f440 INFO GST_TYPEFIND gsttypefind.c:72:gst_type_find_register: registering typefind function for video/mpeg-elementary
0:00:01.551920542 2614 0x203f440 INFO GST_TYPEFIND gsttypefind.c:72:gst_type_find_register: registering typefind function for video/mpeg4
0:00:01.551995042 2614 0x203f440 INFO GST_TYPEFIND gsttypefind.c:72:gst_type_find_register: registering typefind function for video/x-h263
0:00:01.552143501 2614 0x203f440 INFO GST_TYPEFIND gsttypefind.c:72:gst_type_find_register: registering typefind function for video/x-h264
0:00:01.552243626 2614 0x203f440 INFO GST_TYPEFIND gsttypefind.c:72:gst_type_find_register: registering typefind function for video/x-h265
0:00:01.552354876 2614 0x203f440 INFO GST_TYPEFIND gsttypefind.c:72:gst_type_find_register: registering typefind function for video/x-nuv
0:00:01.552435084 2614 0x203f440 INFO GST_TYPEFIND gsttypefind.c:72:gst_type_find_register: registering typefind function for audio/x-m4a
0:00:01.552505959 2614 0x203f440 INFO GST_TYPEFIND gsttypefind.c:72:gst_type_find_register: registering typefind function for application/x-3gp
0:00:01.552584084 2614 0x203f440 INFO GST_TYPEFIND gsttypefind.c:72:gst_type_find_register: registering typefind function for video/quicktime
0:00:01.552658167 2614 0x203f440 INFO GST_TYPEFIND gsttypefind.c:72:gst_type_find_register: registering typefind function for image/x-quicktime
0:00:01.552768167 2614 0x203f440 INFO GST_TYPEFIND gsttypefind.c:72:gst_type_find_register: registering typefind function for image/jp2
0:00:01.552841126 2614 0x203f440 INFO GST_TYPEFIND gsttypefind.c:72:gst_type_find_register: registering typefind function for image/x-jpc
0:00:01.552910126 2614 0x203f440 INFO GST_TYPEFIND gsttypefind.c:72:gst_type_find_register: registering typefind function for video/mj2
0:00:01.552973626 2614 0x203f440 INFO GST_TYPEFIND gsttypefind.c:72:gst_type_find_register: registering typefind function for text/html
0:00:01.553071834 2614 0x203f440 INFO GST_TYPEFIND gsttypefind.c:72:gst_type_find_register: registering typefind function for application/x-shockwave-flash
0:00:01.553151751 2614 0x203f440 INFO GST_TYPEFIND gsttypefind.c:72:gst_type_find_register: registering typefind function for application/xges
0:00:01.553222584 2614 0x203f440 INFO GST_TYPEFIND gsttypefind.c:72:gst_type_find_register: registering typefind function for application/vnd.apple-xmeml+xml
0:00:01.553296501 2614 0x203f440 INFO GST_TYPEFIND gsttypefind.c:72:gst_type_find_register: registering typefind function for application/vnd.apple-fcp+xml
0:00:01.553364834 2614 0x203f440 INFO GST_TYPEFIND gsttypefind.c:72:gst_type_find_register: registering typefind function for application/vnd.pixar.opentimelineio+json
0:00:01.553436626 2614 0x203f440 INFO GST_TYPEFIND gsttypefind.c:72:gst_type_find_register: registering typefind function for application/dash+xml
0:00:01.553508167 2614 0x203f440 INFO GST_TYPEFIND gsttypefind.c:72:gst_type_find_register: registering typefind function for application/vnd.ms-sstr+xml
0:00:01.553593376 2614 0x203f440 INFO GST_TYPEFIND gsttypefind.c:72:gst_type_find_register: registering typefind function for text/plain
0:00:01.553664209 2614 0x203f440 INFO GST_TYPEFIND gsttypefind.c:72:gst_type_find_register: registering typefind function for text/utf-16
0:00:01.553734626 2614 0x203f440 INFO GST_TYPEFIND gsttypefind.c:72:gst_type_find_register: registering typefind function for text/utf-32
0:00:01.553804959 2614 0x203f440 INFO GST_TYPEFIND gsttypefind.c:72:gst_type_find_register: registering typefind function for text/uri-list
0:00:01.553870876 2614 0x203f440 INFO GST_TYPEFIND gsttypefind.c:72:gst_type_find_register: registering typefind function for application/itc
0:00:01.553933084 2614 0x203f440 INFO GST_TYPEFIND gsttypefind.c:72:gst_type_find_register: registering typefind function for application/x-hls
0:00:01.553999084 2614 0x203f440 INFO GST_TYPEFIND gsttypefind.c:72:gst_type_find_register: registering typefind function for application/sdp
0:00:01.554070917 2614 0x203f440 INFO GST_TYPEFIND gsttypefind.c:72:gst_type_find_register: registering typefind function for application/smil
0:00:01.554182667 2614 0x203f440 INFO GST_TYPEFIND gsttypefind.c:72:gst_type_find_register: registering typefind function for application/ttml+xml
0:00:01.554306792 2614 0x203f440 INFO GST_TYPEFIND gsttypefind.c:72:gst_type_find_register: registering typefind function for application/xml
0:00:01.554388917 2614 0x203f440 INFO GST_TYPEFIND gsttypefind.c:72:gst_type_find_register: registering typefind function for audio/x-aiff
0:00:01.554469126 2614 0x203f440 INFO GST_TYPEFIND gsttypefind.c:72:gst_type_find_register: registering typefind function for audio/x-svx
0:00:01.554541001 2614 0x203f440 INFO GST_TYPEFIND gsttypefind.c:72:gst_type_find_register: registering typefind function for audio/x-paris
0:00:01.554607792 2614 0x203f440 INFO GST_TYPEFIND gsttypefind.c:72:gst_type_find_register: registering typefind function for audio/x-sds
0:00:01.554675876 2614 0x203f440 INFO GST_TYPEFIND gsttypefind.c:72:gst_type_find_register: registering typefind function for audio/x-ircam
0:00:01.554784959 2614 0x203f440 INFO GST_TYPEFIND gsttypefind.c:72:gst_type_find_register: registering typefind function for audio/x-shorten
0:00:01.554864917 2614 0x203f440 INFO GST_TYPEFIND gsttypefind.c:72:gst_type_find_register: registering typefind function for application/x-ape
0:00:01.554934334 2614 0x203f440 INFO GST_TYPEFIND gsttypefind.c:72:gst_type_find_register: registering typefind function for image/jpeg
0:00:01.555017876 2614 0x203f440 INFO GST_TYPEFIND gsttypefind.c:72:gst_type_find_register: registering typefind function for image/bmp
0:00:01.555113376 2614 0x203f440 INFO GST_TYPEFIND gsttypefind.c:72:gst_type_find_register: registering typefind function for image/tiff
0:00:01.555226542 2614 0x203f440 INFO GST_TYPEFIND gsttypefind.c:72:gst_type_find_register: registering typefind function for image/x-exr
0:00:01.555313792 2614 0x203f440 INFO GST_TYPEFIND gsttypefind.c:72:gst_type_find_register: registering typefind function for image/x-portable-pixmap
0:00:01.555386917 2614 0x203f440 INFO GST_TYPEFIND gsttypefind.c:72:gst_type_find_register: registering typefind function for video/x-matroska
0:00:01.555470667 2614 0x203f440 INFO GST_TYPEFIND gsttypefind.c:72:gst_type_find_register: registering typefind function for application/mxf
0:00:01.555558126 2614 0x203f440 INFO GST_TYPEFIND gsttypefind.c:72:gst_type_find_register: registering typefind function for video/x-dv
0:00:01.555629792 2614 0x203f440 INFO GST_TYPEFIND gsttypefind.c:72:gst_type_find_register: registering typefind function for audio/iLBC-sh
0:00:01.555696417 2614 0x203f440 INFO GST_TYPEFIND gsttypefind.c:72:gst_type_find_register: registering typefind function for audio/x-sbc
0:00:01.555751959 2614 0x203f440 INFO GST_TYPEFIND gsttypefind.c:72:gst_type_find_register: registering typefind function for subtitle/x-kate
0:00:01.555824501 2614 0x203f440 INFO GST_TYPEFIND gsttypefind.c:72:gst_type_find_register: registering typefind function for application/x-subtitle-vtt
0:00:01.555903751 2614 0x203f440 INFO GST_TYPEFIND gsttypefind.c:72:gst_type_find_register: registering typefind function for audio/x-flac
0:00:01.555973751 2614 0x203f440 INFO GST_TYPEFIND gsttypefind.c:72:gst_type_find_register: registering typefind function for audio/x-vorbis
0:00:01.556059834 2614 0x203f440 INFO GST_TYPEFIND gsttypefind.c:72:gst_type_find_register: registering typefind function for video/x-theora
0:00:01.556194042 2614 0x203f440 INFO GST_TYPEFIND gsttypefind.c:72:gst_type_find_register: registering typefind function for application/x-ogm-video
0:00:01.556270834 2614 0x203f440 INFO GST_TYPEFIND gsttypefind.c:72:gst_type_find_register: registering typefind function for application/x-ogm-audio
0:00:01.556344292 2614 0x203f440 INFO GST_TYPEFIND gsttypefind.c:72:gst_type_find_register: registering typefind function for application/x-ogm-text
0:00:01.556409001 2614 0x203f440 INFO GST_TYPEFIND gsttypefind.c:72:gst_type_find_register: registering typefind function for audio/x-speex
0:00:01.556478042 2614 0x203f440 INFO GST_TYPEFIND gsttypefind.c:72:gst_type_find_register: registering typefind function for audio/x-celt
0:00:01.556560876 2614 0x203f440 INFO GST_TYPEFIND gsttypefind.c:72:gst_type_find_register: registering typefind function for application/x-ogg-skeleton
0:00:01.556659542 2614 0x203f440 INFO GST_TYPEFIND gsttypefind.c:72:gst_type_find_register: registering typefind function for text/x-cmml
0:00:01.556755376 2614 0x203f440 INFO GST_TYPEFIND gsttypefind.c:72:gst_type_find_register: registering typefind function for audio/aac
0:00:01.556844459 2614 0x203f440 INFO GST_TYPEFIND gsttypefind.c:72:gst_type_find_register: registering typefind function for audio/x-wavpack
0:00:01.556922334 2614 0x203f440 INFO GST_TYPEFIND gsttypefind.c:72:gst_type_find_register: registering typefind function for audio/x-wavpack-correction
0:00:01.556990959 2614 0x203f440 INFO GST_TYPEFIND gsttypefind.c:72:gst_type_find_register: registering typefind function for application/postscript
0:00:01.557057459 2614 0x203f440 INFO GST_TYPEFIND gsttypefind.c:72:gst_type_find_register: registering typefind function for image/svg+xml
0:00:01.557169209 2614 0x203f440 INFO GST_TYPEFIND gsttypefind.c:72:gst_type_find_register: registering typefind function for application/x-tar
0:00:01.557243042 2614 0x203f440 INFO GST_TYPEFIND gsttypefind.c:72:gst_type_find_register: registering typefind function for application/x-ar
0:00:01.557314126 2614 0x203f440 INFO GST_TYPEFIND gsttypefind.c:72:gst_type_find_register: registering typefind function for application/x-ms-dos-executable
0:00:01.557386001 2614 0x203f440 INFO GST_TYPEFIND gsttypefind.c:72:gst_type_find_register: registering typefind function for video/x-dirac
0:00:01.557455709 2614 0x203f440 INFO GST_TYPEFIND gsttypefind.c:72:gst_type_find_register: registering typefind function for multipart/x-mixed-replace
0:00:01.557526209 2614 0x203f440 INFO GST_TYPEFIND gsttypefind.c:72:gst_type_find_register: registering typefind function for application/x-mmsh
0:00:01.557603292 2614 0x203f440 INFO GST_TYPEFIND gsttypefind.c:72:gst_type_find_register: registering typefind function for video/vivo
0:00:01.557663542 2614 0x203f440 INFO GST_TYPEFIND gsttypefind.c:72:gst_type_find_register: registering typefind function for image/vnd.wap.wbmp
0:00:01.557724876 2614 0x203f440 INFO GST_TYPEFIND gsttypefind.c:72:gst_type_find_register: registering typefind function for application/x-yuv4mpeg
0:00:01.557786251 2614 0x203f440 INFO GST_TYPEFIND gsttypefind.c:72:gst_type_find_register: registering typefind function for image/x-icon
0:00:01.557844501 2614 0x203f440 INFO GST_TYPEFIND gsttypefind.c:72:gst_type_find_register: registering typefind function for image/x-degas
0:00:01.557901751 2614 0x203f440 INFO GST_TYPEFIND gsttypefind.c:72:gst_type_find_register: registering typefind function for application/octet-stream
0:00:01.558055792 2614 0x203f440 INFO GST_TYPEFIND gsttypefind.c:72:gst_type_find_register: registering typefind function for application/x-ssa
0:00:01.558150792 2614 0x203f440 INFO GST_TYPEFIND gsttypefind.c:72:gst_type_find_register: registering typefind function for video/x-pva
0:00:01.558290001 2614 0x203f440 INFO GST_TYPEFIND gsttypefind.c:72:gst_type_find_register: registering typefind function for audio/audible
0:00:01.558376834 2614 0x203f440 INFO GST_TYPEFIND gsttypefind.c:72:gst_type_find_register: registering typefind function for audio/x-tap-tap
0:00:01.558447167 2614 0x203f440 INFO GST_PLUGIN_LOADING gstplugin.c:987:_priv_gst_plugin_load_file_for_registry: plugin "/usr/lib/arm-linux-gnueabihf/gstreamer-1.0/libgsttypefindfunctions.so" loaded
0:00:01.558834126 2614 0x203f440 INFO GST_EVENT gstevent.c:892:gst_event_new_caps: creating caps event video/quicktime, variant=(string)iso
0:00:01.558966167 2614 0x203f440 INFO GST_ELEMENT_PADS gstelement.c:1016:gst_element_get_static_pad: found pad typefind:src
0:00:01.559007459 2614 0x203f440 INFO GST_ELEMENT_PADS gstelement.c:1016:gst_element_get_static_pad: found pad typefind:sink
0:00:01.559430751 2614 0x203f440 INFO GST_PADS gstpad.c:2382:gst_pad_link_prepare: trying to link typefind:src and parsepad0:proxypad2
0:00:01.559524376 2614 0x203f440 INFO GST_PADS gstpad.c:2590:gst_pad_link_full: linked typefind:src and parsepad0:proxypad2, successful
0:00:01.559552126 2614 0x203f440 INFO GST_EVENT gstevent.c:1660:gst_event_new_reconfigure: creating reconfigure event
0:00:01.566780917 2614 0x203f440 INFO GST_ELEMENT_PADS gstpad.c:2137:gst_pad_unlink: unlinking typefind:src(0x20424e0) and parsepad0:proxypad2(0x2047630)
0:00:01.566932126 2614 0x203f440 INFO GST_ELEMENT_PADS gstpad.c:2192:gst_pad_unlink: unlinked typefind:src and parsepad0:proxypad2
0:00:01.573003792 2614 0x203f440 INFO GST_PLUGIN_LOADING gstplugin.c:987:_priv_gst_plugin_load_file_for_registry: plugin "/usr/lib/arm-linux-gnueabihf/gstreamer-1.0/libgstisomp4.so" loaded
0:00:01.573075542 2614 0x203f440 INFO GST_ELEMENT_FACTORY gstelementfactory.c:489:gst_element_factory_create_with_properties: creating element "qtdemux"
0:00:01.574183876 2614 0x203f440 INFO GST_ELEMENT_PADS gstelement.c:759:gst_element_add_pad:<GstQTDemux@0x2040b80> adding pad 'sink'
0:00:01.574656459 2614 0x203f440 INFO GST_PADS gstpad.c:2382:gst_pad_link_prepare: trying to link typefind:src and qtdemux0:sink
0:00:01.574717542 2614 0x203f440 INFO GST_PADS gstpad.c:2590:gst_pad_link_full: linked typefind:src and qtdemux0:sink, successful
0:00:01.574745167 2614 0x203f440 INFO GST_EVENT gstevent.c:1660:gst_event_new_reconfigure: creating reconfigure event
0:00:01.574885542 2614 0x203f440 INFO GST_STATES gstelement.c:2806:gst_element_continue_state:<qtdemux0> completed state change to READY
0:00:01.574931126 2614 0x203f440 INFO GST_STATES gstelement.c:2706:_priv_gst_element_state_changed:<qtdemux0> notifying about state-changed NULL to READY (VOID_PENDING pending)
0:00:01.575197751 2614 0x203f440 INFO GST_ELEMENT_PADS gstelement.c:1013:gst_element_get_static_pad: no such pad 'video_%u' in element "qtdemux0"
0:00:01.575246709 2614 0x203f440 INFO GST_ELEMENT_PADS gstelement.c:1013:gst_element_get_static_pad: no such pad 'audio_%u' in element "qtdemux0"
0:00:01.575281584 2614 0x203f440 INFO GST_ELEMENT_PADS gstelement.c:1013:gst_element_get_static_pad: no such pad 'subtitle_%u' in element "qtdemux0"
0:00:01.575599292 2614 0x203f440 INFO task gsttask.c:516:gst_task_set_lock: setting stream lock 0x2042684 on task 0x205b6b8
0:00:01.575643667 2614 0x203f440 INFO GST_PADS gstpad.c:6291:gst_pad_start_task:<qtdemux0:sink> created task 0x205b6b8
0:00:01.576059417 2614 0x203f440 INFO GST_STATES gstelement.c:2806:gst_element_continue_state:<qtdemux0> completed state change to PAUSED
0:00:01.576123459 2614 0x203f440 INFO GST_STATES gstelement.c:2706:_priv_gst_element_state_changed:<qtdemux0> notifying about state-changed READY to PAUSED (VOID_PENDING pending)
0:00:01.576493667 2614 0x203f440 INFO typefind gsttypefindelement.c:183:gst_type_find_element_have_type:<typefind> found caps video/quicktime, variant=(string)iso, probability=100
0:00:01.576578459 2614 0x203f440 INFO task gsttask.c:368:gst_task_func:<typefind:sink> Task going to paused
0:00:01.576862834 2614 0x203fb70 WARN qtdemux qtdemux_types.c:249:qtdemux_type_get: unknown QuickTime node type iods
0:00:01.576949667 2614 0x203fb70 WARN qtdemux qtdemux_types.c:249:qtdemux_type_get: unknown QuickTime node type sgpd
0:00:01.576995209 2614 0x203fb70 WARN qtdemux qtdemux_types.c:249:qtdemux_type_get: unknown QuickTime node type sbgp
0:00:01.577188751 2614 0x203fb70 INFO qtdemux qtdemux.c:13794:qtdemux_parse_tree:<qtdemux0> timescale: 600
0:00:01.577239709 2614 0x203fb70 INFO qtdemux qtdemux.c:13795:qtdemux_parse_tree:<qtdemux0> duration: 18022
0:00:01.577481667 2614 0x203fb70 WARN qtdemux qtdemux.c:3121:qtdemux_parse_trex:<qtdemux0> failed to find fragment defaults for stream 1
0:00:01.577816584 2614 0x203fb70 INFO qtdemux qtdemux.c:12146:qtdemux_parse_trak:<qtdemux0> type avc1 caps video/x-h264, stream-format=(string)avc, alignment=(string)au, level=(string)4, profile=(string)high, codec_data=(buffer)01640028ffe1001d67640028acd980780227e59a808080a0000003002000000781e306334001000568e97b2c8bfdf8f800
0:00:01.578150376 2614 0x203fb70 WARN qtdemux qtdemux.c:3121:qtdemux_parse_trex:<qtdemux0> failed to find fragment defaults for stream 2
0:00:01.578445876 2614 0x203fb70 INFO qtdemux qtdemux.c:12971:qtdemux_parse_trak:<qtdemux0> type mp4a caps audio/mpeg, mpegversion=(int)4, framed=(boolean)true, stream-format=(string)raw, level=(string)2, base-profile=(string)lc, profile=(string)lc, codec_data=(buffer)1190
0:00:01.578867001 2614 0x203fb70 INFO GST_SCHEDULING gstpad.c:5030:gst_pad_get_range_unchecked:<filesrc0:src> getrange failed, flow: eos
0:00:01.578913917 2614 0x203fb70 INFO GST_SCHEDULING gstpad.c:5245:gst_pad_pull_range:<decodebin3-0:sink> pullrange failed, flow: eos
0:00:01.578944667 2614 0x203fb70 INFO GST_SCHEDULING gstpad.c:5030:gst_pad_get_range_unchecked:<sink:proxypad0> getrange failed, flow: eos
0:00:01.578974459 2614 0x203fb70 INFO GST_SCHEDULING gstpad.c:5245:gst_pad_pull_range:<parsebin0:sink> pullrange failed, flow: eos
0:00:01.579005792 2614 0x203fb70 INFO GST_SCHEDULING gstpad.c:5030:gst_pad_get_range_unchecked:<sink:proxypad1> getrange failed, flow: eos
0:00:01.579035376 2614 0x203fb70 INFO GST_SCHEDULING gstpad.c:5245:gst_pad_pull_range:<typefind:sink> pullrange failed, flow: eos
0:00:01.579064167 2614 0x203fb70 INFO GST_SCHEDULING gstpad.c:5030:gst_pad_get_range_unchecked:<typefind:src> getrange failed, flow: eos
0:00:01.579091834 2614 0x203fb70 INFO GST_SCHEDULING gstpad.c:5245:gst_pad_pull_range:<qtdemux0:sink> pullrange failed, flow: eos
0:00:01.579565542 2614 0x203fb70 INFO GST_EVENT gstevent.c:892:gst_event_new_caps: creating caps event video/x-h264, stream-format=(string)avc, alignment=(string)au, level=(string)4, profile=(string)high, codec_data=(buffer)01640028ffe1001d67640028acd980780227e59a808080a0000003002000000781e306334001000568e97b2c8bfdf8f800, width=(int)1920, height=(int)1080, framerate=(fraction)30/1, pixel-aspect-ratio=(fraction)1/1, colorimetry=(string)bt709
0:00:01.579634084 2614 0x203fb70 INFO GST_ELEMENT_PADS gstelement.c:759:gst_element_add_pad:<qtdemux0> adding pad 'video_0'
0:00:01.580012292 2614 0x203fb70 INFO GST_PADS gstpad.c:2382:gst_pad_link_prepare: trying to link qtdemux0:video_0 and parsepad1:proxypad3
0:00:01.580070626 2614 0x203fb70 INFO GST_PADS gstpad.c:2590:gst_pad_link_full: linked qtdemux0:video_0 and parsepad1:proxypad3, successful
0:00:01.580095542 2614 0x203fb70 INFO GST_EVENT gstevent.c:1660:gst_event_new_reconfigure: creating reconfigure event
0:00:01.580894042 2614 0x203fb70 INFO GST_ELEMENT_PADS gstpad.c:2137:gst_pad_unlink: unlinking qtdemux0:video_0(0x2042b98) and parsepad1:proxypad3(0x2047630)
0:00:01.580986834 2614 0x203fb70 INFO GST_ELEMENT_PADS gstpad.c:2192:gst_pad_unlink: unlinked qtdemux0:video_0 and parsepad1:proxypad3
0:00:01.583990792 2614 0x203fb70 INFO GST_PLUGIN_LOADING gstplugin.c:987:_priv_gst_plugin_load_file_for_registry: plugin "/usr/lib/arm-linux-gnueabihf/gstreamer-1.0/libgstvideoparsersbad.so" loaded
0:00:01.584067334 2614 0x203fb70 INFO GST_ELEMENT_FACTORY gstelementfactory.c:489:gst_element_factory_create_with_properties: creating element "h264parse"
0:00:01.584582126 2614 0x203fb70 INFO GST_ELEMENT_PADS gstelement.c:759:gst_element_add_pad:<GstBaseParse@0xb4526860> adding pad 'sink'
0:00:01.584684084 2614 0x203fb70 INFO GST_ELEMENT_PADS gstelement.c:759:gst_element_add_pad:<GstBaseParse@0xb4526860> adding pad 'src'
0:00:01.584827167 2614 0x203fb70 INFO baseparse gstbaseparse.c:4046:gst_base_parse_set_pts_interpolation:<GstH264Parse@0xb4526860> PTS interpolation: no
0:00:01.584863042 2614 0x203fb70 INFO baseparse gstbaseparse.c:4064:gst_base_parse_set_infer_ts:<GstH264Parse@0xb4526860> TS inferring: no
0:00:01.585096042 2614 0x203fb70 INFO GST_PADS gstpad.c:2382:gst_pad_link_prepare: trying to link qtdemux0:video_0 and h264parse0:sink
0:00:01.585155209 2614 0x203fb70 INFO GST_PADS gstpad.c:2590:gst_pad_link_full: linked qtdemux0:video_0 and h264parse0:sink, successful
0:00:01.585181292 2614 0x203fb70 INFO GST_EVENT gstevent.c:1660:gst_event_new_reconfigure: creating reconfigure event
0:00:01.585325667 2614 0x203fb70 INFO GST_STATES gstelement.c:2806:gst_element_continue_state:<h264parse0> completed state change to READY
0:00:01.585367417 2614 0x203fb70 INFO GST_STATES gstelement.c:2706:_priv_gst_element_state_changed:<h264parse0> notifying about state-changed NULL to READY (VOID_PENDING pending)
0:00:01.585559542 2614 0x203fb70 INFO GST_ELEMENT_PADS gstelement.c:1016:gst_element_get_static_pad: found pad h264parse0:src
0:00:01.585679834 2614 0x203fb70 INFO GST_PADS gstpad.c:2382:gst_pad_link_prepare: trying to link h264parse0:src and parsepad1:proxypad3
0:00:01.585727376 2614 0x203fb70 INFO GST_PADS gstpad.c:2590:gst_pad_link_full: linked h264parse0:src and parsepad1:proxypad3, successful
0:00:01.585752751 2614 0x203fb70 INFO GST_EVENT gstevent.c:1660:gst_event_new_reconfigure: creating reconfigure event
0:00:01.585785709 2614 0x203fb70 INFO GST_EVENT gstpad.c:5946:gst_pad_send_event_unchecked:<h264parse0:src> Received event on flushing pad. Discarding
0:00:01.586482542 2614 0x203fb70 INFO GST_ELEMENT_FACTORY gstelementfactory.c:489:gst_element_factory_create_with_properties: creating element "capsfilter"
0:00:01.587041876 2614 0x203fb70 INFO GST_ELEMENT_PADS gstelement.c:759:gst_element_add_pad:<GstBaseTransform@0xb452c188> adding pad 'sink'
0:00:01.587156167 2614 0x203fb70 INFO GST_ELEMENT_PADS gstelement.c:759:gst_element_add_pad:<GstBaseTransform@0xb452c188> adding pad 'src'
0:00:01.587247792 2614 0x203fb70 INFO GST_EVENT gstevent.c:1660:gst_event_new_reconfigure: creating reconfigure event
0:00:01.587319042 2614 0x203fb70 INFO GST_STATES gstelement.c:2778:gst_element_continue_state:<capsfilter0> committing state from NULL to READY, pending PAUSED, next PAUSED
0:00:01.587357209 2614 0x203fb70 INFO GST_STATES gstelement.c:2706:_priv_gst_element_state_changed:<capsfilter0> notifying about state-changed NULL to READY (PAUSED pending)
0:00:01.587662459 2614 0x203fb70 INFO GST_STATES gstelement.c:2786:gst_element_continue_state:<capsfilter0> continue state change READY to PAUSED, final PAUSED
0:00:01.587746751 2614 0x203fb70 INFO GST_STATES gstelement.c:2806:gst_element_continue_state:<capsfilter0> completed state change to PAUSED
0:00:01.587785334 2614 0x203fb70 INFO GST_STATES gstelement.c:2706:_priv_gst_element_state_changed:<capsfilter0> notifying about state-changed READY to PAUSED (VOID_PENDING pending)
0:00:01.587951751 2614 0x203fb70 INFO GST_ELEMENT_PADS gstpad.c:2137:gst_pad_unlink: unlinking h264parse0:src(0x2042e48) and parsepad1:proxypad3(0x2047630)
0:00:01.588030751 2614 0x203fb70 INFO GST_ELEMENT_PADS gstpad.c:2192:gst_pad_unlink: unlinked h264parse0:src and parsepad1:proxypad3
0:00:01.588087459 2614 0x203fb70 INFO GST_ELEMENT_PADS gstelement.c:1016:gst_element_get_static_pad: found pad capsfilter0:sink
0:00:01.588137001 2614 0x203fb70 INFO GST_PADS gstpad.c:2382:gst_pad_link_prepare: trying to link h264parse0:src and capsfilter0:sink
0:00:01.588180292 2614 0x203fb70 INFO GST_PADS gstpad.c:2590:gst_pad_link_full: linked h264parse0:src and capsfilter0:sink, successful
0:00:01.588205917 2614 0x203fb70 INFO GST_EVENT gstevent.c:1660:gst_event_new_reconfigure: creating reconfigure event
0:00:01.588239584 2614 0x203fb70 INFO GST_EVENT gstpad.c:5946:gst_pad_send_event_unchecked:<h264parse0:src> Received event on flushing pad. Discarding
0:00:01.588297126 2614 0x203fb70 INFO GST_ELEMENT_PADS gstelement.c:1016:gst_element_get_static_pad: found pad capsfilter0:src
0:00:01.588353501 2614 0x203fb70 INFO GST_PADS gstpad.c:2382:gst_pad_link_prepare: trying to link capsfilter0:src and parsepad1:proxypad3
0:00:01.588392917 2614 0x203fb70 INFO GST_PADS gstpad.c:2590:gst_pad_link_full: linked capsfilter0:src and parsepad1:proxypad3, successful
0:00:01.588418084 2614 0x203fb70 INFO GST_EVENT gstevent.c:1660:gst_event_new_reconfigure: creating reconfigure event
0:00:01.588455292 2614 0x203fb70 INFO GST_EVENT gstpad.c:5946:gst_pad_send_event_unchecked:<h264parse0:src> Received event on flushing pad. Discarding
0:00:01.589510001 2614 0x203fb70 INFO GST_STATES gstelement.c:2806:gst_element_continue_state:<h264parse0> completed state change to PAUSED
0:00:01.589565459 2614 0x203fb70 INFO GST_STATES gstelement.c:2706:_priv_gst_element_state_changed:<h264parse0> notifying about state-changed READY to PAUSED (VOID_PENDING pending)
0:00:01.590440084 2614 0x203fb70 INFO GST_PADS gstpad.c:4357:gst_pad_peer_query:<'':parsepad1> pad has no peer
0:00:01.590830417 2614 0x203fb70 INFO h264parse gsth264parse.c:2139:gst_h264_parse_update_src_caps:<h264parse0> colorimetry has been changed from (NULL) to bt709
0:00:01.590946292 2614 0x203fb70 INFO baseparse gstbaseparse.c:4088:gst_base_parse_set_latency:<h264parse0> min/max latency 0:00:00.033333333, 0:00:00.033333333
0:00:01.591148459 2614 0x203fb70 INFO GST_PADS gstpad.c:4357:gst_pad_peer_query:<'':parsepad1> pad has no peer
0:00:01.591465334 2614 0x203fb70 INFO GST_EVENT gstevent.c:892:gst_event_new_caps: creating caps event video/x-h264, stream-format=(string)avc, alignment=(string)au, level=(string)4, profile=(string)high, codec_data=(buffer)01640028ffe1001d67640028acd980780227e59a808080a0000003002000000781e306334001000568e97b2c8b, width=(int)1920, height=(int)1080, framerate=(fraction)30/1, pixel-aspect-ratio=(fraction)1/1, colorimetry=(string)bt709, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8, parsed=(boolean)true
0:00:01.591747917 2614 0x203fb70 INFO GST_PADS gstpad.c:4357:gst_pad_peer_query:<'':parsepad1> pad has no peer
0:00:01.591820126 2614 0x203fb70 INFO basetransform gstbasetransform.c:1325:gst_base_transform_setcaps:<capsfilter0> reuse caps
0:00:01.591958417 2614 0x203fb70 INFO GST_EVENT gstevent.c:892:gst_event_new_caps: creating caps event video/x-h264, stream-format=(string)avc, alignment=(string)au, level=(string)4, profile=(string)high, codec_data=(buffer)01640028ffe1001d67640028acd980780227e59a808080a0000003002000000781e306334001000568e97b2c8b, width=(int)1920, height=(int)1080, framerate=(fraction)30/1, pixel-aspect-ratio=(fraction)1/1, colorimetry=(string)bt709, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8, parsed=(boolean)true
0:00:01.592707501 2614 0x203fb70 INFO GST_PADS gstpad.c:4357:gst_pad_peer_query:<'':parsepad1> pad has no peer
0:00:01.593147501 2614 0x203fb70 INFO GST_EVENT gstevent.c:892:gst_event_new_caps: creating caps event audio/mpeg, mpegversion=(int)4, framed=(boolean)true, stream-format=(string)raw, level=(string)2, base-profile=(string)lc, profile=(string)lc, codec_data=(buffer)1190, rate=(int)48000, channels=(int)2
0:00:01.593215167 2614 0x203fb70 INFO GST_ELEMENT_PADS gstelement.c:759:gst_element_add_pad:<qtdemux0> adding pad 'audio_0'
0:00:01.593573042 2614 0x203fb70 INFO GST_PADS gstpad.c:2382:gst_pad_link_prepare: trying to link qtdemux0:audio_0 and parsepad2:proxypad4
0:00:01.593630751 2614 0x203fb70 INFO GST_PADS gstpad.c:2590:gst_pad_link_full: linked qtdemux0:audio_0 and parsepad2:proxypad4, successful
0:00:01.593661834 2614 0x203fb70 INFO GST_EVENT gstevent.c:1660:gst_event_new_reconfigure: creating reconfigure event
0:00:01.594488417 2614 0x203fb70 INFO GST_ELEMENT_PADS gstpad.c:2137:gst_pad_unlink: unlinking qtdemux0:audio_0(0xb45043a8) and parsepad2:proxypad4(0x2047bd0)
0:00:01.594588001 2614 0x203fb70 INFO GST_ELEMENT_PADS gstpad.c:2192:gst_pad_unlink: unlinked qtdemux0:audio_0 and parsepad2:proxypad4
0:00:01.596515251 2614 0x203fb70 INFO GST_PLUGIN_LOADING gstplugin.c:987:_priv_gst_plugin_load_file_for_registry: plugin "/usr/lib/arm-linux-gnueabihf/gstreamer-1.0/libgstaudioparsers.so" loaded
0:00:01.596574251 2614 0x203fb70 INFO GST_ELEMENT_FACTORY gstelementfactory.c:489:gst_element_factory_create_with_properties: creating element "aacparse"
0:00:01.597081292 2614 0x203fb70 INFO GST_ELEMENT_PADS gstelement.c:759:gst_element_add_pad:<GstBaseParse@0xb45342e8> adding pad 'sink'
0:00:01.597174292 2614 0x203fb70 INFO GST_ELEMENT_PADS gstelement.c:759:gst_element_add_pad:<GstBaseParse@0xb45342e8> adding pad 'src'
0:00:01.597412167 2614 0x203fb70 INFO GST_PADS gstpad.c:2382:gst_pad_link_prepare: trying to link qtdemux0:audio_0 and aacparse0:sink
0:00:01.597473584 2614 0x203fb70 INFO GST_PADS gstpad.c:2590:gst_pad_link_full: linked qtdemux0:audio_0 and aacparse0:sink, successful
0:00:01.597502501 2614 0x203fb70 INFO GST_EVENT gstevent.c:1660:gst_event_new_reconfigure: creating reconfigure event
0:00:01.597656459 2614 0x203fb70 INFO GST_STATES gstelement.c:2806:gst_element_continue_state:<aacparse0> completed state change to READY
0:00:01.597701251 2614 0x203fb70 INFO GST_STATES gstelement.c:2706:_priv_gst_element_state_changed:<aacparse0> notifying about state-changed NULL to READY (VOID_PENDING pending)
0:00:01.597913042 2614 0x203fb70 INFO GST_ELEMENT_PADS gstelement.c:1016:gst_element_get_static_pad: found pad aacparse0:src
0:00:01.598027334 2614 0x203fb70 INFO GST_PADS gstpad.c:2382:gst_pad_link_prepare: trying to link aacparse0:src and parsepad2:proxypad4
0:00:01.598075709 2614 0x203fb70 INFO GST_PADS gstpad.c:2590:gst_pad_link_full: linked aacparse0:src and parsepad2:proxypad4, successful
0:00:01.598101459 2614 0x203fb70 INFO GST_EVENT gstevent.c:1660:gst_event_new_reconfigure: creating reconfigure event
0:00:01.598136292 2614 0x203fb70 INFO GST_EVENT gstpad.c:5946:gst_pad_send_event_unchecked:<aacparse0:src> Received event on flushing pad. Discarding
0:00:01.598440667 2614 0x203fb70 INFO GST_STATES gstelement.c:2806:gst_element_continue_state:<aacparse0> completed state change to PAUSED
0:00:01.598487042 2614 0x203fb70 INFO GST_STATES gstelement.c:2706:_priv_gst_element_state_changed:<aacparse0> notifying about state-changed READY to PAUSED (VOID_PENDING pending)
0:00:01.598820001 2614 0x203fb70 INFO aacparse gstaacparse.c:608:gst_aac_parse_read_audio_specific_config:<aacparse0> Parsed AudioSpecificConfig: 48000 Hz, 2 channels
0:00:01.598988001 2614 0x203fb70 INFO GST_PADS gstpad.c:4357:gst_pad_peer_query:<'':parsepad2> pad has no peer
0:00:01.599100709 2614 0x203fb70 INFO GST_EVENT gstevent.c:892:gst_event_new_caps: creating caps event audio/mpeg, mpegversion=(int)4, framed=(boolean)true, stream-format=(string)raw, level=(string)2, base-profile=(string)lc, profile=(string)lc, codec_data=(buffer)1190, rate=(int)48000, channels=(int)2
0:00:01.599847792 2614 0x203fb70 INFO GST_PADS gstpad.c:4357:gst_pad_peer_query:<'':parsepad2> pad has no peer
0:00:01.599968209 2614 0x203fb70 INFO baseparse gstbaseparse.c:4028:gst_base_parse_set_passthrough:<aacparse0> passthrough: yes
0:00:01.600496501 2614 0x203fb70 FIXME decodebin3 gstdecodebin3.c:1123:update_requested_selection:<decodebin3-0> Implement EXPOSE_ALL_MODE
0:00:01.600654334 2614 0x203fb70 INFO GST_ELEMENT_PADS gstelement.c:759:gst_element_add_pad:<parsebin0> adding pad 'src_0'
0:00:01.600718584 2614 0x203fb70 INFO parsebin gstparsebin.c:3595:gst_parse_bin_expose:<parsebin0:src_0> added new parsed pad
0:00:01.600761584 2614 0x203fb70 INFO GST_ELEMENT_PADS gstelement.c:759:gst_element_add_pad:<parsebin0> adding pad 'src_1'
0:00:01.600805959 2614 0x203fb70 INFO parsebin gstparsebin.c:3595:gst_parse_bin_expose:<parsebin0:src_1> added new parsed pad
0:00:01.601071501 2614 0x203fb70 INFO GST_EVENT gstevent.c:972:gst_event_new_segment: creating segment event time segment start=0:00:00.066666666, offset=0:00:00.000000000, stop=0:00:30.099999999, rate=1.000000, applied_rate=1.000000, flags=0x00, time=0:00:00.000000000, base=0:00:00.000000000, position 0:00:00.066666666, duration 99:99:99.999999999
0:00:01.601544667 2614 0x203fb70 INFO GST_PADS gstpad.c:4357:gst_pad_peer_query:<parsebin0:src_0> pad has no peer
0:00:01.601909126 2614 0x203fb70 INFO baseparse gstbaseparse.c:4088:gst_base_parse_set_latency:<h264parse0> min/max latency 0:00:00.000000000, 0:00:00.000000000
0:00:01.602067959 2614 0x203fb70 INFO GST_PADS gstpad.c:4357:gst_pad_peer_query:<parsebin0:src_0> pad has no peer
0:00:01.602448167 2614 0x203fb70 INFO GST_EVENT gstevent.c:892:gst_event_new_caps: creating caps event video/x-h264, stream-format=(string)avc, alignment=(string)au, level=(string)4, profile=(string)high, codec_data=(buffer)01640028ffe1001d67640028acd980780227e59a808080a0000003002000000781e306334001000568e97b2c8b, width=(int)1920, height=(int)1080, framerate=(fraction)30/1, pixel-aspect-ratio=(fraction)1/1, colorimetry=(string)bt709, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8, parsed=(boolean)true
0:00:01.602694459 2614 0x203fb70 INFO GST_PADS gstpad.c:4357:gst_pad_peer_query:<parsebin0:src_0> pad has no peer
0:00:01.602761042 2614 0x203fb70 INFO basetransform gstbasetransform.c:1325:gst_base_transform_setcaps:<capsfilter0> reuse caps
0:00:01.602958126 2614 0x203fb70 INFO baseparse gstbaseparse.c:4864:gst_base_parse_set_upstream_tags:<h264parse0> upstream tags: taglist, video-codec=(string)"H.264\ /\ AVC", bitrate=(uint)1307696;
0:00:01.604244667 2614 0x203fb70 INFO baseparse gstbaseparse.c:4088:gst_base_parse_set_latency:<h264parse0> min/max latency 0:00:00.000000000, 0:00:00.000000000
0:00:01.604478751 2614 0x203fb70 INFO GST_PADS gstpad.c:4357:gst_pad_peer_query:<parsebin0:src_0> pad has no peer
0:00:01.604871001 2614 0x203fb70 INFO GST_EVENT gstevent.c:892:gst_event_new_caps: creating caps event video/x-h264, stream-format=(string)avc, alignment=(string)au, level=(string)4, profile=(string)high, codec_data=(buffer)01640028ffe1001d67640028acd980780227e59a808080a0000003002000000781e306334001000568e97b2c8b, width=(int)1920, height=(int)1080, framerate=(fraction)30/1, pixel-aspect-ratio=(fraction)1/1, colorimetry=(string)bt709, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8, parsed=(boolean)true
0:00:01.605133001 2614 0x203fb70 INFO GST_PADS gstpad.c:4357:gst_pad_peer_query:<parsebin0:src_0> pad has no peer
0:00:01.605201751 2614 0x203fb70 INFO basetransform gstbasetransform.c:1325:gst_base_transform_setcaps:<capsfilter0> reuse caps
0:00:01.606562084 2614 0x203fb70 INFO videometa gstvideometa.c:1072:gst_video_time_code_meta_api_get_type: registering
0:00:01.606881626 2614 0x203fb70 FIXME decodebin3 gstdecodebin3-parse.c:433:unblock_pending_input:<decodebin3-0> Re-use existing input streams if/when possible
0:00:01.607464751 2614 0x203fb70 INFO GST_ELEMENT_PADS gstelement.c:759:gst_element_add_pad:<multiqueue0> adding pad 'src_0'
0:00:01.607523459 2614 0x203fb70 INFO GST_ELEMENT_PADS gstelement.c:759:gst_element_add_pad:<multiqueue0> adding pad 'sink_0'
0:00:01.607596376 2614 0x203fb70 INFO task gsttask.c:516:gst_task_set_lock: setting stream lock 0x20557d4 on task 0xb4502610
0:00:01.607630292 2614 0x203fb70 INFO GST_PADS gstpad.c:6291:gst_pad_start_task:<multiqueue0:src_0> created task 0xb4502610
0:00:01.608138209 2614 0x203fb70 INFO GST_PADS gstpad.c:2382:gst_pad_link_prepare: trying to link parsebin0:src_0 and multiqueue0:sink_0
0:00:01.608207084 2614 0x203fb70 INFO GST_PADS gstpad.c:2590:gst_pad_link_full: linked parsebin0:src_0 and multiqueue0:sink_0, successful
0:00:01.608242334 2614 0x203fb70 INFO GST_EVENT gstevent.c:1660:gst_event_new_reconfigure: creating reconfigure event
0:00:01.608730376 2614 0x203fb70 INFO GST_ELEMENT_PADS gstelement.c:759:gst_element_add_pad:<multiqueue0> adding pad 'src_1'
0:00:01.608791417 2614 0x203fb70 INFO GST_ELEMENT_PADS gstelement.c:759:gst_element_add_pad:<multiqueue0> adding pad 'sink_1'
0:00:01.608861417 2614 0x203fb70 INFO task gsttask.c:516:gst_task_set_lock: setting stream lock 0x2055a94 on task 0xb45026b8
0:00:01.608895667 2614 0x203fb70 INFO GST_PADS gstpad.c:6291:gst_pad_start_task:<multiqueue0:src_1> created task 0xb45026b8
0:00:01.609332042 2614 0x203fb70 INFO GST_PADS gstpad.c:2382:gst_pad_link_prepare: trying to link parsebin0:src_1 and multiqueue0:sink_1
0:00:01.609394542 2614 0x203fb70 INFO GST_PADS gstpad.c:2590:gst_pad_link_full: linked parsebin0:src_1 and multiqueue0:sink_1, successful
0:00:01.609420751 2614 0x203fb70 INFO GST_EVENT gstevent.c:1660:gst_event_new_reconfigure: creating reconfigure event
0:00:01.610134001 2614 0xb5a272a8 FIXME decodebin3 gstdecodebin3.c:1621:get_output_for_slot:<decodebin3-0> emit autoplug-continue
0:00:01.610194792 2614 0xb5a272a8 FIXME decodebin3 gstdecodebin3.c:1624:get_output_for_slot:<decodebin3-0> Handle EXPOSE_ALL_MODE
0:00:01.610604292 2614 0x203fb70 INFO GST_EVENT gstevent.c:972:gst_event_new_segment: creating segment event time segment start=0:00:00.000000000, offset=0:00:00.000000000, stop=0:00:30.036666666, rate=1.000000, applied_rate=1.000000, flags=0x00, time=0:00:00.000000000, base=0:00:00.000000000, position 0:00:00.000000000, duration 99:99:99.999999999
0:00:01.610864667 2614 0x203fb70 INFO aacparse gstaacparse.c:608:gst_aac_parse_read_audio_specific_config:<aacparse0> Parsed AudioSpecificConfig: 48000 Hz, 2 channels
0:00:01.611155751 2614 0x203fb70 INFO GST_EVENT gstevent.c:892:gst_event_new_caps: creating caps event audio/mpeg, mpegversion=(int)4, framed=(boolean)true, stream-format=(string)raw, level=(string)2, base-profile=(string)lc, profile=(string)lc, codec_data=(buffer)1190, rate=(int)48000, channels=(int)2
0:00:01.613245626 2614 0x203fb70 INFO baseparse gstbaseparse.c:4028:gst_base_parse_set_passthrough:<aacparse0> passthrough: yes
0:00:01.613501709 2614 0x203fb70 INFO baseparse gstbaseparse.c:4864:gst_base_parse_set_upstream_tags:<aacparse0> upstream tags: taglist, audio-codec=(string)"MPEG-4\ AAC\ audio", maximum-bitrate=(uint)259456;
0:00:01.615890501 2614 0x203fb70 INFO basetransform gstbasetransform.c:1325:gst_base_transform_setcaps:<capsfilter0> reuse caps
0:00:01.620827334 2614 0xb5a272a8 INFO v4l2codecs gstv4l2codecdevice.c:388:gst_v4l2_codec_find_devices: Found decoder device cedrus-proc
0:00:01.621763167 2614 0xb5a272a8 INFO v4l2codecs plugin.c:64:register_video_decoder:<v4l2decoder0> Registering cedrus-proc as Mpeg2 Decoder
0:00:01.622289792 2614 0xb5a272a8 INFO v4l2codecs plugin.c:52:register_video_decoder:<v4l2decoder0> Registering cedrus-proc as H264 Decoder
0:00:01.622576834 2614 0xb5a272a8 FIXME v4l2codecs plugin.c:77:register_video_decoder:<v4l2decoder0> S265 is not supported.
0:00:01.622637751 2614 0xb5a272a8 INFO v4l2codecs plugin.c:58:register_video_decoder:<v4l2decoder0> Registering cedrus-proc as VP8 Decoder
0:00:01.623205542 2614 0xb5a272a8 INFO GST_PLUGIN_LOADING gstplugin.c:987:_priv_gst_plugin_load_file_for_registry: plugin "/usr/lib/arm-linux-gnueabihf/gstreamer-1.0/libgstv4l2codecs.so" loaded
0:00:01.623264626 2614 0xb5a272a8 INFO GST_ELEMENT_FACTORY gstelementfactory.c:489:gst_element_factory_create_with_properties: creating element "v4l2slh264dec"
0:00:01.624050251 2614 0xb5a272a8 INFO GST_ELEMENT_PADS gstelement.c:759:gst_element_add_pad:<GstVideoDecoder@0xb3a0f040> adding pad 'sink'
0:00:01.624167126 2614 0xb5a272a8 INFO GST_ELEMENT_PADS gstelement.c:759:gst_element_add_pad:<GstVideoDecoder@0xb3a0f040> adding pad 'src'
0:00:01.624638876 2614 0xb5a272a8 INFO GST_ELEMENT_PADS gstelement.c:1016:gst_element_get_static_pad: found pad v4l2slh264dec0:sink
0:00:01.624703209 2614 0xb5a272a8 INFO GST_ELEMENT_PADS gstelement.c:1016:gst_element_get_static_pad: found pad v4l2slh264dec0:src
0:00:01.624789209 2614 0xb5a272a8 INFO GST_PADS gstpad.c:2382:gst_pad_link_prepare: trying to link multiqueue0:src_0 and v4l2slh264dec0:sink
0:00:01.624842417 2614 0xb5a272a8 INFO GST_PADS gstpad.c:2590:gst_pad_link_full: linked multiqueue0:src_0 and v4l2slh264dec0:sink, successful
0:00:01.624871459 2614 0xb5a272a8 INFO GST_EVENT gstevent.c:1660:gst_event_new_reconfigure: creating reconfigure event
0:00:01.625375792 2614 0xb5a272a8 INFO v4l2codecs-h264dec gstv4l2codech264dec.c:219:gst_v4l2_codec_h264_dec_open:<v4l2slh264dec0> Opened H264 slice based decoder without start-codes
0:00:01.625427834 2614 0xb5a272a8 INFO GST_STATES gstelement.c:2806:gst_element_continue_state:<v4l2slh264dec0> completed state change to READY
0:00:01.625466376 2614 0xb5a272a8 INFO GST_STATES gstelement.c:2706:_priv_gst_element_state_changed:<v4l2slh264dec0> notifying about state-changed NULL to READY (VOID_PENDING pending)
0:00:01.625776417 2614 0xb5a272a8 INFO GST_PADS gstpad.c:4357:gst_pad_peer_query:<v4l2slh264dec0:src> pad has no peer
0:00:01.626033876 2614 0xb5a272a8 INFO GST_PADS gstpad.c:2382:gst_pad_link_prepare: trying to link v4l2slh264dec0:src and video_0:proxypad5
0:00:01.626092501 2614 0xb5a272a8 INFO GST_PADS gstpad.c:2590:gst_pad_link_full: linked v4l2slh264dec0:src and video_0:proxypad5, successful
0:00:01.626124084 2614 0xb5a272a8 INFO GST_EVENT gstevent.c:1660:gst_event_new_reconfigure: creating reconfigure event
0:00:01.626158001 2614 0xb5a272a8 INFO GST_EVENT gstpad.c:5946:gst_pad_send_event_unchecked:<v4l2slh264dec0:src> Received event on flushing pad. Discarding
0:00:01.626300667 2614 0xb5a272a8 INFO GST_ELEMENT_PADS gstelement.c:759:gst_element_add_pad:<decodebin3-0> adding pad 'video_0'
0:00:01.626386917 2614 0xb5a272a8 INFO GST_PIPELINE gst/parse/grammar.y:554:gst_parse_found_pad: trying delayed linking one pad some pad of GstDecodebin3 named decodebin3-0 to some pad of GstKMSSink named kmssink0
0:00:01.626429876 2614 0xb5a272a8 INFO GST_ELEMENT_PADS gstutils.c:1816:gst_element_link_pads_full: trying to link element decodebin3-0:(any) to element kmssink0:(any)
0:00:01.626484417 2614 0xb5a272a8 INFO GST_PADS gstutils.c:1079:gst_pad_check_link: trying to link decodebin3-0:video_0 and kmssink0:sink
0:00:01.626666834 2614 0xb5a272a8 INFO GST_PADS gstutils.c:1632:prepare_link_maybe_ghosting: decodebin3-0 and kmssink0 in same bin, no need for ghost pads
0:00:01.626768001 2614 0xb5a272a8 INFO GST_PADS gstpad.c:2382:gst_pad_link_prepare: trying to link decodebin3-0:video_0 and kmssink0:sink
0:00:01.626920042 2614 0xb5a272a8 INFO GST_PADS gstpad.c:2590:gst_pad_link_full: linked decodebin3-0:video_0 and kmssink0:sink, successful
0:00:01.626951876 2614 0xb5a272a8 INFO GST_EVENT gstevent.c:1660:gst_event_new_reconfigure: creating reconfigure event
0:00:01.627002876 2614 0xb5a272a8 INFO GST_EVENT gstpad.c:5946:gst_pad_send_event_unchecked:<v4l2slh264dec0:src> Received event on flushing pad. Discarding
0:00:01.627095709 2614 0xb5a272a8 DEBUG GST_PIPELINE gst/parse/grammar.y:564:gst_parse_found_pad: delayed linking one pad some pad of GstDecodebin3 named decodebin3-0 to some pad of GstKMSSink named kmssink0 worked
0:00:01.627811542 2614 0xb5a272a8 INFO GST_STATES gstelement.c:2806:gst_element_continue_state:<v4l2slh264dec0> completed state change to PAUSED
0:00:01.627868501 2614 0xb5a272a8 INFO GST_STATES gstelement.c:2706:_priv_gst_element_state_changed:<v4l2slh264dec0> notifying about state-changed READY to PAUSED (VOID_PENDING pending)
0:00:01.628172667 2614 0xb5a272e0 FIXME decodebin3 gstdecodebin3.c:1621:get_output_for_slot:<decodebin3-0> emit autoplug-continue
0:00:01.628247459 2614 0xb5a272e0 FIXME decodebin3 gstdecodebin3.c:1624:get_output_for_slot:<decodebin3-0> Handle EXPOSE_ALL_MODE
0:00:01.628990042 2614 0xb5a272a8 INFO v4l2codecs-h264dec gstv4l2codech264dec.c:862:gst_v4l2_codec_h264_dec_new_sequence:<v4l2slh264dec0> Resolution changed to 1920x1080 (1920x1088)
0:00:01.629051417 2614 0xb5a272a8 INFO v4l2codecs-h264dec gstv4l2codech264dec.c:878:gst_v4l2_codec_h264_dec_new_sequence:<v4l2slh264dec0> Bitdepth changed to 8
0:00:01.629082542 2614 0xb5a272a8 INFO v4l2codecs-h264dec gstv4l2codech264dec.c:884:gst_v4l2_codec_h264_dec_new_sequence:<v4l2slh264dec0> Chroma format changed to 1
0:00:01.629502334 2614 0xb5a272a8 INFO v4l2codecs-decoder gstv4l2decoder.c:465:gst_v4l2_decoder_select_src_format:<v4l2decoder1> Selected format NV12 1920x1088
0:00:01.629823667 2614 0xb5a272a8 INFO GST_EVENT gstevent.c:892:gst_event_new_caps: creating caps event video/x-raw, format=(string)NV12, width=(int)1920, height=(int)1080, interlace-mode=(string)progressive, multiview-mode=(string)mono, multiview-flags=(GstVideoMultiviewFlagsSet)0:ffffffff:/right-view-first/left-flipped/left-flopped/right-flipped/right-flopped/half-aspect/mixed-mono, pixel-aspect-ratio=(fraction)1/1, colorimetry=(string)bt709, framerate=(fraction)30/1
0:00:01.630931626 2614 0xb5a272e0 INFO GST_PLUGIN_LOADING gstplugin.c:987:_priv_gst_plugin_load_file_for_registry: plugin "/usr/lib/arm-linux-gnueabihf/gstreamer-1.0/libgstfaad.so" loaded
0:00:01.631015292 2614 0xb5a272e0 INFO GST_ELEMENT_FACTORY gstelementfactory.c:489:gst_element_factory_create_with_properties: creating element "faad"
0:00:01.631679709 2614 0xb5a272e0 INFO GST_ELEMENT_PADS gstelement.c:759:gst_element_add_pad:<GstAudioDecoder@0xb3007298> adding pad 'sink'
0:00:01.631915001 2614 0xb5a272e0 INFO GST_ELEMENT_PADS gstelement.c:759:gst_element_add_pad:<GstAudioDecoder@0xb3007298> adding pad 'src'
0:00:01.633470001 2614 0xb5a272e0 INFO GST_ELEMENT_PADS gstelement.c:1016:gst_element_get_static_pad: found pad faad0:sink
0:00:01.635195167 2614 0xb5a272e0 INFO GST_ELEMENT_PADS gstelement.c:1016:gst_element_get_static_pad: found pad faad0:src
0:00:01.635657126 2614 0xb5a272e0 INFO GST_PADS gstpad.c:2382:gst_pad_link_prepare: trying to link multiqueue0:src_1 and faad0:sink
0:00:01.635755834 2614 0xb5a272e0 INFO GST_PADS gstpad.c:2590:gst_pad_link_full: linked multiqueue0:src_1 and faad0:sink, successful
0:00:01.635784751 2614 0xb5a272e0 INFO GST_EVENT gstevent.c:1660:gst_event_new_reconfigure: creating reconfigure event
0:00:01.636133917 2614 0xb5a272e0 INFO GST_STATES gstelement.c:2806:gst_element_continue_state:<faad0> completed state change to READY
0:00:01.636358126 2614 0xb5a272e0 INFO GST_STATES gstelement.c:2706:_priv_gst_element_state_changed:<faad0> notifying about state-changed NULL to READY (VOID_PENDING pending)
0:00:01.638275542 2614 0xb5a272e0 INFO GST_PADS gstpad.c:2382:gst_pad_link_prepare: trying to link faad0:src and audio_0:proxypad6
0:00:01.638576792 2614 0xb5a272e0 INFO GST_PADS gstpad.c:2590:gst_pad_link_full: linked faad0:src and audio_0:proxypad6, successful
0:00:01.638643209 2614 0xb5a272e0 INFO GST_EVENT gstevent.c:1660:gst_event_new_reconfigure: creating reconfigure event
0:00:01.638748376 2614 0xb5a272e0 INFO GST_EVENT gstpad.c:5946:gst_pad_send_event_unchecked:<faad0:src> Received event on flushing pad. Discarding
0:00:01.639042042 2614 0xb5a272e0 INFO GST_ELEMENT_PADS gstelement.c:759:gst_element_add_pad:<decodebin3-0> adding pad 'audio_0'
0:00:01.639638042 2614 0xb5a272e0 INFO GST_STATES gstelement.c:2806:gst_element_continue_state:<faad0> completed state change to PAUSED
0:00:01.639745459 2614 0xb5a272e0 INFO GST_STATES gstelement.c:2706:_priv_gst_element_state_changed:<faad0> notifying about state-changed READY to PAUSED (VOID_PENDING pending)
0:00:01.643086501 2614 0xb5a272e0 INFO audiodecoder gstaudiodecoder.c:2521:gst_audio_decoder_sink_eventfunc:<faad0> upstream stream tags: taglist, audio-codec=(string)"MPEG-4\ AAC\ audio", maximum-bitrate=(uint)259456;
0:00:01.643938417 2614 0xb5a272e0 INFO audiodecoder gstaudiodecoder.c:2521:gst_audio_decoder_sink_eventfunc:<faad0> upstream stream tags: taglist, audio-codec=(string)"MPEG-4\ AAC", maximum-bitrate=(uint)259456;
0:00:01.645577834 2614 0x203fb70 INFO basetransform gstbasetransform.c:1325:gst_base_transform_setcaps:<capsfilter0> reuse caps
0:00:01.658147209 2614 0xb5a272e0 INFO GST_EVENT gstevent.c:892:gst_event_new_caps: creating caps event audio/x-raw, format=(string)S16LE, layout=(string)interleaved, rate=(int)48000, channels=(int)2, channel-mask=(bitmask)0x0000000000000003
0:00:01.658354501 2614 0xb5a272e0 INFO GST_PADS gstpad.c:4357:gst_pad_peer_query:<decodebin3-0:audio_0> pad has no peer
0:00:01.660493584 2614 0xb5a272e0 INFO GST_PADS gstpad.c:4357:gst_pad_peer_query:<decodebin3-0:audio_0> pad has no peer
Redistribute latency...
0:00:01.713932917 2614 0x1f1e800 INFO GST_EVENT gstevent.c:1530:gst_event_new_latency: creating latency event 0:00:00.000000000
0:00:01.713972626 2614 0xb5a272a8 INFO videodecoder gstvideodecoder.c:1633:gst_video_decoder_sink_event_default:<v4l2slh264dec0> upstream tags: taglist, video-codec=(string)"H.264\ \(High\ Profile\)", bitrate=(uint)1307696;
0:00:01.714100501 2614 0x1f1e800 INFO bin gstbin.c:2759:gst_bin_do_latency_func:<pipeline0> configured latency of 0:00:00.000000000
0:00:01.770015126 2614 0xb5a272a8 INFO videodecoder gstvideodecoder.c:3720:gst_video_decoder_clip_and_push_buf:<v4l2slh264dec0> First buffer since flush took 0:00:00.142630834 to produce
0:00:01.770524334 2614 0xb5a272a8 WARN kmsallocator gstkmsallocator.c:553:gst_kms_allocator_dmabuf_import:<KMSMemory::allocator> Failed to close GEM handle: Invalid argument 22
0:00:01.790827959 2614 0xb5a272a8 INFO GST_STATES gstbin.c:3397:bin_handle_async_done:<pipeline0> committing state from READY to PAUSED, old pending PAUSED
0:00:01.790895667 2614 0xb5a272a8 INFO GST_STATES gstbin.c:3420:bin_handle_async_done:<pipeline0> completed state change, pending VOID
0:00:01.790934417 2614 0xb5a272a8 INFO GST_STATES gstelement.c:2706:_priv_gst_element_state_changed:<pipeline0> notifying about state-changed READY to PAUSED (VOID_PENDING pending)
0:00:01.791217292 2614 0xb5a272a8 INFO GST_STATES gstbin.c:2069:gst_bin_get_state_func:<pipeline0> getting state
0:00:01.792009709 2614 0xb5a272a8 INFO GST_STATES gstbin.c:2069:gst_bin_get_state_func:<decodebin3-0> getting state
0:00:01.793273126 2614 0xb5a272a8 INFO GST_STATES gstbin.c:2069:gst_bin_get_state_func:<parsebin0> getting state
0:00:01.797472001 2614 0xb5a272a8 INFO default gstdebugutils.c:879:gst_debug_bin_to_dot_file: wrote bin graph to : '/home/pi/gst-dots//0.00.01.790974251-gst-launch.READY_PAUSED.dot'
Pipeline is PREROLLED ...
Setting pipeline to PLAYING ...
0:00:01.798512292 2614 0x1f1e800 INFO GST_EVENT gstevent.c:1530:gst_event_new_latency: creating latency event 0:00:00.000000000
0:00:01.798772417 2614 0x1f1e800 INFO bin gstbin.c:2759:gst_bin_do_latency_func:<pipeline0> configured latency of 0:00:00.000000000
0:00:01.798879042 2614 0x1f1e800 INFO GST_STATES gstbin.c:2479:gst_bin_element_set_state:<kmssink0> current PAUSED pending VOID_PENDING, desired next PLAYING
0:00:01.798951334 2614 0x1f1e800 INFO GST_STATES gstelement.c:2806:gst_element_continue_state:<kmssink0> completed state change to PLAYING
0:00:01.799012042 2614 0x1f1e800 INFO GST_STATES gstelement.c:2706:_priv_gst_element_state_changed:<kmssink0> notifying about state-changed PAUSED to PLAYING (VOID_PENDING pending)
0:00:01.799088959 2614 0x1f1e800 INFO GST_STATES gstbin.c:2928:gst_bin_change_state_func:<pipeline0> child 'kmssink0' changed state to 4(PLAYING) successfully
0:00:01.799154251 2614 0x1f1e800 INFO GST_STATES gstbin.c:2479:gst_bin_element_set_state:<decodebin3-0> current PAUSED pending VOID_PENDING, desired next PLAYING
0:00:01.799253501 2614 0x1f1e800 INFO GST_STATES gstbin.c:2479:gst_bin_element_set_state:<faad0> current PAUSED pending VOID_PENDING, desired next PLAYING
0:00:01.799304334 2614 0x1f1e800 INFO GST_STATES gstelement.c:2806:gst_element_continue_state:<faad0> completed state change to PLAYING
0:00:01.799339876 2614 0x1f1e800 INFO GST_STATES gstelement.c:2706:_priv_gst_element_state_changed:<faad0> notifying about state-changed PAUSED to PLAYING (VOID_PENDING pending)
0:00:01.799410417 2614 0x1f1e800 INFO GST_STATES gstbin.c:2928:gst_bin_change_state_func:<decodebin3-0> child 'faad0' changed state to 4(PLAYING) successfully
0:00:01.799470751 2614 0x1f1e800 INFO GST_STATES gstbin.c:2479:gst_bin_element_set_state:<v4l2slh264dec0> current PAUSED pending VOID_PENDING, desired next PLAYING
0:00:01.799512167 2614 0x1f1e800 INFO GST_STATES gstelement.c:2806:gst_element_continue_state:<v4l2slh264dec0> completed state change to PLAYING
0:00:01.799545959 2614 0x1f1e800 INFO GST_STATES gstelement.c:2706:_priv_gst_element_state_changed:<v4l2slh264dec0> notifying about state-changed PAUSED to PLAYING (VOID_PENDING pending)
0:00:01.799604209 2614 0x1f1e800 INFO GST_STATES gstbin.c:2928:gst_bin_change_state_func:<decodebin3-0> child 'v4l2slh264dec0' changed state to 4(PLAYING) successfully
0:00:01.799659167 2614 0x1f1e800 INFO GST_STATES gstbin.c:2479:gst_bin_element_set_state:<multiqueue0> current PAUSED pending VOID_PENDING, desired next PLAYING
0:00:01.799699917 2614 0x1f1e800 INFO GST_STATES gstelement.c:2806:gst_element_continue_state:<multiqueue0> completed state change to PLAYING
0:00:01.799736042 2614 0x1f1e800 INFO GST_STATES gstelement.c:2706:_priv_gst_element_state_changed:<multiqueue0> notifying about state-changed PAUSED to PLAYING (VOID_PENDING pending)
0:00:01.799796376 2614 0x1f1e800 INFO GST_STATES gstbin.c:2928:gst_bin_change_state_func:<decodebin3-0> child 'multiqueue0' changed state to 4(PLAYING) successfully
0:00:01.799845959 2614 0x1f1e800 INFO GST_STATES gstbin.c:2479:gst_bin_element_set_state:<parsebin0> current PAUSED pending VOID_PENDING, desired next PLAYING
0:00:01.799935001 2614 0x1f1e800 INFO GST_STATES gstbin.c:2479:gst_bin_element_set_state:<aacparse0> current PAUSED pending VOID_PENDING, desired next PLAYING
0:00:01.799974084 2614 0x1f1e800 INFO GST_STATES gstelement.c:2806:gst_element_continue_state:<aacparse0> completed state change to PLAYING
0:00:01.800011417 2614 0x1f1e800 INFO GST_STATES gstelement.c:2706:_priv_gst_element_state_changed:<aacparse0> notifying about state-changed PAUSED to PLAYING (VOID_PENDING pending)
0:00:01.800079126 2614 0x1f1e800 INFO GST_STATES gstbin.c:2928:gst_bin_change_state_func:<parsebin0> child 'aacparse0' changed state to 4(PLAYING) successfully
0:00:01.800133334 2614 0x1f1e800 INFO GST_STATES gstbin.c:2479:gst_bin_element_set_state:<capsfilter0> current PAUSED pending VOID_PENDING, desired next PLAYING
0:00:01.800169209 2614 0x1f1e800 INFO GST_STATES gstelement.c:2806:gst_element_continue_state:<capsfilter0> completed state change to PLAYING
0:00:01.800202667 2614 0x1f1e800 INFO GST_STATES gstelement.c:2706:_priv_gst_element_state_changed:<capsfilter0> notifying about state-changed PAUSED to PLAYING (VOID_PENDING pending)
0:00:01.800258876 2614 0x1f1e800 INFO GST_STATES gstbin.c:2928:gst_bin_change_state_func:<parsebin0> child 'capsfilter0' changed state to 4(PLAYING) successfully
0:00:01.800309584 2614 0x1f1e800 INFO GST_STATES gstbin.c:2479:gst_bin_element_set_state:<h264parse0> current PAUSED pending VOID_PENDING, desired next PLAYING
0:00:01.800343584 2614 0x1f1e800 INFO GST_STATES gstelement.c:2806:gst_element_continue_state:<h264parse0> completed state change to PLAYING
0:00:01.800376584 2614 0x1f1e800 INFO GST_STATES gstelement.c:2706:_priv_gst_element_state_changed:<h264parse0> notifying about state-changed PAUSED to PLAYING (VOID_PENDING pending)
0:00:01.800430209 2614 0x1f1e800 INFO GST_STATES gstbin.c:2928:gst_bin_change_state_func:<parsebin0> child 'h264parse0' changed state to 4(PLAYING) successfully
0:00:01.800506209 2614 0x1f1e800 INFO GST_STATES gstbin.c:2479:gst_bin_element_set_state:<qtdemux0> current PAUSED pending VOID_PENDING, desired next PLAYING
0:00:01.800546001 2614 0x1f1e800 INFO GST_STATES gstelement.c:2806:gst_element_continue_state:<qtdemux0> completed state change to PLAYING
0:00:01.800581459 2614 0x1f1e800 INFO GST_STATES gstelement.c:2706:_priv_gst_element_state_changed:<qtdemux0> notifying about state-changed PAUSED to PLAYING (VOID_PENDING pending)
0:00:01.800655376 2614 0x1f1e800 INFO GST_STATES gstbin.c:2928:gst_bin_change_state_func:<parsebin0> child 'qtdemux0' changed state to 4(PLAYING) successfully
0:00:01.800701042 2614 0x1f1e800 INFO GST_STATES gstbin.c:2479:gst_bin_element_set_state:<typefind> current PAUSED pending VOID_PENDING, desired next PLAYING
0:00:01.800733251 2614 0x1f1e800 INFO GST_STATES gstelement.c:2806:gst_element_continue_state:<typefind> completed state change to PLAYING
0:00:01.800765167 2614 0x1f1e800 INFO GST_STATES gstelement.c:2706:_priv_gst_element_state_changed:<typefind> notifying about state-changed PAUSED to PLAYING (VOID_PENDING pending)
0:00:01.800818626 2614 0x1f1e800 INFO GST_STATES gstbin.c:2928:gst_bin_change_state_func:<parsebin0> child 'typefind' changed state to 4(PLAYING) successfully
0:00:01.800862501 2614 0x1f1e800 INFO GST_STATES gstelement.c:2806:gst_element_continue_state:<parsebin0> completed state change to PLAYING
0:00:01.800897417 2614 0x1f1e800 INFO GST_STATES gstelement.c:2706:_priv_gst_element_state_changed:<parsebin0> notifying about state-changed PAUSED to PLAYING (VOID_PENDING pending)
0:00:01.800955626 2614 0x1f1e800 INFO GST_STATES gstbin.c:2928:gst_bin_change_state_func:<decodebin3-0> child 'parsebin0' changed state to 4(PLAYING) successfully
0:00:01.800996584 2614 0x1f1e800 INFO GST_STATES gstelement.c:2806:gst_element_continue_state:<decodebin3-0> completed state change to PLAYING
0:00:01.801032542 2614 0x1f1e800 INFO GST_STATES gstelement.c:2706:_priv_gst_element_state_changed:<decodebin3-0> notifying about state-changed PAUSED to PLAYING (VOID_PENDING pending)
0:00:01.801083126 2614 0x1f1e800 INFO GST_STATES gstbin.c:2928:gst_bin_change_state_func:<pipeline0> child 'decodebin3-0' changed state to 4(PLAYING) successfully
0:00:01.801125292 2614 0x1f1e800 INFO GST_STATES gstbin.c:2479:gst_bin_element_set_state:<filesrc0> current PAUSED pending VOID_PENDING, desired next PLAYING
0:00:01.801164417 2614 0x1f1e800 INFO GST_STATES gstelement.c:2806:gst_element_continue_state:<filesrc0> completed state change to PLAYING
0:00:01.801198042 2614 0x1f1e800 INFO GST_STATES gstelement.c:2706:_priv_gst_element_state_changed:<filesrc0> notifying about state-changed PAUSED to PLAYING (VOID_PENDING pending)
0:00:01.801249834 2614 0x1f1e800 INFO GST_STATES gstbin.c:2928:gst_bin_change_state_func:<pipeline0> child 'filesrc0' changed state to 4(PLAYING) successfully
0:00:01.801291751 2614 0x1f1e800 INFO GST_STATES gstelement.c:2806:gst_element_continue_state:<pipeline0> completed state change to PLAYING
0:00:01.801326626 2614 0x1f1e800 INFO GST_STATES gstelement.c:2706:_priv_gst_element_state_changed:<pipeline0> notifying about state-changed PAUSED to PLAYING (VOID_PENDING pending)
0:00:01.801595376 2614 0x1f1e800 INFO GST_STATES gstbin.c:2069:gst_bin_get_state_func:<pipeline0> getting state
0:00:01.824499001 2614 0x1f1e800 INFO GST_STATES gstbin.c:2069:gst_bin_get_state_func:<decodebin3-0> getting state
0:00:01.826789042 2614 0x1f1e800 INFO GST_STATES gstbin.c:2069:gst_bin_get_state_func:<parsebin0> getting state
0:00:01.831440126 2614 0x1f1e800 INFO default gstdebugutils.c:879:gst_debug_bin_to_dot_file: wrote bin graph to : '/home/pi/gst-dots//0.00.01.801360667-gst-launch.PAUSED_PLAYING.dot'
Redistribute latency...
0:00:01.832195792 2614 0x1f1e800 INFO GST_EVENT gstevent.c:1530:gst_event_new_latency: creating latency event 0:00:00.000000000
0:00:01.832478251 2614 0x1f1e800 INFO bin gstbin.c:2759:gst_bin_do_latency_func:<pipeline0> configured latency of 0:00:00.000000000
New clock: GstSystemClock
0:00:01.839331834 2614 0xb5a272a8 WARN kmsallocator gstkmsallocator.c:553:gst_kms_allocator_dmabuf_import:<KMSMemory::allocator> Failed to close GEM handle: Invalid argument 22
0:00:01.857364667 2614 0xb5a272a8 WARN videodecoder gstvideodecoder.c:3670:gst_video_decoder_clip_and_push_buf:<v4l2slh264dec0> Dropping frame due to QoS. start:0:00:00.133333333 deadline:0:00:00.066666667 earliest_time:0:00:00.082020917
0:00:01.898343501 2614 0xb5a272a8 WARN kmsallocator gstkmsallocator.c:553:gst_kms_allocator_dmabuf_import:<KMSMemory::allocator> Failed to close GEM handle: Invalid argument 22
0:00:01.931575459 2614 0xb5a272a8 WARN kmsallocator gstkmsallocator.c:553:gst_kms_allocator_dmabuf_import:<KMSMemory::allocator> Failed to close GEM handle: Invalid argument 22
0:00:01.956694459 2614 0xb5a272a8 INFO videodecoder gstvideodecoder.c:1633:gst_video_decoder_sink_event_default:<v4l2slh264dec0> upstream tags: taglist, video-codec=(string)"H.264\ \(High\ Profile\)", bitrate=(uint)1307696, minimum-bitrate=(uint)3558480, maximum-bitrate=(uint)3558480;
0:00:01.965008376 2614 0xb5a272a8 WARN kmsallocator gstkmsallocator.c:553:gst_kms_allocator_dmabuf_import:<KMSMemory::allocator> Failed to close GEM handle: Invalid argument 22
0:00:01.998271626 2614 0xb5a272a8 WARN kmsallocator gstkmsallocator.c:553:gst_kms_allocator_dmabuf_import:<KMSMemory::allocator> Failed to close GEM handle: Invalid argument 22
0:00:02.022942126 2614 0xb5a272a8 INFO videodecoder gstvideodecoder.c:1633:gst_video_decoder_sink_event_default:<v4l2slh264dec0> upstream tags: taglist, video-codec=(string)"H.264\ \(High\ Profile\)", bitrate=(uint)1307696, minimum-bitrate=(uint)437520, maximum-bitrate=(uint)3558480;
0:00:02.025444126 2614 0xb5a272a8 INFO videodecoder gstvideodecoder.c:1633:gst_video_decoder_sink_event_default:<v4l2slh264dec0> upstream tags: taglist, video-codec=(string)"H.264\ \(High\ Profile\)", bitrate=(uint)1307696, minimum-bitrate=(uint)403680, maximum-bitrate=(uint)3558480;
0:00:02.037280293 2614 0xb5a272a8 INFO videodecoder gstvideodecoder.c:1633:gst_video_decoder_sink_event_default:<v4l2slh264dec0> upstream tags: taglist, video-codec=(string)"H.264\ \(High\ Profile\)", bitrate=(uint)1307696, minimum-bitrate=(uint)318960, maximum-bitrate=(uint)3558480;
0:00:02.050794501 2614 0xb5a272a8 WARN kmsallocator gstkmsallocator.c:553:gst_kms_allocator_dmabuf_import:<KMSMemory::allocator> Failed to close GEM handle: Invalid argument 22
0:00:02.072682001 2614 0xb5a272a8 WARN videodecoder gstvideodecoder.c:3670:gst_video_decoder_clip_and_push_buf:<v4l2slh264dec0> Dropping frame due to QoS. start:0:00:00.333333333 deadline:0:00:00.266666667 earliest_time:0:00:00.305059001
0:00:02.073006209 2614 0xb5a272a8 INFO videodecoder gstvideodecoder.c:1633:gst_video_decoder_sink_event_default:<v4l2slh264dec0> upstream tags: taglist, video-codec=(string)"H.264\ \(High\ Profile\)", bitrate=(uint)1307696, minimum-bitrate=(uint)318960, maximum-bitrate=(uint)3644880;
0:00:02.074544209 2614 0xb5a272a8 WARN videodecoder gstvideodecoder.c:3670:gst_video_decoder_clip_and_push_buf:<v4l2slh264dec0> Dropping frame due to QoS. start:0:00:00.366666666 deadline:0:00:00.300000000 earliest_time:0:00:00.305059001
0:00:02.131760876 2614 0xb5a272a8 WARN kmsallocator gstkmsallocator.c:553:gst_kms_allocator_dmabuf_import:<KMSMemory::allocator> Failed to close GEM handle: Invalid argument 22
0:00:02.157016334 2614 0xb5a272e0 INFO audiodecoder gstaudiodecoder.c:2521:gst_audio_decoder_sink_eventfunc:<faad0> upstream stream tags: taglist, audio-codec=(string)"MPEG-4\ AAC", maximum-bitrate=(uint)259456, minimum-bitrate=(uint)253500, bitrate=(uint)253387;
0:00:02.158801543 2614 0xb5a272e0 INFO audiodecoder gstaudiodecoder.c:2521:gst_audio_decoder_sink_eventfunc:<faad0> upstream stream tags: taglist, audio-codec=(string)"MPEG-4\ AAC", maximum-bitrate=(uint)259456, minimum-bitrate=(uint)253125, bitrate=(uint)253363;
0:00:02.205413043 2614 0xb5a272a8 WARN videodecoder gstvideodecoder.c:3670:gst_video_decoder_clip_and_push_buf:<v4l2slh264dec0> Dropping frame due to QoS. start:0:00:00.466666666 deadline:0:00:00.400000000 earliest_time:0:00:00.430998084
0:00:02.205891126 2614 0xb5a272a8 INFO videodecoder gstvideodecoder.c:1633:gst_video_decoder_sink_event_default:<v4l2slh264dec0> upstream tags: taglist, video-codec=(string)"H.264\ \(High\ Profile\)", bitrate=(uint)1307696, minimum-bitrate=(uint)318960, maximum-bitrate=(uint)3706560;
0:00:02.338098751 2614 0xb5a272a8 WARN videodecoder gstvideodecoder.c:3670:gst_video_decoder_clip_and_push_buf:<v4l2slh264dec0> Dropping frame due to QoS. start:0:00:00.600000000 deadline:0:00:00.533333334 earliest_time:0:00:00.561496751
0:00:02.338770876 2614 0xb5a272a8 INFO videodecoder gstvideodecoder.c:1633:gst_video_decoder_sink_event_default:<v4l2slh264dec0> upstream tags: taglist, video-codec=(string)"H.264\ \(High\ Profile\)", bitrate=(uint)1307696, minimum-bitrate=(uint)318960, maximum-bitrate=(uint)3800400;
0:00:02.398592918 2614 0xb5a272a8 WARN kmsallocator gstkmsallocator.c:553:gst_kms_allocator_dmabuf_import:<KMSMemory::allocator> Failed to close GEM handle: Invalid argument 22
0:00:02.445250418 2614 0xb5a272a8 WARN kmsallocator gstkmsallocator.c:553:gst_kms_allocator_dmabuf_import:<KMSMemory::allocator> Failed to close GEM handle: Invalid argument 22
0:00:02.470729543 2614 0xb5a272a8 WARN videodecoder gstvideodecoder.c:3670:gst_video_decoder_clip_and_push_buf:<v4l2slh264dec0> Dropping frame due to QoS. start:0:00:00.733333333 deadline:0:00:00.666666667 earliest_time:0:00:00.693719583
0:00:02.577729084 2614 0xb5a272a8 WARN kmsallocator gstkmsallocator.c:553:gst_kms_allocator_dmabuf_import:<KMSMemory::allocator> Failed to close GEM handle: Invalid argument 22
0:00:02.603191459 2614 0xb5a272a8 WARN videodecoder gstvideodecoder.c:3670:gst_video_decoder_clip_and_push_buf:<v4l2slh264dec0> Dropping frame due to QoS. start:0:00:00.866666666 deadline:0:00:00.800000000 earliest_time:0:00:00.825343668
0:00:02.735657876 2614 0xb5a272a8 WARN videodecoder gstvideodecoder.c:3670:gst_video_decoder_clip_and_push_buf:<v4l2slh264dec0> Dropping frame due to QoS. start:0:00:01.000000000 deadline:0:00:00.933333334 earliest_time:0:00:00.956866669
0:00:02.842778043 2614 0xb5a272a8 WARN kmsallocator gstkmsallocator.c:553:gst_kms_allocator_dmabuf_import:<KMSMemory::allocator> Failed to close GEM handle: Invalid argument 22
0:00:02.868239376 2614 0xb5a272a8 WARN videodecoder gstvideodecoder.c:3670:gst_video_decoder_clip_and_push_buf:<v4l2slh264dec0> Dropping frame due to QoS. start:0:00:01.133333333 deadline:0:00:01.066666667 earliest_time:0:00:01.088778835
0:00:03.000708626 2614 0xb5a272a8 WARN videodecoder gstvideodecoder.c:3670:gst_video_decoder_clip_and_push_buf:<v4l2slh264dec0> Dropping frame due to QoS. start:0:00:01.266666666 deadline:0:00:01.200000000 earliest_time:0:00:01.220631584
0:00:03.199471835 2614 0xb5a272a8 WARN videodecoder gstvideodecoder.c:3670:gst_video_decoder_clip_and_push_buf:<v4l2slh264dec0> Dropping frame due to QoS. start:0:00:01.466666666 deadline:0:00:01.400000000 earliest_time:0:00:01.417865418
0:00:03.322914585 2614 0xb5a272a8 WARN videodecoder gstvideodecoder.c:3670:gst_video_decoder_clip_and_push_buf:<v4l2slh264dec0> Dropping frame due to QoS. start:0:00:01.566666666 deadline:0:00:01.500000000 earliest_time:0:00:01.502106252
0:00:03.365180002 2614 0xb5a272a8 INFO videodecoder gstvideodecoder.c:1633:gst_video_decoder_sink_event_default:<v4l2slh264dec0> upstream tags: taglist, video-codec=(string)"H.264\ \(High\ Profile\)", bitrate=(uint)1307696, minimum-bitrate=(uint)318960, maximum-bitrate=(uint)4225920;
0:00:03.398382210 2614 0xb5a272a8 WARN videodecoder gstvideodecoder.c:3670:gst_video_decoder_
View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment