gst_pipeline_set_clock() doesn't take effect
Halley Zhao
aihua.halley.zhao at gmail.com
Mon May 20 02:17:49 UTC 2019
Hi Expert:
I created my customized pipeline as
"appsrc-->h264parse-->v4l2h264dec-->waylandsink".
then I try to use my customized clock to control the video playback (in
fact, I used the above pipeline inside a bigger/complete pipeline).
however, I found gst_pipeline_set_clock() doens't work for me.
I call gst_pipeline_set_clock() before setting the pipeline to PLAYING
state, and gst logs shows it take effect (the clock is set to each
element); but when the pipeline changed state to
PAUSED, gst_bin_provide_clock_func() return NULL (it is strange),
and gst_system_clock_obtain() is called to update the clock.
I'm not sure whether there is something wrong in my code, or potential
mistake in gst base code.
here is my sample code and gst logs(GST_DEBUG=*:6).
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <https://lists.freedesktop.org/archives/gstreamer-devel/attachments/20190520/37ab8e78/attachment-0001.html>
-------------- next part --------------
0:00:00.000309625 8744 0x3d0a0600 INFO GST_INIT gst.c:586:init_pre: Initializing GStreamer Core Library version 1.14.0
0:00:00.000621000 8744 0x3d0a0600 INFO GST_INIT gst.c:587:init_pre: Using library installed in /usr/lib
0:00:00.000678875 8744 0x3d0a0600 INFO GST_INIT gst.c:607:init_pre: Linux localhost 4.14.78-imx_4.14.78_1.0.0_ga #1 SMP PREEMPT Wed Apr 24 11:22:15 CST 2019 aarch64
0:00:00.001027750 8744 0x3d0a0600 DEBUG GST_MEMORY gstallocator.c:593:_priv_gst_allocator_initialize: memory alignment: 7
0:00:00.001565625 8744 0x3d0a0600 DEBUG GST_MEMORY gstallocator.c:569:gst_allocator_sysmem_init: init allocator 0x3d0a8840
0:00:00.001797125 8744 0x3d0a0600 DEBUG GST_MEMORY gstallocator.c:211:gst_allocator_register: registering allocator 0x3d0a8840 with name "SystemMemory"
0:00:00.002132000 8744 0x3d0a0600 INFO GST_INIT gstmessage.c:127:_priv_gst_message_initialize: init messages
0:00:00.002528625 8744 0x3d0a0600 DEBUG GST_ELEMENT_PADS gstelement.c:302:gst_element_base_class_init: type GstElement : factory (nil)
0:00:00.002649500 8744 0x3d0a0600 DEBUG default gstelement.c:195:gst_element_setup_thread_pool: creating element thread pool
0:00:00.002837750 8744 0x3d0a0600 DEBUG GST_ELEMENT_PADS gstelement.c:302:gst_element_base_class_init: type GstBin : factory (nil)
0:00:00.004262750 8744 0x3d0a0600 INFO GST_INIT gstcontext.c:84:_priv_gst_context_initialize: init contexts
0:00:00.005027125 8744 0x3d0a0600 INFO GST_PLUGIN_LOADING gstplugin.c:317:_priv_gst_plugin_initialize: registering 0 static plugins
0:00:00.005160500 8744 0x3d0a0600 LOG GST_PLUGIN_LOADING gstplugin.c:222:gst_plugin_register_static: attempting to load static plugin "staticelements" now...
0:00:00.005294625 8744 0x3d0a0600 LOG GST_PLUGIN_LOADING gstplugin.c:506:gst_plugin_register_func: plugin "(NULL)" looks good
0:00:00.005547000 8744 0x3d0a0600 LOG GST_ELEMENT_FACTORY gstelementfactory.c:236:gst_element_register:<bin> Created new elementfactory for type GstBin
0:00:00.005649250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d0c6040 (bin)
0:00:00.005707750 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<bin> set parent (ref and sink)
0:00:00.005748125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for bin
0:00:00.005860375 8744 0x3d0a0600 LOG GST_ELEMENT_FACTORY gstelementfactory.c:236:gst_element_register:<pipeline> Created new elementfactory for type GstPipeline
0:00:00.005917125 8744 0x3d0a0600 DEBUG GST_ELEMENT_PADS gstelement.c:302:gst_element_base_class_init: type GstPipeline : factory 0x3d0c6120
0:00:00.006033000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d0c6120 (pipeline)
0:00:00.006085750 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<pipeline> set parent (ref and sink)
0:00:00.006124250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for pipeline
0:00:00.006159375 8744 0x3d0a0600 LOG GST_PLUGIN_LOADING gstplugin.c:533:gst_plugin_register_func: plugin "(NULL)" initialised
0:00:00.006192125 8744 0x3d0a0600 INFO GST_PLUGIN_LOADING gstplugin.c:225:gst_plugin_register_static: registered static plugin "staticelements"
0:00:00.006232000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:466:gst_registry_add_plugin:<registry0> adding plugin 0x3d0c5060 for filename "(NULL)"
0:00:00.006279500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:479:gst_registry_add_plugin:<registry0> emitting plugin-added for filename "(NULL)"
0:00:00.006315375 8744 0x3d0a0600 INFO GST_PLUGIN_LOADING gstplugin.c:227:gst_plugin_register_static: added static plugin "staticelements", result: 1
0:00:00.008958625 8744 0x3d0a0600 INFO GST_REGISTRY gstregistry.c:1727:ensure_current_registry: reading registry cache: /root/.cache/gstreamer-1.0/registry.aarch64.bin
0:00:00.009105500 8744 0x3d0a0600 LOG GST_DEBUG gstinfo.c:1595:gst_debug_reset_threshold: category GST_DEVICE_PROVIDER_FACTORY matches pattern 0x3d0a0430 - gets set to level 6
0:00:00.009188000 8744 0x3d0a0600 LOG GST_DEBUG gstinfo.c:1595:gst_debug_reset_threshold: category GST_DYNAMIC_TYPE_FACTORY matches pattern 0x3d0a0430 - gets set to level 6
0:00:00.009325375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrybinary.c:564:priv_gst_registry_binary_read_cache: File data at address 0xffffb46d3000
0:00:00.009368625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrybinary.c:473:gst_registry_binary_check_magic: Reading/casting for GstBinaryRegistryMagic at address 0xffffb46d3000
0:00:00.009426625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:938:_priv_gst_registry_chunks_load_global_header: Reading/casting for GstRegistryChunkGlobalHeader at 0xffffb46d3048
0:00:00.009462500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrybinary.c:606:priv_gst_registry_binary_read_cache: reading binary registry 76(4c)/405909
0:00:00.009502250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:829:_priv_gst_registry_chunks_load_plugin: Reading/casting for GstRegistryChunkPluginElement at address 0xffffb46d3050
0:00:00.009619625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:850:_priv_gst_registry_chunks_load_plugin: read strings for name='rtp'
0:00:00.009661500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:851:_priv_gst_registry_chunks_load_plugin: desc.description='Real-time protocol plugins'
0:00:00.009693500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:852:_priv_gst_registry_chunks_load_plugin: filename='/data/halley/gst-sdk/lib/gstreamer-1.0/libgstrtp.so'
0:00:00.009725625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:853:_priv_gst_registry_chunks_load_plugin: desc.version='1.14.0'
0:00:00.009756250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:854:_priv_gst_registry_chunks_load_plugin: desc.license='LGPL'
0:00:00.009786250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:855:_priv_gst_registry_chunks_load_plugin: desc.source='gst-plugins-good'
0:00:00.009817875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:856:_priv_gst_registry_chunks_load_plugin: desc.package='GStreamer Good Plug-ins source release'
0:00:00.009849500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:857:_priv_gst_registry_chunks_load_plugin: desc.origin='Unknown package origin'
0:00:00.009880875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:858:_priv_gst_registry_chunks_load_plugin: desc.datetime=2018-03-19
0:00:00.009931875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:466:gst_registry_add_plugin:<registry0> adding plugin 0x3d0c5190 for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstrtp.so"
0:00:00.009986375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:479:gst_registry_add_plugin:<registry0> emitting plugin-added for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstrtp.so"
0:00:00.010023375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:879:_priv_gst_registry_chunks_load_plugin: Added plugin 'rtp' plugin with 93 features from binary registry
0:00:00.010063500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'rtp' feature 'rtpac3depay' typename : 'GstElementFactory'
0:00:00.010148625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb46d3140
0:00:00.010265250 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.010329625 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.010383375 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.010419875 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.010463250 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.010496875 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.010538875 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.010572625 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.010609125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.010643250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46d3248
0:00:00.010697000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.010733500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46d3260
0:00:00.010771250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.010817500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d0c6200 (rtpac3depay)
0:00:00.010865625 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<rtpac3depay> set parent (ref and sink)
0:00:00.010904000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for rtpac3depay
0:00:00.010938500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature rtpac3depay, plugin 0x3d0c5190 rtp
0:00:00.010978125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'rtp' feature 'rtpac3pay' typename : 'GstElementFactory'
0:00:00.011059875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb46d32f8
0:00:00.011106875 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.011142375 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.011181375 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.011215875 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.011253750 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.011287625 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.011327125 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.011388625 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.011429000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.011463125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46d3400
0:00:00.011501000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.011532625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46d3498
0:00:00.011567250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.011611125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d0c62e0 (rtpac3pay)
0:00:00.011659500 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<rtpac3pay> set parent (ref and sink)
0:00:00.011697500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for rtpac3pay
0:00:00.011732125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature rtpac3pay, plugin 0x3d0c5190 rtp
0:00:00.011769250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'rtp' feature 'rtpbvdepay' typename : 'GstElementFactory'
0:00:00.011847375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb46d34e0
0:00:00.011895125 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.011928875 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.011966625 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.012000250 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.012038250 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.012070625 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.012109125 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.012143625 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.012180500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.012214625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46d3600
0:00:00.012251750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.012284875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46d3630
0:00:00.012322500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.012366125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d0c63c0 (rtpbvdepay)
0:00:00.012441375 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<rtpbvdepay> set parent (ref and sink)
0:00:00.012481625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for rtpbvdepay
0:00:00.012516500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature rtpbvdepay, plugin 0x3d0c5190 rtp
0:00:00.012554000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'rtp' feature 'rtpbvpay' typename : 'GstElementFactory'
0:00:00.012631250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb46d3710
0:00:00.012676875 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.012710625 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.012748250 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.012781625 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.012819750 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.012852375 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.012891250 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.012925625 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.012962500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.012995625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46d3830
0:00:00.013030500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.013171500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46d3860
0:00:00.013216125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.013261375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d0c64a0 (rtpbvpay)
0:00:00.013309125 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<rtpbvpay> set parent (ref and sink)
0:00:00.013347000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for rtpbvpay
0:00:00.013381875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature rtpbvpay, plugin 0x3d0c5190 rtp
0:00:00.013421125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'rtp' feature 'rtpceltdepay' typename : 'GstElementFactory'
0:00:00.013502250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb46d3978
0:00:00.013549750 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.013613625 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.013656375 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.013689750 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.013726625 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.013759000 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.013797250 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.013831375 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.013868000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.013901750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46d3a70
0:00:00.013938375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.013972625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46d3a90
0:00:00.014009500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.014053500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d0c6580 (rtpceltdepay)
0:00:00.014099750 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<rtpceltdepay> set parent (ref and sink)
0:00:00.014137125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for rtpceltdepay
0:00:00.014171875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature rtpceltdepay, plugin 0x3d0c5190 rtp
0:00:00.014211500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'rtp' feature 'rtpceltpay' typename : 'GstElementFactory'
0:00:00.014311750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb46d3b20
0:00:00.014361000 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.014395625 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.014433375 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.014467125 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.014503250 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.014535500 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.014573625 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.014607125 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.014672125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.014708375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46d3c20
0:00:00.014745500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.014777500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46d3c90
0:00:00.014815250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.014861500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d0c6660 (rtpceltpay)
0:00:00.014912000 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<rtpceltpay> set parent (ref and sink)
0:00:00.014951500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for rtpceltpay
0:00:00.014986750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature rtpceltpay, plugin 0x3d0c5190 rtp
0:00:00.015023500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'rtp' feature 'rtpdvdepay' typename : 'GstElementFactory'
0:00:00.015105125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb46d3d38
0:00:00.015153500 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.015187750 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.015225750 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.015260000 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.015296875 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.015329750 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.015367750 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.015401125 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.015438250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.015470250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46d3e68
0:00:00.015505375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.015536875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46d3e80
0:00:00.015599125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.015649125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d0cd0b0 (rtpdvdepay)
0:00:00.015724000 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<rtpdvdepay> set parent (ref and sink)
0:00:00.015763500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for rtpdvdepay
0:00:00.015798000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature rtpdvdepay, plugin 0x3d0c5190 rtp
0:00:00.015836375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'rtp' feature 'rtpdvpay' typename : 'GstElementFactory'
0:00:00.015917500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb46d3fd8
0:00:00.015964625 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.015998375 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.016035250 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.016068625 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.016104625 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.016137250 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.016174500 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.016207250 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.016243625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.016275125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46d4100
0:00:00.016308500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.016339500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46d4118
0:00:00.016382250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.016425250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d0cd190 (rtpdvpay)
0:00:00.016472125 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<rtpdvpay> set parent (ref and sink)
0:00:00.016509875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for rtpdvpay
0:00:00.016543875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature rtpdvpay, plugin 0x3d0c5190 rtp
0:00:00.016582125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'rtp' feature 'rtpgstdepay' typename : 'GstElementFactory'
0:00:00.016658625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb46d4290
0:00:00.016704000 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.016737250 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.016800625 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.016836625 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.016872750 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.016905000 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.016943125 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.016977750 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.017014250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.017079000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46d4390
0:00:00.017128375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.017162625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46d43a0
0:00:00.017200250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.017249125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d0cd270 (rtpgstdepay)
0:00:00.017296000 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<rtpgstdepay> set parent (ref and sink)
0:00:00.017334500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for rtpgstdepay
0:00:00.017369250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature rtpgstdepay, plugin 0x3d0c5190 rtp
0:00:00.017406500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'rtp' feature 'rtpgstpay' typename : 'GstElementFactory'
0:00:00.017498250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb46d4430
0:00:00.017543750 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.017577750 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.017614875 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.017648125 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.017684875 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.017717125 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.017755125 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.017789500 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.017826125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.017895625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46d4530
0:00:00.017938125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.017971250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46d45b8
0:00:00.018005125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.018048125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d0cd350 (rtpgstpay)
0:00:00.018094125 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<rtpgstpay> set parent (ref and sink)
0:00:00.018132250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for rtpgstpay
0:00:00.018166750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature rtpgstpay, plugin 0x3d0c5190 rtp
0:00:00.018205500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'rtp' feature 'rtpilbcpay' typename : 'GstElementFactory'
0:00:00.018282000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb46d45e8
0:00:00.018328000 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.018361625 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.018398625 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.018431750 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.018468250 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.018500625 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.018538625 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.018573375 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.018609250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.018641250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46d46f8
0:00:00.018676500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.018708000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46d4728
0:00:00.018757625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.018806000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d0cd430 (rtpilbcpay)
0:00:00.018850500 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<rtpilbcpay> set parent (ref and sink)
0:00:00.018916375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for rtpilbcpay
0:00:00.018953000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature rtpilbcpay, plugin 0x3d0c5190 rtp
0:00:00.018991375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'rtp' feature 'rtpilbcdepay' typename : 'GstElementFactory'
0:00:00.019071250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb46d47e0
0:00:00.019117375 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.019151000 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.019187875 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.019221000 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.019256875 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.019289000 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.019327125 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.019361375 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.019427125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.019463875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46d48f8
0:00:00.019498375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.019529625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46d4928
0:00:00.019566125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.019610000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d0cd510 (rtpilbcdepay)
0:00:00.019657250 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<rtpilbcdepay> set parent (ref and sink)
0:00:00.019694625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for rtpilbcdepay
0:00:00.019729000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature rtpilbcdepay, plugin 0x3d0c5190 rtp
0:00:00.019767875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'rtp' feature 'rtpg722depay' typename : 'GstElementFactory'
0:00:00.019865250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb46d49b0
0:00:00.019912750 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.019946250 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.020010625 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.020046875 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.020083500 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.020115750 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.020153500 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.020187875 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.020224125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.020257875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46d4aa8
0:00:00.020295125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.020328500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46d4b00
0:00:00.020373875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.020420500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d0cd5f0 (rtpg722depay)
0:00:00.020466000 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<rtpg722depay> set parent (ref and sink)
0:00:00.020504125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for rtpg722depay
0:00:00.020538750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature rtpg722depay, plugin 0x3d0c5190 rtp
0:00:00.020577375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'rtp' feature 'rtpg722pay' typename : 'GstElementFactory'
0:00:00.020653375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb46d4be0
0:00:00.020699250 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.020733125 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.020770500 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.020804250 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.020840875 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.020873125 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.020911375 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.020946125 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.020981625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.021041000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46d4ce8
0:00:00.021128750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.021161500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46d4e08
0:00:00.021197250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.021244375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d0cd6d0 (rtpg722pay)
0:00:00.021289250 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<rtpg722pay> set parent (ref and sink)
0:00:00.021327000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for rtpg722pay
0:00:00.021361125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature rtpg722pay, plugin 0x3d0c5190 rtp
0:00:00.021399750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'rtp' feature 'rtpg723depay' typename : 'GstElementFactory'
0:00:00.021478250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb46d4e68
0:00:00.021525250 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.021559500 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.021597625 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.021631375 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.021669625 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.021702125 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.021741125 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.021775500 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.021810750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.021843500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46d4f70
0:00:00.021878500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.021910375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46d4fa8
0:00:00.021948125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.021992250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d0d0820 (rtpg723depay)
0:00:00.022052625 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<rtpg723depay> set parent (ref and sink)
0:00:00.022090625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for rtpg723depay
0:00:00.022152000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature rtpg723depay, plugin 0x3d0c5190 rtp
0:00:00.022192625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'rtp' feature 'rtpg723pay' typename : 'GstElementFactory'
0:00:00.022268875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb46d5080
0:00:00.022314500 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.022347875 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.022385125 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.022418375 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.022455250 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.022487250 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.022524625 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.022559000 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.022595250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.022628375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46d5178
0:00:00.022663875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.022696625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46d51b8
0:00:00.022736375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.022782125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d0d0900 (rtpg723pay)
0:00:00.022828500 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<rtpg723pay> set parent (ref and sink)
0:00:00.022865625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for rtpg723pay
0:00:00.022899875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature rtpg723pay, plugin 0x3d0c5190 rtp
0:00:00.022938750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'rtp' feature 'rtpg726depay' typename : 'GstElementFactory'
0:00:00.023016500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb46d52c0
0:00:00.023062750 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.023095875 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.023133000 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.023203000 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.023244125 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.023276500 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.023313250 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.023345625 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.023380875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.023413500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46d53c8
0:00:00.023451125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.023482750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46d5468
0:00:00.023520125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.023565625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d0d09e0 (rtpg726depay)
0:00:00.023611500 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<rtpg726depay> set parent (ref and sink)
0:00:00.023649375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for rtpg726depay
0:00:00.023684250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature rtpg726depay, plugin 0x3d0c5190 rtp
0:00:00.023720250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'rtp' feature 'rtpg726pay' typename : 'GstElementFactory'
0:00:00.023797000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb46d5550
0:00:00.023842375 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.023875500 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.023912500 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.023945375 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.023982500 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.024014500 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.024052750 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.024087250 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.024123375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.024156000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46d5658
0:00:00.024219250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.024254375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46d56d8
0:00:00.024294750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.024339750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d0d0ac0 (rtpg726pay)
0:00:00.024387750 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<rtpg726pay> set parent (ref and sink)
0:00:00.024425375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for rtpg726pay
0:00:00.024459875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature rtpg726pay, plugin 0x3d0c5190 rtp
0:00:00.024498125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'rtp' feature 'rtpg729depay' typename : 'GstElementFactory'
0:00:00.024575250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb46d57d0
0:00:00.024624000 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.024658000 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.024695375 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.024729250 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.024765875 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.024798625 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.024837500 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.024871625 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.024907875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.024940875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46d58d8
0:00:00.024976875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.025008375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46d5910
0:00:00.025079750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.025136000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d0d0ba0 (rtpg729depay)
0:00:00.025183000 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<rtpg729depay> set parent (ref and sink)
0:00:00.025220500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for rtpg729depay
0:00:00.025283375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature rtpg729depay, plugin 0x3d0c5190 rtp
0:00:00.025324625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'rtp' feature 'rtpg729pay' typename : 'GstElementFactory'
0:00:00.025420875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb46d59e8
0:00:00.025469375 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.025503625 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.025541375 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.025575500 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.025612375 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.025645250 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.025683500 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.025716125 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.025752000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.025784250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46d5ae8
0:00:00.025838125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.025873875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46d5b28
0:00:00.025915375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.025961000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d0d0c80 (rtpg729pay)
0:00:00.026006250 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<rtpg729pay> set parent (ref and sink)
0:00:00.026043625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for rtpg729pay
0:00:00.026078750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature rtpg729pay, plugin 0x3d0c5190 rtp
0:00:00.026116375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'rtp' feature 'rtpgsmdepay' typename : 'GstElementFactory'
0:00:00.026192500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb46d5c30
0:00:00.026239875 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.026273750 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.026311000 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.026370625 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.026411125 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.026443250 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.026481125 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.026514250 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.026549750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.026581500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46d5d20
0:00:00.026617375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.026649250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46d5d60
0:00:00.026686250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.026730375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d0d0d60 (rtpgsmdepay)
0:00:00.026775500 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<rtpgsmdepay> set parent (ref and sink)
0:00:00.026812625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for rtpgsmdepay
0:00:00.026846875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature rtpgsmdepay, plugin 0x3d0c5190 rtp
0:00:00.026905375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'rtp' feature 'rtpgsmpay' typename : 'GstElementFactory'
0:00:00.026981875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb46d5e30
0:00:00.027027250 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.027060625 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.027097625 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.027131125 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.027167250 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.027199375 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.027237125 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.027270375 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.027305250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.027337250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46d5f28
0:00:00.027398500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.027432750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46d5f68
0:00:00.027471375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.027515250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d0d0e40 (rtpgsmpay)
0:00:00.027559750 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<rtpgsmpay> set parent (ref and sink)
0:00:00.027596750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for rtpgsmpay
0:00:00.027630625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature rtpgsmpay, plugin 0x3d0c5190 rtp
0:00:00.027666375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'rtp' feature 'rtpamrdepay' typename : 'GstElementFactory'
0:00:00.027741625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb46d6070
0:00:00.027787125 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.027820500 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.027857500 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.027890375 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.027926250 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.027958625 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.027997250 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.028030500 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.028066000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.028098125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46d6180
0:00:00.028134500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.028166000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46d61e8
0:00:00.028204500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.028247625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d0d3050 (rtpamrdepay)
0:00:00.028291750 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<rtpamrdepay> set parent (ref and sink)
0:00:00.028328750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for rtpamrdepay
0:00:00.028362125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature rtpamrdepay, plugin 0x3d0c5190 rtp
0:00:00.028423625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'rtp' feature 'rtpamrpay' typename : 'GstElementFactory'
0:00:00.028503000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb46d62f8
0:00:00.028548500 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.028581875 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.028618750 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.028651500 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.028687375 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.028719500 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.028758125 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.028791250 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.028826625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.028858625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46d6410
0:00:00.028907250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.028938500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46d6748
0:00:00.028973000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.029016000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d0d3130 (rtpamrpay)
0:00:00.029841500 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<rtpamrpay> set parent (ref and sink)
0:00:00.029872250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for rtpamrpay
0:00:00.029893500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature rtpamrpay, plugin 0x3d0c5190 rtp
0:00:00.029915250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'rtp' feature 'rtppcmadepay' typename : 'GstElementFactory'
0:00:00.029973500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb46d67d0
0:00:00.030001500 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.030021375 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.030043375 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.030062500 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.030101875 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.030122125 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.030143875 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.030162625 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.030183875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.030202500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46d68f0
0:00:00.030223625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.030241625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46d6938
0:00:00.030273250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.030301375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d0d3210 (rtppcmadepay)
0:00:00.030326875 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<rtppcmadepay> set parent (ref and sink)
0:00:00.030347625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for rtppcmadepay
0:00:00.030367000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature rtppcmadepay, plugin 0x3d0c5190 rtp
0:00:00.030388375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'rtp' feature 'rtppcmudepay' typename : 'GstElementFactory'
0:00:00.030432500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb46d6a18
0:00:00.030458750 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.030478000 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.030499125 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.030518000 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.030538625 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.030556875 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.030578250 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.030596625 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.030617500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.030635500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46d6b38
0:00:00.030661000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.030695500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46d6b80
0:00:00.030719625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.030745000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d0d32f0 (rtppcmudepay)
0:00:00.030770375 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<rtppcmudepay> set parent (ref and sink)
0:00:00.030791375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for rtppcmudepay
0:00:00.030810875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature rtppcmudepay, plugin 0x3d0c5190 rtp
0:00:00.030832000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'rtp' feature 'rtppcmupay' typename : 'GstElementFactory'
0:00:00.030886625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb46d6c60
0:00:00.030914500 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.030933875 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.030955000 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.030973875 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.030994375 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.031012750 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.031034375 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.031053125 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.031073250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.031091750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46d6d60
0:00:00.031112500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.031130625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46d6da0
0:00:00.031153250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.031178250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d0d33d0 (rtppcmupay)
0:00:00.031203750 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<rtppcmupay> set parent (ref and sink)
0:00:00.031225000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for rtppcmupay
0:00:00.031244500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature rtppcmupay, plugin 0x3d0c5190 rtp
0:00:00.031281750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'rtp' feature 'rtppcmapay' typename : 'GstElementFactory'
0:00:00.031329375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb46d6eb8
0:00:00.031355625 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.031374750 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.031395875 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.031414750 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.031435375 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.031453625 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.031475000 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.031493500 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.031513250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.031531000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46d6fb8
0:00:00.031551125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.031569000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46d6ff8
0:00:00.031590875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.031615500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d0d34b0 (rtppcmapay)
0:00:00.031641250 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<rtppcmapay> set parent (ref and sink)
0:00:00.031662375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for rtppcmapay
0:00:00.031682000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature rtppcmapay, plugin 0x3d0c5190 rtp
0:00:00.031702250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'rtp' feature 'rtpmpadepay' typename : 'GstElementFactory'
0:00:00.031744500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb46d7110
0:00:00.031770375 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.031789375 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.031810500 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.031829625 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.031850375 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.031883750 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.031908125 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.031927000 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.031947250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.031965750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46d7220
0:00:00.031993625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.032011750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46d7250
0:00:00.032033500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.032058750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d0d3590 (rtpmpadepay)
0:00:00.032088375 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<rtpmpadepay> set parent (ref and sink)
0:00:00.032110250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for rtpmpadepay
0:00:00.032130000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature rtpmpadepay, plugin 0x3d0c5190 rtp
0:00:00.032150875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'rtp' feature 'rtpmpapay' typename : 'GstElementFactory'
0:00:00.032194375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb46d7330
0:00:00.032221250 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.032240125 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.032261250 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.032280000 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.032300375 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.032318750 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.032340375 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.032359125 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.032379250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.032397625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46d7438
0:00:00.032420250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.032453500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46d7508
0:00:00.032475375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.032501125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d0d3670 (rtpmpapay)
0:00:00.032526750 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<rtpmpapay> set parent (ref and sink)
0:00:00.032548000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for rtpmpapay
0:00:00.032567500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature rtpmpapay, plugin 0x3d0c5190 rtp
0:00:00.032588625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'rtp' feature 'rtpmparobustdepay' typename : 'GstElementFactory'
0:00:00.032632000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb46d7558
0:00:00.032658250 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.032677375 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.032698750 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.032717875 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.032738250 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.032756375 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.032777875 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.032796625 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.032816875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.032835125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46d7678
0:00:00.032854625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.032872125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46d76a8
0:00:00.032895250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.032926500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d0d80b0 (rtpmparobustdepay)
0:00:00.032953125 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<rtpmparobustdepay> set parent (ref and sink)
0:00:00.032974500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for rtpmparobustdepay
0:00:00.032994000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature rtpmparobustdepay, plugin 0x3d0c5190 rtp
0:00:00.033014750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'rtp' feature 'rtpmpvdepay' typename : 'GstElementFactory'
0:00:00.033093000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb46d7808
0:00:00.033122875 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.033142250 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.033163625 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.033182625 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.033203125 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.033221500 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.033243000 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.033261750 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.033282125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.033300250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46d7918
0:00:00.033320375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.033338250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46d7960
0:00:00.033359375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.033384375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d0d8190 (rtpmpvdepay)
0:00:00.033410125 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<rtpmpvdepay> set parent (ref and sink)
0:00:00.033431125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for rtpmpvdepay
0:00:00.033450625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature rtpmpvdepay, plugin 0x3d0c5190 rtp
0:00:00.033471500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'rtp' feature 'rtpmpvpay' typename : 'GstElementFactory'
0:00:00.033514750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb46d7a38
0:00:00.033562250 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.033584125 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.033605875 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.033625000 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.033646000 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.033679625 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.033703500 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.033721875 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.033741625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.033760000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46d7b50
0:00:00.033779625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.033797500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46d7ba0
0:00:00.033819625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.033845125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d0d8270 (rtpmpvpay)
0:00:00.033870625 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<rtpmpvpay> set parent (ref and sink)
0:00:00.033891375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for rtpmpvpay
0:00:00.033910625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature rtpmpvpay, plugin 0x3d0c5190 rtp
0:00:00.033931375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'rtp' feature 'rtpopusdepay' typename : 'GstElementFactory'
0:00:00.033986000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb46d7cb0
0:00:00.034013875 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.034033000 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.034054250 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.034073250 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.034094375 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.034112875 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.034134125 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.034152500 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.034172875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.034191125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46d7dd0
0:00:00.034211000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.034228875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46d7e08
0:00:00.034265750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.034292250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d0d8350 (rtpopusdepay)
0:00:00.034318625 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<rtpopusdepay> set parent (ref and sink)
0:00:00.034340000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for rtpopusdepay
0:00:00.034359625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature rtpopusdepay, plugin 0x3d0c5190 rtp
0:00:00.034380250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'rtp' feature 'rtpopuspay' typename : 'GstElementFactory'
0:00:00.034423625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb46d7ec8
0:00:00.034462375 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.034483750 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.034504625 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.034523375 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.034544250 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.034562625 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.034583500 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.034601875 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.034622250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.034640375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46d7fd0
0:00:00.034662500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.034680500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46d8090
0:00:00.034700500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.034725875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d0d8430 (rtpopuspay)
0:00:00.034751625 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<rtpopuspay> set parent (ref and sink)
0:00:00.034772750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for rtpopuspay
0:00:00.034791875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature rtpopuspay, plugin 0x3d0c5190 rtp
0:00:00.034812875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'rtp' feature 'rtph261pay' typename : 'GstElementFactory'
0:00:00.034871875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb46d8100
0:00:00.034898750 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.034918125 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.034939500 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.034958500 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.034979250 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.034997625 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.035018750 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.035037375 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.035057000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.035075375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46d8210
0:00:00.035097375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.035115375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46d8300
0:00:00.035135000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.035159625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d0d8510 (rtph261pay)
0:00:00.035184625 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<rtph261pay> set parent (ref and sink)
0:00:00.035205500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for rtph261pay
0:00:00.035224750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature rtph261pay, plugin 0x3d0c5190 rtp
0:00:00.035245250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'rtp' feature 'rtph261depay' typename : 'GstElementFactory'
0:00:00.035288125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb46d8340
0:00:00.035314625 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.035333625 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.035354625 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.035373500 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.035394500 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.035412875 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.035450125 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.035470375 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.035490500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.035508750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46d8448
0:00:00.035528000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.035545750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46d8468
0:00:00.035567375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.035591750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d0d85f0 (rtph261depay)
0:00:00.035617750 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<rtph261depay> set parent (ref and sink)
0:00:00.035638750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for rtph261depay
0:00:00.035658000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature rtph261depay, plugin 0x3d0c5190 rtp
0:00:00.035678625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'rtp' feature 'rtph263ppay' typename : 'GstElementFactory'
0:00:00.035721125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb46d8578
0:00:00.035747125 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.035765875 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.035787125 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.035805875 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.035826375 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.035844750 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.035866375 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.035885125 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.035905250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.035923500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46d8688
0:00:00.035946375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.035964250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46d8788
0:00:00.036011125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.036041125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d0d86d0 (rtph263ppay)
0:00:00.036067750 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<rtph263ppay> set parent (ref and sink)
0:00:00.036089500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for rtph263ppay
0:00:00.036108750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature rtph263ppay, plugin 0x3d0c5190 rtp
0:00:00.036130000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'rtp' feature 'rtph263pdepay' typename : 'GstElementFactory'
0:00:00.036174250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb46d87d8
0:00:00.036200750 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.036220000 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.036241250 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.036260500 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.036281875 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.036300500 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.036322500 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.036341375 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.036361500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.036380250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46d88e8
0:00:00.036399875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.036417875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46d8918
0:00:00.036440375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.036465500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d0dc030 (rtph263pdepay)
0:00:00.036491125 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<rtph263pdepay> set parent (ref and sink)
0:00:00.036512500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for rtph263pdepay
0:00:00.036531625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature rtph263pdepay, plugin 0x3d0c5190 rtp
0:00:00.036552875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'rtp' feature 'rtph263depay' typename : 'GstElementFactory'
0:00:00.036617500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb46d8a20
0:00:00.036644875 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.036664375 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.036686000 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.036705000 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.036725750 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.036744500 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.036766250 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.036785250 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.036806625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.036824875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46d8b60
0:00:00.036845250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.036863250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46d8ba8
0:00:00.036884500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.036909875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d0dc110 (rtph263depay)
0:00:00.036935375 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<rtph263depay> set parent (ref and sink)
0:00:00.036956375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for rtph263depay
0:00:00.036975625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature rtph263depay, plugin 0x3d0c5190 rtp
0:00:00.036996125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'rtp' feature 'rtph263pay' typename : 'GstElementFactory'
0:00:00.037070000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb46d8c80
0:00:00.037102500 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.037122250 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.037143875 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.037163125 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.037184250 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.037203000 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.037249625 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.037270375 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.037291625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.037310375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46d8dc0
0:00:00.037333500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.037351750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46d8eb0
0:00:00.037371375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.037396750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d0dc1f0 (rtph263pay)
0:00:00.037423125 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<rtph263pay> set parent (ref and sink)
0:00:00.037444750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for rtph263pay
0:00:00.037464250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature rtph263pay, plugin 0x3d0c5190 rtp
0:00:00.037485500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'rtp' feature 'rtph264depay' typename : 'GstElementFactory'
0:00:00.037529625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb46d8f18
0:00:00.037555750 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.037574625 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.037595875 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.037614875 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.037635875 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.037654875 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.037676125 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.037694875 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.037715000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.037733375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46d9020
0:00:00.037754875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.037772875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46d90c0
0:00:00.037793500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.037842250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d0dc2d0 (rtph264depay)
0:00:00.037869500 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<rtph264depay> set parent (ref and sink)
0:00:00.037890500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for rtph264depay
0:00:00.037909750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature rtph264depay, plugin 0x3d0c5190 rtp
0:00:00.037930000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'rtp' feature 'rtph264pay' typename : 'GstElementFactory'
0:00:00.037973750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb46d9148
0:00:00.037999875 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.038018875 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.038039875 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.038058750 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.038079250 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.038097500 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.038118750 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.038137375 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.038157125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.038175250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46d9250
0:00:00.038210500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.038231375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46d92d0
0:00:00.038251500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.038276375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d0dc3b0 (rtph264pay)
0:00:00.038302000 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<rtph264pay> set parent (ref and sink)
0:00:00.038323500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for rtph264pay
0:00:00.038343125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature rtph264pay, plugin 0x3d0c5190 rtp
0:00:00.038366375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'rtp' feature 'rtph265depay' typename : 'GstElementFactory'
0:00:00.038409625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb46d9390
0:00:00.038451375 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.038472000 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.038493000 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.038511875 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.038532375 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.038550625 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.038572250 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.038590875 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.038611125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.038629625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46d94a0
0:00:00.038651750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.038669625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46d9540
0:00:00.038690125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.038715375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d0dc490 (rtph265depay)
0:00:00.038741000 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<rtph265depay> set parent (ref and sink)
0:00:00.038762250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for rtph265depay
0:00:00.038781750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature rtph265depay, plugin 0x3d0c5190 rtp
0:00:00.038802500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'rtp' feature 'rtph265pay' typename : 'GstElementFactory'
0:00:00.038845125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb46d95c8
0:00:00.038871375 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.038890375 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.038911375 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.038930375 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.038950750 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.038969125 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.038990750 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.039024625 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.039047125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.039065375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46d96d8
0:00:00.039086500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.039104500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46d9758
0:00:00.039124375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.039149500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d0dc570 (rtph265pay)
0:00:00.039190125 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<rtph265pay> set parent (ref and sink)
0:00:00.039213250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for rtph265pay
0:00:00.039233000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature rtph265pay, plugin 0x3d0c5190 rtp
0:00:00.039254000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'rtp' feature 'rtpj2kdepay' typename : 'GstElementFactory'
0:00:00.039297375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb46d9818
0:00:00.039324000 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.039343500 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.039365125 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.039384625 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.039405875 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.039424625 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.039446625 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.039465375 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.039485625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.039504000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46d9930
0:00:00.039524375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.039542500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46d9978
0:00:00.039566375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.039607875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d0dc650 (rtpj2kdepay)
0:00:00.039634750 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<rtpj2kdepay> set parent (ref and sink)
0:00:00.039656000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for rtpj2kdepay
0:00:00.039675625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature rtpj2kdepay, plugin 0x3d0c5190 rtp
0:00:00.039696375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'rtp' feature 'rtpj2kpay' typename : 'GstElementFactory'
0:00:00.039738875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb46d9b00
0:00:00.039765000 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.039784000 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.039805125 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.039824125 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.039844875 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.039863250 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.039885375 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.039904250 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.039924375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.039942625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46d9c18
0:00:00.039965000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.039982875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46d9d10
0:00:00.040003625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.040028625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d0df090 (rtpj2kpay)
0:00:00.040053500 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<rtpj2kpay> set parent (ref and sink)
0:00:00.040074625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for rtpj2kpay
0:00:00.040093625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature rtpj2kpay, plugin 0x3d0c5190 rtp
0:00:00.040113750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'rtp' feature 'rtpjpegdepay' typename : 'GstElementFactory'
0:00:00.040157125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb46d9dc0
0:00:00.040199000 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.040219625 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.040240875 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.040259750 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.040280375 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.040298750 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.040320000 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.040338750 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.040358625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.040377000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46d9ec8
0:00:00.040398750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.040417000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46d9ee0
0:00:00.040438750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.040486500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d0df170 (rtpjpegdepay)
0:00:00.040515625 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<rtpjpegdepay> set parent (ref and sink)
0:00:00.040537000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for rtpjpegdepay
0:00:00.040556500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature rtpjpegdepay, plugin 0x3d0c5190 rtp
0:00:00.040578250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'rtp' feature 'rtpjpegpay' typename : 'GstElementFactory'
0:00:00.040623125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb46d9fb8
0:00:00.040649500 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.040668625 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.041416625 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.041435500 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.041453000 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.041468375 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.041486625 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.041502750 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.041535375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.041553000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46da0d0
0:00:00.041573625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.041589375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46da228
0:00:00.041606625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.041630000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d0df250 (rtpjpegpay)
0:00:00.041651875 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<rtpjpegpay> set parent (ref and sink)
0:00:00.041669875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for rtpjpegpay
0:00:00.041686250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature rtpjpegpay, plugin 0x3d0c5190 rtp
0:00:00.041704125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'rtp' feature 'rtpklvdepay' typename : 'GstElementFactory'
0:00:00.041742750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb46da270
0:00:00.041764875 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.041780625 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.041797625 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.041812875 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.041829875 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.041844875 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.041862625 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.041878500 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.041895875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.041911625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46da388
0:00:00.041928625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.041944125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46da3b8
0:00:00.041961375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.041982375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d0df330 (rtpklvdepay)
0:00:00.042018625 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<rtpklvdepay> set parent (ref and sink)
0:00:00.042037250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for rtpklvdepay
0:00:00.042053375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature rtpklvdepay, plugin 0x3d0c5190 rtp
0:00:00.042071375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'rtp' feature 'rtpklvpay' typename : 'GstElementFactory'
0:00:00.042108625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb46da458
0:00:00.042130875 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.042146875 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.042164250 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.042180000 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.042197000 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.042212250 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.042230125 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.042246250 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.042263500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.042279125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46da570
0:00:00.042305625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.042322375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46da5f0
0:00:00.042338375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.042359000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d0df410 (rtpklvpay)
0:00:00.042380500 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<rtpklvpay> set parent (ref and sink)
0:00:00.042397750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for rtpklvpay
0:00:00.042413625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature rtpklvpay, plugin 0x3d0c5190 rtp
0:00:00.042431250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'rtp' feature 'rtpL8pay' typename : 'GstElementFactory'
0:00:00.042468250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb46da640
0:00:00.042490625 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.042519000 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.042537875 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.042553500 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.042570375 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.042585375 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.042602750 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.042618625 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.042636500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.042652375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46da788
0:00:00.042671000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.042686375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46da838
0:00:00.042703500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.042724375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d0df4f0 (rtpL8pay)
0:00:00.042746000 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<rtpL8pay> set parent (ref and sink)
0:00:00.042763625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for rtpL8pay
0:00:00.042779625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature rtpL8pay, plugin 0x3d0c5190 rtp
0:00:00.042796875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'rtp' feature 'rtpL8depay' typename : 'GstElementFactory'
0:00:00.042839375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb46da8e0
0:00:00.042862500 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.042878625 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.042895875 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.042911500 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.042928375 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.042943375 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.042960875 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.042976750 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.043007375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.043024250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46daa38
0:00:00.043041375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.043055875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46daac0
0:00:00.043073250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.043094250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d0df5d0 (rtpL8depay)
0:00:00.043116375 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<rtpL8depay> set parent (ref and sink)
0:00:00.043133750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for rtpL8depay
0:00:00.043149625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature rtpL8depay, plugin 0x3d0c5190 rtp
0:00:00.043167250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'rtp' feature 'rtpL16pay' typename : 'GstElementFactory'
0:00:00.043204125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb46dab50
0:00:00.043228250 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.043244250 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.043261625 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.043277250 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.043294125 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.043309375 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.043327125 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.043343000 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.043360000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.043375500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46dac58
0:00:00.043396250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.043411375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46dade0
0:00:00.043429125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.043449875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d0df6b0 (rtpL16pay)
0:00:00.043484500 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<rtpL16pay> set parent (ref and sink)
0:00:00.043502500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for rtpL16pay
0:00:00.043518750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature rtpL16pay, plugin 0x3d0c5190 rtp
0:00:00.043536625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'rtp' feature 'rtpL16depay' typename : 'GstElementFactory'
0:00:00.043586750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb46dae88
0:00:00.043610000 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.043626125 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.043643625 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.043659500 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.043676500 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.043691750 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.043709375 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.043724875 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.043742000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.043757125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46dafa8
0:00:00.043774000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.043788625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46db030
0:00:00.043806750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.043827750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d0e5820 (rtpL16depay)
0:00:00.043848750 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<rtpL16depay> set parent (ref and sink)
0:00:00.043866125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for rtpL16depay
0:00:00.043881875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature rtpL16depay, plugin 0x3d0c5190 rtp
0:00:00.043898625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'rtp' feature 'rtpL24pay' typename : 'GstElementFactory'
0:00:00.043935250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb46db128
0:00:00.043957500 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.043973625 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.044003750 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.044020875 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.044038125 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.044053375 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.044071125 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.044086625 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.044104000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.044119250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46db270
0:00:00.044137125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.044151750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46db320
0:00:00.044169500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.044190500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d0e5900 (rtpL24pay)
0:00:00.044212250 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<rtpL24pay> set parent (ref and sink)
0:00:00.044229375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for rtpL24pay
0:00:00.044245125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature rtpL24pay, plugin 0x3d0c5190 rtp
0:00:00.044262875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'rtp' feature 'rtpL24depay' typename : 'GstElementFactory'
0:00:00.044300250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb46db3c8
0:00:00.044322750 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.044338375 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.044355500 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.044370875 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.044387625 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.044402750 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.044419750 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.044434875 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.044452375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.044480250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46db520
0:00:00.044498875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.044513500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46db5a8
0:00:00.044530375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.044557000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d0e59e0 (rtpL24depay)
0:00:00.044579750 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<rtpL24depay> set parent (ref and sink)
0:00:00.044597000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for rtpL24depay
0:00:00.044613250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature rtpL24depay, plugin 0x3d0c5190 rtp
0:00:00.044631125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'rtp' feature 'asteriskh263' typename : 'GstElementFactory'
0:00:00.044668250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb46db640
0:00:00.044691000 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.044706625 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.044724000 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.044739500 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.044756375 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.044771250 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.044789250 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.044804375 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.044820750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.044835625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46db768
0:00:00.044852000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.044866500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46db790
0:00:00.044894000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.044917125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d0e5ac0 (asteriskh263)
0:00:00.044939000 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<asteriskh263> set parent (ref and sink)
0:00:00.044969375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for asteriskh263
0:00:00.044986250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature asteriskh263, plugin 0x3d0c5190 rtp
0:00:00.045003875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'rtp' feature 'rtpmp1sdepay' typename : 'GstElementFactory'
0:00:00.045055625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb46db838
0:00:00.045083000 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.045099125 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.045116875 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.045132625 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.045149875 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.045165250 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.045183375 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.045199125 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.045215750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.045231125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46db960
0:00:00.045247500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.045262000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46db998
0:00:00.045279750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.045300625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d0e5ba0 (rtpmp1sdepay)
0:00:00.045327375 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<rtpmp1sdepay> set parent (ref and sink)
0:00:00.045345500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for rtpmp1sdepay
0:00:00.045361625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature rtpmp1sdepay, plugin 0x3d0c5190 rtp
0:00:00.045379000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'rtp' feature 'rtpmp2tdepay' typename : 'GstElementFactory'
0:00:00.045414625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb46dba98
0:00:00.045436500 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.045452000 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.045482250 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.045499250 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.045516125 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.045531375 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.045549375 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.045565375 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.045582375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.045597500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46dbbe0
0:00:00.045614625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.045629250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46dbc30
0:00:00.045653500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.045674125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d0e5c80 (rtpmp2tdepay)
0:00:00.045696000 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<rtpmp2tdepay> set parent (ref and sink)
0:00:00.045713250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for rtpmp2tdepay
0:00:00.045729250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature rtpmp2tdepay, plugin 0x3d0c5190 rtp
0:00:00.045746875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'rtp' feature 'rtpmp2tpay' typename : 'GstElementFactory'
0:00:00.045782250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb46dbd30
0:00:00.045804125 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.045820000 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.045837625 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.045853250 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.045870250 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.045885375 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.045903500 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.045918750 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.045934750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.045949875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46dbe50
0:00:00.045978500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.045994375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46dbea0
0:00:00.046019250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.046042000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d0e5d60 (rtpmp2tpay)
0:00:00.046063750 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<rtpmp2tpay> set parent (ref and sink)
0:00:00.046081375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for rtpmp2tpay
0:00:00.046097625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature rtpmp2tpay, plugin 0x3d0c5190 rtp
0:00:00.046115250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'rtp' feature 'rtpmp4vpay' typename : 'GstElementFactory'
0:00:00.046159125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb46dbfb0
0:00:00.046182625 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.046198375 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.046215875 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.046231125 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.046247750 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.046262875 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.046280500 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.046295875 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.046312250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.046327500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46dc0c0
0:00:00.046345125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.046359625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46dc150
0:00:00.046377125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.046398750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d0e5e40 (rtpmp4vpay)
0:00:00.046419750 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<rtpmp4vpay> set parent (ref and sink)
0:00:00.046437375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for rtpmp4vpay
0:00:00.046466250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature rtpmp4vpay, plugin 0x3d0c5190 rtp
0:00:00.046491375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'rtp' feature 'rtpmp4vdepay' typename : 'GstElementFactory'
0:00:00.046528875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb46dc1c8
0:00:00.046550875 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.046566500 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.046583875 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.046599250 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.046616125 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.046631000 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.046648625 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.046664625 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.046681250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.046697000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46dc2d8
0:00:00.046716250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.046731125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46dc320
0:00:00.046752125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.046773625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d0eb070 (rtpmp4vdepay)
0:00:00.046795625 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<rtpmp4vdepay> set parent (ref and sink)
0:00:00.046813125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for rtpmp4vdepay
0:00:00.046829000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature rtpmp4vdepay, plugin 0x3d0c5190 rtp
0:00:00.046847250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'rtp' feature 'rtpmp4apay' typename : 'GstElementFactory'
0:00:00.046884500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb46dc3b8
0:00:00.046906500 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.046922250 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.046939750 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.046971375 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.046990375 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.047005500 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.047023500 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.047039500 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.047056375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.047071875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46dc4c0
0:00:00.047090500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.047106250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46dc558
0:00:00.047123750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.047146000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d0eb150 (rtpmp4apay)
0:00:00.047168375 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<rtpmp4apay> set parent (ref and sink)
0:00:00.047186625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for rtpmp4apay
0:00:00.047203125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature rtpmp4apay, plugin 0x3d0c5190 rtp
0:00:00.047221500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'rtp' feature 'rtpmp4adepay' typename : 'GstElementFactory'
0:00:00.047264750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb46dc5c0
0:00:00.047287500 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.047303125 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.047320625 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.047336250 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.047353250 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.047368625 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.047386375 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.047402375 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.047420375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.047479625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46dc710
0:00:00.047551625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.047570000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46dc778
0:00:00.047588500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.047614750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d0eb230 (rtpmp4adepay)
0:00:00.047639625 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<rtpmp4adepay> set parent (ref and sink)
0:00:00.047658625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for rtpmp4adepay
0:00:00.047676250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature rtpmp4adepay, plugin 0x3d0c5190 rtp
0:00:00.047694875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'rtp' feature 'rtpmp4gdepay' typename : 'GstElementFactory'
0:00:00.047746625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb46dc810
0:00:00.047772500 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.047790500 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.047810000 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.047825625 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.047843500 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.047858625 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.047877250 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.047893750 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.047910750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.047926500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46dc930
0:00:00.047945000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.047960000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46dc9b8
0:00:00.047979000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.048002000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d0eb310 (rtpmp4gdepay)
0:00:00.048025875 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<rtpmp4gdepay> set parent (ref and sink)
0:00:00.048044375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for rtpmp4gdepay
0:00:00.048084500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature rtpmp4gdepay, plugin 0x3d0c5190 rtp
0:00:00.048105750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'rtp' feature 'rtpmp4gpay' typename : 'GstElementFactory'
0:00:00.048146500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb46dcab0
0:00:00.048170250 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.048186375 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.048204250 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.048220000 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.048237375 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.048252500 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.048270625 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.048287000 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.048303625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.048319125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46dcbc8
0:00:00.048338500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.048353500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46dccd8
0:00:00.048370250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.048394125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d0eb3f0 (rtpmp4gpay)
0:00:00.048416375 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<rtpmp4gpay> set parent (ref and sink)
0:00:00.048434875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for rtpmp4gpay
0:00:00.048451250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature rtpmp4gpay, plugin 0x3d0c5190 rtp
0:00:00.048468875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'rtp' feature 'rtpqcelpdepay' typename : 'GstElementFactory'
0:00:00.048525625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb46dcd80
0:00:00.048551375 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.048567875 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.048585500 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.048622500 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.048641625 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.048656750 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.048675125 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.048692125 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.048708750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.048724125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46dce98
0:00:00.048742000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.048756875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46dced8
0:00:00.048776000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.048799125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d0eb4d0 (rtpqcelpdepay)
0:00:00.048821125 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<rtpqcelpdepay> set parent (ref and sink)
0:00:00.048838375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for rtpqcelpdepay
0:00:00.048855375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature rtpqcelpdepay, plugin 0x3d0c5190 rtp
0:00:00.048873875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'rtp' feature 'rtpqdm2depay' typename : 'GstElementFactory'
0:00:00.048930250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb46dcfb0
0:00:00.048965000 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.048981875 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.048999875 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.049015375 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.049032875 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.049090250 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.049115500 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.049131500 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.049148750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.049164500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46dd0b8
0:00:00.049202125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.049219500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46dd0d8
0:00:00.049237125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.049267500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d0eb5b0 (rtpqdm2depay)
0:00:00.049289875 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<rtpqdm2depay> set parent (ref and sink)
0:00:00.049308500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for rtpqdm2depay
0:00:00.049324875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature rtpqdm2depay, plugin 0x3d0c5190 rtp
0:00:00.049343375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'rtp' feature 'rtpsbcdepay' typename : 'GstElementFactory'
0:00:00.049387500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb46dd148
0:00:00.049411500 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.049428000 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.049446500 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.049462250 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.049479250 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.049495875 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.049513750 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.049531750 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.049548875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.049564375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46dd250
0:00:00.049584875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.049599625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46dd358
0:00:00.049617875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.049642875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d0eb690 (rtpsbcdepay)
0:00:00.049665625 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<rtpsbcdepay> set parent (ref and sink)
0:00:00.049684000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for rtpsbcdepay
0:00:00.049701250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature rtpsbcdepay, plugin 0x3d0c5190 rtp
0:00:00.049744250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'rtp' feature 'rtpsbcpay' typename : 'GstElementFactory'
0:00:00.049807875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb46dd410
0:00:00.049831000 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.049847375 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.049865750 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.049881375 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.049898875 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.049914125 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.049931750 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.049948500 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.049965375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.049980875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46dd510
0:00:00.050008250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.050024625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46dd620
0:00:00.050041750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.050066000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d0ed890 (rtpsbcpay)
0:00:00.050088750 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<rtpsbcpay> set parent (ref and sink)
0:00:00.050107500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for rtpsbcpay
0:00:00.050123625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature rtpsbcpay, plugin 0x3d0c5190 rtp
0:00:00.050142000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'rtp' feature 'rtpsirenpay' typename : 'GstElementFactory'
0:00:00.050201625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb46dd6d8
0:00:00.050229125 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.050246000 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.050267125 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.050282875 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.050348750 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.050370625 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.050389500 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.050405750 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.050424375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.050440000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46dd7f0
0:00:00.050458875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.050474625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46dd820
0:00:00.050498125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.050546250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d0ed970 (rtpsirenpay)
0:00:00.050569500 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<rtpsirenpay> set parent (ref and sink)
0:00:00.050588125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for rtpsirenpay
0:00:00.050604375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature rtpsirenpay, plugin 0x3d0c5190 rtp
0:00:00.050622125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'rtp' feature 'rtpsirendepay' typename : 'GstElementFactory'
0:00:00.050664250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb46dd8f0
0:00:00.050686000 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.050701625 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.050719000 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.050734250 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.050751375 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.050766250 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.050783625 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.050800125 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.050816750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.050831625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46dda00
0:00:00.050847875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.050876875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46dda30
0:00:00.050896625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.050918375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d0eda50 (rtpsirendepay)
0:00:00.050939625 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<rtpsirendepay> set parent (ref and sink)
0:00:00.050957500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for rtpsirendepay
0:00:00.050973375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature rtpsirendepay, plugin 0x3d0c5190 rtp
0:00:00.050990875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'rtp' feature 'rtpspeexpay' typename : 'GstElementFactory'
0:00:00.051026250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb46ddab8
0:00:00.051047875 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.051063625 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.051080625 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.051096375 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.051113250 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.051128250 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.051146000 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.051162250 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.051178625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.051193375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46ddbb8
0:00:00.051210125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.051224625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46ddc00
0:00:00.051243000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.051264625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d0edb30 (rtpspeexpay)
0:00:00.051285500 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<rtpspeexpay> set parent (ref and sink)
0:00:00.051302625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for rtpspeexpay
0:00:00.051318375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature rtpspeexpay, plugin 0x3d0c5190 rtp
0:00:00.051348750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'rtp' feature 'rtpspeexdepay' typename : 'GstElementFactory'
0:00:00.051386250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb46ddcc8
0:00:00.051408500 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.051424125 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.051441375 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.051456875 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.051474125 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.051489750 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.051507375 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.051523500 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.051539875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.051554750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46dddc8
0:00:00.051571000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.051585500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46ddde8
0:00:00.051602750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.051623000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d0edc10 (rtpspeexdepay)
0:00:00.051645375 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<rtpspeexdepay> set parent (ref and sink)
0:00:00.051662375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for rtpspeexdepay
0:00:00.051678375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature rtpspeexdepay, plugin 0x3d0c5190 rtp
0:00:00.051696000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'rtp' feature 'rtpsv3vdepay' typename : 'GstElementFactory'
0:00:00.051743125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb46dde80
0:00:00.051766250 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.051782625 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.051799875 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.051815250 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.051832750 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.051857625 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.051877125 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.051892500 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.051909125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.051924500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46ddf88
0:00:00.051957375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.051974875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46ddfb8
0:00:00.051993000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.052014000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d0edcf0 (rtpsv3vdepay)
0:00:00.052035250 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<rtpsv3vdepay> set parent (ref and sink)
0:00:00.052052500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for rtpsv3vdepay
0:00:00.052069250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature rtpsv3vdepay, plugin 0x3d0c5190 rtp
0:00:00.052087125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'rtp' feature 'rtptheoradepay' typename : 'GstElementFactory'
0:00:00.052124250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb46de080
0:00:00.052146875 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.052162625 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.052180250 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.052196000 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.052213125 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.052228375 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.052246750 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.052262875 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.052279375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.052294250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46de198
0:00:00.052311875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.052341125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46de208
0:00:00.052359375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.052381000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d0eddd0 (rtptheoradepay)
0:00:00.052403125 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<rtptheoradepay> set parent (ref and sink)
0:00:00.052420000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for rtptheoradepay
0:00:00.052436250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature rtptheoradepay, plugin 0x3d0c5190 rtp
0:00:00.052453625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'rtp' feature 'rtptheorapay' typename : 'GstElementFactory'
0:00:00.052488875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb46de248
0:00:00.052510375 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.052525875 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.052542750 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.052558375 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.052575750 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.052591125 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.052609125 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.052625125 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.052641500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.052656500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46de360
0:00:00.052673625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.052688125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46de3e8
0:00:00.052703500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.052725125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d0edeb0 (rtptheorapay)
0:00:00.052745750 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<rtptheorapay> set parent (ref and sink)
0:00:00.052763000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for rtptheorapay
0:00:00.052778750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature rtptheorapay, plugin 0x3d0c5190 rtp
0:00:00.052808750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'rtp' feature 'rtpvorbisdepay' typename : 'GstElementFactory'
0:00:00.052846125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb46de428
0:00:00.052868000 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.052883500 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.052900500 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.052915875 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.052933000 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.052948250 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.052966000 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.052982000 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.052998625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.053013500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46de538
0:00:00.053030875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.053291375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46de5b0
0:00:00.053313500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.053339875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d0f1050 (rtpvorbisdepay)
0:00:00.053358500 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<rtpvorbisdepay> set parent (ref and sink)
0:00:00.053372750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for rtpvorbisdepay
0:00:00.053386000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature rtpvorbisdepay, plugin 0x3d0c5190 rtp
0:00:00.053400250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'rtp' feature 'rtpvorbispay' typename : 'GstElementFactory'
0:00:00.053431500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb46de5f0
0:00:00.053449625 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.053462625 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.053477125 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.053489750 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.053504000 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.053528500 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.053544750 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.053557750 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.053571625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.053584250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46de700
0:00:00.053599625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.053612125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46de790
0:00:00.053625375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.053643750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d0f1130 (rtpvorbispay)
0:00:00.053660750 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<rtpvorbispay> set parent (ref and sink)
0:00:00.053674875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for rtpvorbispay
0:00:00.053687500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature rtpvorbispay, plugin 0x3d0c5190 rtp
0:00:00.053701875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'rtp' feature 'rtpvp8depay' typename : 'GstElementFactory'
0:00:00.053731125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb46de7d0
0:00:00.053749000 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.053761875 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.053775625 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.053788375 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.053802375 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.053814500 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.053828625 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.053841750 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.053854875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.053867000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46de8c8
0:00:00.053881000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.053903125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46de948
0:00:00.053917750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.053935375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d0f1210 (rtpvp8depay)
0:00:00.053952500 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<rtpvp8depay> set parent (ref and sink)
0:00:00.053966500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for rtpvp8depay
0:00:00.053979500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature rtpvp8depay, plugin 0x3d0c5190 rtp
0:00:00.053993625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'rtp' feature 'rtpvp8pay' typename : 'GstElementFactory'
0:00:00.054022250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb46de980
0:00:00.054039875 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.054052375 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.054066375 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.054078750 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.054093875 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.054107000 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.054121875 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.054135500 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.054149125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.054161250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46dea68
0:00:00.054174000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.054185750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46dea88
0:00:00.054200250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.054222750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d0f12f0 (rtpvp8pay)
0:00:00.054240500 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<rtpvp8pay> set parent (ref and sink)
0:00:00.054254125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for rtpvp8pay
0:00:00.054266750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature rtpvp8pay, plugin 0x3d0c5190 rtp
0:00:00.054280875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'rtp' feature 'rtpvp9depay' typename : 'GstElementFactory'
0:00:00.054328750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb46deb28
0:00:00.054348000 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.054360750 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.054374750 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.054387250 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.054400750 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.054412875 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.054427000 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.054439250 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.054452250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.054464375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46dec20
0:00:00.054483875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.054497250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46deca0
0:00:00.054510500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.054527500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d0f13d0 (rtpvp9depay)
0:00:00.054544625 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<rtpvp9depay> set parent (ref and sink)
0:00:00.054558375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for rtpvp9depay
0:00:00.054571500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature rtpvp9depay, plugin 0x3d0c5190 rtp
0:00:00.054585375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'rtp' feature 'rtpvp9pay' typename : 'GstElementFactory'
0:00:00.054614000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb46decd8
0:00:00.054635750 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.054649375 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.054663625 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.054676375 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.054690250 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.054717250 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.054733125 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.054745625 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.054758875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.054771000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46dedc0
0:00:00.054783750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.054795500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46dede0
0:00:00.054809500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.054826875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d0f14b0 (rtpvp9pay)
0:00:00.054843875 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<rtpvp9pay> set parent (ref and sink)
0:00:00.054857500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for rtpvp9pay
0:00:00.054870250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature rtpvp9pay, plugin 0x3d0c5190 rtp
0:00:00.054884375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'rtp' feature 'rtpvrawdepay' typename : 'GstElementFactory'
0:00:00.054913375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb46dee80
0:00:00.054931125 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.054943750 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.054957750 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.054970500 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.054984750 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.054996875 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.055011125 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.055028750 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.055042500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.055054750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46def90
0:00:00.055068125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.055079875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46defa8
0:00:00.055105500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.055124750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d0f1590 (rtpvrawdepay)
0:00:00.055142125 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<rtpvrawdepay> set parent (ref and sink)
0:00:00.055156125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for rtpvrawdepay
0:00:00.055168875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature rtpvrawdepay, plugin 0x3d0c5190 rtp
0:00:00.055183250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'rtp' feature 'rtpvrawpay' typename : 'GstElementFactory'
0:00:00.055212625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb46df0b0
0:00:00.055230250 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.055242875 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.055256750 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.055269250 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.055283125 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.055295750 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.055310125 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.055322625 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.055336250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.055348375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46df1b8
0:00:00.055364375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.055376500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46df2f0
0:00:00.055391000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.055407500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d0f1670 (rtpvrawpay)
0:00:00.055424625 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<rtpvrawpay> set parent (ref and sink)
0:00:00.055438875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for rtpvrawpay
0:00:00.055451875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature rtpvrawpay, plugin 0x3d0c5190 rtp
0:00:00.055465625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'rtp' feature 'rtpstreampay' typename : 'GstElementFactory'
0:00:00.055505375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb46df3a8
0:00:00.055524000 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.055536750 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.055550875 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.055563375 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.055577000 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.055589000 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.055603750 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.055616125 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.055630125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.055642375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46df4d0
0:00:00.055656875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.055668625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46df548
0:00:00.055682250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.055698500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d0f4880 (rtpstreampay)
0:00:00.055715500 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<rtpstreampay> set parent (ref and sink)
0:00:00.055729625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for rtpstreampay
0:00:00.055742375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature rtpstreampay, plugin 0x3d0c5190 rtp
0:00:00.055756000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'rtp' feature 'rtpstreamdepay' typename : 'GstElementFactory'
0:00:00.055784000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb46df5c8
0:00:00.055801875 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.055814500 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.055828375 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.055841000 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.055854500 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.055866625 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.055896000 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.055909625 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.055923375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.055935500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46df6f8
0:00:00.055949000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.055960625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46df758
0:00:00.055981625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.056005250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d0f4960 (rtpstreamdepay)
0:00:00.056023125 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<rtpstreamdepay> set parent (ref and sink)
0:00:00.056037000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for rtpstreamdepay
0:00:00.056049750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature rtpstreamdepay, plugin 0x3d0c5190 rtp
0:00:00.056064125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'rtp' feature 'rtpredenc' typename : 'GstElementFactory'
0:00:00.056095750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb46df7f0
0:00:00.056113750 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.056126750 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.056141250 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.056154000 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.056168125 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.056180500 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.056195125 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.056207750 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.056221875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.056234125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46df920
0:00:00.056247375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.056259375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46df940
0:00:00.056290625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.056308625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d0f4a40 (rtpredenc)
0:00:00.056325375 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<rtpredenc> set parent (ref and sink)
0:00:00.056339500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for rtpredenc
0:00:00.056352375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature rtpredenc, plugin 0x3d0c5190 rtp
0:00:00.056366125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'rtp' feature 'rtpreddec' typename : 'GstElementFactory'
0:00:00.056403125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb46df980
0:00:00.056422000 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.056434750 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.056449000 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.056461500 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.056475000 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.056487125 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.056501250 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.056513875 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.056527875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.056540125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46dfab0
0:00:00.056553000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.056565000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46dfad0
0:00:00.056577750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.056594250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d0f4b20 (rtpreddec)
0:00:00.056611250 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<rtpreddec> set parent (ref and sink)
0:00:00.056625250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for rtpreddec
0:00:00.056638125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature rtpreddec, plugin 0x3d0c5190 rtp
0:00:00.056652500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'rtp' feature 'rtpulpfecdec' typename : 'GstElementFactory'
0:00:00.056681375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb46dfb10
0:00:00.056709250 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.056723000 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.056736875 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.056749500 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.056763125 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.056775250 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.056789250 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.056801875 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.056815250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.056827375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46dfbf8
0:00:00.056840000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.056851875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46dfc18
0:00:00.056864375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.056880875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d0f4c00 (rtpulpfecdec)
0:00:00.056897625 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<rtpulpfecdec> set parent (ref and sink)
0:00:00.056911625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for rtpulpfecdec
0:00:00.056924625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature rtpulpfecdec, plugin 0x3d0c5190 rtp
0:00:00.056939375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'rtp' feature 'rtpulpfecenc' typename : 'GstElementFactory'
0:00:00.056968125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb46dfc58
0:00:00.056985500 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.056998125 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.057012000 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.057024500 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.057038000 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.057071625 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.057087500 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.057111875 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.057127000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.057139375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46dfd40
0:00:00.057152250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.057164125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46dfd60
0:00:00.057176750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.057196000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d0f4ce0 (rtpulpfecenc)
0:00:00.057213125 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<rtpulpfecenc> set parent (ref and sink)
0:00:00.057227375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for rtpulpfecenc
0:00:00.057240125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature rtpulpfecenc, plugin 0x3d0c5190 rtp
0:00:00.057254000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'rtp' feature 'rtpstorage' typename : 'GstElementFactory'
0:00:00.057283500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb46dfda0
0:00:00.057302750 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.057315500 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.057329250 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.057342375 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.057355750 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.057369875 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.057386375 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.057399000 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.057412625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.057424875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46dff10
0:00:00.057437750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.057449750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46dff30
0:00:00.057462625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.057489500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d0f4dc0 (rtpstorage)
0:00:00.057507375 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<rtpstorage> set parent (ref and sink)
0:00:00.057521125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for rtpstorage
0:00:00.057533750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature rtpstorage, plugin 0x3d0c5190 rtp
0:00:00.057548625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrybinary.c:606:priv_gst_registry_binary_read_cache: reading binary registry 53071(cf4f)/405909
0:00:00.057563500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:829:_priv_gst_registry_chunks_load_plugin: Reading/casting for GstRegistryChunkPluginElement at address 0xffffb46dff50
0:00:00.057598375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:850:_priv_gst_registry_chunks_load_plugin: read strings for name='ogg'
0:00:00.057612875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:851:_priv_gst_registry_chunks_load_plugin: desc.description='ogg stream manipulation (info about ogg: http://xiph.org)'
0:00:00.057625125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:852:_priv_gst_registry_chunks_load_plugin: filename='/data/halley/gst-sdk/lib/gstreamer-1.0/libgstogg.so'
0:00:00.057637000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:853:_priv_gst_registry_chunks_load_plugin: desc.version='1.14.0'
0:00:00.057648125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:854:_priv_gst_registry_chunks_load_plugin: desc.license='LGPL'
0:00:00.057659125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:855:_priv_gst_registry_chunks_load_plugin: desc.source='gst-plugins-base'
0:00:00.057670500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:856:_priv_gst_registry_chunks_load_plugin: desc.package='GStreamer Base Plug-ins source release'
0:00:00.057682625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:857:_priv_gst_registry_chunks_load_plugin: desc.origin='Unknown package origin'
0:00:00.057694000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:858:_priv_gst_registry_chunks_load_plugin: desc.datetime=2018-03-19
0:00:00.057710875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:466:gst_registry_add_plugin:<registry0> adding plugin 0x3d0c52c0 for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstogg.so"
0:00:00.057729000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:479:gst_registry_add_plugin:<registry0> emitting plugin-added for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstogg.so"
0:00:00.057742500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:879:_priv_gst_registry_chunks_load_plugin: Added plugin 'ogg' plugin with 7 features from binary registry
0:00:00.057756375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'ogg' feature 'oggdemux' typename : 'GstElementFactory'
0:00:00.057784125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb46e0060
0:00:00.057801625 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.057814500 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.057828375 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.057852625 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.057867750 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.057880125 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.057894625 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.057907125 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.057920500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.057932500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46e0150
0:00:00.057946625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.057958625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46e0198
0:00:00.057972625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src_%08x
0:00:00.057989250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d0f4ea0 (oggdemux)
0:00:00.058006000 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<oggdemux> set parent (ref and sink)
0:00:00.058019750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for oggdemux
0:00:00.058032500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature oggdemux, plugin 0x3d0c52c0 ogg
0:00:00.058046250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'ogg' feature 'oggmux' typename : 'GstElementFactory'
0:00:00.058074750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb46e01c8
0:00:00.058092250 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.058105000 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.058118750 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.058131125 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.058144500 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.058156750 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.058170875 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.058183375 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.058196500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=4
0:00:00.058208625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46e02b0
0:00:00.058233125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.058246375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46e02e8
0:00:00.058260750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template video_%u
0:00:00.058272625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46e0360
0:00:00.058286875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template audio_%u
0:00:00.058298750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46e03d8
0:00:00.058312500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template subtitle_%u
0:00:00.058324375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:643:gst_registry_chunks_load_feature: Reading 1 Interfaces at address 0xffffb46e0434
0:00:00.058342875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d0f9810 (oggmux)
0:00:00.058371375 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<oggmux> set parent (ref and sink)
0:00:00.058386625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for oggmux
0:00:00.058399625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature oggmux, plugin 0x3d0c52c0 ogg
0:00:00.058413375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'ogg' feature 'ogmaudioparse' typename : 'GstElementFactory'
0:00:00.058442875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb46e0460
0:00:00.058460750 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.058473500 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.058487750 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.058500375 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.058513875 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.058526125 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.058540375 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.058552875 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.058566500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.058578750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46e0570
0:00:00.058594500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.058617875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46e0598
0:00:00.058642875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.058659875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d0f98f0 (ogmaudioparse)
0:00:00.058676875 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<ogmaudioparse> set parent (ref and sink)
0:00:00.058691125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for ogmaudioparse
0:00:00.058704000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature ogmaudioparse, plugin 0x3d0c52c0 ogg
0:00:00.058718000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'ogg' feature 'ogmvideoparse' typename : 'GstElementFactory'
0:00:00.058754500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb46e0a60
0:00:00.058772875 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.058785500 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.058799750 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.058812375 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.058826250 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.058838500 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.058852875 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.058865375 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.058879000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.058891125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46e0b70
0:00:00.058904750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.058916875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46e0b98
0:00:00.059028000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.059047875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d0f99d0 (ogmvideoparse)
0:00:00.059065375 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<ogmvideoparse> set parent (ref and sink)
0:00:00.059079625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for ogmvideoparse
0:00:00.059093000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature ogmvideoparse, plugin 0x3d0c52c0 ogg
0:00:00.059118125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'ogg' feature 'ogmtextparse' typename : 'GstElementFactory'
0:00:00.059150000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb46e36e8
0:00:00.059167750 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.059180875 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.059195250 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.059208125 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.059222125 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.059234875 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.059249250 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.059261875 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.059275500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.059287750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46e37f8
0:00:00.059301250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.059313375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46e3820
0:00:00.059326375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.059342625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d0f9ab0 (ogmtextparse)
0:00:00.059359750 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<ogmtextparse> set parent (ref and sink)
0:00:00.059373375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for ogmtextparse
0:00:00.059386125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature ogmtextparse, plugin 0x3d0c52c0 ogg
0:00:00.059400125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'ogg' feature 'oggparse' typename : 'GstElementFactory'
0:00:00.059428250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb46e3868
0:00:00.059445375 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.059458000 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.059471875 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.059484500 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.059498125 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.059520750 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.059536875 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.059549375 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.059562750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.059574750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46e3968
0:00:00.059588375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.059600250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46e3988
0:00:00.059612750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.059629250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d0f9b90 (oggparse)
0:00:00.059646250 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<oggparse> set parent (ref and sink)
0:00:00.059660375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for oggparse
0:00:00.059673125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature oggparse, plugin 0x3d0c52c0 ogg
0:00:00.059686750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'ogg' feature 'oggaviparse' typename : 'GstElementFactory'
0:00:00.059714750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb46e39c8
0:00:00.059731875 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.059744875 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.059759000 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.059771625 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.059785250 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.059797750 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.059812625 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.059825125 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.059838375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.059850500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46e3ad0
0:00:00.059871000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.059884750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46e3af8
0:00:00.059907875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.059925750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d0f9c70 (oggaviparse)
0:00:00.059943125 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<oggaviparse> set parent (ref and sink)
0:00:00.059957375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for oggaviparse
0:00:00.059970125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature oggaviparse, plugin 0x3d0c52c0 ogg
0:00:00.059984250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrybinary.c:606:priv_gst_registry_binary_read_cache: reading binary registry 68371(10b13)/405909
0:00:00.059998250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:829:_priv_gst_registry_chunks_load_plugin: Reading/casting for GstRegistryChunkPluginElement at address 0xffffb46e3b18
0:00:00.060027625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:850:_priv_gst_registry_chunks_load_plugin: read strings for name='fieldanalysis'
0:00:00.060042125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:851:_priv_gst_registry_chunks_load_plugin: desc.description='Video field analysis'
0:00:00.060054000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:852:_priv_gst_registry_chunks_load_plugin: filename='/data/halley/gst-sdk/lib/gstreamer-1.0/libgstfieldanalysis.so'
0:00:00.060065750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:853:_priv_gst_registry_chunks_load_plugin: desc.version='1.14.0'
0:00:00.060077125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:854:_priv_gst_registry_chunks_load_plugin: desc.license='LGPL'
0:00:00.060088125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:855:_priv_gst_registry_chunks_load_plugin: desc.source='gst-plugins-bad'
0:00:00.060099625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:856:_priv_gst_registry_chunks_load_plugin: desc.package='GStreamer Bad Plug-ins source release'
0:00:00.060111500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:857:_priv_gst_registry_chunks_load_plugin: desc.origin='Unknown package origin'
0:00:00.060123125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:858:_priv_gst_registry_chunks_load_plugin: desc.datetime=2018-03-19
0:00:00.060138125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:466:gst_registry_add_plugin:<registry0> adding plugin 0x3d0c53f0 for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstfieldanalysis.so"
0:00:00.060155625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:479:gst_registry_add_plugin:<registry0> emitting plugin-added for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstfieldanalysis.so"
0:00:00.060169000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:879:_priv_gst_registry_chunks_load_plugin: Added plugin 'fieldanalysis' plugin with 1 features from binary registry
0:00:00.060182625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'fieldanalysis' feature 'fieldanalysis' typename : 'GstElementFactory'
0:00:00.060211000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb46e3c18
0:00:00.060228750 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.060241375 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.060265875 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.060279625 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.060293875 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.060306250 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.060321125 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.060333500 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.060346750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.060359000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46e3d50
0:00:00.060373625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.060385625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46e3e08
0:00:00.060399250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.060415375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d0f9d50 (fieldanalysis)
0:00:00.060432500 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<fieldanalysis> set parent (ref and sink)
0:00:00.060446375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for fieldanalysis
0:00:00.060459125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature fieldanalysis, plugin 0x3d0c53f0 fieldanalysis
0:00:00.060473125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrybinary.c:606:priv_gst_registry_binary_read_cache: reading binary registry 69306(10eba)/405909
0:00:00.060487000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:829:_priv_gst_registry_chunks_load_plugin: Reading/casting for GstRegistryChunkPluginElement at address 0xffffb46e3ec0
0:00:00.060516250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:850:_priv_gst_registry_chunks_load_plugin: read strings for name='interleave'
0:00:00.060530500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:851:_priv_gst_registry_chunks_load_plugin: desc.description='Audio interleaver/deinterleaver'
0:00:00.060542250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:852:_priv_gst_registry_chunks_load_plugin: filename='/data/halley/gst-sdk/lib/gstreamer-1.0/libgstinterleave.so'
0:00:00.060554125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:853:_priv_gst_registry_chunks_load_plugin: desc.version='1.14.0'
0:00:00.060565125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:854:_priv_gst_registry_chunks_load_plugin: desc.license='LGPL'
0:00:00.060576125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:855:_priv_gst_registry_chunks_load_plugin: desc.source='gst-plugins-good'
0:00:00.060587625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:856:_priv_gst_registry_chunks_load_plugin: desc.package='GStreamer Good Plug-ins source release'
0:00:00.060599250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:857:_priv_gst_registry_chunks_load_plugin: desc.origin='Unknown package origin'
0:00:00.060620750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:858:_priv_gst_registry_chunks_load_plugin: desc.datetime=2018-03-19
0:00:00.060636875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:466:gst_registry_add_plugin:<registry0> adding plugin 0x3d0c5520 for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstinterleave.so"
0:00:00.060654500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:479:gst_registry_add_plugin:<registry0> emitting plugin-added for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstinterleave.so"
0:00:00.060667625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:879:_priv_gst_registry_chunks_load_plugin: Added plugin 'interleave' plugin with 2 features from binary registry
0:00:00.060681250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'interleave' feature 'interleave' typename : 'GstElementFactory'
0:00:00.060709500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb46e3fc8
0:00:00.060727875 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.060741000 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.060755250 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.060767875 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.060781750 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.060794000 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.060808875 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.060821000 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.060835375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.060847375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46e4108
0:00:00.060865000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink_%u
0:00:00.060877000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46e4270
0:00:00.060893250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.060909250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d0f9e30 (interleave)
0:00:00.060931375 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<interleave> set parent (ref and sink)
0:00:00.060945125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for interleave
0:00:00.060957875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature interleave, plugin 0x3d0c5520 interleave
0:00:00.060971375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'interleave' feature 'deinterleave' typename : 'GstElementFactory'
0:00:00.061010875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb46e43f0
0:00:00.061034750 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.061067000 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.061083125 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.061096000 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.061110125 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.061122500 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.061137000 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.061149500 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.061164375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.061176625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46e4568
0:00:00.061197875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.061211000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46e46c8
0:00:00.061228000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src_%u
0:00:00.061245000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d0fc060 (deinterleave)
0:00:00.061262000 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<deinterleave> set parent (ref and sink)
0:00:00.061276125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for deinterleave
0:00:00.061288750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature deinterleave, plugin 0x3d0c5520 interleave
0:00:00.061303125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrybinary.c:606:priv_gst_registry_binary_read_cache: reading binary registry 71725(1182d)/405909
0:00:00.061317000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:829:_priv_gst_registry_chunks_load_plugin: Reading/casting for GstRegistryChunkPluginElement at address 0xffffb46e4830
0:00:00.061348125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:850:_priv_gst_registry_chunks_load_plugin: read strings for name='audioresample'
0:00:00.061362375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:851:_priv_gst_registry_chunks_load_plugin: desc.description='Resamples audio'
0:00:00.061373750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:852:_priv_gst_registry_chunks_load_plugin: filename='/data/halley/gst-sdk/lib/gstreamer-1.0/libgstaudioresample.so'
0:00:00.061385375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:853:_priv_gst_registry_chunks_load_plugin: desc.version='1.14.0'
0:00:00.061396375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:854:_priv_gst_registry_chunks_load_plugin: desc.license='LGPL'
0:00:00.061418625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:855:_priv_gst_registry_chunks_load_plugin: desc.source='gst-plugins-base'
0:00:00.061431500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:856:_priv_gst_registry_chunks_load_plugin: desc.package='GStreamer Base Plug-ins source release'
0:00:00.061442750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:857:_priv_gst_registry_chunks_load_plugin: desc.origin='Unknown package origin'
0:00:00.061454000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:858:_priv_gst_registry_chunks_load_plugin: desc.datetime=2018-03-19
0:00:00.061469125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:466:gst_registry_add_plugin:<registry0> adding plugin 0x3d0c5650 for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstaudioresample.so"
0:00:00.061486500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:479:gst_registry_add_plugin:<registry0> emitting plugin-added for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstaudioresample.so"
0:00:00.061499625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:879:_priv_gst_registry_chunks_load_plugin: Added plugin 'audioresample' plugin with 1 features from binary registry
0:00:00.061513125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'audioresample' feature 'audioresample' typename : 'GstElementFactory'
0:00:00.061542250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb46e4930
0:00:00.061560125 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.061573250 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.061587125 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.061599625 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.061613375 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.061627125 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.061641250 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.061654125 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.061668000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.061680000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46e4a18
0:00:00.061696250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.061708000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46e4b90
0:00:00.061723000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.061738875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d0fc140 (audioresample)
0:00:00.061755750 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<audioresample> set parent (ref and sink)
0:00:00.061780750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for audioresample
0:00:00.061794125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature audioresample, plugin 0x3d0c5650 audioresample
0:00:00.061808375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrybinary.c:606:priv_gst_registry_binary_read_cache: reading binary registry 72963(11d03)/405909
0:00:00.061821875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:829:_priv_gst_registry_chunks_load_plugin: Reading/casting for GstRegistryChunkPluginElement at address 0xffffb46e4d08
0:00:00.061851000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:850:_priv_gst_registry_chunks_load_plugin: read strings for name='yadif'
0:00:00.061865125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:851:_priv_gst_registry_chunks_load_plugin: desc.description='YADIF deinterlacing filter'
0:00:00.061876500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:852:_priv_gst_registry_chunks_load_plugin: filename='/data/halley/gst-sdk/lib/gstreamer-1.0/libgstyadif.so'
0:00:00.061888250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:853:_priv_gst_registry_chunks_load_plugin: desc.version='1.14.0'
0:00:00.061899250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:854:_priv_gst_registry_chunks_load_plugin: desc.license='GPL'
0:00:00.061910250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:855:_priv_gst_registry_chunks_load_plugin: desc.source='gst-plugins-bad'
0:00:00.061921500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:856:_priv_gst_registry_chunks_load_plugin: desc.package='GStreamer Bad Plug-ins'
0:00:00.061932750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:857:_priv_gst_registry_chunks_load_plugin: desc.origin='Unknown package origin'
0:00:00.061943875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:858:_priv_gst_registry_chunks_load_plugin: desc.datetime=2018-03-19
0:00:00.061958375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:466:gst_registry_add_plugin:<registry0> adding plugin 0x3d0c5780 for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstyadif.so"
0:00:00.061975500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:479:gst_registry_add_plugin:<registry0> emitting plugin-added for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstyadif.so"
0:00:00.061988500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:879:_priv_gst_registry_chunks_load_plugin: Added plugin 'yadif' plugin with 1 features from binary registry
0:00:00.062002250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'yadif' feature 'yadif' typename : 'GstElementFactory'
0:00:00.062030500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb46e4de8
0:00:00.062047875 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.062060750 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.062074750 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.062087375 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.062101000 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.062113250 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.062138375 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.062160750 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.062174625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.062186750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46e4ec8
0:00:00.062202000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.062213875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46e4fb0
0:00:00.062228625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.062244750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d0fc220 (yadif)
0:00:00.062261500 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<yadif> set parent (ref and sink)
0:00:00.062275125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for yadif
0:00:00.062287750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature yadif, plugin 0x3d0c5780 yadif
0:00:00.062301500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrybinary.c:606:priv_gst_registry_binary_read_cache: reading binary registry 73849(12079)/405909
0:00:00.062315000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:829:_priv_gst_registry_chunks_load_plugin: Reading/casting for GstRegistryChunkPluginElement at address 0xffffb46e5080
0:00:00.062343625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:850:_priv_gst_registry_chunks_load_plugin: read strings for name='flxdec'
0:00:00.062357625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:851:_priv_gst_registry_chunks_load_plugin: desc.description='FLC/FLI/FLX video decoder'
0:00:00.062369500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:852:_priv_gst_registry_chunks_load_plugin: filename='/data/halley/gst-sdk/lib/gstreamer-1.0/libgstflxdec.so'
0:00:00.062381125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:853:_priv_gst_registry_chunks_load_plugin: desc.version='1.14.0'
0:00:00.062392125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:854:_priv_gst_registry_chunks_load_plugin: desc.license='LGPL'
0:00:00.062403125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:855:_priv_gst_registry_chunks_load_plugin: desc.source='gst-plugins-good'
0:00:00.062414500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:856:_priv_gst_registry_chunks_load_plugin: desc.package='GStreamer Good Plug-ins source release'
0:00:00.062426250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:857:_priv_gst_registry_chunks_load_plugin: desc.origin='Unknown package origin'
0:00:00.062437625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:858:_priv_gst_registry_chunks_load_plugin: desc.datetime=2018-03-19
0:00:00.062452250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:466:gst_registry_add_plugin:<registry0> adding plugin 0x3d0c58b0 for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstflxdec.so"
0:00:00.062469750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:479:gst_registry_add_plugin:<registry0> emitting plugin-added for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstflxdec.so"
0:00:00.062493250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:879:_priv_gst_registry_chunks_load_plugin: Added plugin 'flxdec' plugin with 1 features from binary registry
0:00:00.062508000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'flxdec' feature 'flxdec' typename : 'GstElementFactory'
0:00:00.062536250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb46e5170
0:00:00.062553875 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.062566625 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.062580625 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.062593125 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.062606875 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.062619125 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.062633125 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.062645500 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.062659750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.062671875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46e5280
0:00:00.062685000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.062697250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46e52a0
0:00:00.062711750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.062727875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d0fc300 (flxdec)
0:00:00.062744375 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<flxdec> set parent (ref and sink)
0:00:00.062758000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for flxdec
0:00:00.062770750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature flxdec, plugin 0x3d0c58b0 flxdec
0:00:00.062784500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrybinary.c:606:priv_gst_registry_binary_read_cache: reading binary registry 74549(12335)/405909
0:00:00.062798125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:829:_priv_gst_registry_chunks_load_plugin: Reading/casting for GstRegistryChunkPluginElement at address 0xffffb46e5338
0:00:00.062826250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:850:_priv_gst_registry_chunks_load_plugin: read strings for name='smpte'
0:00:00.062840250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:851:_priv_gst_registry_chunks_load_plugin: desc.description='Apply the standard SMPTE transitions on video images'
0:00:00.062862500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:852:_priv_gst_registry_chunks_load_plugin: filename='/data/halley/gst-sdk/lib/gstreamer-1.0/libgstsmpte.so'
0:00:00.062875250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:853:_priv_gst_registry_chunks_load_plugin: desc.version='1.14.0'
0:00:00.062886375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:854:_priv_gst_registry_chunks_load_plugin: desc.license='LGPL'
0:00:00.062897250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:855:_priv_gst_registry_chunks_load_plugin: desc.source='gst-plugins-good'
0:00:00.062908500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:856:_priv_gst_registry_chunks_load_plugin: desc.package='GStreamer Good Plug-ins source release'
0:00:00.062920000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:857:_priv_gst_registry_chunks_load_plugin: desc.origin='Unknown package origin'
0:00:00.062931250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:858:_priv_gst_registry_chunks_load_plugin: desc.datetime=2018-03-19
0:00:00.062945875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:466:gst_registry_add_plugin:<registry0> adding plugin 0x3d0c59e0 for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstsmpte.so"
0:00:00.062965250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:479:gst_registry_add_plugin:<registry0> emitting plugin-added for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstsmpte.so"
0:00:00.062978625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:879:_priv_gst_registry_chunks_load_plugin: Added plugin 'smpte' plugin with 2 features from binary registry
0:00:00.062992250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'smpte' feature 'smpte' typename : 'GstElementFactory'
0:00:00.063020750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb46e5440
0:00:00.063065000 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.063080125 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.063094375 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.063106875 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.063120625 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.063134500 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.063149625 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.063162000 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.063175500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=3
0:00:00.063188000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46e5540
0:00:00.063202875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink1
0:00:00.063214875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46e55d8
0:00:00.063228875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink2
0:00:00.063251250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46e5670
0:00:00.063266375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.063283250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d0fc3e0 (smpte)
0:00:00.063300500 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<smpte> set parent (ref and sink)
0:00:00.063314750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for smpte
0:00:00.063327625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature smpte, plugin 0x3d0c59e0 smpte
0:00:00.063341375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'smpte' feature 'smptealpha' typename : 'GstElementFactory'
0:00:00.063370625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb46e5728
0:00:00.063388250 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.063401500 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.063415500 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.063428125 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.063442000 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.063454125 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.063468750 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.063481000 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.063498375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.063510500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46e5830
0:00:00.063531875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.063544000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46e5c08
0:00:00.063562750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.063579375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d0fc4c0 (smptealpha)
0:00:00.063596625 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<smptealpha> set parent (ref and sink)
0:00:00.063610875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for smptealpha
0:00:00.063623750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature smptealpha, plugin 0x3d0c59e0 smpte
0:00:00.063647875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrybinary.c:606:priv_gst_registry_binary_read_cache: reading binary registry 77509(12ec5)/405909
0:00:00.063663000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:829:_priv_gst_registry_chunks_load_plugin: Reading/casting for GstRegistryChunkPluginElement at address 0xffffb46e5ec8
0:00:00.063692250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:850:_priv_gst_registry_chunks_load_plugin: read strings for name='alsa'
0:00:00.063706625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:851:_priv_gst_registry_chunks_load_plugin: desc.description='ALSA plugin library'
0:00:00.063718500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:852:_priv_gst_registry_chunks_load_plugin: filename='/data/halley/gst-sdk/lib/gstreamer-1.0/libgstalsa.so'
0:00:00.063730750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:853:_priv_gst_registry_chunks_load_plugin: desc.version='1.14.0'
0:00:00.063741875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:854:_priv_gst_registry_chunks_load_plugin: desc.license='LGPL'
0:00:00.063753000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:855:_priv_gst_registry_chunks_load_plugin: desc.source='gst-plugins-base'
0:00:00.063764375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:856:_priv_gst_registry_chunks_load_plugin: desc.package='GStreamer Base Plug-ins source release'
0:00:00.063776000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:857:_priv_gst_registry_chunks_load_plugin: desc.origin='Unknown package origin'
0:00:00.063787375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:858:_priv_gst_registry_chunks_load_plugin: desc.datetime=2018-03-19
0:00:00.063802125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:466:gst_registry_add_plugin:<registry0> adding plugin 0x3d0c5b10 for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstalsa.so"
0:00:00.063820750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:479:gst_registry_add_plugin:<registry0> emitting plugin-added for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstalsa.so"
0:00:00.063834625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:879:_priv_gst_registry_chunks_load_plugin: Added plugin 'alsa' plugin with 3 features from binary registry
0:00:00.063849375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'alsa' feature 'alsasrc' typename : 'GstElementFactory'
0:00:00.063878000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb46e5fb0
0:00:00.063895000 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.063907875 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.063922000 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.063934875 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.063948625 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.063961250 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.063975750 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.063988125 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.064019375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=1
0:00:00.064032750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46e6090
0:00:00.064048125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.064064625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d0fc5a0 (alsasrc)
0:00:00.064082125 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<alsasrc> set parent (ref and sink)
0:00:00.064095750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for alsasrc
0:00:00.064108500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature alsasrc, plugin 0x3d0c5b10 alsa
0:00:00.064122750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'alsa' feature 'alsasink' typename : 'GstElementFactory'
0:00:00.064152750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb46e6208
0:00:00.064170875 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.064183750 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.064198000 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.064210750 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.064224500 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.064237000 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.064251250 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.064264375 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.064278250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=1
0:00:00.064290875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46e62e8
0:00:00.064315750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.064335500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d0fc680 (alsasink)
0:00:00.064352875 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<alsasink> set parent (ref and sink)
0:00:00.064367375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for alsasink
0:00:00.064380500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature alsasink, plugin 0x3d0c5b10 alsa
0:00:00.064394500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'alsa' feature 'alsamidisrc' typename : 'GstElementFactory'
0:00:00.064430750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb46e6550
0:00:00.064459625 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.064473375 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.064487500 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.064500125 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.064514000 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.064526375 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.064540875 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.064553750 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.064567500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=1
0:00:00.064580125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46e6628
0:00:00.064594125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.064611625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d105830 (alsamidisrc)
0:00:00.064629125 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<alsamidisrc> set parent (ref and sink)
0:00:00.064643500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for alsamidisrc
0:00:00.064656375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature alsamidisrc, plugin 0x3d0c5b10 alsa
0:00:00.064670500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrybinary.c:606:priv_gst_registry_binary_read_cache: reading binary registry 79431(13647)/405909
0:00:00.064684125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:829:_priv_gst_registry_chunks_load_plugin: Reading/casting for GstRegistryChunkPluginElement at address 0xffffb46e6648
0:00:00.064723750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:850:_priv_gst_registry_chunks_load_plugin: read strings for name='equalizer'
0:00:00.064738875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:851:_priv_gst_registry_chunks_load_plugin: desc.description='GStreamer audio equalizers'
0:00:00.064751625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:852:_priv_gst_registry_chunks_load_plugin: filename='/data/halley/gst-sdk/lib/gstreamer-1.0/libgstequalizer.so'
0:00:00.064763625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:853:_priv_gst_registry_chunks_load_plugin: desc.version='1.14.0'
0:00:00.064775000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:854:_priv_gst_registry_chunks_load_plugin: desc.license='LGPL'
0:00:00.064786125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:855:_priv_gst_registry_chunks_load_plugin: desc.source='gst-plugins-good'
0:00:00.064797625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:856:_priv_gst_registry_chunks_load_plugin: desc.package='GStreamer Good Plug-ins source release'
0:00:00.064809125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:857:_priv_gst_registry_chunks_load_plugin: desc.origin='Unknown package origin'
0:00:00.064830750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:858:_priv_gst_registry_chunks_load_plugin: desc.datetime=2018-03-19
0:00:00.064846875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:466:gst_registry_add_plugin:<registry0> adding plugin 0x3d0c5c40 for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstequalizer.so"
0:00:00.064865125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:479:gst_registry_add_plugin:<registry0> emitting plugin-added for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstequalizer.so"
0:00:00.064878750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:879:_priv_gst_registry_chunks_load_plugin: Added plugin 'equalizer' plugin with 3 features from binary registry
0:00:00.064893750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'equalizer' feature 'equalizer-nbands' typename : 'GstElementFactory'
0:00:00.064924000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb46e6750
0:00:00.064941875 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.064954625 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.064969000 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.064981875 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.064996125 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.065010250 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.065024500 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.065037625 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.065072000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.065085500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46e6858
0:00:00.065100500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.065112500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46e68f8
0:00:00.065126000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.065137750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:643:gst_registry_chunks_load_feature: Reading 2 Interfaces at address 0xffffb46e6996
0:00:00.065157875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d105910 (equalizer-nbands)
0:00:00.065175500 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<equalizer-nbands> set parent (ref and sink)
0:00:00.065189500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for equalizer-nbands
0:00:00.065202500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature equalizer-nbands, plugin 0x3d0c5c40 equalizer
0:00:00.065227875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'equalizer' feature 'equalizer-3bands' typename : 'GstElementFactory'
0:00:00.065259125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb46e69d8
0:00:00.065277250 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.065290250 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.065304500 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.065317000 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.065330625 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.065343000 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.065356750 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.065369000 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.065382125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.065394000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46e6ac0
0:00:00.065408750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.065420375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46e6b60
0:00:00.065436750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.065449375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:643:gst_registry_chunks_load_feature: Reading 2 Interfaces at address 0xffffb46e6bfe
0:00:00.065468875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d1059f0 (equalizer-3bands)
0:00:00.065486375 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<equalizer-3bands> set parent (ref and sink)
0:00:00.065500125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for equalizer-3bands
0:00:00.065512875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature equalizer-3bands, plugin 0x3d0c5c40 equalizer
0:00:00.065527000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'equalizer' feature 'equalizer-10bands' typename : 'GstElementFactory'
0:00:00.065557250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb46e6c40
0:00:00.065575250 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.065588000 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.065602250 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.065630125 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.065645750 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.065658125 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.065672750 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.065685750 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.065699500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.065712125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46e6d28
0:00:00.065726750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.065738500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46e6dc8
0:00:00.065752000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.065763750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:643:gst_registry_chunks_load_feature: Reading 2 Interfaces at address 0xffffb46e6e66
0:00:00.065782750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d105ad0 (equalizer-10bands)
0:00:00.065800500 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<equalizer-10bands> set parent (ref and sink)
0:00:00.065814625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for equalizer-10bands
0:00:00.065827750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature equalizer-10bands, plugin 0x3d0c5c40 equalizer
0:00:00.065841750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrybinary.c:606:priv_gst_registry_binary_read_cache: reading binary registry 81534(13e7e)/405909
0:00:00.065855500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:829:_priv_gst_registry_chunks_load_plugin: Reading/casting for GstRegistryChunkPluginElement at address 0xffffb46e6e80
0:00:00.065886500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:850:_priv_gst_registry_chunks_load_plugin: read strings for name='multipart'
0:00:00.065901000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:851:_priv_gst_registry_chunks_load_plugin: desc.description='multipart stream manipulation'
0:00:00.065913250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:852:_priv_gst_registry_chunks_load_plugin: filename='/data/halley/gst-sdk/lib/gstreamer-1.0/libgstmultipart.so'
0:00:00.065925250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:853:_priv_gst_registry_chunks_load_plugin: desc.version='1.14.0'
0:00:00.065936375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:854:_priv_gst_registry_chunks_load_plugin: desc.license='LGPL'
0:00:00.065947375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:855:_priv_gst_registry_chunks_load_plugin: desc.source='gst-plugins-good'
0:00:00.065958875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:856:_priv_gst_registry_chunks_load_plugin: desc.package='GStreamer Good Plug-ins source release'
0:00:00.065970500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:857:_priv_gst_registry_chunks_load_plugin: desc.origin='Unknown package origin'
0:00:00.065993000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:858:_priv_gst_registry_chunks_load_plugin: desc.datetime=2018-03-19
0:00:00.066009250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:466:gst_registry_add_plugin:<registry0> adding plugin 0x3d0c5d70 for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstmultipart.so"
0:00:00.066027750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:479:gst_registry_add_plugin:<registry0> emitting plugin-added for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstmultipart.so"
0:00:00.066041125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:879:_priv_gst_registry_chunks_load_plugin: Added plugin 'multipart' plugin with 2 features from binary registry
0:00:00.066056875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'multipart' feature 'multipartdemux' typename : 'GstElementFactory'
0:00:00.066087250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb46e6f88
0:00:00.066105500 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.066118500 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.066132625 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.066146500 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.066160375 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.066176125 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.066190375 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.066203375 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.066217875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.066230250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46e7088
0:00:00.066244375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.066256250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46e70b0
0:00:00.066269750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src_%u
0:00:00.066285750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d105bb0 (multipartdemux)
0:00:00.066303375 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<multipartdemux> set parent (ref and sink)
0:00:00.066317375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for multipartdemux
0:00:00.066330250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature multipartdemux, plugin 0x3d0c5d70 multipart
0:00:00.066345125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'multipart' feature 'multipartmux' typename : 'GstElementFactory'
0:00:00.066386750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb46e70e8
0:00:00.066406000 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.066418750 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.066432625 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.066445125 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.066458750 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.066471250 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.066484875 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.066497250 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.066510375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.066522375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46e71b0
0:00:00.066535500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.066547000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46e71d8
0:00:00.066560000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink_%u
0:00:00.066577000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d105c90 (multipartmux)
0:00:00.066594625 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<multipartmux> set parent (ref and sink)
0:00:00.066608875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for multipartmux
0:00:00.066621875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature multipartmux, plugin 0x3d0c5d70 multipart
0:00:00.066635875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrybinary.c:606:priv_gst_registry_binary_read_cache: reading binary registry 82412(141ec)/405909
0:00:00.066649625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:829:_priv_gst_registry_chunks_load_plugin: Reading/casting for GstRegistryChunkPluginElement at address 0xffffb46e71f0
0:00:00.066680875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:850:_priv_gst_registry_chunks_load_plugin: read strings for name='jp2kdecimator'
0:00:00.066695500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:851:_priv_gst_registry_chunks_load_plugin: desc.description='JPEG2000 decimator'
0:00:00.066707250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:852:_priv_gst_registry_chunks_load_plugin: filename='/data/halley/gst-sdk/lib/gstreamer-1.0/libgstjp2kdecimator.so'
0:00:00.066719250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:853:_priv_gst_registry_chunks_load_plugin: desc.version='1.14.0'
0:00:00.066730875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:854:_priv_gst_registry_chunks_load_plugin: desc.license='LGPL'
0:00:00.066754375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:855:_priv_gst_registry_chunks_load_plugin: desc.source='gst-plugins-bad'
0:00:00.066767500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:856:_priv_gst_registry_chunks_load_plugin: desc.package='GStreamer Bad Plug-ins source release'
0:00:00.066779875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:857:_priv_gst_registry_chunks_load_plugin: desc.origin='Unknown package origin'
0:00:00.066791750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:858:_priv_gst_registry_chunks_load_plugin: desc.datetime=2018-03-19
0:00:00.066807250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:466:gst_registry_add_plugin:<registry0> adding plugin 0x3d0c5ea0 for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstjp2kdecimator.so"
0:00:00.066825250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:479:gst_registry_add_plugin:<registry0> emitting plugin-added for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstjp2kdecimator.so"
0:00:00.066838500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:879:_priv_gst_registry_chunks_load_plugin: Added plugin 'jp2kdecimator' plugin with 1 features from binary registry
0:00:00.066853125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'jp2kdecimator' feature 'jp2kdecimator' typename : 'GstElementFactory'
0:00:00.066882500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb46e72f0
0:00:00.066900625 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.066914125 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.066928875 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.066941750 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.066956000 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.066970625 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.066986125 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.066998625 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.067012625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.067025250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46e7408
0:00:00.067039125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.067051125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46e7428
0:00:00.067063875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.067080000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d105d70 (jp2kdecimator)
0:00:00.067100875 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<jp2kdecimator> set parent (ref and sink)
0:00:00.067126375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for jp2kdecimator
0:00:00.067140125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature jp2kdecimator, plugin 0x3d0c5ea0 jp2kdecimator
0:00:00.067154250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrybinary.c:606:priv_gst_registry_binary_read_cache: reading binary registry 83008(14440)/405909
0:00:00.067167750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:829:_priv_gst_registry_chunks_load_plugin: Reading/casting for GstRegistryChunkPluginElement at address 0xffffb46e7440
0:00:00.067196750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:850:_priv_gst_registry_chunks_load_plugin: read strings for name='videomixer'
0:00:00.067211875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:851:_priv_gst_registry_chunks_load_plugin: desc.description='Video mixer'
0:00:00.067223750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:852:_priv_gst_registry_chunks_load_plugin: filename='/data/halley/gst-sdk/lib/gstreamer-1.0/libgstvideomixer.so'
0:00:00.067235375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:853:_priv_gst_registry_chunks_load_plugin: desc.version='1.14.0'
0:00:00.067246375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:854:_priv_gst_registry_chunks_load_plugin: desc.license='LGPL'
0:00:00.067257375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:855:_priv_gst_registry_chunks_load_plugin: desc.source='gst-plugins-good'
0:00:00.067268625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:856:_priv_gst_registry_chunks_load_plugin: desc.package='GStreamer Good Plug-ins source release'
0:00:00.067280500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:857:_priv_gst_registry_chunks_load_plugin: desc.origin='Unknown package origin'
0:00:00.067291875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:858:_priv_gst_registry_chunks_load_plugin: desc.datetime=2018-03-19
0:00:00.067306500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:466:gst_registry_add_plugin:<registry0> adding plugin 0x3d106010 for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstvideomixer.so"
0:00:00.067324875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:479:gst_registry_add_plugin:<registry0> emitting plugin-added for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstvideomixer.so"
0:00:00.067338250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:879:_priv_gst_registry_chunks_load_plugin: Added plugin 'videomixer' plugin with 1 features from binary registry
0:00:00.067352625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'videomixer' feature 'videomixer' typename : 'GstElementFactory'
0:00:00.067388500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb46e7530
0:00:00.067407375 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.067421000 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.067435375 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.067448375 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.067462750 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.067487625 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.067503500 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.067516125 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.067530500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.067543125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46e7658
0:00:00.067559000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.067571000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46e7768
0:00:00.067585250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink_%u
0:00:00.067597000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:643:gst_registry_chunks_load_feature: Reading 1 Interfaces at address 0xffffb46e787b
0:00:00.067616375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d105e50 (videomixer)
0:00:00.067634250 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<videomixer> set parent (ref and sink)
0:00:00.067648750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for videomixer
0:00:00.067662000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature videomixer, plugin 0x3d106010 videomixer
0:00:00.067676000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrybinary.c:606:priv_gst_registry_binary_read_cache: reading binary registry 84105(14889)/405909
0:00:00.067689625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:829:_priv_gst_registry_chunks_load_plugin: Reading/casting for GstRegistryChunkPluginElement at address 0xffffb46e7890
0:00:00.067718125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:850:_priv_gst_registry_chunks_load_plugin: read strings for name='avi'
0:00:00.067732500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:851:_priv_gst_registry_chunks_load_plugin: desc.description='AVI stream handling'
0:00:00.067744250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:852:_priv_gst_registry_chunks_load_plugin: filename='/data/halley/gst-sdk/lib/gstreamer-1.0/libgstavi.so'
0:00:00.067755750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:853:_priv_gst_registry_chunks_load_plugin: desc.version='1.14.0'
0:00:00.067766750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:854:_priv_gst_registry_chunks_load_plugin: desc.license='LGPL'
0:00:00.067777750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:855:_priv_gst_registry_chunks_load_plugin: desc.source='gst-plugins-good'
0:00:00.067789250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:856:_priv_gst_registry_chunks_load_plugin: desc.package='GStreamer Good Plug-ins source release'
0:00:00.067801125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:857:_priv_gst_registry_chunks_load_plugin: desc.origin='Unknown package origin'
0:00:00.067812625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:858:_priv_gst_registry_chunks_load_plugin: desc.datetime=2018-03-19
0:00:00.067827250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:466:gst_registry_add_plugin:<registry0> adding plugin 0x3d106140 for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstavi.so"
0:00:00.067856375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:479:gst_registry_add_plugin:<registry0> emitting plugin-added for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstavi.so"
0:00:00.067870500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:879:_priv_gst_registry_chunks_load_plugin: Added plugin 'avi' plugin with 3 features from binary registry
0:00:00.067885125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'avi' feature 'avidemux' typename : 'GstElementFactory'
0:00:00.067914625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb46e7978
0:00:00.067932750 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.067945625 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.067959625 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.067972625 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.067986000 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.067998375 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.068012875 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.068025625 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.068040750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=5
0:00:00.068053250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46e7ac0
0:00:00.068077375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template audio_%u
0:00:00.068089250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46e7f80
0:00:00.068180500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template video_%u
0:00:00.068194500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46eaaf0
0:00:00.068208125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template subtitle_%u
0:00:00.068220000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46eab20
0:00:00.068233750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template subpicture_%u
0:00:00.068245500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46eab48
0:00:00.068258625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.068275000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d1090a0 (avidemux)
0:00:00.068314750 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<avidemux> set parent (ref and sink)
0:00:00.068329875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for avidemux
0:00:00.068343000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature avidemux, plugin 0x3d106140 avi
0:00:00.068357500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'avi' feature 'avimux' typename : 'GstElementFactory'
0:00:00.068387125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb46eab80
0:00:00.068404250 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.068417125 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.068431000 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.068443625 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.068459250 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.068471500 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.068485875 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.068498625 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.068512625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=3
0:00:00.068524875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46eac80
0:00:00.068538000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.068549875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46eaca0
0:00:00.068566625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template audio_%u
0:00:00.068578625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46eaf08
0:00:00.068610250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template video_%u
0:00:00.068623875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:643:gst_registry_chunks_load_feature: Reading 1 Interfaces at address 0xffffb46eb5b9
0:00:00.068642500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d109180 (avimux)
0:00:00.068660000 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<avimux> set parent (ref and sink)
0:00:00.068673875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for avimux
0:00:00.068686625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature avimux, plugin 0x3d106140 avi
0:00:00.068714500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'avi' feature 'avisubtitle' typename : 'GstElementFactory'
0:00:00.068745250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb46eb5e8
0:00:00.068762375 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.068775000 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.068789125 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.068801750 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.068815375 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.068827625 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.068841625 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.068854375 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.068868000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.068880375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46eb6d0
0:00:00.068893250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.068905250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46eb6f8
0:00:00.068919000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.068935500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d109260 (avisubtitle)
0:00:00.068953000 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<avisubtitle> set parent (ref and sink)
0:00:00.068967250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for avisubtitle
0:00:00.068980000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature avisubtitle, plugin 0x3d106140 avi
0:00:00.068993750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrybinary.c:606:priv_gst_registry_binary_read_cache: reading binary registry 100123(1871b)/405909
0:00:00.069007250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:829:_priv_gst_registry_chunks_load_plugin: Reading/casting for GstRegistryChunkPluginElement at address 0xffffb46eb720
0:00:00.069038500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:850:_priv_gst_registry_chunks_load_plugin: read strings for name='encoding'
0:00:00.069072375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:851:_priv_gst_registry_chunks_load_plugin: desc.description='various encoding-related elements'
0:00:00.069085000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:852:_priv_gst_registry_chunks_load_plugin: filename='/data/halley/gst-sdk/lib/gstreamer-1.0/libgstencoding.so'
0:00:00.069096625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:853:_priv_gst_registry_chunks_load_plugin: desc.version='1.14.0'
0:00:00.069118750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:854:_priv_gst_registry_chunks_load_plugin: desc.license='LGPL'
0:00:00.069131250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:855:_priv_gst_registry_chunks_load_plugin: desc.source='gst-plugins-base'
0:00:00.069142500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:856:_priv_gst_registry_chunks_load_plugin: desc.package='GStreamer Base Plug-ins source release'
0:00:00.069154250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:857:_priv_gst_registry_chunks_load_plugin: desc.origin='Unknown package origin'
0:00:00.069165500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:858:_priv_gst_registry_chunks_load_plugin: desc.datetime=2018-03-19
0:00:00.069180625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:466:gst_registry_add_plugin:<registry0> adding plugin 0x3d106270 for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstencoding.so"
0:00:00.069199000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:479:gst_registry_add_plugin:<registry0> emitting plugin-added for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstencoding.so"
0:00:00.069212250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:879:_priv_gst_registry_chunks_load_plugin: Added plugin 'encoding' plugin with 1 features from binary registry
0:00:00.069226625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'encoding' feature 'encodebin' typename : 'GstElementFactory'
0:00:00.069256750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb46eb820
0:00:00.069274000 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.069286875 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.069300875 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.069313375 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.069327250 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.069340125 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.069354625 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.069367250 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.069381000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=4
0:00:00.069393500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46eb910
0:00:00.069407000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.069419250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46eb920
0:00:00.069432000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template video_%u
0:00:00.069443500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46eb938
0:00:00.069466875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template audio_%u
0:00:00.069479750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46eb950
0:00:00.069492750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template private_%u
0:00:00.069504625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:643:gst_registry_chunks_load_feature: Reading 1 Interfaces at address 0xffffb46eb967
0:00:00.069529375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d109340 (encodebin)
0:00:00.069547000 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<encodebin> set parent (ref and sink)
0:00:00.069561500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for encodebin
0:00:00.069574625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature encodebin, plugin 0x3d106270 encoding
0:00:00.069588750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrybinary.c:606:priv_gst_registry_binary_read_cache: reading binary registry 100725(18975)/405909
0:00:00.069602250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:829:_priv_gst_registry_chunks_load_plugin: Reading/casting for GstRegistryChunkPluginElement at address 0xffffb46eb978
0:00:00.069631000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:850:_priv_gst_registry_chunks_load_plugin: read strings for name='accurip'
0:00:00.069645875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:851:_priv_gst_registry_chunks_load_plugin: desc.description='Computes an AccurateRip CRC'
0:00:00.069658375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:852:_priv_gst_registry_chunks_load_plugin: filename='/data/halley/gst-sdk/lib/gstreamer-1.0/libgstaccurip.so'
0:00:00.069670000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:853:_priv_gst_registry_chunks_load_plugin: desc.version='1.14.0'
0:00:00.069681000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:854:_priv_gst_registry_chunks_load_plugin: desc.license='LGPL'
0:00:00.069692000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:855:_priv_gst_registry_chunks_load_plugin: desc.source='gst-plugins-bad'
0:00:00.069703375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:856:_priv_gst_registry_chunks_load_plugin: desc.package='GStreamer Bad Plug-ins source release'
0:00:00.069714875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:857:_priv_gst_registry_chunks_load_plugin: desc.origin='Unknown package origin'
0:00:00.069726375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:858:_priv_gst_registry_chunks_load_plugin: desc.datetime=2018-03-19
0:00:00.069740875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:466:gst_registry_add_plugin:<registry0> adding plugin 0x3d1063a0 for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstaccurip.so"
0:00:00.069759000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:479:gst_registry_add_plugin:<registry0> emitting plugin-added for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstaccurip.so"
0:00:00.069772625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:879:_priv_gst_registry_chunks_load_plugin: Added plugin 'accurip' plugin with 1 features from binary registry
0:00:00.069787000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'accurip' feature 'accurip' typename : 'GstElementFactory'
0:00:00.069827500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb46eba70
0:00:00.069845625 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.069858500 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.069873000 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.069885875 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.069899875 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.069912250 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.069926750 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.069939625 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.069953500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.069965875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46ebb60
0:00:00.069984125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.069996875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46ebbb0
0:00:00.070010125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.070026125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d109420 (accurip)
0:00:00.070043000 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<accurip> set parent (ref and sink)
0:00:00.070056750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for accurip
0:00:00.070069750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature accurip, plugin 0x3d1063a0 accurip
0:00:00.070090000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrybinary.c:606:priv_gst_registry_binary_read_cache: reading binary registry 101377(18c01)/405909
0:00:00.070104250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:829:_priv_gst_registry_chunks_load_plugin: Reading/casting for GstRegistryChunkPluginElement at address 0xffffb46ebc08
0:00:00.070134250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:850:_priv_gst_registry_chunks_load_plugin: read strings for name='audiolatency'
0:00:00.070148875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:851:_priv_gst_registry_chunks_load_plugin: desc.description='A plugin to measure audio latency'
0:00:00.070160750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:852:_priv_gst_registry_chunks_load_plugin: filename='/data/halley/gst-sdk/lib/gstreamer-1.0/libgstaudiolatency.so'
0:00:00.070172250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:853:_priv_gst_registry_chunks_load_plugin: desc.version='1.14.0'
0:00:00.070183375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:854:_priv_gst_registry_chunks_load_plugin: desc.license='LGPL'
0:00:00.070204750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:855:_priv_gst_registry_chunks_load_plugin: desc.source='gst-plugins-bad'
0:00:00.070217625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:856:_priv_gst_registry_chunks_load_plugin: desc.package='GStreamer Bad Plug-ins source release'
0:00:00.070229000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:857:_priv_gst_registry_chunks_load_plugin: desc.origin='Unknown package origin'
0:00:00.070240250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:858:_priv_gst_registry_chunks_load_plugin: desc.datetime=2018-03-19
0:00:00.070255125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:466:gst_registry_add_plugin:<registry0> adding plugin 0x3d1064d0 for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstaudiolatency.so"
0:00:00.070273375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:479:gst_registry_add_plugin:<registry0> emitting plugin-added for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstaudiolatency.so"
0:00:00.070286750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:879:_priv_gst_registry_chunks_load_plugin: Added plugin 'audiolatency' plugin with 1 features from binary registry
0:00:00.070301125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'audiolatency' feature 'audiolatency' typename : 'GstElementFactory'
0:00:00.070331000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb46ebd10
0:00:00.070349125 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.070362000 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.070375750 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.070388375 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.070402250 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.070414500 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.070429125 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.070441875 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.070455250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.070467500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46ebe10
0:00:00.070483750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.070495625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46ebe98
0:00:00.070509000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.070520750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:643:gst_registry_chunks_load_feature: Reading 1 Interfaces at address 0xffffb46ebf21
0:00:00.070539250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d109500 (audiolatency)
0:00:00.070567875 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<audiolatency> set parent (ref and sink)
0:00:00.070582500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for audiolatency
0:00:00.070595500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature audiolatency, plugin 0x3d1064d0 audiolatency
0:00:00.070610500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrybinary.c:606:priv_gst_registry_binary_read_cache: reading binary registry 102191(18f2f)/405909
0:00:00.070624250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:829:_priv_gst_registry_chunks_load_plugin: Reading/casting for GstRegistryChunkPluginElement at address 0xffffb46ebf30
0:00:00.070653625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:850:_priv_gst_registry_chunks_load_plugin: read strings for name='compositor'
0:00:00.070667750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:851:_priv_gst_registry_chunks_load_plugin: desc.description='Compositor'
0:00:00.070679250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:852:_priv_gst_registry_chunks_load_plugin: filename='/data/halley/gst-sdk/lib/gstreamer-1.0/libgstcompositor.so'
0:00:00.070690750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:853:_priv_gst_registry_chunks_load_plugin: desc.version='1.14.0'
0:00:00.070701750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:854:_priv_gst_registry_chunks_load_plugin: desc.license='LGPL'
0:00:00.070712750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:855:_priv_gst_registry_chunks_load_plugin: desc.source='gst-plugins-bad'
0:00:00.070724125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:856:_priv_gst_registry_chunks_load_plugin: desc.package='GStreamer Bad Plug-ins source release'
0:00:00.070735625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:857:_priv_gst_registry_chunks_load_plugin: desc.origin='Unknown package origin'
0:00:00.070747000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:858:_priv_gst_registry_chunks_load_plugin: desc.datetime=2018-03-19
0:00:00.070761875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:466:gst_registry_add_plugin:<registry0> adding plugin 0x3d106600 for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstcompositor.so"
0:00:00.070780250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:479:gst_registry_add_plugin:<registry0> emitting plugin-added for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstcompositor.so"
0:00:00.070793750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:879:_priv_gst_registry_chunks_load_plugin: Added plugin 'compositor' plugin with 1 features from binary registry
0:00:00.070808125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'compositor' feature 'compositor' typename : 'GstElementFactory'
0:00:00.070845750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb46ec020
0:00:00.070864375 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.070877250 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.070891125 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.070905500 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.070919625 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.070950125 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.070965875 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.070978000 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.070992000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.071004000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46ec140
0:00:00.071018875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.071030625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46ec250
0:00:00.071045500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink_%u
0:00:00.071057375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:643:gst_registry_chunks_load_feature: Reading 1 Interfaces at address 0xffffb46ec363
0:00:00.071076125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d1095e0 (compositor)
0:00:00.071093625 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<compositor> set parent (ref and sink)
0:00:00.071107875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for compositor
0:00:00.071120625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature compositor, plugin 0x3d106600 compositor
0:00:00.071134750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrybinary.c:606:priv_gst_registry_binary_read_cache: reading binary registry 103281(19371)/405909
0:00:00.071148125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:829:_priv_gst_registry_chunks_load_plugin: Reading/casting for GstRegistryChunkPluginElement at address 0xffffb46ec378
0:00:00.071177875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:850:_priv_gst_registry_chunks_load_plugin: read strings for name='adpcmdec'
0:00:00.071192500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:851:_priv_gst_registry_chunks_load_plugin: desc.description='ADPCM decoder'
0:00:00.071204125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:852:_priv_gst_registry_chunks_load_plugin: filename='/data/halley/gst-sdk/lib/gstreamer-1.0/libgstadpcmdec.so'
0:00:00.071215875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:853:_priv_gst_registry_chunks_load_plugin: desc.version='1.14.0'
0:00:00.071227000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:854:_priv_gst_registry_chunks_load_plugin: desc.license='LGPL'
0:00:00.071238125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:855:_priv_gst_registry_chunks_load_plugin: desc.source='gst-plugins-bad'
0:00:00.071249500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:856:_priv_gst_registry_chunks_load_plugin: desc.package='GStreamer Bad Plug-ins source release'
0:00:00.071261250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:857:_priv_gst_registry_chunks_load_plugin: desc.origin='Unknown package origin'
0:00:00.071272500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:858:_priv_gst_registry_chunks_load_plugin: desc.datetime=2018-03-19
0:00:00.071298375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:466:gst_registry_add_plugin:<registry0> adding plugin 0x3d106730 for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstadpcmdec.so"
0:00:00.071317125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:479:gst_registry_add_plugin:<registry0> emitting plugin-added for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstadpcmdec.so"
0:00:00.071330375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:879:_priv_gst_registry_chunks_load_plugin: Added plugin 'adpcmdec' plugin with 1 features from binary registry
0:00:00.071344875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'adpcmdec' feature 'adpcmdec' typename : 'GstElementFactory'
0:00:00.071374875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb46ec460
0:00:00.071396500 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.071410125 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.071424000 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.071436750 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.071450625 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.071463000 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.071476875 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.071489125 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.071502625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.071514625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46ec558
0:00:00.071531250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.071543125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46ec5f0
0:00:00.071557125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.071573375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d1096c0 (adpcmdec)
0:00:00.071590875 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<adpcmdec> set parent (ref and sink)
0:00:00.071604875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for adpcmdec
0:00:00.071617625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature adpcmdec, plugin 0x3d106730 adpcmdec
0:00:00.071631750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrybinary.c:606:priv_gst_registry_binary_read_cache: reading binary registry 104047(1966f)/405909
0:00:00.071645625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:829:_priv_gst_registry_chunks_load_plugin: Reading/casting for GstRegistryChunkPluginElement at address 0xffffb46ec670
0:00:00.071675875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:850:_priv_gst_registry_chunks_load_plugin: read strings for name='videobox'
0:00:00.071700750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:851:_priv_gst_registry_chunks_load_plugin: desc.description='resizes a video by adding borders or cropping'
0:00:00.071713875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:852:_priv_gst_registry_chunks_load_plugin: filename='/data/halley/gst-sdk/lib/gstreamer-1.0/libgstvideobox.so'
0:00:00.071725500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:853:_priv_gst_registry_chunks_load_plugin: desc.version='1.14.0'
0:00:00.071736875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:854:_priv_gst_registry_chunks_load_plugin: desc.license='LGPL'
0:00:00.071747750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:855:_priv_gst_registry_chunks_load_plugin: desc.source='gst-plugins-good'
0:00:00.071759250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:856:_priv_gst_registry_chunks_load_plugin: desc.package='GStreamer Good Plug-ins source release'
0:00:00.071770750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:857:_priv_gst_registry_chunks_load_plugin: desc.origin='Unknown package origin'
0:00:00.071782250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:858:_priv_gst_registry_chunks_load_plugin: desc.datetime=2018-03-19
0:00:00.071797000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:466:gst_registry_add_plugin:<registry0> adding plugin 0x3d106860 for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstvideobox.so"
0:00:00.071814875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:479:gst_registry_add_plugin:<registry0> emitting plugin-added for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstvideobox.so"
0:00:00.071828250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:879:_priv_gst_registry_chunks_load_plugin: Added plugin 'videobox' plugin with 1 features from binary registry
0:00:00.071842750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'videobox' feature 'videobox' typename : 'GstElementFactory'
0:00:00.071872625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb46ec780
0:00:00.071890125 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.071902875 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.071916875 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.071929500 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.071943125 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.071957000 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.071971750 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.071984750 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.071998500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.072011375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46ec870
0:00:00.072028250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.072051250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46ec998
0:00:00.072067000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.072083250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d110800 (videobox)
0:00:00.072100750 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<videobox> set parent (ref and sink)
0:00:00.072114750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for videobox
0:00:00.072127625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature videobox, plugin 0x3d106860 videobox
0:00:00.072141875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrybinary.c:606:priv_gst_registry_binary_read_cache: reading binary registry 105144(19ab8)/405909
0:00:00.072155250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:829:_priv_gst_registry_chunks_load_plugin: Reading/casting for GstRegistryChunkPluginElement at address 0xffffb46ecab8
0:00:00.072186000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:850:_priv_gst_registry_chunks_load_plugin: read strings for name='gio'
0:00:00.072200500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:851:_priv_gst_registry_chunks_load_plugin: desc.description='GIO elements'
0:00:00.072211875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:852:_priv_gst_registry_chunks_load_plugin: filename='/data/halley/gst-sdk/lib/gstreamer-1.0/libgstgio.so'
0:00:00.072223625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:853:_priv_gst_registry_chunks_load_plugin: desc.version='1.14.0'
0:00:00.072234750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:854:_priv_gst_registry_chunks_load_plugin: desc.license='LGPL'
0:00:00.072245625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:855:_priv_gst_registry_chunks_load_plugin: desc.source='gst-plugins-base'
0:00:00.072256750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:856:_priv_gst_registry_chunks_load_plugin: desc.package='GStreamer Base Plug-ins source release'
0:00:00.072268250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:857:_priv_gst_registry_chunks_load_plugin: desc.origin='Unknown package origin'
0:00:00.072279625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:858:_priv_gst_registry_chunks_load_plugin: desc.datetime=2018-03-19
0:00:00.072294250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:466:gst_registry_add_plugin:<registry0> adding plugin 0x3d106990 for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstgio.so"
0:00:00.072317500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:479:gst_registry_add_plugin:<registry0> emitting plugin-added for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstgio.so"
0:00:00.072330875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:879:_priv_gst_registry_chunks_load_plugin: Added plugin 'gio' plugin with 4 features from binary registry
0:00:00.072345625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'gio' feature 'giosink' typename : 'GstElementFactory'
0:00:00.072374375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb46ecb98
0:00:00.072392125 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.072418625 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.072434000 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.072446875 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.072460625 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.072473125 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.072487375 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.072500625 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.072515125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=1
0:00:00.072527250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46eccb8
0:00:00.072540125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.072552000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:628:gst_registry_chunks_load_feature: Reading 1 UriTypes at address 0xffffb46eccc9
0:00:00.072576375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:643:gst_registry_chunks_load_feature: Reading 1 Interfaces at address 0xffffb46eccd9
0:00:00.072596500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d1108e0 (giosink)
0:00:00.072614625 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<giosink> set parent (ref and sink)
0:00:00.072628375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for giosink
0:00:00.072641125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature giosink, plugin 0x3d106990 gio
0:00:00.072655375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'gio' feature 'giosrc' typename : 'GstElementFactory'
0:00:00.072685250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb46ecd00
0:00:00.072703500 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.072716250 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.072730000 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.072742625 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.072756250 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.072768500 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.072782500 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.072794750 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.072809000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=1
0:00:00.072831750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46ece28
0:00:00.072846000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.072857750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:628:gst_registry_chunks_load_feature: Reading 1 UriTypes at address 0xffffb46ece38
0:00:00.072872375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:643:gst_registry_chunks_load_feature: Reading 1 Interfaces at address 0xffffb46ece41
0:00:00.072891250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d1109c0 (giosrc)
0:00:00.072909125 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<giosrc> set parent (ref and sink)
0:00:00.072923625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for giosrc
0:00:00.072936625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature giosrc, plugin 0x3d106990 gio
0:00:00.072950375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'gio' feature 'giostreamsink' typename : 'GstElementFactory'
0:00:00.072979250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb46ece70
0:00:00.072997000 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.073009625 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.073023625 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.073036250 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.073070000 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.073083500 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.073097750 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.073110875 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.073125000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=1
0:00:00.073137750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46ecf58
0:00:00.073151000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.073168500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d110aa0 (giostreamsink)
0:00:00.073186250 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<giostreamsink> set parent (ref and sink)
0:00:00.073200500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for giostreamsink
0:00:00.073213625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature giostreamsink, plugin 0x3d106990 gio
0:00:00.073239375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'gio' feature 'giostreamsrc' typename : 'GstElementFactory'
0:00:00.073270500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb46ecf88
0:00:00.073288375 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.073301125 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.073315250 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.073327875 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.073341375 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.073353625 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.073367750 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.073380625 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.073394375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=1
0:00:00.073406500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46ed070
0:00:00.073419500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.073435750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d110b80 (giostreamsrc)
0:00:00.073453375 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<giostreamsrc> set parent (ref and sink)
0:00:00.073467000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for giostreamsrc
0:00:00.073479750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature giostreamsrc, plugin 0x3d106990 gio
0:00:00.073497125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:775:gst_registry_chunks_load_plugin_dep:<plugin21> Unpacking GstRegistryChunkDep from 0xffffb46ed080
0:00:00.073514125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:793:gst_registry_chunks_load_plugin_dep:<plugin21> Loaded external plugin dependency from registry: env_hash: 00000000, stat_hash: ffffffff
0:00:00.073531000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:797:gst_registry_chunks_load_plugin_dep:<plugin21> path: /usr/lib/gio/modules
0:00:00.073546125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:775:gst_registry_chunks_load_plugin_dep:<plugin21> Unpacking GstRegistryChunkDep from 0xffffb46ed0b0
0:00:00.073561500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:793:gst_registry_chunks_load_plugin_dep:<plugin21> Loaded external plugin dependency from registry: env_hash: 00000000, stat_hash: ffffffff
0:00:00.073577750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:797:gst_registry_chunks_load_plugin_dep:<plugin21> path: /usr/share/gvfs/mounts
0:00:00.073590125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrybinary.c:606:priv_gst_registry_binary_read_cache: reading binary registry 106719(1a0df)/405909
0:00:00.073614500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:829:_priv_gst_registry_chunks_load_plugin: Reading/casting for GstRegistryChunkPluginElement at address 0xffffb46ed0e0
0:00:00.073646000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:850:_priv_gst_registry_chunks_load_plugin: read strings for name='smooth'
0:00:00.073660375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:851:_priv_gst_registry_chunks_load_plugin: desc.description='Apply a smooth filter to an image'
0:00:00.073672250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:852:_priv_gst_registry_chunks_load_plugin: filename='/data/halley/gst-sdk/lib/gstreamer-1.0/libgstsmooth.so'
0:00:00.073683750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:853:_priv_gst_registry_chunks_load_plugin: desc.version='1.14.0'
0:00:00.073694875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:854:_priv_gst_registry_chunks_load_plugin: desc.license='LGPL'
0:00:00.073705875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:855:_priv_gst_registry_chunks_load_plugin: desc.source='gst-plugins-bad'
0:00:00.073717125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:856:_priv_gst_registry_chunks_load_plugin: desc.package='GStreamer Bad Plug-ins source release'
0:00:00.073728625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:857:_priv_gst_registry_chunks_load_plugin: desc.origin='Unknown package origin'
0:00:00.073740000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:858:_priv_gst_registry_chunks_load_plugin: desc.datetime=2018-03-19
0:00:00.073754875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:466:gst_registry_add_plugin:<registry0> adding plugin 0x3d106ac0 for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstsmooth.so"
0:00:00.073773250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:479:gst_registry_add_plugin:<registry0> emitting plugin-added for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstsmooth.so"
0:00:00.073786375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:879:_priv_gst_registry_chunks_load_plugin: Added plugin 'smooth' plugin with 1 features from binary registry
0:00:00.073800875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'smooth' feature 'smooth' typename : 'GstElementFactory'
0:00:00.073837625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb46ed1d8
0:00:00.073856125 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.073868875 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.073882750 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.073895375 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.073908875 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.073922500 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.073937250 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.073949625 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.073963250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.073975375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46ed2c0
0:00:00.073999875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.074013000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46ed358
0:00:00.074026625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.074042750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d110c60 (smooth)
0:00:00.074060000 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<smooth> set parent (ref and sink)
0:00:00.074074375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for smooth
0:00:00.074087375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature smooth, plugin 0x3d106ac0 smooth
0:00:00.074101500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrybinary.c:606:priv_gst_registry_binary_read_cache: reading binary registry 107501(1a3ed)/405909
0:00:00.074114875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:829:_priv_gst_registry_chunks_load_plugin: Reading/casting for GstRegistryChunkPluginElement at address 0xffffb46ed3f0
0:00:00.074143750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:850:_priv_gst_registry_chunks_load_plugin: read strings for name='jpegformat'
0:00:00.074158375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:851:_priv_gst_registry_chunks_load_plugin: desc.description='JPEG interchange format plugin'
0:00:00.074170750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:852:_priv_gst_registry_chunks_load_plugin: filename='/data/halley/gst-sdk/lib/gstreamer-1.0/libgstjpegformat.so'
0:00:00.074182500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:853:_priv_gst_registry_chunks_load_plugin: desc.version='1.14.0'
0:00:00.074193500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:854:_priv_gst_registry_chunks_load_plugin: desc.license='LGPL'
0:00:00.074204625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:855:_priv_gst_registry_chunks_load_plugin: desc.source='gst-plugins-bad'
0:00:00.074215875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:856:_priv_gst_registry_chunks_load_plugin: desc.package='GStreamer Bad Plug-ins source release'
0:00:00.074227375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:857:_priv_gst_registry_chunks_load_plugin: desc.origin='Unknown package origin'
0:00:00.074238625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:858:_priv_gst_registry_chunks_load_plugin: desc.datetime=2018-03-19
0:00:00.074253125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:466:gst_registry_add_plugin:<registry0> adding plugin 0x3d106bf0 for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstjpegformat.so"
0:00:00.074271875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:479:gst_registry_add_plugin:<registry0> emitting plugin-added for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstjpegformat.so"
0:00:00.074285250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:879:_priv_gst_registry_chunks_load_plugin: Added plugin 'jpegformat' plugin with 2 features from binary registry
0:00:00.074299500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'jpegformat' feature 'jpegparse' typename : 'GstElementFactory'
0:00:00.074329000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb46ed4f0
0:00:00.074357375 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.074371125 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.074385125 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.074397750 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.074411375 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.074423625 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.074437500 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.074449875 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.074463375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.074475625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46ed5f8
0:00:00.074490375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.074502125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46ed6b8
0:00:00.074515625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.074531750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d110d40 (jpegparse)
0:00:00.074549625 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<jpegparse> set parent (ref and sink)
0:00:00.074563750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for jpegparse
0:00:00.074576625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature jpegparse, plugin 0x3d106bf0 jpegformat
0:00:00.074590875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'jpegformat' feature 'jifmux' typename : 'GstElementFactory'
0:00:00.074621125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb46ed6f0
0:00:00.074639125 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.074652000 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.074666000 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.074678375 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.074692250 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.074704375 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.074718500 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.074741875 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.074757125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.074769500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46ed7f8
0:00:00.074782375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.074794250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46ed810
0:00:00.074807000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.074818875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:643:gst_registry_chunks_load_feature: Reading 2 Interfaces at address 0xffffb46ed828
0:00:00.074839000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d110e20 (jifmux)
0:00:00.074856500 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<jifmux> set parent (ref and sink)
0:00:00.074870375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for jifmux
0:00:00.074883125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature jifmux, plugin 0x3d106bf0 jpegformat
0:00:00.074897125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrybinary.c:606:priv_gst_registry_binary_read_cache: reading binary registry 108613(1a845)/405909
0:00:00.074910500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:829:_priv_gst_registry_chunks_load_plugin: Reading/casting for GstRegistryChunkPluginElement at address 0xffffb46ed848
0:00:00.074940250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:850:_priv_gst_registry_chunks_load_plugin: read strings for name='audiobuffersplit'
0:00:00.074954625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:851:_priv_gst_registry_chunks_load_plugin: desc.description='Audio buffer splitter'
0:00:00.074966250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:852:_priv_gst_registry_chunks_load_plugin: filename='/data/halley/gst-sdk/lib/gstreamer-1.0/libgstaudiobuffersplit.so'
0:00:00.074978000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:853:_priv_gst_registry_chunks_load_plugin: desc.version='1.14.0'
0:00:00.074989125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:854:_priv_gst_registry_chunks_load_plugin: desc.license='LGPL'
0:00:00.075000000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:855:_priv_gst_registry_chunks_load_plugin: desc.source='gst-plugins-bad'
0:00:00.075011500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:856:_priv_gst_registry_chunks_load_plugin: desc.package='GStreamer Bad Plug-ins'
0:00:00.075022750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:857:_priv_gst_registry_chunks_load_plugin: desc.origin='Unknown package origin'
0:00:00.075034250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:858:_priv_gst_registry_chunks_load_plugin: desc.datetime=2018-03-19
0:00:00.075048875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:466:gst_registry_add_plugin:<registry0> adding plugin 0x3d106d20 for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstaudiobuffersplit.so"
0:00:00.075067125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:479:gst_registry_add_plugin:<registry0> emitting plugin-added for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstaudiobuffersplit.so"
0:00:00.075091125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:879:_priv_gst_registry_chunks_load_plugin: Added plugin 'audiobuffersplit' plugin with 1 features from binary registry
0:00:00.075106875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'audiobuffersplit' feature 'audiobuffersplit' typename : 'GstElementFactory'
0:00:00.075136375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb46ed948
0:00:00.075162500 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.075176750 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.075190875 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.075205000 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.075219250 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.075231625 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.075246000 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.075258500 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.075272125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.075284625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46eda50
0:00:00.075298750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.075310750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46eda68
0:00:00.075323750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.075340125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d113050 (audiobuffersplit)
0:00:00.075358250 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<audiobuffersplit> set parent (ref and sink)
0:00:00.075372500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for audiobuffersplit
0:00:00.075385375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature audiobuffersplit, plugin 0x3d106d20 audiobuffersplit
0:00:00.075400250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrybinary.c:606:priv_gst_registry_binary_read_cache: reading binary registry 109185(1aa81)/405909
0:00:00.075414500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:829:_priv_gst_registry_chunks_load_plugin: Reading/casting for GstRegistryChunkPluginElement at address 0xffffb46eda88
0:00:00.075453625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:850:_priv_gst_registry_chunks_load_plugin: read strings for name='bayer'
0:00:00.075468750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:851:_priv_gst_registry_chunks_load_plugin: desc.description='Elements to convert Bayer images'
0:00:00.075491625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:852:_priv_gst_registry_chunks_load_plugin: filename='/data/halley/gst-sdk/lib/gstreamer-1.0/libgstbayer.so'
0:00:00.075505000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:853:_priv_gst_registry_chunks_load_plugin: desc.version='1.14.0'
0:00:00.075516375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:854:_priv_gst_registry_chunks_load_plugin: desc.license='LGPL'
0:00:00.075527375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:855:_priv_gst_registry_chunks_load_plugin: desc.source='gst-plugins-bad'
0:00:00.075538875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:856:_priv_gst_registry_chunks_load_plugin: desc.package='GStreamer Bad Plug-ins source release'
0:00:00.075550500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:857:_priv_gst_registry_chunks_load_plugin: desc.origin='Unknown package origin'
0:00:00.075562250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:858:_priv_gst_registry_chunks_load_plugin: desc.datetime=2018-03-19
0:00:00.075577375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:466:gst_registry_add_plugin:<registry0> adding plugin 0x3d106e50 for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstbayer.so"
0:00:00.075597500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:479:gst_registry_add_plugin:<registry0> emitting plugin-added for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstbayer.so"
0:00:00.075610875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:879:_priv_gst_registry_chunks_load_plugin: Added plugin 'bayer' plugin with 2 features from binary registry
0:00:00.075624500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'bayer' feature 'bayer2rgb' typename : 'GstElementFactory'
0:00:00.075653750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb46edb80
0:00:00.075671875 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.075684750 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.075699125 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.075711750 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.075725500 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.075737625 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.075751750 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.075764250 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.075777750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.075790125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46edc80
0:00:00.075805125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.075817125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46edd48
0:00:00.075842625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.075860500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d113130 (bayer2rgb)
0:00:00.075882000 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<bayer2rgb> set parent (ref and sink)
0:00:00.075896875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for bayer2rgb
0:00:00.075909750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature bayer2rgb, plugin 0x3d106e50 bayer
0:00:00.075923625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'bayer' feature 'rgb2bayer' typename : 'GstElementFactory'
0:00:00.075952375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb46ede18
0:00:00.075970125 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.075982875 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.075997250 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.076009750 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.076023500 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.076035875 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.076050000 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.076062250 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.076077125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.076089250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46edf10
0:00:00.076103500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.076115375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46edfc0
0:00:00.076132375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.076149125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d113210 (rgb2bayer)
0:00:00.076166000 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<rgb2bayer> set parent (ref and sink)
0:00:00.076180000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for rgb2bayer
0:00:00.076192875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature rgb2bayer, plugin 0x3d106e50 bayer
0:00:00.076206750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrybinary.c:606:priv_gst_registry_binary_read_cache: reading binary registry 110678(1b056)/405909
0:00:00.076234000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:829:_priv_gst_registry_chunks_load_plugin: Reading/casting for GstRegistryChunkPluginElement at address 0xffffb46ee058
0:00:00.076264125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:850:_priv_gst_registry_chunks_load_plugin: read strings for name='dvdspu'
0:00:00.076278375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:851:_priv_gst_registry_chunks_load_plugin: desc.description='DVD Sub-picture Overlay element'
0:00:00.076290250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:852:_priv_gst_registry_chunks_load_plugin: filename='/data/halley/gst-sdk/lib/gstreamer-1.0/libgstdvdspu.so'
0:00:00.076302125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:853:_priv_gst_registry_chunks_load_plugin: desc.version='1.14.0'
0:00:00.076313125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:854:_priv_gst_registry_chunks_load_plugin: desc.license='LGPL'
0:00:00.076324125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:855:_priv_gst_registry_chunks_load_plugin: desc.source='gst-plugins-bad'
0:00:00.076335375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:856:_priv_gst_registry_chunks_load_plugin: desc.package='GStreamer Bad Plug-ins source release'
0:00:00.076347000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:857:_priv_gst_registry_chunks_load_plugin: desc.origin='Unknown package origin'
0:00:00.076358250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:858:_priv_gst_registry_chunks_load_plugin: desc.datetime=2018-03-19
0:00:00.076373000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:466:gst_registry_add_plugin:<registry0> adding plugin 0x3d115020 for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstdvdspu.so"
0:00:00.076389875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:479:gst_registry_add_plugin:<registry0> emitting plugin-added for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstdvdspu.so"
0:00:00.076403125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:879:_priv_gst_registry_chunks_load_plugin: Added plugin 'dvdspu' plugin with 1 features from binary registry
0:00:00.076416750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'dvdspu' feature 'dvdspu' typename : 'GstElementFactory'
0:00:00.076445125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb46ee150
0:00:00.076463125 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.076476000 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.076490000 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.076502625 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.076516375 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.076528500 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.076543750 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.076556125 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.076569375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=3
0:00:00.076581375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46ee298
0:00:00.076606375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.076619375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46ee308
0:00:00.076633375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template video
0:00:00.076645125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46ee380
0:00:00.076658625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template subpicture
0:00:00.076674875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d1132f0 (dvdspu)
0:00:00.076691375 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<dvdspu> set parent (ref and sink)
0:00:00.076704875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for dvdspu
0:00:00.076717625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature dvdspu, plugin 0x3d115020 dvdspu
0:00:00.076731125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrybinary.c:606:priv_gst_registry_binary_read_cache: reading binary registry 111542(1b3b6)/405909
0:00:00.076744375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:829:_priv_gst_registry_chunks_load_plugin: Reading/casting for GstRegistryChunkPluginElement at address 0xffffb46ee3b8
0:00:00.076772500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:850:_priv_gst_registry_chunks_load_plugin: read strings for name='subparse'
0:00:00.076786625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:851:_priv_gst_registry_chunks_load_plugin: desc.description='Subtitle parsing'
0:00:00.076798000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:852:_priv_gst_registry_chunks_load_plugin: filename='/data/halley/gst-sdk/lib/gstreamer-1.0/libgstsubparse.so'
0:00:00.076809500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:853:_priv_gst_registry_chunks_load_plugin: desc.version='1.14.0'
0:00:00.076820500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:854:_priv_gst_registry_chunks_load_plugin: desc.license='LGPL'
0:00:00.076831500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:855:_priv_gst_registry_chunks_load_plugin: desc.source='gst-plugins-base'
0:00:00.076842875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:856:_priv_gst_registry_chunks_load_plugin: desc.package='GStreamer Base Plug-ins source release'
0:00:00.076854125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:857:_priv_gst_registry_chunks_load_plugin: desc.origin='Unknown package origin'
0:00:00.076865375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:858:_priv_gst_registry_chunks_load_plugin: desc.datetime=2018-03-19
0:00:00.076879750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:466:gst_registry_add_plugin:<registry0> adding plugin 0x3d115150 for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstsubparse.so"
0:00:00.076897000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:479:gst_registry_add_plugin:<registry0> emitting plugin-added for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstsubparse.so"
0:00:00.076909875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:879:_priv_gst_registry_chunks_load_plugin: Added plugin 'subparse' plugin with 3 features from binary registry
0:00:00.076939000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'subparse' feature 'subparse_typefind' typename : 'GstTypeFindFactory'
0:00:00.076974250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:656:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkPluginFeature at address 0xffffb46ee4b0
0:00:00.076994875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:670:gst_registry_chunks_load_feature: Reading 8 Typefind extensions at address 0xffffb46ee4d7
0:00:00.077015000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d1133d0 (subparse_typefind)
0:00:00.077032500 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<subparse_typefind> set parent (ref and sink)
0:00:00.077062000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for subparse_typefind
0:00:00.077078125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature subparse_typefind, plugin 0x3d115150 subparse
0:00:00.077092625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'subparse' feature 'subparse' typename : 'GstElementFactory'
0:00:00.077122000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb46ee518
0:00:00.077140250 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.077153250 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.077167750 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.077180375 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.077194375 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.077207750 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.077222375 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.077235125 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.077249625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.077261750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46ee668
0:00:00.077284250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.077298250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46ee760
0:00:00.077312125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.077329250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d1134b0 (subparse)
0:00:00.077346375 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<subparse> set parent (ref and sink)
0:00:00.077372625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for subparse
0:00:00.077386500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature subparse, plugin 0x3d115150 subparse
0:00:00.077400750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'subparse' feature 'ssaparse' typename : 'GstElementFactory'
0:00:00.077430625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb46ee7c0
0:00:00.077448250 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.077461125 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.077475250 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.077488000 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.077501750 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.077514000 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.077528250 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.077540750 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.077554375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.077566625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46ee8b0
0:00:00.077580250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.077592125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46ee8e8
0:00:00.077605375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.077621875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d113590 (ssaparse)
0:00:00.077638875 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<ssaparse> set parent (ref and sink)
0:00:00.077652625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for ssaparse
0:00:00.077665250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature ssaparse, plugin 0x3d115150 subparse
0:00:00.077678750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrybinary.c:606:priv_gst_registry_binary_read_cache: reading binary registry 112924(1b91c)/405909
0:00:00.077692000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:829:_priv_gst_registry_chunks_load_plugin: Reading/casting for GstRegistryChunkPluginElement at address 0xffffb46ee920
0:00:00.077721250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:850:_priv_gst_registry_chunks_load_plugin: read strings for name='shm'
0:00:00.077735250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:851:_priv_gst_registry_chunks_load_plugin: desc.description='shared memory sink source'
0:00:00.077757375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:852:_priv_gst_registry_chunks_load_plugin: filename='/data/halley/gst-sdk/lib/gstreamer-1.0/libgstshm.so'
0:00:00.077770500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:853:_priv_gst_registry_chunks_load_plugin: desc.version='1.14.0'
0:00:00.077781500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:854:_priv_gst_registry_chunks_load_plugin: desc.license='LGPL'
0:00:00.077792375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:855:_priv_gst_registry_chunks_load_plugin: desc.source='gst-plugins-bad'
0:00:00.077803625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:856:_priv_gst_registry_chunks_load_plugin: desc.package='GStreamer Bad Plug-ins source release'
0:00:00.077814625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:857:_priv_gst_registry_chunks_load_plugin: desc.origin='Unknown package origin'
0:00:00.077826000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:858:_priv_gst_registry_chunks_load_plugin: desc.datetime=2018-03-19
0:00:00.077840750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:466:gst_registry_add_plugin:<registry0> adding plugin 0x3d115280 for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstshm.so"
0:00:00.077858125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:479:gst_registry_add_plugin:<registry0> emitting plugin-added for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstshm.so"
0:00:00.077871125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:879:_priv_gst_registry_chunks_load_plugin: Added plugin 'shm' plugin with 2 features from binary registry
0:00:00.077890500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'shm' feature 'shmsrc' typename : 'GstElementFactory'
0:00:00.077919375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb46eea08
0:00:00.077936625 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.077949250 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.077963250 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.077975750 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.077989500 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.078001750 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.078016125 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.078028625 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.078042250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=1
0:00:00.078054375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46eeaf8
0:00:00.078067250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.078083375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d113670 (shmsrc)
0:00:00.078099875 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<shmsrc> set parent (ref and sink)
0:00:00.078124875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for shmsrc
0:00:00.078138375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature shmsrc, plugin 0x3d115280 shm
0:00:00.078152125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'shm' feature 'shmsink' typename : 'GstElementFactory'
0:00:00.078180625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb46eeb28
0:00:00.078198125 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.078211000 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.078225000 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.078237375 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.078250875 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.078263000 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.078277375 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.078289625 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.078303125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=1
0:00:00.078315250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46eec20
0:00:00.078328000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.078345750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d117020 (shmsink)
0:00:00.078362500 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<shmsink> set parent (ref and sink)
0:00:00.078376625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for shmsink
0:00:00.078389375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature shmsink, plugin 0x3d115280 shm
0:00:00.078403000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrybinary.c:606:priv_gst_registry_binary_read_cache: reading binary registry 113713(1bc31)/405909
0:00:00.078416375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:829:_priv_gst_registry_chunks_load_plugin: Reading/casting for GstRegistryChunkPluginElement at address 0xffffb46eec38
0:00:00.078444750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:850:_priv_gst_registry_chunks_load_plugin: read strings for name='coloreffects'
0:00:00.078458625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:851:_priv_gst_registry_chunks_load_plugin: desc.description='Color Look-up Table filters'
0:00:00.078470500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:852:_priv_gst_registry_chunks_load_plugin: filename='/data/halley/gst-sdk/lib/gstreamer-1.0/libgstcoloreffects.so'
0:00:00.078482125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:853:_priv_gst_registry_chunks_load_plugin: desc.version='1.14.0'
0:00:00.078503375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:854:_priv_gst_registry_chunks_load_plugin: desc.license='LGPL'
0:00:00.078515750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:855:_priv_gst_registry_chunks_load_plugin: desc.source='gst-plugins-bad'
0:00:00.078527125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:856:_priv_gst_registry_chunks_load_plugin: desc.package='GStreamer Bad Plug-ins source release'
0:00:00.078538375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:857:_priv_gst_registry_chunks_load_plugin: desc.origin='Unknown package origin'
0:00:00.078549500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:858:_priv_gst_registry_chunks_load_plugin: desc.datetime=2018-03-19
0:00:00.078564375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:466:gst_registry_add_plugin:<registry0> adding plugin 0x3d1153b0 for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstcoloreffects.so"
0:00:00.078581625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:479:gst_registry_add_plugin:<registry0> emitting plugin-added for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstcoloreffects.so"
0:00:00.078594750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:879:_priv_gst_registry_chunks_load_plugin: Added plugin 'coloreffects' plugin with 2 features from binary registry
0:00:00.078608125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'coloreffects' feature 'coloreffects' typename : 'GstElementFactory'
0:00:00.078636125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb46eed40
0:00:00.078653625 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.078666250 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.078680250 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.078693000 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.078706750 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.078719000 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.078733000 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.078745500 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.078758875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.078770875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46eee38
0:00:00.078785875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.078797875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46eef10
0:00:00.078811875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.078827875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d117100 (coloreffects)
0:00:00.078855875 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<coloreffects> set parent (ref and sink)
0:00:00.078870500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for coloreffects
0:00:00.078883375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature coloreffects, plugin 0x3d1153b0 coloreffects
0:00:00.078897250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'coloreffects' feature 'chromahold' typename : 'GstElementFactory'
0:00:00.078926000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb46ef000
0:00:00.078943875 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.078956625 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.078970500 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.078983125 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.078996750 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.079009375 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.079024125 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.079036375 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.079049875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.079061875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46ef118
0:00:00.079076625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.079088750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46ef1e0
0:00:00.079102250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.079118375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d1171e0 (chromahold)
0:00:00.079141000 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<chromahold> set parent (ref and sink)
0:00:00.079154875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for chromahold
0:00:00.079167500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature chromahold, plugin 0x3d1153b0 coloreffects
0:00:00.079181375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrybinary.c:606:priv_gst_registry_binary_read_cache: reading binary registry 115363(1c2a3)/405909
0:00:00.079194750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:829:_priv_gst_registry_chunks_load_plugin: Reading/casting for GstRegistryChunkPluginElement at address 0xffffb46ef2a8
0:00:00.079224750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:850:_priv_gst_registry_chunks_load_plugin: read strings for name='pcapparse'
0:00:00.079259125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:851:_priv_gst_registry_chunks_load_plugin: desc.description='Element parsing raw pcap streams'
0:00:00.079272375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:852:_priv_gst_registry_chunks_load_plugin: filename='/data/halley/gst-sdk/lib/gstreamer-1.0/libgstpcapparse.so'
0:00:00.079284250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:853:_priv_gst_registry_chunks_load_plugin: desc.version='1.14.0'
0:00:00.079295375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:854:_priv_gst_registry_chunks_load_plugin: desc.license='LGPL'
0:00:00.079306375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:855:_priv_gst_registry_chunks_load_plugin: desc.source='gst-plugins-bad'
0:00:00.079317500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:856:_priv_gst_registry_chunks_load_plugin: desc.package='GStreamer Bad Plug-ins source release'
0:00:00.079328875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:857:_priv_gst_registry_chunks_load_plugin: desc.origin='Unknown package origin'
0:00:00.079340250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:858:_priv_gst_registry_chunks_load_plugin: desc.datetime=2018-03-19
0:00:00.079355000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:466:gst_registry_add_plugin:<registry0> adding plugin 0x3d1154e0 for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstpcapparse.so"
0:00:00.079372000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:479:gst_registry_add_plugin:<registry0> emitting plugin-added for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstpcapparse.so"
0:00:00.079385125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:879:_priv_gst_registry_chunks_load_plugin: Added plugin 'pcapparse' plugin with 2 features from binary registry
0:00:00.079398500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'pcapparse' feature 'pcapparse' typename : 'GstElementFactory'
0:00:00.079437000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb46ef3a8
0:00:00.079455250 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.079467875 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.079481750 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.079494125 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.079507625 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.079519750 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.079533625 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.079546000 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.079559750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.079571875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46ef498
0:00:00.079585250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.079597125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46ef4b0
0:00:00.079623750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.079641750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d1172c0 (pcapparse)
0:00:00.079658625 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<pcapparse> set parent (ref and sink)
0:00:00.079672500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for pcapparse
0:00:00.079685250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature pcapparse, plugin 0x3d1154e0 pcapparse
0:00:00.079698750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'pcapparse' feature 'irtspparse' typename : 'GstElementFactory'
0:00:00.079729125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb46ef4e0
0:00:00.079746750 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.079759500 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.079773125 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.079785625 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.079799500 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.079811625 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.079826000 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.079838250 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.079851625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.079864000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46ef5c8
0:00:00.079876750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.079888375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46ef5e0
0:00:00.079901875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.079918250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d1173a0 (irtspparse)
0:00:00.079934875 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<irtspparse> set parent (ref and sink)
0:00:00.079949375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for irtspparse
0:00:00.079962250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature irtspparse, plugin 0x3d1154e0 pcapparse
0:00:00.079976000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrybinary.c:606:priv_gst_registry_binary_read_cache: reading binary registry 116242(1c612)/405909
0:00:00.080000000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:829:_priv_gst_registry_chunks_load_plugin: Reading/casting for GstRegistryChunkPluginElement at address 0xffffb46ef618
0:00:00.080029750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:850:_priv_gst_registry_chunks_load_plugin: read strings for name='sdpelem'
0:00:00.080043875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:851:_priv_gst_registry_chunks_load_plugin: desc.description='configure streaming sessions using SDP'
0:00:00.080055625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:852:_priv_gst_registry_chunks_load_plugin: filename='/data/halley/gst-sdk/lib/gstreamer-1.0/libgstsdpelem.so'
0:00:00.080067250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:853:_priv_gst_registry_chunks_load_plugin: desc.version='1.14.0'
0:00:00.080078375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:854:_priv_gst_registry_chunks_load_plugin: desc.license='LGPL'
0:00:00.080089375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:855:_priv_gst_registry_chunks_load_plugin: desc.source='gst-plugins-bad'
0:00:00.080100625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:856:_priv_gst_registry_chunks_load_plugin: desc.package='GStreamer Bad Plug-ins source release'
0:00:00.080112000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:857:_priv_gst_registry_chunks_load_plugin: desc.origin='Unknown package origin'
0:00:00.080123250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:858:_priv_gst_registry_chunks_load_plugin: desc.datetime=2018-03-19
0:00:00.080137875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:466:gst_registry_add_plugin:<registry0> adding plugin 0x3d115610 for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstsdpelem.so"
0:00:00.080157750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:479:gst_registry_add_plugin:<registry0> emitting plugin-added for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstsdpelem.so"
0:00:00.080171250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:879:_priv_gst_registry_chunks_load_plugin: Added plugin 'sdpelem' plugin with 2 features from binary registry
0:00:00.080185000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'sdpelem' feature 'sdpdemux' typename : 'GstElementFactory'
0:00:00.080213125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb46ef718
0:00:00.080230750 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.080243375 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.080257125 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.080271000 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.080284750 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.080297000 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.080311250 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.080323750 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.080337125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.080359750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46ef810
0:00:00.080374375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.080386375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46ef830
0:00:00.080400250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template stream_%u
0:00:00.080412000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:643:gst_registry_chunks_load_feature: Reading 1 Interfaces at address 0xffffb46ef854
0:00:00.080440250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d117480 (sdpdemux)
0:00:00.080458750 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<sdpdemux> set parent (ref and sink)
0:00:00.080472875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for sdpdemux
0:00:00.080485875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature sdpdemux, plugin 0x3d115610 sdpelem
0:00:00.080500125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'sdpelem' feature 'sdpsrc' typename : 'GstElementFactory'
0:00:00.080529625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb46ef880
0:00:00.080547125 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.080560125 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.080574375 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.080587125 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.080601000 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.080613750 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.080627750 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.080640375 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.080653875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=1
0:00:00.080666000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46ef968
0:00:00.080679250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template stream_%u
0:00:00.080691000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:628:gst_registry_chunks_load_feature: Reading 1 UriTypes at address 0xffffb46ef98c
0:00:00.080704375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:643:gst_registry_chunks_load_feature: Reading 2 Interfaces at address 0xffffb46ef998
0:00:00.080722375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d117560 (sdpsrc)
0:00:00.080750250 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<sdpsrc> set parent (ref and sink)
0:00:00.080764875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for sdpsrc
0:00:00.080777875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature sdpsrc, plugin 0x3d115610 sdpelem
0:00:00.080791625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrybinary.c:606:priv_gst_registry_binary_read_cache: reading binary registry 117172(1c9b4)/405909
0:00:00.080805000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:829:_priv_gst_registry_chunks_load_plugin: Reading/casting for GstRegistryChunkPluginElement at address 0xffffb46ef9b8
0:00:00.080834000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:850:_priv_gst_registry_chunks_load_plugin: read strings for name='mulaw'
0:00:00.080848250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:851:_priv_gst_registry_chunks_load_plugin: desc.description='MuLaw audio conversion routines'
0:00:00.080859875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:852:_priv_gst_registry_chunks_load_plugin: filename='/data/halley/gst-sdk/lib/gstreamer-1.0/libgstmulaw.so'
0:00:00.080871750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:853:_priv_gst_registry_chunks_load_plugin: desc.version='1.14.0'
0:00:00.080883000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:854:_priv_gst_registry_chunks_load_plugin: desc.license='LGPL'
0:00:00.080894000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:855:_priv_gst_registry_chunks_load_plugin: desc.source='gst-plugins-good'
0:00:00.080905625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:856:_priv_gst_registry_chunks_load_plugin: desc.package='GStreamer Good Plug-ins source release'
0:00:00.080917375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:857:_priv_gst_registry_chunks_load_plugin: desc.origin='Unknown package origin'
0:00:00.080928875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:858:_priv_gst_registry_chunks_load_plugin: desc.datetime=2018-03-19
0:00:00.080943750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:466:gst_registry_add_plugin:<registry0> adding plugin 0x3d115740 for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstmulaw.so"
0:00:00.080961250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:479:gst_registry_add_plugin:<registry0> emitting plugin-added for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstmulaw.so"
0:00:00.080974750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:879:_priv_gst_registry_chunks_load_plugin: Added plugin 'mulaw' plugin with 2 features from binary registry
0:00:00.080988250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'mulaw' feature 'mulawenc' typename : 'GstElementFactory'
0:00:00.081016500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb46efab0
0:00:00.081034125 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.081062750 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.081081500 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.081094500 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.081108625 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.081132625 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.081148875 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.081161375 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.081175125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.081187375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46efbb0
0:00:00.081200875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.081212875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46efc00
0:00:00.081227375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.081239125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:643:gst_registry_chunks_load_feature: Reading 1 Interfaces at address 0xffffb46efc7f
0:00:00.081257000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d117640 (mulawenc)
0:00:00.081273750 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<mulawenc> set parent (ref and sink)
0:00:00.081287375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for mulawenc
0:00:00.081300250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature mulawenc, plugin 0x3d115740 mulaw
0:00:00.081313875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'mulaw' feature 'mulawdec' typename : 'GstElementFactory'
0:00:00.081342500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb46efca8
0:00:00.081360250 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.081373000 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.081387000 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.081399625 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.081413250 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.081425375 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.081439500 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.081452000 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.081465625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.081477625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46efda8
0:00:00.081502250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.081515125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46efe28
0:00:00.081528125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.081544375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d11a830 (mulawdec)
0:00:00.081561375 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<mulawdec> set parent (ref and sink)
0:00:00.081575125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for mulawdec
0:00:00.081587750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature mulawdec, plugin 0x3d115740 mulaw
0:00:00.081601375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrybinary.c:606:priv_gst_registry_binary_read_cache: reading binary registry 118391(1ce77)/405909
0:00:00.081614625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:829:_priv_gst_registry_chunks_load_plugin: Reading/casting for GstRegistryChunkPluginElement at address 0xffffb46efe78
0:00:00.081645750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:850:_priv_gst_registry_chunks_load_plugin: read strings for name='imxcompositor'
0:00:00.081660000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:851:_priv_gst_registry_chunks_load_plugin: desc.description='IMX Video Composition Plugins'
0:00:00.081671875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:852:_priv_gst_registry_chunks_load_plugin: filename='/data/halley/gst-sdk/lib/gstreamer-1.0/libgstimxcompositor.so'
0:00:00.081683500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:853:_priv_gst_registry_chunks_load_plugin: desc.version='4.4.4'
0:00:00.081694625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:854:_priv_gst_registry_chunks_load_plugin: desc.license='LGPL'
0:00:00.081705500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:855:_priv_gst_registry_chunks_load_plugin: desc.source='imx-gst1.0-plugin'
0:00:00.081716875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:856:_priv_gst_registry_chunks_load_plugin: desc.package='Freescle Gstreamer Multimedia Plugins'
0:00:00.081728000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:857:_priv_gst_registry_chunks_load_plugin: desc.origin='http://www.freescale.com'
0:00:00.081739250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:858:_priv_gst_registry_chunks_load_plugin: desc.datetime=
0:00:00.081754125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:466:gst_registry_add_plugin:<registry0> adding plugin 0x3d115870 for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstimxcompositor.so"
0:00:00.081771500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:479:gst_registry_add_plugin:<registry0> emitting plugin-added for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstimxcompositor.so"
0:00:00.081784625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:879:_priv_gst_registry_chunks_load_plugin: Added plugin 'imxcompositor' plugin with 1 features from binary registry
0:00:00.081798000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'imxcompositor' feature 'imxcompositor_g2d' typename : 'GstElementFactory'
0:00:00.081826250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb46eff80
0:00:00.081867000 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.081881500 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.081896000 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.081908625 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.081922750 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.081935125 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.081949125 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.081961500 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.081975000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.081987250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46f0080
0:00:00.082012500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink_%u
0:00:00.082026125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46f01d8
0:00:00.082041500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.082053375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:643:gst_registry_chunks_load_feature: Reading 1 Interfaces at address 0xffffb46f02ed
0:00:00.082071750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d11a910 (imxcompositor_g2d)
0:00:00.082089000 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<imxcompositor_g2d> set parent (ref and sink)
0:00:00.082102750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for imxcompositor_g2d
0:00:00.082115750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature imxcompositor_g2d, plugin 0x3d115870 imxcompositor
0:00:00.082130375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrybinary.c:606:priv_gst_registry_binary_read_cache: reading binary registry 119547(1d2fb)/405909
0:00:00.082143750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:829:_priv_gst_registry_chunks_load_plugin: Reading/casting for GstRegistryChunkPluginElement at address 0xffffb46f0300
0:00:00.082173875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:850:_priv_gst_registry_chunks_load_plugin: read strings for name='imagefreeze'
0:00:00.082187875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:851:_priv_gst_registry_chunks_load_plugin: desc.description='Still frame stream generator'
0:00:00.082199500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:852:_priv_gst_registry_chunks_load_plugin: filename='/data/halley/gst-sdk/lib/gstreamer-1.0/libgstimagefreeze.so'
0:00:00.082211250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:853:_priv_gst_registry_chunks_load_plugin: desc.version='1.14.0'
0:00:00.082222250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:854:_priv_gst_registry_chunks_load_plugin: desc.license='LGPL'
0:00:00.082243750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:855:_priv_gst_registry_chunks_load_plugin: desc.source='gst-plugins-good'
0:00:00.082256625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:856:_priv_gst_registry_chunks_load_plugin: desc.package='GStreamer Good Plug-ins source release'
0:00:00.082267875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:857:_priv_gst_registry_chunks_load_plugin: desc.origin='Unknown package origin'
0:00:00.082279250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:858:_priv_gst_registry_chunks_load_plugin: desc.datetime=2018-03-19
0:00:00.082294000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:466:gst_registry_add_plugin:<registry0> adding plugin 0x3d1159a0 for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstimagefreeze.so"
0:00:00.082311000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:479:gst_registry_add_plugin:<registry0> emitting plugin-added for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstimagefreeze.so"
0:00:00.082324750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:879:_priv_gst_registry_chunks_load_plugin: Added plugin 'imagefreeze' plugin with 1 features from binary registry
0:00:00.082338375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'imagefreeze' feature 'imagefreeze' typename : 'GstElementFactory'
0:00:00.082374750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb46f0408
0:00:00.082393125 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.082405750 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.082420000 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.082432750 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.082446500 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.082458625 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.082473000 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.082485250 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.082498875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.082510875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46f0518
0:00:00.082526250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.082538000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46f0538
0:00:00.082550750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.082566625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d11a9f0 (imagefreeze)
0:00:00.082583750 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<imagefreeze> set parent (ref and sink)
0:00:00.082598000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for imagefreeze
0:00:00.082621375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature imagefreeze, plugin 0x3d1159a0 imagefreeze
0:00:00.082636625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrybinary.c:606:priv_gst_registry_binary_read_cache: reading binary registry 120144(1d550)/405909
0:00:00.082650500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:829:_priv_gst_registry_chunks_load_plugin: Reading/casting for GstRegistryChunkPluginElement at address 0xffffb46f0550
0:00:00.082687250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:850:_priv_gst_registry_chunks_load_plugin: read strings for name='ossaudio'
0:00:00.082702125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:851:_priv_gst_registry_chunks_load_plugin: desc.description='OSS (Open Sound System) support for GStreamer'
0:00:00.082713875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:852:_priv_gst_registry_chunks_load_plugin: filename='/data/halley/gst-sdk/lib/gstreamer-1.0/libgstossaudio.so'
0:00:00.082725500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:853:_priv_gst_registry_chunks_load_plugin: desc.version='1.14.0'
0:00:00.082736750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:854:_priv_gst_registry_chunks_load_plugin: desc.license='LGPL'
0:00:00.082747750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:855:_priv_gst_registry_chunks_load_plugin: desc.source='gst-plugins-good'
0:00:00.082759000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:856:_priv_gst_registry_chunks_load_plugin: desc.package='GStreamer Good Plug-ins source release'
0:00:00.082770750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:857:_priv_gst_registry_chunks_load_plugin: desc.origin='Unknown package origin'
0:00:00.082782250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:858:_priv_gst_registry_chunks_load_plugin: desc.datetime=2018-03-19
0:00:00.082797000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:466:gst_registry_add_plugin:<registry0> adding plugin 0x3d115ad0 for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstossaudio.so"
0:00:00.082814125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:479:gst_registry_add_plugin:<registry0> emitting plugin-added for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstossaudio.so"
0:00:00.082827375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:879:_priv_gst_registry_chunks_load_plugin: Added plugin 'ossaudio' plugin with 2 features from binary registry
0:00:00.082846000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'ossaudio' feature 'osssrc' typename : 'GstElementFactory'
0:00:00.082874875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb46f0658
0:00:00.082892750 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.082905500 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.082919500 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.082931875 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.082945500 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.082958250 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.082986750 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.083000500 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.083014875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=1
0:00:00.083026875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46f0768
0:00:00.083042500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.083059125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d11aad0 (osssrc)
0:00:00.083075625 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<osssrc> set parent (ref and sink)
0:00:00.083089375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for osssrc
0:00:00.083102000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature osssrc, plugin 0x3d115ad0 ossaudio
0:00:00.083115500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'ossaudio' feature 'osssink' typename : 'GstElementFactory'
0:00:00.083143750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb46f08b8
0:00:00.083161250 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.083174000 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.083188000 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.083200375 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.083214000 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.083226125 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.083240250 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.083252750 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.083266750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=1
0:00:00.083278750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46f09c8
0:00:00.083293875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.083309875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d11abb0 (osssink)
0:00:00.083326750 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<osssink> set parent (ref and sink)
0:00:00.083341000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for osssink
0:00:00.083353500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature osssink, plugin 0x3d115ad0 ossaudio
0:00:00.083377375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrybinary.c:606:priv_gst_registry_binary_read_cache: reading binary registry 121598(1dafe)/405909
0:00:00.083392000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:829:_priv_gst_registry_chunks_load_plugin: Reading/casting for GstRegistryChunkPluginElement at address 0xffffb46f0b00
0:00:00.083420750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:850:_priv_gst_registry_chunks_load_plugin: read strings for name='mpegtsdemux'
0:00:00.083434875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:851:_priv_gst_registry_chunks_load_plugin: desc.description='MPEG TS demuxer'
0:00:00.083446250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:852:_priv_gst_registry_chunks_load_plugin: filename='/data/halley/gst-sdk/lib/gstreamer-1.0/libgstmpegtsdemux.so'
0:00:00.083457750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:853:_priv_gst_registry_chunks_load_plugin: desc.version='1.14.0'
0:00:00.083468750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:854:_priv_gst_registry_chunks_load_plugin: desc.license='LGPL'
0:00:00.083479625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:855:_priv_gst_registry_chunks_load_plugin: desc.source='gst-plugins-bad'
0:00:00.083491000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:856:_priv_gst_registry_chunks_load_plugin: desc.package='GStreamer Bad Plug-ins source release'
0:00:00.083502000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:857:_priv_gst_registry_chunks_load_plugin: desc.origin='Unknown package origin'
0:00:00.083513250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:858:_priv_gst_registry_chunks_load_plugin: desc.datetime=2018-03-19
0:00:00.083527625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:466:gst_registry_add_plugin:<registry0> adding plugin 0x3d115c00 for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstmpegtsdemux.so"
0:00:00.083544750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:479:gst_registry_add_plugin:<registry0> emitting plugin-added for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstmpegtsdemux.so"
0:00:00.083557875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:879:_priv_gst_registry_chunks_load_plugin: Added plugin 'mpegtsdemux' plugin with 2 features from binary registry
0:00:00.083571125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'mpegtsdemux' feature 'tsparse' typename : 'GstElementFactory'
0:00:00.083598625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb46f0bf0
0:00:00.083616250 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.083629000 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.083643000 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.083655625 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.083669125 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.083681250 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.083695375 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.083707750 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.083732625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=3
0:00:00.083745625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46f0d20
0:00:00.083760125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.083772375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46f0d58
0:00:00.083785625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.083797375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46f0d90
0:00:00.083811000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template program_%u
0:00:00.083827375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d11ac90 (tsparse)
0:00:00.083843875 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<tsparse> set parent (ref and sink)
0:00:00.083858125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for tsparse
0:00:00.083870750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature tsparse, plugin 0x3d115c00 mpegtsdemux
0:00:00.083884375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'mpegtsdemux' feature 'tsdemux' typename : 'GstElementFactory'
0:00:00.083912500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb46f0de8
0:00:00.083930750 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.083943500 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.083957625 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.083970000 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.083983375 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.083995625 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.084009750 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.084022250 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.084036625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=5
0:00:00.084048750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46f0f20
0:00:00.084062000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.084073625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46f0f58
0:00:00.084100125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template video_%01x_%05x
0:00:00.084113125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46f10a8
0:00:00.084129625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template audio_%01x_%05x
0:00:00.084141375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46f1268
0:00:00.084154750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template subpicture_%01x_%05x
0:00:00.084166750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46f12c0
0:00:00.084180625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template private_%01x_%05x
0:00:00.084197000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d11ad70 (tsdemux)
0:00:00.084214000 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<tsdemux> set parent (ref and sink)
0:00:00.084228000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for tsdemux
0:00:00.084240875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature tsdemux, plugin 0x3d115c00 mpegtsdemux
0:00:00.084254375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrybinary.c:606:priv_gst_registry_binary_read_cache: reading binary registry 123614(1e2de)/405909
0:00:00.084267625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:829:_priv_gst_registry_chunks_load_plugin: Reading/casting for GstRegistryChunkPluginElement at address 0xffffb46f12e0
0:00:00.084295875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:850:_priv_gst_registry_chunks_load_plugin: read strings for name='id3tag'
0:00:00.084309750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:851:_priv_gst_registry_chunks_load_plugin: desc.description='ID3 v1 and v2 muxing plugin'
0:00:00.084321625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:852:_priv_gst_registry_chunks_load_plugin: filename='/data/halley/gst-sdk/lib/gstreamer-1.0/libgstid3tag.so'
0:00:00.084333125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:853:_priv_gst_registry_chunks_load_plugin: desc.version='1.14.0'
0:00:00.084344125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:854:_priv_gst_registry_chunks_load_plugin: desc.license='LGPL'
0:00:00.084355000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:855:_priv_gst_registry_chunks_load_plugin: desc.source='gst-plugins-bad'
0:00:00.084366250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:856:_priv_gst_registry_chunks_load_plugin: desc.package='GStreamer Bad Plug-ins source release'
0:00:00.084377500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:857:_priv_gst_registry_chunks_load_plugin: desc.origin='Unknown package origin'
0:00:00.084388625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:858:_priv_gst_registry_chunks_load_plugin: desc.datetime=2018-03-19
0:00:00.084403250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:466:gst_registry_add_plugin:<registry0> adding plugin 0x3d115d30 for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstid3tag.so"
0:00:00.084431250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:479:gst_registry_add_plugin:<registry0> emitting plugin-added for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstid3tag.so"
0:00:00.084445250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:879:_priv_gst_registry_chunks_load_plugin: Added plugin 'id3tag' plugin with 1 features from binary registry
0:00:00.084458750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'id3tag' feature 'id3mux' typename : 'GstElementFactory'
0:00:00.084486750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb46f13d0
0:00:00.084504625 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.084517375 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.084531375 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.084543875 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.084557625 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.084569625 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.084584125 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.084596500 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.084610875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.084622875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46f1510
0:00:00.084635500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.084647250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46f1528
0:00:00.084671000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.084684250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:643:gst_registry_chunks_load_feature: Reading 1 Interfaces at address 0xffffb46f1546
0:00:00.084702375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d11ae50 (id3mux)
0:00:00.084719375 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<id3mux> set parent (ref and sink)
0:00:00.084733000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for id3mux
0:00:00.084745625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature id3mux, plugin 0x3d115d30 id3tag
0:00:00.084759500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrybinary.c:606:priv_gst_registry_binary_read_cache: reading binary registry 124243(1e553)/405909
0:00:00.084772875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:829:_priv_gst_registry_chunks_load_plugin: Reading/casting for GstRegistryChunkPluginElement at address 0xffffb46f1558
0:00:00.084803375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:850:_priv_gst_registry_chunks_load_plugin: read strings for name='videocrop'
0:00:00.084827875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:851:_priv_gst_registry_chunks_load_plugin: desc.description='Crops video into a user-defined region'
0:00:00.084841000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:852:_priv_gst_registry_chunks_load_plugin: filename='/data/halley/gst-sdk/lib/gstreamer-1.0/libgstvideocrop.so'
0:00:00.084852625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:853:_priv_gst_registry_chunks_load_plugin: desc.version='1.14.0'
0:00:00.084863750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:854:_priv_gst_registry_chunks_load_plugin: desc.license='LGPL'
0:00:00.084874750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:855:_priv_gst_registry_chunks_load_plugin: desc.source='gst-plugins-good'
0:00:00.084886250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:856:_priv_gst_registry_chunks_load_plugin: desc.package='GStreamer Good Plug-ins source release'
0:00:00.084898125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:857:_priv_gst_registry_chunks_load_plugin: desc.origin='Unknown package origin'
0:00:00.084909500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:858:_priv_gst_registry_chunks_load_plugin: desc.datetime=2018-03-19
0:00:00.084924375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:466:gst_registry_add_plugin:<registry0> adding plugin 0x3d115e60 for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstvideocrop.so"
0:00:00.084941875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:479:gst_registry_add_plugin:<registry0> emitting plugin-added for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstvideocrop.so"
0:00:00.084955250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:879:_priv_gst_registry_chunks_load_plugin: Added plugin 'videocrop' plugin with 2 features from binary registry
0:00:00.084968875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'videocrop' feature 'videocrop' typename : 'GstElementFactory'
0:00:00.084997375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb46f1660
0:00:00.085015250 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.085028000 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.085055000 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.085072000 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.085086250 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.085098500 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.085112875 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.085125375 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.085139000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.085151375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46f1748
0:00:00.085167375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.085189750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46f1878
0:00:00.085206250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.085223125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d11d8a0 (videocrop)
0:00:00.085240500 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<videocrop> set parent (ref and sink)
0:00:00.085254750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for videocrop
0:00:00.085267875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature videocrop, plugin 0x3d115e60 videocrop
0:00:00.085282000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'videocrop' feature 'aspectratiocrop' typename : 'GstElementFactory'
0:00:00.085312125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb46f19c8
0:00:00.085330125 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.085342875 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.085356625 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.085369000 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.085382625 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.085394750 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.085409250 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.085421625 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.085435250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.085447250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46f1ab8
0:00:00.085461875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.085473625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46f1be8
0:00:00.085488375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.085500000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:643:gst_registry_chunks_load_feature: Reading 1 Interfaces at address 0xffffb46f1d10
0:00:00.085517750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d11d980 (aspectratiocrop)
0:00:00.085535000 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<aspectratiocrop> set parent (ref and sink)
0:00:00.085549250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for aspectratiocrop
0:00:00.085572875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature aspectratiocrop, plugin 0x3d115e60 videocrop
0:00:00.085587875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrybinary.c:606:priv_gst_registry_binary_read_cache: reading binary registry 126238(1ed1e)/405909
0:00:00.085601625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:829:_priv_gst_registry_chunks_load_plugin: Reading/casting for GstRegistryChunkPluginElement at address 0xffffb46f1d20
0:00:00.085631000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:850:_priv_gst_registry_chunks_load_plugin: read strings for name='freeverb'
0:00:00.085645625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:851:_priv_gst_registry_chunks_load_plugin: desc.description='Reverberation/room effect'
0:00:00.085657250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:852:_priv_gst_registry_chunks_load_plugin: filename='/data/halley/gst-sdk/lib/gstreamer-1.0/libgstfreeverb.so'
0:00:00.085669000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:853:_priv_gst_registry_chunks_load_plugin: desc.version='1.14.0'
0:00:00.085680125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:854:_priv_gst_registry_chunks_load_plugin: desc.license='LGPL'
0:00:00.085691000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:855:_priv_gst_registry_chunks_load_plugin: desc.source='gst-plugins-bad'
0:00:00.085702125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:856:_priv_gst_registry_chunks_load_plugin: desc.package='GStreamer Bad Plug-ins source release'
0:00:00.085713875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:857:_priv_gst_registry_chunks_load_plugin: desc.origin='Unknown package origin'
0:00:00.085725000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:858:_priv_gst_registry_chunks_load_plugin: desc.datetime=2018-03-19
0:00:00.085739625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:466:gst_registry_add_plugin:<registry0> adding plugin 0x3d11e040 for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstfreeverb.so"
0:00:00.085756875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:479:gst_registry_add_plugin:<registry0> emitting plugin-added for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstfreeverb.so"
0:00:00.085769875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:879:_priv_gst_registry_chunks_load_plugin: Added plugin 'freeverb' plugin with 1 features from binary registry
0:00:00.085783375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'freeverb' feature 'freeverb' typename : 'GstElementFactory'
0:00:00.085811000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb46f1e18
0:00:00.085828500 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.085841250 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.085855250 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.085867750 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.085881375 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.085895250 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.085909250 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.085932500 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.085947375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.085959375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46f1f08
0:00:00.085973750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.085985625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46f1f90
0:00:00.085999875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.086011625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:643:gst_registry_chunks_load_feature: Reading 1 Interfaces at address 0xffffb46f201b
0:00:00.086029250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d11da60 (freeverb)
0:00:00.086046125 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<freeverb> set parent (ref and sink)
0:00:00.086060250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for freeverb
0:00:00.086073000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature freeverb, plugin 0x3d11e040 freeverb
0:00:00.086086500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrybinary.c:606:priv_gst_registry_binary_read_cache: reading binary registry 127013(1f025)/405909
0:00:00.086099625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:829:_priv_gst_registry_chunks_load_plugin: Reading/casting for GstRegistryChunkPluginElement at address 0xffffb46f2028
0:00:00.086128500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:850:_priv_gst_registry_chunks_load_plugin: read strings for name='y4mdec'
0:00:00.086142875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:851:_priv_gst_registry_chunks_load_plugin: desc.description='Demuxes/decodes YUV4MPEG streams'
0:00:00.086154500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:852:_priv_gst_registry_chunks_load_plugin: filename='/data/halley/gst-sdk/lib/gstreamer-1.0/libgsty4mdec.so'
0:00:00.086166125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:853:_priv_gst_registry_chunks_load_plugin: desc.version='1.14.0'
0:00:00.086177000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:854:_priv_gst_registry_chunks_load_plugin: desc.license='LGPL'
0:00:00.086188000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:855:_priv_gst_registry_chunks_load_plugin: desc.source='gst-plugins-bad'
0:00:00.086199250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:856:_priv_gst_registry_chunks_load_plugin: desc.package='GStreamer Bad Plug-ins'
0:00:00.086210375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:857:_priv_gst_registry_chunks_load_plugin: desc.origin='Unknown package origin'
0:00:00.086221500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:858:_priv_gst_registry_chunks_load_plugin: desc.datetime=2018-03-19
0:00:00.086236000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:466:gst_registry_add_plugin:<registry0> adding plugin 0x3d11e170 for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgsty4mdec.so"
0:00:00.086253000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:479:gst_registry_add_plugin:<registry0> emitting plugin-added for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgsty4mdec.so"
0:00:00.086276375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:879:_priv_gst_registry_chunks_load_plugin: Added plugin 'y4mdec' plugin with 1 features from binary registry
0:00:00.086291125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'y4mdec' feature 'y4mdec' typename : 'GstElementFactory'
0:00:00.086319125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb46f2110
0:00:00.086336375 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.086349250 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.086363250 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.086375625 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.086389125 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.086401500 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.086415375 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.086427875 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.086441125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.086453125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46f21f0
0:00:00.086475500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.086489125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46f2298
0:00:00.086502250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.086518750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d11db40 (y4mdec)
0:00:00.086535625 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<y4mdec> set parent (ref and sink)
0:00:00.086549750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for y4mdec
0:00:00.086562750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature y4mdec, plugin 0x3d11e170 y4mdec
0:00:00.086576875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrybinary.c:606:priv_gst_registry_binary_read_cache: reading binary registry 127695(1f2cf)/405909
0:00:00.086590125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:829:_priv_gst_registry_chunks_load_plugin: Reading/casting for GstRegistryChunkPluginElement at address 0xffffb46f22d0
0:00:00.086618000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:850:_priv_gst_registry_chunks_load_plugin: read strings for name='navigationtest'
0:00:00.086632250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:851:_priv_gst_registry_chunks_load_plugin: desc.description='Template for a video filter'
0:00:00.086654750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:852:_priv_gst_registry_chunks_load_plugin: filename='/data/halley/gst-sdk/lib/gstreamer-1.0/libgstnavigationtest.so'
0:00:00.086667625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:853:_priv_gst_registry_chunks_load_plugin: desc.version='1.14.0'
0:00:00.086678750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:854:_priv_gst_registry_chunks_load_plugin: desc.license='LGPL'
0:00:00.086689750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:855:_priv_gst_registry_chunks_load_plugin: desc.source='gst-plugins-good'
0:00:00.086701250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:856:_priv_gst_registry_chunks_load_plugin: desc.package='GStreamer Good Plug-ins source release'
0:00:00.086712500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:857:_priv_gst_registry_chunks_load_plugin: desc.origin='Unknown package origin'
0:00:00.086723625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:858:_priv_gst_registry_chunks_load_plugin: desc.datetime=2018-03-19
0:00:00.086738375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:466:gst_registry_add_plugin:<registry0> adding plugin 0x3d11e2a0 for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstnavigationtest.so"
0:00:00.086755375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:479:gst_registry_add_plugin:<registry0> emitting plugin-added for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstnavigationtest.so"
0:00:00.086768500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:879:_priv_gst_registry_chunks_load_plugin: Added plugin 'navigationtest' plugin with 1 features from binary registry
0:00:00.086782250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'navigationtest' feature 'navigationtest' typename : 'GstElementFactory'
0:00:00.086810750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb46f23e0
0:00:00.086828625 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.086841500 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.086855625 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.086868125 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.086881750 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.086894000 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.086908250 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.086920625 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.086933625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.086945875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46f24f0
0:00:00.086960750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.086972375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46f2588
0:00:00.087008375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.087027625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d11dc20 (navigationtest)
0:00:00.087044625 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<navigationtest> set parent (ref and sink)
0:00:00.087058375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for navigationtest
0:00:00.087071125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature navigationtest, plugin 0x3d11e2a0 navigationtest
0:00:00.087085125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrybinary.c:606:priv_gst_registry_binary_read_cache: reading binary registry 128541(1f61d)/405909
0:00:00.087098500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:829:_priv_gst_registry_chunks_load_plugin: Reading/casting for GstRegistryChunkPluginElement at address 0xffffb46f2620
0:00:00.087126875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:850:_priv_gst_registry_chunks_load_plugin: read strings for name='adpcmenc'
0:00:00.087141250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:851:_priv_gst_registry_chunks_load_plugin: desc.description='ADPCM encoder'
0:00:00.087152375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:852:_priv_gst_registry_chunks_load_plugin: filename='/data/halley/gst-sdk/lib/gstreamer-1.0/libgstadpcmenc.so'
0:00:00.087163875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:853:_priv_gst_registry_chunks_load_plugin: desc.version='1.14.0'
0:00:00.087174875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:854:_priv_gst_registry_chunks_load_plugin: desc.license='LGPL'
0:00:00.087185750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:855:_priv_gst_registry_chunks_load_plugin: desc.source='gst-plugins-bad'
0:00:00.087196875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:856:_priv_gst_registry_chunks_load_plugin: desc.package='GStreamer Bad Plug-ins source release'
0:00:00.087208375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:857:_priv_gst_registry_chunks_load_plugin: desc.origin='Unknown package origin'
0:00:00.087219750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:858:_priv_gst_registry_chunks_load_plugin: desc.datetime=2018-03-19
0:00:00.087234500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:466:gst_registry_add_plugin:<registry0> adding plugin 0x3d11e3d0 for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstadpcmenc.so"
0:00:00.087251875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:479:gst_registry_add_plugin:<registry0> emitting plugin-added for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstadpcmenc.so"
0:00:00.087265000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:879:_priv_gst_registry_chunks_load_plugin: Added plugin 'adpcmenc' plugin with 1 features from binary registry
0:00:00.087278625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'adpcmenc' feature 'adpcmenc' typename : 'GstElementFactory'
0:00:00.087306250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb46f2708
0:00:00.087323500 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.087336250 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.087350250 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.087380375 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.087395625 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.087408000 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.087422000 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.087434500 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.087448375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.087460625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46f27f0
0:00:00.087474625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.087486250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46f2870
0:00:00.087500500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.087512500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:643:gst_registry_chunks_load_feature: Reading 1 Interfaces at address 0xffffb46f28f2
0:00:00.087530500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d11dd00 (adpcmenc)
0:00:00.087547125 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<adpcmenc> set parent (ref and sink)
0:00:00.087560625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for adpcmenc
0:00:00.087573375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature adpcmenc, plugin 0x3d11e3d0 adpcmenc
0:00:00.087587000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrybinary.c:606:priv_gst_registry_binary_read_cache: reading binary registry 129276(1f8fc)/405909
0:00:00.087600250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:829:_priv_gst_registry_chunks_load_plugin: Reading/casting for GstRegistryChunkPluginElement at address 0xffffb46f2900
0:00:00.087629000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:850:_priv_gst_registry_chunks_load_plugin: read strings for name='videoparsersbad'
0:00:00.087643125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:851:_priv_gst_registry_chunks_load_plugin: desc.description='videoparsers'
0:00:00.087654625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:852:_priv_gst_registry_chunks_load_plugin: filename='/data/halley/gst-sdk/lib/gstreamer-1.0/libgstvideoparsersbad.so'
0:00:00.087666250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:853:_priv_gst_registry_chunks_load_plugin: desc.version='1.14.0'
0:00:00.087677375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:854:_priv_gst_registry_chunks_load_plugin: desc.license='LGPL'
0:00:00.087688500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:855:_priv_gst_registry_chunks_load_plugin: desc.source='gst-plugins-bad'
0:00:00.087699500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:856:_priv_gst_registry_chunks_load_plugin: desc.package='GStreamer Bad Plug-ins source release'
0:00:00.087710625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:857:_priv_gst_registry_chunks_load_plugin: desc.origin='Unknown package origin'
0:00:00.087732250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:858:_priv_gst_registry_chunks_load_plugin: desc.datetime=2018-03-19
0:00:00.087748250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:466:gst_registry_add_plugin:<registry0> adding plugin 0x3d11e500 for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstvideoparsersbad.so"
0:00:00.087765500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:479:gst_registry_add_plugin:<registry0> emitting plugin-added for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstvideoparsersbad.so"
0:00:00.087778750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:879:_priv_gst_registry_chunks_load_plugin: Added plugin 'videoparsersbad' plugin with 8 features from binary registry
0:00:00.087797875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'videoparsersbad' feature 'h263parse' typename : 'GstElementFactory'
0:00:00.087826625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb46f29f8
0:00:00.087844750 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.087857375 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.087871250 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.087883625 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.087897125 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.087909250 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.087923000 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.087935375 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.087949500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.087963000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46f2b08
0:00:00.087977500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.087989375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46f2b78
0:00:00.088003000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.088019000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d11dde0 (h263parse)
0:00:00.088035625 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<h263parse> set parent (ref and sink)
0:00:00.088049250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for h263parse
0:00:00.088061875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature h263parse, plugin 0x3d11e500 videoparsersbad
0:00:00.088076125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'videoparsersbad' feature 'h264parse' typename : 'GstElementFactory'
0:00:00.088115500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb46f2bc8
0:00:00.088133375 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.088146000 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.088159750 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.088172250 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.088186000 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.088198250 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.088212125 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.088224500 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.088238000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.088250000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46f2cb8
0:00:00.088264625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.088276500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46f2d38
0:00:00.088289875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.088306125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d11dec0 (h264parse)
0:00:00.088323500 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<h264parse> set parent (ref and sink)
0:00:00.088337125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for h264parse
0:00:00.088350000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature h264parse, plugin 0x3d11e500 videoparsersbad
0:00:00.088364000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'videoparsersbad' feature 'diracparse' typename : 'GstElementFactory'
0:00:00.088416625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb46f2d70
0:00:00.088435000 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.088448000 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.088462250 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.088475125 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.088488875 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.088513750 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.088529625 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.088542250 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.088555625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.088567875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46f2e40
0:00:00.088585000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.088597000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46f2fa0
0:00:00.088610375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.088627250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d124850 (diracparse)
0:00:00.088644375 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<diracparse> set parent (ref and sink)
0:00:00.088658500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for diracparse
0:00:00.088671375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature diracparse, plugin 0x3d11e500 videoparsersbad
0:00:00.088685500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'videoparsersbad' feature 'mpegvideoparse' typename : 'GstElementFactory'
0:00:00.088714125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb46f2fe0
0:00:00.088736375 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.088750375 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.088764875 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.088777750 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.088792000 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.088804500 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.088819125 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.088831500 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.088846500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.088858750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46f3170
0:00:00.088873250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.088885125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46f31d8
0:00:00.088909625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.088927875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d124930 (mpegvideoparse)
0:00:00.088950375 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<mpegvideoparse> set parent (ref and sink)
0:00:00.088965375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for mpegvideoparse
0:00:00.088978375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature mpegvideoparse, plugin 0x3d11e500 videoparsersbad
0:00:00.088992500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'videoparsersbad' feature 'mpeg4videoparse' typename : 'GstElementFactory'
0:00:00.089021125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb46f3250
0:00:00.089038625 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.089070500 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.089085625 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.089098250 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.089111750 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.089124375 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.089138750 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.089152000 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.089166000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.089178250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46f3360
0:00:00.089193500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.089205625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46f3450
0:00:00.089220125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.089236625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d124a10 (mpeg4videoparse)
0:00:00.089254500 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<mpeg4videoparse> set parent (ref and sink)
0:00:00.089268500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for mpeg4videoparse
0:00:00.089281500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature mpeg4videoparse, plugin 0x3d11e500 videoparsersbad
0:00:00.089296500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'videoparsersbad' feature 'pngparse' typename : 'GstElementFactory'
0:00:00.089338375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb46f34e0
0:00:00.089356500 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.089369500 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.089383375 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.089396250 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.089410375 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.089422625 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.089436500 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.089449750 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.089463750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.089476500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46f35b8
0:00:00.089491250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.089503750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46f3628
0:00:00.089517500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.089535000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d124af0 (pngparse)
0:00:00.089552750 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<pngparse> set parent (ref and sink)
0:00:00.089567000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for pngparse
0:00:00.089580125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature pngparse, plugin 0x3d11e500 videoparsersbad
0:00:00.089594250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'videoparsersbad' feature 'h265parse' typename : 'GstElementFactory'
0:00:00.089624500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb46f3660
0:00:00.089642250 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.089655125 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.089668750 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.089681375 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.089695000 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.089718500 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.089734000 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.089746875 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.089761000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.089773875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46f3750
0:00:00.089788375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.089800250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46f37d8
0:00:00.089813125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.089829750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d124bd0 (h265parse)
0:00:00.089847125 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<h265parse> set parent (ref and sink)
0:00:00.089861000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for h265parse
0:00:00.089873875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature h265parse, plugin 0x3d11e500 videoparsersbad
0:00:00.089888125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'videoparsersbad' feature 'vc1parse' typename : 'GstElementFactory'
0:00:00.089924000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb46f3810
0:00:00.089941875 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.089954625 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.089968625 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.089982375 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.089996250 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.090008500 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.090022250 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.090035500 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.090049500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.090061750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46f3900
0:00:00.090077500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.090089625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46f3a20
0:00:00.090113500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.090132250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d124cb0 (vc1parse)
0:00:00.090150000 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<vc1parse> set parent (ref and sink)
0:00:00.090163750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for vc1parse
0:00:00.090176750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature vc1parse, plugin 0x3d11e500 videoparsersbad
0:00:00.090191875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrybinary.c:606:priv_gst_registry_binary_read_cache: reading binary registry 133739(20a6b)/405909
0:00:00.090206000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:829:_priv_gst_registry_chunks_load_plugin: Reading/casting for GstRegistryChunkPluginElement at address 0xffffb46f3a70
0:00:00.090237375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:850:_priv_gst_registry_chunks_load_plugin: read strings for name='videofilter'
0:00:00.090251750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:851:_priv_gst_registry_chunks_load_plugin: desc.description='Video filters plugin'
0:00:00.090264000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:852:_priv_gst_registry_chunks_load_plugin: filename='/data/halley/gst-sdk/lib/gstreamer-1.0/libgstvideofilter.so'
0:00:00.090275500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:853:_priv_gst_registry_chunks_load_plugin: desc.version='1.14.0'
0:00:00.090286500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:854:_priv_gst_registry_chunks_load_plugin: desc.license='LGPL'
0:00:00.090297375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:855:_priv_gst_registry_chunks_load_plugin: desc.source='gst-plugins-good'
0:00:00.090308750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:856:_priv_gst_registry_chunks_load_plugin: desc.package='GStreamer Good Plug-ins source release'
0:00:00.090320125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:857:_priv_gst_registry_chunks_load_plugin: desc.origin='Unknown package origin'
0:00:00.090331375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:858:_priv_gst_registry_chunks_load_plugin: desc.datetime=2018-03-19
0:00:00.090346375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:466:gst_registry_add_plugin:<registry0> adding plugin 0x3d11e630 for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstvideofilter.so"
0:00:00.090364625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:479:gst_registry_add_plugin:<registry0> emitting plugin-added for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstvideofilter.so"
0:00:00.090378125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:879:_priv_gst_registry_chunks_load_plugin: Added plugin 'videofilter' plugin with 4 features from binary registry
0:00:00.090392875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'videofilter' feature 'gamma' typename : 'GstElementFactory'
0:00:00.090421500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb46f3b68
0:00:00.090439125 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.090451750 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.090476375 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.090490000 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.090503750 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.090516125 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.090530250 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.090543500 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.090556875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.090569250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46f3c58
0:00:00.090585000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.090596875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46f3d70
0:00:00.090611250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.090627500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d124d90 (gamma)
0:00:00.090645375 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<gamma> set parent (ref and sink)
0:00:00.090659625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for gamma
0:00:00.090672750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature gamma, plugin 0x3d11e630 videofilter
0:00:00.090687375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'videofilter' feature 'videobalance' typename : 'GstElementFactory'
0:00:00.090724625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb46f3ea8
0:00:00.090743000 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.090755750 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.090769500 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.090782000 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.090795625 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.090808000 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.090822750 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.090835375 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.090849000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.090876125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46f3fb0
0:00:00.090893500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.090905750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46f40d8
0:00:00.090920375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.090932125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:643:gst_registry_chunks_load_feature: Reading 1 Interfaces at address 0xffffb46f41ff
0:00:00.090951375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d124e70 (videobalance)
0:00:00.090969125 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<videobalance> set parent (ref and sink)
0:00:00.090982750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for videobalance
0:00:00.090995500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature videobalance, plugin 0x3d11e630 videofilter
0:00:00.091010250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'videofilter' feature 'videoflip' typename : 'GstElementFactory'
0:00:00.091042125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb46f4230
0:00:00.091059125 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.091071875 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.091085875 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.091098500 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.091112125 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.091125750 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.091139875 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.091153000 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.091166750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.091179125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46f4308
0:00:00.091195375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.091207375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46f4430
0:00:00.091222125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.091234000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:643:gst_registry_chunks_load_feature: Reading 1 Interfaces at address 0xffffb46f4556
0:00:00.091264750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d1268c0 (videoflip)
0:00:00.091283375 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<videoflip> set parent (ref and sink)
0:00:00.091297625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for videoflip
0:00:00.091310625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature videoflip, plugin 0x3d11e630 videofilter
0:00:00.091324875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'videofilter' feature 'videomedian' typename : 'GstElementFactory'
0:00:00.091354625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb46f4588
0:00:00.091372000 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.091384750 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.091398750 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.091411500 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.091425250 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.091437750 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.091451500 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.091463750 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.091477000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.091489000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46f4670
0:00:00.091507125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.091519750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46f4710
0:00:00.091533375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.091549625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d1269a0 (videomedian)
0:00:00.091566625 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<videomedian> set parent (ref and sink)
0:00:00.091580375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for videomedian
0:00:00.091593125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature videomedian, plugin 0x3d11e630 videofilter
0:00:00.091608125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrybinary.c:606:priv_gst_registry_binary_read_cache: reading binary registry 137135(217af)/405909
0:00:00.091622375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:829:_priv_gst_registry_chunks_load_plugin: Reading/casting for GstRegistryChunkPluginElement at address 0xffffb46f47b0
0:00:00.091727250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:850:_priv_gst_registry_chunks_load_plugin: read strings for name='pbtypes'
0:00:00.091743250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:851:_priv_gst_registry_chunks_load_plugin: desc.description='gst-plugins-base dynamic types'
0:00:00.091755125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:852:_priv_gst_registry_chunks_load_plugin: filename='/data/halley/gst-sdk/lib/gstreamer-1.0/libgstpbtypes.so'
0:00:00.091766750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:853:_priv_gst_registry_chunks_load_plugin: desc.version='1.14.0'
0:00:00.091777875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:854:_priv_gst_registry_chunks_load_plugin: desc.license='LGPL'
0:00:00.091788875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:855:_priv_gst_registry_chunks_load_plugin: desc.source='gst-plugins-base'
0:00:00.091800250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:856:_priv_gst_registry_chunks_load_plugin: desc.package='GStreamer Base Plug-ins source release'
0:00:00.091812000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:857:_priv_gst_registry_chunks_load_plugin: desc.origin='Unknown package origin'
0:00:00.091823625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:858:_priv_gst_registry_chunks_load_plugin: desc.datetime=2018-03-19
0:00:00.091839125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:466:gst_registry_add_plugin:<registry0> adding plugin 0x3d11e760 for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstpbtypes.so"
0:00:00.091857375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:479:gst_registry_add_plugin:<registry0> emitting plugin-added for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstpbtypes.so"
0:00:00.091870750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:879:_priv_gst_registry_chunks_load_plugin: Added plugin 'pbtypes' plugin with 1 features from binary registry
0:00:00.091884750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'pbtypes' feature 'GstVideoMultiviewFlagsSet' typename : 'GstDynamicTypeFactory'
0:00:00.091929250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d0be820 (GstVideoMultiviewFlagsSet)
0:00:00.091949875 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<GstVideoMultiviewFlagsSet> set parent (ref and sink)
0:00:00.091964500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for GstVideoMultiviewFlagsSet
0:00:00.091977750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature GstVideoMultiviewFlagsSet, plugin 0x3d11e760 pbtypes
0:00:00.091992125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrybinary.c:606:priv_gst_registry_binary_read_cache: reading binary registry 137424(218d0)/405909
0:00:00.092006125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:829:_priv_gst_registry_chunks_load_plugin: Reading/casting for GstRegistryChunkPluginElement at address 0xffffb46f48d0
0:00:00.092035250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:850:_priv_gst_registry_chunks_load_plugin: read strings for name='videoframe_audiolevel'
0:00:00.092049250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:851:_priv_gst_registry_chunks_load_plugin: desc.description='Video frame-synchronized audio level'
0:00:00.092061500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:852:_priv_gst_registry_chunks_load_plugin: filename='/data/halley/gst-sdk/lib/gstreamer-1.0/libgstvideoframe_audiolevel.so'
0:00:00.092084125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:853:_priv_gst_registry_chunks_load_plugin: desc.version='1.14.0'
0:00:00.092096750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:854:_priv_gst_registry_chunks_load_plugin: desc.license='LGPL'
0:00:00.092107875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:855:_priv_gst_registry_chunks_load_plugin: desc.source='gst-plugins-bad'
0:00:00.092119000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:856:_priv_gst_registry_chunks_load_plugin: desc.package='GStreamer Bad Plug-ins source release'
0:00:00.092130625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:857:_priv_gst_registry_chunks_load_plugin: desc.origin='Unknown package origin'
0:00:00.092142000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:858:_priv_gst_registry_chunks_load_plugin: desc.datetime=2018-03-19
0:00:00.092157000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:466:gst_registry_add_plugin:<registry0> adding plugin 0x3d11e890 for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstvideoframe_audiolevel.so"
0:00:00.092175000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:479:gst_registry_add_plugin:<registry0> emitting plugin-added for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstvideoframe_audiolevel.so"
0:00:00.092188500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:879:_priv_gst_registry_chunks_load_plugin: Added plugin 'videoframe_audiolevel' plugin with 1 features from binary registry
0:00:00.092202375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'videoframe_audiolevel' feature 'videoframe-audiolevel' typename : 'GstElementFactory'
0:00:00.092232250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb46f49f8
0:00:00.092250500 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.092263625 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.092277750 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.092290500 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.092304375 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.092316750 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.092331250 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.092343875 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.092357750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=4
0:00:00.092370125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46f4b08
0:00:00.092384375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template asrc
0:00:00.092396500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46f4b98
0:00:00.092410250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template asink
0:00:00.092436125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46f4c28
0:00:00.092451500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template vsrc
0:00:00.092463750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46f4c48
0:00:00.092476750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template vsink
0:00:00.092493625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d126a80 (videoframe-audiolevel)
0:00:00.092510875 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<videoframe-audiolevel> set parent (ref and sink)
0:00:00.092525250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for videoframe-audiolevel
0:00:00.092538500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature videoframe-audiolevel, plugin 0x3d11e890 videoframe_audiolevel
0:00:00.092552875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrybinary.c:606:priv_gst_registry_binary_read_cache: reading binary registry 138338(21c62)/405909
0:00:00.092566625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:829:_priv_gst_registry_chunks_load_plugin: Reading/casting for GstRegistryChunkPluginElement at address 0xffffb46f4c68
0:00:00.092594875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:850:_priv_gst_registry_chunks_load_plugin: read strings for name='mpegtsmux'
0:00:00.092609375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:851:_priv_gst_registry_chunks_load_plugin: desc.description='MPEG-TS muxer'
0:00:00.092620625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:852:_priv_gst_registry_chunks_load_plugin: filename='/data/halley/gst-sdk/lib/gstreamer-1.0/libgstmpegtsmux.so'
0:00:00.092632625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:853:_priv_gst_registry_chunks_load_plugin: desc.version='1.14.0'
0:00:00.092643625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:854:_priv_gst_registry_chunks_load_plugin: desc.license='LGPL'
0:00:00.092654750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:855:_priv_gst_registry_chunks_load_plugin: desc.source='gst-plugins-bad'
0:00:00.092666000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:856:_priv_gst_registry_chunks_load_plugin: desc.package='GStreamer Bad Plug-ins source release'
0:00:00.092677375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:857:_priv_gst_registry_chunks_load_plugin: desc.origin='Unknown package origin'
0:00:00.092688750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:858:_priv_gst_registry_chunks_load_plugin: desc.datetime=2018-03-19
0:00:00.092703375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:466:gst_registry_add_plugin:<registry0> adding plugin 0x3d11e9c0 for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstmpegtsmux.so"
0:00:00.092720875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:479:gst_registry_add_plugin:<registry0> emitting plugin-added for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstmpegtsmux.so"
0:00:00.092734000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:879:_priv_gst_registry_chunks_load_plugin: Added plugin 'mpegtsmux' plugin with 1 features from binary registry
0:00:00.092747875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'mpegtsmux' feature 'mpegtsmux' typename : 'GstElementFactory'
0:00:00.092787625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb46f4d58
0:00:00.092805875 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.092818625 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.092832875 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.092845625 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.092859250 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.092871500 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.092886000 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.092898750 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.092912125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.092924500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46f4e58
0:00:00.092948000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink_%d
0:00:00.092960125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46f5210
0:00:00.092973625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.092989875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d126b60 (mpegtsmux)
0:00:00.093006750 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<mpegtsmux> set parent (ref and sink)
0:00:00.093020750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for mpegtsmux
0:00:00.093033500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature mpegtsmux, plugin 0x3d11e9c0 mpegtsmux
0:00:00.093063000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrybinary.c:606:priv_gst_registry_binary_read_cache: reading binary registry 139875(22263)/405909
0:00:00.093078250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:829:_priv_gst_registry_chunks_load_plugin: Reading/casting for GstRegistryChunkPluginElement at address 0xffffb46f5268
0:00:00.093108000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:850:_priv_gst_registry_chunks_load_plugin: read strings for name='smoothstreaming'
0:00:00.093122125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:851:_priv_gst_registry_chunks_load_plugin: desc.description='Microsoft's Smooth Streaming format support '
0:00:00.093134125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:852:_priv_gst_registry_chunks_load_plugin: filename='/data/halley/gst-sdk/lib/gstreamer-1.0/libgstsmoothstreaming.so'
0:00:00.093145750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:853:_priv_gst_registry_chunks_load_plugin: desc.version='1.14.0'
0:00:00.093156750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:854:_priv_gst_registry_chunks_load_plugin: desc.license='LGPL'
0:00:00.093178375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:855:_priv_gst_registry_chunks_load_plugin: desc.source='gst-plugins-bad'
0:00:00.093191125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:856:_priv_gst_registry_chunks_load_plugin: desc.package='GStreamer Bad Plug-ins source release'
0:00:00.093202375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:857:_priv_gst_registry_chunks_load_plugin: desc.origin='Unknown package origin'
0:00:00.093213625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:858:_priv_gst_registry_chunks_load_plugin: desc.datetime=2018-03-19
0:00:00.093228625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:466:gst_registry_add_plugin:<registry0> adding plugin 0x3d11eaf0 for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstsmoothstreaming.so"
0:00:00.093246000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:479:gst_registry_add_plugin:<registry0> emitting plugin-added for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstsmoothstreaming.so"
0:00:00.093259375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:879:_priv_gst_registry_chunks_load_plugin: Added plugin 'smoothstreaming' plugin with 1 features from binary registry
0:00:00.093273250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'smoothstreaming' feature 'mssdemux' typename : 'GstElementFactory'
0:00:00.093302375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb46f5380
0:00:00.093324750 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.093338125 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.093352500 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.093365375 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.093379375 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.093391750 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.093406750 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.093419125 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.093432625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=3
0:00:00.093444750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46f54b8
0:00:00.093458125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.093470125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46f54e8
0:00:00.093483375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template video_%02u
0:00:00.093495375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46f5500
0:00:00.093508125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template audio_%02u
0:00:00.093530250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:643:gst_registry_chunks_load_feature: Reading 1 Interfaces at address 0xffffb46f5517
0:00:00.093550250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d126c40 (mssdemux)
0:00:00.093567375 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<mssdemux> set parent (ref and sink)
0:00:00.093581125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for mssdemux
0:00:00.093594125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature mssdemux, plugin 0x3d11eaf0 smoothstreaming
0:00:00.093608250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrybinary.c:606:priv_gst_registry_binary_read_cache: reading binary registry 140581(22525)/405909
0:00:00.093621750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:829:_priv_gst_registry_chunks_load_plugin: Reading/casting for GstRegistryChunkPluginElement at address 0xffffb46f5528
0:00:00.093650000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:850:_priv_gst_registry_chunks_load_plugin: read strings for name='autoconvert'
0:00:00.093664250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:851:_priv_gst_registry_chunks_load_plugin: desc.description='Selects convertor element based on caps'
0:00:00.093676250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:852:_priv_gst_registry_chunks_load_plugin: filename='/data/halley/gst-sdk/lib/gstreamer-1.0/libgstautoconvert.so'
0:00:00.093688000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:853:_priv_gst_registry_chunks_load_plugin: desc.version='1.14.0'
0:00:00.093699125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:854:_priv_gst_registry_chunks_load_plugin: desc.license='LGPL'
0:00:00.093710125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:855:_priv_gst_registry_chunks_load_plugin: desc.source='gst-plugins-bad'
0:00:00.093721375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:856:_priv_gst_registry_chunks_load_plugin: desc.package='GStreamer Bad Plug-ins source release'
0:00:00.093732750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:857:_priv_gst_registry_chunks_load_plugin: desc.origin='Unknown package origin'
0:00:00.093744000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:858:_priv_gst_registry_chunks_load_plugin: desc.datetime=2018-03-19
0:00:00.093758625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:466:gst_registry_add_plugin:<registry0> adding plugin 0x3d11ec20 for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstautoconvert.so"
0:00:00.093776375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:479:gst_registry_add_plugin:<registry0> emitting plugin-added for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstautoconvert.so"
0:00:00.093789625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:879:_priv_gst_registry_chunks_load_plugin: Added plugin 'autoconvert' plugin with 2 features from binary registry
0:00:00.093803250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'autoconvert' feature 'autoconvert' typename : 'GstElementFactory'
0:00:00.093831750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb46f5638
0:00:00.093849500 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.093862375 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.093893750 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.093907875 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.093921500 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.093933750 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.093948250 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.093960875 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.093974375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.093986875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46f5748
0:00:00.093999250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.094011125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46f5758
0:00:00.094023625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.094035500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:643:gst_registry_chunks_load_feature: Reading 1 Interfaces at address 0xffffb46f5769
0:00:00.094053500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d126d20 (autoconvert)
0:00:00.094070875 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<autoconvert> set parent (ref and sink)
0:00:00.094084625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for autoconvert
0:00:00.094097500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature autoconvert, plugin 0x3d11ec20 autoconvert
0:00:00.094111625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'autoconvert' feature 'autovideoconvert' typename : 'GstElementFactory'
0:00:00.094144125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb46f57a0
0:00:00.094162750 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.094175375 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.094189750 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.094202500 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.094216250 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.094228875 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.094243125 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.094255250 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.094282125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.094295625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46f58d0
0:00:00.094308500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.094320250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46f58e0
0:00:00.094332625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.094344250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:643:gst_registry_chunks_load_feature: Reading 1 Interfaces at address 0xffffb46f58f1
0:00:00.094363750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d126e00 (autovideoconvert)
0:00:00.094381500 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<autovideoconvert> set parent (ref and sink)
0:00:00.094395750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for autovideoconvert
0:00:00.094408875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature autovideoconvert, plugin 0x3d11ec20 autoconvert
0:00:00.094423500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrybinary.c:606:priv_gst_registry_binary_read_cache: reading binary registry 141567(228ff)/405909
0:00:00.094437125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:829:_priv_gst_registry_chunks_load_plugin: Reading/casting for GstRegistryChunkPluginElement at address 0xffffb46f5900
0:00:00.094478625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:850:_priv_gst_registry_chunks_load_plugin: read strings for name='autodetect'
0:00:00.094493875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:851:_priv_gst_registry_chunks_load_plugin: desc.description='Plugin contains auto-detection plugins for video/audio in- and outputs'
0:00:00.094506000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:852:_priv_gst_registry_chunks_load_plugin: filename='/data/halley/gst-sdk/lib/gstreamer-1.0/libgstautodetect.so'
0:00:00.094518125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:853:_priv_gst_registry_chunks_load_plugin: desc.version='1.14.0'
0:00:00.094529375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:854:_priv_gst_registry_chunks_load_plugin: desc.license='LGPL'
0:00:00.094540625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:855:_priv_gst_registry_chunks_load_plugin: desc.source='gst-plugins-good'
0:00:00.094552250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:856:_priv_gst_registry_chunks_load_plugin: desc.package='GStreamer Good Plug-ins source release'
0:00:00.094564125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:857:_priv_gst_registry_chunks_load_plugin: desc.origin='Unknown package origin'
0:00:00.094575375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:858:_priv_gst_registry_chunks_load_plugin: desc.datetime=2018-03-19
0:00:00.094590375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:466:gst_registry_add_plugin:<registry0> adding plugin 0x3d11ed50 for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstautodetect.so"
0:00:00.094608250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:479:gst_registry_add_plugin:<registry0> emitting plugin-added for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstautodetect.so"
0:00:00.094632625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:879:_priv_gst_registry_chunks_load_plugin: Added plugin 'autodetect' plugin with 4 features from binary registry
0:00:00.094647625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'autodetect' feature 'autovideosink' typename : 'GstElementFactory'
0:00:00.094676625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb46f5a30
0:00:00.094694250 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.094707250 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.094721375 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.094734000 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.094747625 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.094761250 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.094775875 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.094788375 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.094801875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=1
0:00:00.094814250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46f5b28
0:00:00.094827000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.094838750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:643:gst_registry_chunks_load_feature: Reading 1 Interfaces at address 0xffffb46f5b39
0:00:00.094856625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d126ee0 (autovideosink)
0:00:00.094874000 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<autovideosink> set parent (ref and sink)
0:00:00.094887875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for autovideosink
0:00:00.094900500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature autovideosink, plugin 0x3d11ed50 autodetect
0:00:00.094914875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'autodetect' feature 'autovideosrc' typename : 'GstElementFactory'
0:00:00.094943500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb46f5b68
0:00:00.094961750 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.094974750 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.094988750 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.095001500 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.095025750 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.095039250 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.095053750 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.095066375 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.095080500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=1
0:00:00.095092875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46f5c90
0:00:00.095105875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.095117875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:643:gst_registry_chunks_load_feature: Reading 1 Interfaces at address 0xffffb46f5ca0
0:00:00.095136000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d0c2060 (autovideosrc)
0:00:00.095153125 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<autovideosrc> set parent (ref and sink)
0:00:00.095166875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for autovideosrc
0:00:00.095179750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature autovideosrc, plugin 0x3d11ed50 autodetect
0:00:00.095194250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'autodetect' feature 'autoaudiosink' typename : 'GstElementFactory'
0:00:00.095223000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb46f5cd0
0:00:00.095240875 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.095253750 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.095267625 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.095280375 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.095294000 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.095306500 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.095321000 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.095333625 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.095347000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=1
0:00:00.095359250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46f5dc8
0:00:00.095372000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.095383750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:643:gst_registry_chunks_load_feature: Reading 1 Interfaces at address 0xffffb46f5dd9
0:00:00.095413000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d0c2140 (autoaudiosink)
0:00:00.095430875 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<autoaudiosink> set parent (ref and sink)
0:00:00.095445375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for autoaudiosink
0:00:00.095458250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature autoaudiosink, plugin 0x3d11ed50 autodetect
0:00:00.095472500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'autodetect' feature 'autoaudiosrc' typename : 'GstElementFactory'
0:00:00.095500500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb46f5e08
0:00:00.095518500 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.095531125 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.095545125 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.095557625 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.095571125 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.095583375 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.095598000 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.095610750 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.095624750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=1
0:00:00.095637000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46f5f30
0:00:00.095650125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.095662000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:643:gst_registry_chunks_load_feature: Reading 1 Interfaces at address 0xffffb46f5f40
0:00:00.095680125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d0c2220 (autoaudiosrc)
0:00:00.095697250 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<autoaudiosrc> set parent (ref and sink)
0:00:00.095711375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for autoaudiosrc
0:00:00.095724375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature autoaudiosrc, plugin 0x3d11ed50 autodetect
0:00:00.095738375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrybinary.c:606:priv_gst_registry_binary_read_cache: reading binary registry 143182(22f4e)/405909
0:00:00.095751875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:829:_priv_gst_registry_chunks_load_plugin: Reading/casting for GstRegistryChunkPluginElement at address 0xffffb46f5f50
0:00:00.095780500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:850:_priv_gst_registry_chunks_load_plugin: read strings for name='festival'
0:00:00.095805375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:851:_priv_gst_registry_chunks_load_plugin: desc.description='Synthesizes plain text into audio'
0:00:00.095819250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:852:_priv_gst_registry_chunks_load_plugin: filename='/data/halley/gst-sdk/lib/gstreamer-1.0/libgstfestival.so'
0:00:00.095831125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:853:_priv_gst_registry_chunks_load_plugin: desc.version='1.14.0'
0:00:00.095842250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:854:_priv_gst_registry_chunks_load_plugin: desc.license='LGPL'
0:00:00.095853125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:855:_priv_gst_registry_chunks_load_plugin: desc.source='gst-plugins-bad'
0:00:00.095864250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:856:_priv_gst_registry_chunks_load_plugin: desc.package='GStreamer Bad Plug-ins source release'
0:00:00.095875875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:857:_priv_gst_registry_chunks_load_plugin: desc.origin='Unknown package origin'
0:00:00.095887250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:858:_priv_gst_registry_chunks_load_plugin: desc.datetime=2018-03-19
0:00:00.095902125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:466:gst_registry_add_plugin:<registry0> adding plugin 0x3d11ee80 for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstfestival.so"
0:00:00.095919750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:479:gst_registry_add_plugin:<registry0> emitting plugin-added for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstfestival.so"
0:00:00.095933000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:879:_priv_gst_registry_chunks_load_plugin: Added plugin 'festival' plugin with 1 features from binary registry
0:00:00.095946875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'festival' feature 'festival' typename : 'GstElementFactory'
0:00:00.095975375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb46f6050
0:00:00.095992875 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.096005750 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.096020125 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.096032750 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.096046375 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.096058625 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.096072750 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.096085250 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.096098750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.096110875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46f6148
0:00:00.096123875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.096146375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46f6178
0:00:00.096161500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.096178250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d0c2300 (festival)
0:00:00.096197875 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<festival> set parent (ref and sink)
0:00:00.096211750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for festival
0:00:00.096224500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature festival, plugin 0x3d11ee80 festival
0:00:00.096238500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrybinary.c:606:priv_gst_registry_binary_read_cache: reading binary registry 143760(23190)/405909
0:00:00.096252000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:829:_priv_gst_registry_chunks_load_plugin: Reading/casting for GstRegistryChunkPluginElement at address 0xffffb46f6190
0:00:00.096279875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:850:_priv_gst_registry_chunks_load_plugin: read strings for name='midi'
0:00:00.096294125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:851:_priv_gst_registry_chunks_load_plugin: desc.description='Parse MIDI files'
0:00:00.096305750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:852:_priv_gst_registry_chunks_load_plugin: filename='/data/halley/gst-sdk/lib/gstreamer-1.0/libgstmidi.so'
0:00:00.096317500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:853:_priv_gst_registry_chunks_load_plugin: desc.version='1.14.0'
0:00:00.096328750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:854:_priv_gst_registry_chunks_load_plugin: desc.license='LGPL'
0:00:00.096339875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:855:_priv_gst_registry_chunks_load_plugin: desc.source='gst-plugins-bad'
0:00:00.096351375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:856:_priv_gst_registry_chunks_load_plugin: desc.package='GStreamer Bad Plug-ins source release'
0:00:00.096363250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:857:_priv_gst_registry_chunks_load_plugin: desc.origin='Unknown package origin'
0:00:00.096374875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:858:_priv_gst_registry_chunks_load_plugin: desc.datetime=2018-03-19
0:00:00.096389750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:466:gst_registry_add_plugin:<registry0> adding plugin 0x3d132020 for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstmidi.so"
0:00:00.096407125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:479:gst_registry_add_plugin:<registry0> emitting plugin-added for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstmidi.so"
0:00:00.096420500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:879:_priv_gst_registry_chunks_load_plugin: Added plugin 'midi' plugin with 1 features from binary registry
0:00:00.096433875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'midi' feature 'midiparse' typename : 'GstElementFactory'
0:00:00.096462125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb46f6278
0:00:00.096479625 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.096502625 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.096518000 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.096530750 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.096544500 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.096557000 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.096571250 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.096583875 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.096597375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.096609500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46f6348
0:00:00.096622375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.096634250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46f6368
0:00:00.096647500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.096664000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d0c23e0 (midiparse)
0:00:00.096681750 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<midiparse> set parent (ref and sink)
0:00:00.096695875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for midiparse
0:00:00.096708750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature midiparse, plugin 0x3d132020 midi
0:00:00.096723125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrybinary.c:606:priv_gst_registry_binary_read_cache: reading binary registry 144273(23391)/405909
0:00:00.096737125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:829:_priv_gst_registry_chunks_load_plugin: Reading/casting for GstRegistryChunkPluginElement at address 0xffffb46f6398
0:00:00.096765750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:850:_priv_gst_registry_chunks_load_plugin: read strings for name='faceoverlay'
0:00:00.096780125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:851:_priv_gst_registry_chunks_load_plugin: desc.description='SVG Face Overlay'
0:00:00.096791750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:852:_priv_gst_registry_chunks_load_plugin: filename='/data/halley/gst-sdk/lib/gstreamer-1.0/libgstfaceoverlay.so'
0:00:00.096803500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:853:_priv_gst_registry_chunks_load_plugin: desc.version='1.14.0'
0:00:00.096814625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:854:_priv_gst_registry_chunks_load_plugin: desc.license='LGPL'
0:00:00.096825875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:855:_priv_gst_registry_chunks_load_plugin: desc.source='gst-plugins-bad'
0:00:00.096837375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:856:_priv_gst_registry_chunks_load_plugin: desc.package='GStreamer Bad Plug-ins source release'
0:00:00.096863750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:857:_priv_gst_registry_chunks_load_plugin: desc.origin='Unknown package origin'
0:00:00.096876875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:858:_priv_gst_registry_chunks_load_plugin: desc.datetime=2018-03-19
0:00:00.096892500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:466:gst_registry_add_plugin:<registry0> adding plugin 0x3d132150 for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstfaceoverlay.so"
0:00:00.096910750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:479:gst_registry_add_plugin:<registry0> emitting plugin-added for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstfaceoverlay.so"
0:00:00.096924000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:879:_priv_gst_registry_chunks_load_plugin: Added plugin 'faceoverlay' plugin with 1 features from binary registry
0:00:00.096938875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'faceoverlay' feature 'faceoverlay' typename : 'GstElementFactory'
0:00:00.096981500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb46f6490
0:00:00.097000375 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.097014750 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.097029000 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.097059375 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.097080375 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.097093250 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.097109125 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.097121875 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.097136125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.097148500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46f6598
0:00:00.097164125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.097176375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46f6638
0:00:00.097191250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.097203500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:643:gst_registry_chunks_load_feature: Reading 1 Interfaces at address 0xffffb46f66d1
0:00:00.097226000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d0c24c0 (faceoverlay)
0:00:00.097245125 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<faceoverlay> set parent (ref and sink)
0:00:00.097259500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for faceoverlay
0:00:00.097273875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature faceoverlay, plugin 0x3d132150 faceoverlay
0:00:00.097311500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrybinary.c:606:priv_gst_registry_binary_read_cache: reading binary registry 145119(236df)/405909
0:00:00.097328250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:829:_priv_gst_registry_chunks_load_plugin: Reading/casting for GstRegistryChunkPluginElement at address 0xffffb46f66e0
0:00:00.097368500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:850:_priv_gst_registry_chunks_load_plugin: read strings for name='png'
0:00:00.097383750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:851:_priv_gst_registry_chunks_load_plugin: desc.description='PNG plugin library'
0:00:00.097395625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:852:_priv_gst_registry_chunks_load_plugin: filename='/data/halley/gst-sdk/lib/gstreamer-1.0/libgstpng.so'
0:00:00.097407625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:853:_priv_gst_registry_chunks_load_plugin: desc.version='1.14.0'
0:00:00.097418875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:854:_priv_gst_registry_chunks_load_plugin: desc.license='LGPL'
0:00:00.097430000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:855:_priv_gst_registry_chunks_load_plugin: desc.source='gst-plugins-good'
0:00:00.097441500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:856:_priv_gst_registry_chunks_load_plugin: desc.package='GStreamer Good Plug-ins source release'
0:00:00.097453500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:857:_priv_gst_registry_chunks_load_plugin: desc.origin='Unknown package origin'
0:00:00.097465000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:858:_priv_gst_registry_chunks_load_plugin: desc.datetime=2018-03-19
0:00:00.097481375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:466:gst_registry_add_plugin:<registry0> adding plugin 0x3d132280 for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstpng.so"
0:00:00.097500250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:479:gst_registry_add_plugin:<registry0> emitting plugin-added for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstpng.so"
0:00:00.097514875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:879:_priv_gst_registry_chunks_load_plugin: Added plugin 'png' plugin with 2 features from binary registry
0:00:00.097529875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'png' feature 'pngdec' typename : 'GstElementFactory'
0:00:00.097564875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb46f67c8
0:00:00.097591375 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.097606000 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.097622125 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.097634875 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.097649375 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.097661750 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.097676500 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.097689000 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.097725000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.097739125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46f68b8
0:00:00.097758250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.097770875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46f6970
0:00:00.097784250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.097805625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d0c25a0 (pngdec)
0:00:00.097824250 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<pngdec> set parent (ref and sink)
0:00:00.097839125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for pngdec
0:00:00.097852875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature pngdec, plugin 0x3d132280 png
0:00:00.097867625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'png' feature 'pngenc' typename : 'GstElementFactory'
0:00:00.097908500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb46f69a0
0:00:00.097927500 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.097941000 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.097955875 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.097968625 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.097983000 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.097995375 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.098010000 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.098023250 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.098037125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.098049875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46f6a90
0:00:00.098065375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.098077500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46f6b48
0:00:00.098092125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.098104375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:643:gst_registry_chunks_load_feature: Reading 1 Interfaces at address 0xffffb46f6bc2
0:00:00.098144625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d0c2680 (pngenc)
0:00:00.098163250 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<pngenc> set parent (ref and sink)
0:00:00.098177625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for pngenc
0:00:00.098190500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature pngenc, plugin 0x3d132280 png
0:00:00.098205500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrybinary.c:606:priv_gst_registry_binary_read_cache: reading binary registry 146380(23bcc)/405909
0:00:00.098220375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:829:_priv_gst_registry_chunks_load_plugin: Reading/casting for GstRegistryChunkPluginElement at address 0xffffb46f6bd0
0:00:00.098258875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:850:_priv_gst_registry_chunks_load_plugin: read strings for name='rtponvif'
0:00:00.098274125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:851:_priv_gst_registry_chunks_load_plugin: desc.description='ONVIF Streaming features'
0:00:00.098286250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:852:_priv_gst_registry_chunks_load_plugin: filename='/data/halley/gst-sdk/lib/gstreamer-1.0/libgstrtponvif.so'
0:00:00.098298125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:853:_priv_gst_registry_chunks_load_plugin: desc.version='1.14.0'
0:00:00.098309375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:854:_priv_gst_registry_chunks_load_plugin: desc.license='unknown'
0:00:00.098320500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:855:_priv_gst_registry_chunks_load_plugin: desc.source='gst-plugins-bad'
0:00:00.098331875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:856:_priv_gst_registry_chunks_load_plugin: desc.package='GStreamer Bad Plug-ins source release'
0:00:00.098343625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:857:_priv_gst_registry_chunks_load_plugin: desc.origin='Unknown package origin'
0:00:00.098355125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:858:_priv_gst_registry_chunks_load_plugin: desc.datetime=2018-03-19
0:00:00.098370625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:466:gst_registry_add_plugin:<registry0> adding plugin 0x3d1323b0 for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstrtponvif.so"
0:00:00.098389250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:479:gst_registry_add_plugin:<registry0> emitting plugin-added for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstrtponvif.so"
0:00:00.098402875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:879:_priv_gst_registry_chunks_load_plugin: Added plugin 'rtponvif' plugin with 2 features from binary registry
0:00:00.098418250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'rtponvif' feature 'rtponviftimestamp' typename : 'GstElementFactory'
0:00:00.098449375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb46f6cd0
0:00:00.098468250 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.098481875 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.098496875 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.098523500 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.098539375 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.098552000 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.098567250 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.098580500 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.098594625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.098607625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46f6e08
0:00:00.098621750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.098633750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46f6e28
0:00:00.098646875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.098664375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d133080 (rtponviftimestamp)
0:00:00.098682250 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<rtponviftimestamp> set parent (ref and sink)
0:00:00.098696125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for rtponviftimestamp
0:00:00.098709250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature rtponviftimestamp, plugin 0x3d1323b0 rtponvif
0:00:00.098724250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'rtponvif' feature 'rtponvifparse' typename : 'GstElementFactory'
0:00:00.098754250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb46f6e68
0:00:00.098773125 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.098786000 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.098800500 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.098813250 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.098827000 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.098839375 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.098854500 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.098867875 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.098882000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.098894750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46f6fa0
0:00:00.098920250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.098933625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46f6fc0
0:00:00.098946625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.098965375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d133160 (rtponvifparse)
0:00:00.098983250 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<rtponvifparse> set parent (ref and sink)
0:00:00.098998000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for rtponvifparse
0:00:00.099011250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature rtponvifparse, plugin 0x3d1323b0 rtponvif
0:00:00.099026125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrybinary.c:606:priv_gst_registry_binary_read_cache: reading binary registry 147422(23fde)/405909
0:00:00.099040500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:829:_priv_gst_registry_chunks_load_plugin: Reading/casting for GstRegistryChunkPluginElement at address 0xffffb46f6fe0
0:00:00.099076500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:850:_priv_gst_registry_chunks_load_plugin: read strings for name='kms'
0:00:00.099091375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:851:_priv_gst_registry_chunks_load_plugin: desc.description='Video sink using the Linux kernel mode setting API'
0:00:00.099103250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:852:_priv_gst_registry_chunks_load_plugin: filename='/data/halley/gst-sdk/lib/gstreamer-1.0/libgstkms.so'
0:00:00.099115000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:853:_priv_gst_registry_chunks_load_plugin: desc.version='1.14.0'
0:00:00.099126875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:854:_priv_gst_registry_chunks_load_plugin: desc.license='LGPL'
0:00:00.099138125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:855:_priv_gst_registry_chunks_load_plugin: desc.source='gst-plugins-bad'
0:00:00.099149625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:856:_priv_gst_registry_chunks_load_plugin: desc.package='GStreamer Bad Plug-ins source release'
0:00:00.099161750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:857:_priv_gst_registry_chunks_load_plugin: desc.origin='Unknown package origin'
0:00:00.099173250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:858:_priv_gst_registry_chunks_load_plugin: desc.datetime=2018-03-19
0:00:00.099189000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:466:gst_registry_add_plugin:<registry0> adding plugin 0x3d1324e0 for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstkms.so"
0:00:00.099220500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:479:gst_registry_add_plugin:<registry0> emitting plugin-added for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstkms.so"
0:00:00.099234750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:879:_priv_gst_registry_chunks_load_plugin: Added plugin 'kms' plugin with 1 features from binary registry
0:00:00.099249875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'kms' feature 'kmssink' typename : 'GstElementFactory'
0:00:00.099282500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb46f70e8
0:00:00.099317500 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.099333375 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.099349125 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.099362500 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.099377125 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.099392625 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.099408375 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.099421125 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.099435375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=1
0:00:00.099448125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46f71e8
0:00:00.099464125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.099476250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:643:gst_registry_chunks_load_feature: Reading 1 Interfaces at address 0xffffb46f72d5
0:00:00.099498875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d133240 (kmssink)
0:00:00.099519750 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<kmssink> set parent (ref and sink)
0:00:00.099535500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for kmssink
0:00:00.099548750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature kmssink, plugin 0x3d1324e0 kms
0:00:00.099563250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrybinary.c:606:priv_gst_registry_binary_read_cache: reading binary registry 148197(242e5)/405909
0:00:00.099577250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:829:_priv_gst_registry_chunks_load_plugin: Reading/casting for GstRegistryChunkPluginElement at address 0xffffb46f72e8
0:00:00.099616875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:850:_priv_gst_registry_chunks_load_plugin: read strings for name='typefindfunctions'
0:00:00.099631750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:851:_priv_gst_registry_chunks_load_plugin: desc.description='default typefind functions'
0:00:00.099643875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:852:_priv_gst_registry_chunks_load_plugin: filename='/data/halley/gst-sdk/lib/gstreamer-1.0/libgsttypefindfunctions.so'
0:00:00.099655625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:853:_priv_gst_registry_chunks_load_plugin: desc.version='1.14.0'
0:00:00.099666875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:854:_priv_gst_registry_chunks_load_plugin: desc.license='LGPL'
0:00:00.099678000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:855:_priv_gst_registry_chunks_load_plugin: desc.source='gst-plugins-base'
0:00:00.099689750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:856:_priv_gst_registry_chunks_load_plugin: desc.package='GStreamer Base Plug-ins source release'
0:00:00.099727000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:857:_priv_gst_registry_chunks_load_plugin: desc.origin='Unknown package origin'
0:00:00.099739750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:858:_priv_gst_registry_chunks_load_plugin: desc.datetime=2018-03-19
0:00:00.099756250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:466:gst_registry_add_plugin:<registry0> adding plugin 0x3d132610 for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgsttypefindfunctions.so"
0:00:00.099776000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:479:gst_registry_add_plugin:<registry0> emitting plugin-added for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgsttypefindfunctions.so"
0:00:00.099789750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:879:_priv_gst_registry_chunks_load_plugin: Added plugin 'typefindfunctions' plugin with 140 features from binary registry
0:00:00.099804875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'typefindfunctions' feature 'video/x-ms-asf' typename : 'GstTypeFindFactory'
0:00:00.099841000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:656:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkPluginFeature at address 0xffffb46f73f8
0:00:00.099864750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:670:gst_registry_chunks_load_feature: Reading 4 Typefind extensions at address 0xffffb46f7417
0:00:00.099886750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d133320 (video/x-ms-asf)
0:00:00.099908375 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<video/x-ms-asf> set parent (ref and sink)
0:00:00.099923125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for video/x-ms-asf
0:00:00.099936125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature video/x-ms-asf, plugin 0x3d132610 typefindfunctions
0:00:00.099951375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'typefindfunctions' feature 'audio/x-musepack' typename : 'GstTypeFindFactory'
0:00:00.100001250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:656:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkPluginFeature at address 0xffffb46f7450
0:00:00.100022375 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'streamversion'
0:00:00.100036375 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'int'
0:00:00.100113625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:670:gst_registry_chunks_load_feature: Reading 3 Typefind extensions at address 0xffffb46f748e
0:00:00.100135375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d133400 (audio/x-musepack)
0:00:00.100153375 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<audio/x-musepack> set parent (ref and sink)
0:00:00.100167750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for audio/x-musepack
0:00:00.100180750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature audio/x-musepack, plugin 0x3d132610 typefindfunctions
0:00:00.100195000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'typefindfunctions' feature 'audio/x-au' typename : 'GstTypeFindFactory'
0:00:00.100224500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:656:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkPluginFeature at address 0xffffb46f74b8
0:00:00.100258125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:670:gst_registry_chunks_load_feature: Reading 2 Typefind extensions at address 0xffffb46f74d3
0:00:00.100280250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d1334e0 (audio/x-au)
0:00:00.100297875 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<audio/x-au> set parent (ref and sink)
0:00:00.100311875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for audio/x-au
0:00:00.100324750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature audio/x-au, plugin 0x3d132610 typefindfunctions
0:00:00.100339125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'typefindfunctions' feature 'video/x-msvideo' typename : 'GstTypeFindFactory'
0:00:00.100367625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:656:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkPluginFeature at address 0xffffb46f7500
0:00:00.100389625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:670:gst_registry_chunks_load_feature: Reading 1 Typefind extensions at address 0xffffb46f7520
0:00:00.100410125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d1335c0 (video/x-msvideo)
0:00:00.100427000 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<video/x-msvideo> set parent (ref and sink)
0:00:00.100440875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for video/x-msvideo
0:00:00.100453750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature video/x-msvideo, plugin 0x3d132610 typefindfunctions
0:00:00.100468625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'typefindfunctions' feature 'audio/qcelp' typename : 'GstTypeFindFactory'
0:00:00.100497250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:656:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkPluginFeature at address 0xffffb46f7548
0:00:00.100514750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:670:gst_registry_chunks_load_feature: Reading 1 Typefind extensions at address 0xffffb46f7564
0:00:00.100533625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d1336a0 (audio/qcelp)
0:00:00.100550250 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<audio/qcelp> set parent (ref and sink)
0:00:00.100563875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for audio/qcelp
0:00:00.100576500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature audio/qcelp, plugin 0x3d132610 typefindfunctions
0:00:00.100590375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'typefindfunctions' feature 'video/x-cdxa' typename : 'GstTypeFindFactory'
0:00:00.100618125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:656:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkPluginFeature at address 0xffffb46f7588
0:00:00.100635750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:670:gst_registry_chunks_load_feature: Reading 1 Typefind extensions at address 0xffffb46f75a5
0:00:00.100665500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d135820 (video/x-cdxa)
0:00:00.100683125 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<video/x-cdxa> set parent (ref and sink)
0:00:00.100696750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for video/x-cdxa
0:00:00.100709250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature video/x-cdxa, plugin 0x3d132610 typefindfunctions
0:00:00.100723625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'typefindfunctions' feature 'video/x-vcd' typename : 'GstTypeFindFactory'
0:00:00.100752000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:656:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkPluginFeature at address 0xffffb46f75c8
0:00:00.100769750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:670:gst_registry_chunks_load_feature: Reading 1 Typefind extensions at address 0xffffb46f75e4
0:00:00.100788500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d135900 (video/x-vcd)
0:00:00.100805125 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<video/x-vcd> set parent (ref and sink)
0:00:00.100818750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for video/x-vcd
0:00:00.100831375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature video/x-vcd, plugin 0x3d132610 typefindfunctions
0:00:00.100845375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'typefindfunctions' feature 'audio/x-imelody' typename : 'GstTypeFindFactory'
0:00:00.100873000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:656:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkPluginFeature at address 0xffffb46f7610
0:00:00.100890500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:670:gst_registry_chunks_load_feature: Reading 3 Typefind extensions at address 0xffffb46f7630
0:00:00.100909000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d1359e0 (audio/x-imelody)
0:00:00.100925500 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<audio/x-imelody> set parent (ref and sink)
0:00:00.100939000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for audio/x-imelody
0:00:00.100951625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature audio/x-imelody, plugin 0x3d132610 typefindfunctions
0:00:00.100965625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'typefindfunctions' feature 'audio/midi' typename : 'GstTypeFindFactory'
0:00:00.101002000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:656:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkPluginFeature at address 0xffffb46f7660
0:00:00.101020125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:670:gst_registry_chunks_load_feature: Reading 2 Typefind extensions at address 0xffffb46f767b
0:00:00.101040750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d135ac0 (audio/midi)
0:00:00.101458625 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<audio/midi> set parent (ref and sink)
0:00:00.101544125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for audio/midi
0:00:00.101583750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature audio/midi, plugin 0x3d132610 typefindfunctions
0:00:00.101624250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'typefindfunctions' feature 'audio/riff-midi' typename : 'GstTypeFindFactory'
0:00:00.101709375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:656:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkPluginFeature at address 0xffffb46f76a8
0:00:00.101759500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:670:gst_registry_chunks_load_feature: Reading 2 Typefind extensions at address 0xffffb46f76c8
0:00:00.101812000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d135ba0 (audio/riff-midi)
0:00:00.101857625 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<audio/riff-midi> set parent (ref and sink)
0:00:00.101894500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for audio/riff-midi
0:00:00.101928250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature audio/riff-midi, plugin 0x3d132610 typefindfunctions
0:00:00.101967125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'typefindfunctions' feature 'audio/mobile-xmf' typename : 'GstTypeFindFactory'
0:00:00.102044375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:656:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkPluginFeature at address 0xffffb46f76f8
0:00:00.102092000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:670:gst_registry_chunks_load_feature: Reading 1 Typefind extensions at address 0xffffb46f7719
0:00:00.102142875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d135c80 (audio/mobile-xmf)
0:00:00.102188000 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<audio/mobile-xmf> set parent (ref and sink)
0:00:00.102224875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for audio/mobile-xmf
0:00:00.102259000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature audio/mobile-xmf, plugin 0x3d132610 typefindfunctions
0:00:00.102296125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'typefindfunctions' feature 'video/x-fli' typename : 'GstTypeFindFactory'
0:00:00.102371000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:656:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkPluginFeature at address 0xffffb46f7740
0:00:00.102417250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:670:gst_registry_chunks_load_feature: Reading 2 Typefind extensions at address 0xffffb46f775c
0:00:00.102466875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d135d60 (video/x-fli)
0:00:00.102512500 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<video/x-fli> set parent (ref and sink)
0:00:00.102549250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for video/x-fli
0:00:00.102583000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature video/x-fli, plugin 0x3d132610 typefindfunctions
0:00:00.102647125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'typefindfunctions' feature 'application/x-id3v2' typename : 'GstTypeFindFactory'
0:00:00.102729000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:656:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkPluginFeature at address 0xffffb46f7790
0:00:00.102775625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:670:gst_registry_chunks_load_feature: Reading 7 Typefind extensions at address 0xffffb46f77b2
0:00:00.102827500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d135e40 (application/x-id3v2)
0:00:00.102873625 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<application/x-id3v2> set parent (ref and sink)
0:00:00.102910625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for application/x-id3v2
0:00:00.102945125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature application/x-id3v2, plugin 0x3d132610 typefindfunctions
0:00:00.102983000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'typefindfunctions' feature 'application/x-id3v1' typename : 'GstTypeFindFactory'
0:00:00.103058625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:656:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkPluginFeature at address 0xffffb46f77f8
0:00:00.103104375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:670:gst_registry_chunks_load_feature: Reading 7 Typefind extensions at address 0xffffb46f781a
0:00:00.103155625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d137070 (application/x-id3v1)
0:00:00.103229250 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<application/x-id3v1> set parent (ref and sink)
0:00:00.103270750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for application/x-id3v1
0:00:00.103305625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature application/x-id3v1, plugin 0x3d132610 typefindfunctions
0:00:00.103343500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'typefindfunctions' feature 'application/x-apetag' typename : 'GstTypeFindFactory'
0:00:00.103421000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:656:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkPluginFeature at address 0xffffb46f7860
0:00:00.103468250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:670:gst_registry_chunks_load_feature: Reading 4 Typefind extensions at address 0xffffb46f7885
0:00:00.103518750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d137150 (application/x-apetag)
0:00:00.103564750 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<application/x-apetag> set parent (ref and sink)
0:00:00.103601250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for application/x-apetag
0:00:00.103635875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature application/x-apetag, plugin 0x3d132610 typefindfunctions
0:00:00.103673875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'typefindfunctions' feature 'audio/x-ttafile' typename : 'GstTypeFindFactory'
0:00:00.103796875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:656:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkPluginFeature at address 0xffffb46f78b8
0:00:00.103846625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:670:gst_registry_chunks_load_feature: Reading 1 Typefind extensions at address 0xffffb46f78d8
0:00:00.103897500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d137230 (audio/x-ttafile)
0:00:00.103943250 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<audio/x-ttafile> set parent (ref and sink)
0:00:00.103979750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for audio/x-ttafile
0:00:00.104014500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature audio/x-ttafile, plugin 0x3d132610 typefindfunctions
0:00:00.104052750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'typefindfunctions' feature 'audio/x-mod' typename : 'GstTypeFindFactory'
0:00:00.104130000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:656:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkPluginFeature at address 0xffffb46f7900
0:00:00.104177625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:670:gst_registry_chunks_load_feature: Reading 27 Typefind extensions at address 0xffffb46f791c
0:00:00.104238750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d137310 (audio/x-mod)
0:00:00.104283875 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<audio/x-mod> set parent (ref and sink)
0:00:00.104319875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for audio/x-mod
0:00:00.104353500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature audio/x-mod, plugin 0x3d132610 typefindfunctions
0:00:00.104391500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'typefindfunctions' feature 'audio/mpeg' typename : 'GstTypeFindFactory'
0:00:00.104466250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:656:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkPluginFeature at address 0xffffb46f79a8
0:00:00.104523250 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'mpegversion'
0:00:00.104559500 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'int'
0:00:00.104600625 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'layer'
0:00:00.104635625 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'int'
0:00:00.104675000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:670:gst_registry_chunks_load_feature: Reading 4 Typefind extensions at address 0xffffb46f79ec
0:00:00.104729625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d1373f0 (audio/mpeg)
0:00:00.104775625 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<audio/mpeg> set parent (ref and sink)
0:00:00.104812625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for audio/mpeg
0:00:00.104847375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature audio/mpeg, plugin 0x3d132610 typefindfunctions
0:00:00.104912875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'typefindfunctions' feature 'audio/x-ac3' typename : 'GstTypeFindFactory'
0:00:00.104995000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:656:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkPluginFeature at address 0xffffb46f7a20
0:00:00.105076250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:670:gst_registry_chunks_load_feature: Reading 2 Typefind extensions at address 0xffffb46f7a3c
0:00:00.105141875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d1374d0 (audio/x-ac3)
0:00:00.105187875 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<audio/x-ac3> set parent (ref and sink)
0:00:00.105223875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for audio/x-ac3
0:00:00.105257750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature audio/x-ac3, plugin 0x3d132610 typefindfunctions
0:00:00.105295250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'typefindfunctions' feature 'audio/x-dts' typename : 'GstTypeFindFactory'
0:00:00.105373125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:656:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkPluginFeature at address 0xffffb46f7a68
0:00:00.105420625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:670:gst_registry_chunks_load_feature: Reading 1 Typefind extensions at address 0xffffb46f7a84
0:00:00.105469250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d1375b0 (audio/x-dts)
0:00:00.105514250 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<audio/x-dts> set parent (ref and sink)
0:00:00.105550625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for audio/x-dts
0:00:00.105584375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature audio/x-dts, plugin 0x3d132610 typefindfunctions
0:00:00.105622000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'typefindfunctions' feature 'audio/x-gsm' typename : 'GstTypeFindFactory'
0:00:00.105696500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:656:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkPluginFeature at address 0xffffb46f7aa8
0:00:00.105766875 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'rate'
0:00:00.105805625 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'int'
0:00:00.105845375 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'channels'
0:00:00.105879125 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'int'
0:00:00.105915250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:670:gst_registry_chunks_load_feature: Reading 1 Typefind extensions at address 0xffffb46f7ae5
0:00:00.105965875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d137690 (audio/x-gsm)
0:00:00.106011875 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<audio/x-gsm> set parent (ref and sink)
0:00:00.106049500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for audio/x-gsm
0:00:00.106124875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature audio/x-gsm, plugin 0x3d132610 typefindfunctions
0:00:00.106167125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'typefindfunctions' feature 'video/mpeg-sys' typename : 'GstTypeFindFactory'
0:00:00.106245500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:656:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkPluginFeature at address 0xffffb46f7b10
0:00:00.106292250 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'systemstream'
0:00:00.106327875 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'boolean'
0:00:00.106376875 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'mpegversion'
0:00:00.106411625 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'int'
0:00:00.106448750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:670:gst_registry_chunks_load_feature: Reading 3 Typefind extensions at address 0xffffb46f7b62
0:00:00.106501125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d1388b0 (video/mpeg-sys)
0:00:00.106546375 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<video/mpeg-sys> set parent (ref and sink)
0:00:00.106583500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for video/mpeg-sys
0:00:00.106617875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature video/mpeg-sys, plugin 0x3d132610 typefindfunctions
0:00:00.106656250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'typefindfunctions' feature 'video/mpegts' typename : 'GstTypeFindFactory'
0:00:00.106736500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:656:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkPluginFeature at address 0xffffb46f7b90
0:00:00.106783375 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'systemstream'
0:00:00.106818500 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'boolean'
0:00:00.106855375 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'packetsize'
0:00:00.106888500 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'int'
0:00:00.106926500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:670:gst_registry_chunks_load_feature: Reading 2 Typefind extensions at address 0xffffb46f7be7
0:00:00.106976375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d138990 (video/mpegts)
0:00:00.107021250 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<video/mpegts> set parent (ref and sink)
0:00:00.107058750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for video/mpegts
0:00:00.107093125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature video/mpegts, plugin 0x3d132610 typefindfunctions
0:00:00.107130750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'typefindfunctions' feature 'application/ogg' typename : 'GstTypeFindFactory'
0:00:00.107235625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:656:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkPluginFeature at address 0xffffb46f7c18
0:00:00.107292500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:670:gst_registry_chunks_load_feature: Reading 9 Typefind extensions at address 0xffffb46f7c60
0:00:00.107345125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d138a70 (application/ogg)
0:00:00.107389750 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<application/ogg> set parent (ref and sink)
0:00:00.107425875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for application/ogg
0:00:00.107459250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature application/ogg, plugin 0x3d132610 typefindfunctions
0:00:00.107496500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'typefindfunctions' feature 'video/mpeg-elementary' typename : 'GstTypeFindFactory'
0:00:00.107571250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:656:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkPluginFeature at address 0xffffb46f7cb0
0:00:00.107616750 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'systemstream'
0:00:00.107651250 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'boolean'
0:00:00.107686875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:670:gst_registry_chunks_load_feature: Reading 3 Typefind extensions at address 0xffffb46f7ce8
0:00:00.107736125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d138b50 (video/mpeg-elementary)
0:00:00.107781750 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<video/mpeg-elementary> set parent (ref and sink)
0:00:00.107818625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for video/mpeg-elementary
0:00:00.107853500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature video/mpeg-elementary, plugin 0x3d132610 typefindfunctions
0:00:00.107893250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'typefindfunctions' feature 'video/mpeg4' typename : 'GstTypeFindFactory'
0:00:00.107968125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:656:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkPluginFeature at address 0xffffb46f7d18
0:00:00.108013500 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'systemstream'
0:00:00.108048750 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'boolean'
0:00:00.108084500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:670:gst_registry_chunks_load_feature: Reading 1 Typefind extensions at address 0xffffb46f7d50
0:00:00.108147250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d138c30 (video/mpeg4)
0:00:00.108193000 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<video/mpeg4> set parent (ref and sink)
0:00:00.108229500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for video/mpeg4
0:00:00.108263500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature video/mpeg4, plugin 0x3d132610 typefindfunctions
0:00:00.108328000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'typefindfunctions' feature 'video/x-h263' typename : 'GstTypeFindFactory'
0:00:00.108406875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:656:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkPluginFeature at address 0xffffb46f7d78
0:00:00.108453500 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'variant'
0:00:00.108488125 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.108524500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:670:gst_registry_chunks_load_feature: Reading 2 Typefind extensions at address 0xffffb46f7daa
0:00:00.108573875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d138d10 (video/x-h263)
0:00:00.108618625 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<video/x-h263> set parent (ref and sink)
0:00:00.108655750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for video/x-h263
0:00:00.108690500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature video/x-h263, plugin 0x3d132610 typefindfunctions
0:00:00.108728625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'typefindfunctions' feature 'video/x-h264' typename : 'GstTypeFindFactory'
0:00:00.108803500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:656:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkPluginFeature at address 0xffffb46f7dd8
0:00:00.108850125 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'stream-format'
0:00:00.108885250 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.108922500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:670:gst_registry_chunks_load_feature: Reading 3 Typefind extensions at address 0xffffb46f7e18
0:00:00.108971500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d138df0 (video/x-h264)
0:00:00.109016500 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<video/x-h264> set parent (ref and sink)
0:00:00.109087625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for video/x-h264
0:00:00.109132875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature video/x-h264, plugin 0x3d132610 typefindfunctions
0:00:00.109170000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'typefindfunctions' feature 'video/x-h265' typename : 'GstTypeFindFactory'
0:00:00.109245500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:656:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkPluginFeature at address 0xffffb46f7e48
0:00:00.109291750 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'stream-format'
0:00:00.109327000 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.109363875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:670:gst_registry_chunks_load_feature: Reading 3 Typefind extensions at address 0xffffb46f7e88
0:00:00.109454625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d138ed0 (video/x-h265)
0:00:00.109503250 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<video/x-h265> set parent (ref and sink)
0:00:00.109540375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for video/x-h265
0:00:00.109575125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature video/x-h265, plugin 0x3d132610 typefindfunctions
0:00:00.109611625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'typefindfunctions' feature 'video/x-nuv' typename : 'GstTypeFindFactory'
0:00:00.109717500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:656:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkPluginFeature at address 0xffffb46f7eb8
0:00:00.109766500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:670:gst_registry_chunks_load_feature: Reading 1 Typefind extensions at address 0xffffb46f7ed4
0:00:00.109817750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d13c850 (video/x-nuv)
0:00:00.109862750 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<video/x-nuv> set parent (ref and sink)
0:00:00.109898875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for video/x-nuv
0:00:00.109932250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature video/x-nuv, plugin 0x3d132610 typefindfunctions
0:00:00.109970125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'typefindfunctions' feature 'audio/x-m4a' typename : 'GstTypeFindFactory'
0:00:00.110046250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:656:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkPluginFeature at address 0xffffb46f7ef8
0:00:00.110093250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:670:gst_registry_chunks_load_feature: Reading 1 Typefind extensions at address 0xffffb46f7f14
0:00:00.110144250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d13c930 (audio/x-m4a)
0:00:00.110188375 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<audio/x-m4a> set parent (ref and sink)
0:00:00.110224250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for audio/x-m4a
0:00:00.110258125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature audio/x-m4a, plugin 0x3d132610 typefindfunctions
0:00:00.110295250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'typefindfunctions' feature 'application/x-3gp' typename : 'GstTypeFindFactory'
0:00:00.110369875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:656:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkPluginFeature at address 0xffffb46f7f40
0:00:00.110416875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:670:gst_registry_chunks_load_feature: Reading 1 Typefind extensions at address 0xffffb46f7f62
0:00:00.110466000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d13ca10 (application/x-3gp)
0:00:00.110511000 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<application/x-3gp> set parent (ref and sink)
0:00:00.110585625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for application/x-3gp
0:00:00.110622500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature application/x-3gp, plugin 0x3d132610 typefindfunctions
0:00:00.110660125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'typefindfunctions' feature 'video/quicktime' typename : 'GstTypeFindFactory'
0:00:00.110736750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:656:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkPluginFeature at address 0xffffb46f7f90
0:00:00.110785625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:670:gst_registry_chunks_load_feature: Reading 2 Typefind extensions at address 0xffffb46f7fb0
0:00:00.110837125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d13caf0 (video/quicktime)
0:00:00.110881125 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<video/quicktime> set parent (ref and sink)
0:00:00.110917500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for video/quicktime
0:00:00.110951875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature video/quicktime, plugin 0x3d132610 typefindfunctions
0:00:00.110989500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'typefindfunctions' feature 'image/x-quicktime' typename : 'GstTypeFindFactory'
0:00:00.111064125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:656:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkPluginFeature at address 0xffffb46f7fe0
0:00:00.111113875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:670:gst_registry_chunks_load_feature: Reading 3 Typefind extensions at address 0xffffb46f8002
0:00:00.111162875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d13cbd0 (image/x-quicktime)
0:00:00.111208000 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<image/x-quicktime> set parent (ref and sink)
0:00:00.111245750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for image/x-quicktime
0:00:00.111280000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature image/x-quicktime, plugin 0x3d132610 typefindfunctions
0:00:00.111317250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'typefindfunctions' feature 'image/jp2' typename : 'GstTypeFindFactory'
0:00:00.111393750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:656:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkPluginFeature at address 0xffffb46f8030
0:00:00.111439750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:670:gst_registry_chunks_load_feature: Reading 1 Typefind extensions at address 0xffffb46f804a
0:00:00.111488750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d13ccb0 (image/jp2)
0:00:00.111533125 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<image/jp2> set parent (ref and sink)
0:00:00.111569500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for image/jp2
0:00:00.112316500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature image/jp2, plugin 0x3d132610 typefindfunctions
0:00:00.112363250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'typefindfunctions' feature 'image/x-jpc' typename : 'GstTypeFindFactory'
0:00:00.112414750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:656:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkPluginFeature at address 0xffffb46f8070
0:00:00.112442625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:670:gst_registry_chunks_load_feature: Reading 2 Typefind extensions at address 0xffffb46f808c
0:00:00.112472000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d13cd90 (image/x-jpc)
0:00:00.112498000 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<image/x-jpc> set parent (ref and sink)
0:00:00.112519250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for image/x-jpc
0:00:00.112538375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature image/x-jpc, plugin 0x3d132610 typefindfunctions
0:00:00.112560000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'typefindfunctions' feature 'video/mj2' typename : 'GstTypeFindFactory'
0:00:00.112620750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:656:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkPluginFeature at address 0xffffb46f80b8
0:00:00.112653250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:670:gst_registry_chunks_load_feature: Reading 1 Typefind extensions at address 0xffffb46f80d2
0:00:00.112683000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d13ce70 (video/mj2)
0:00:00.112708500 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<video/mj2> set parent (ref and sink)
0:00:00.112729250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for video/mj2
0:00:00.112748875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature video/mj2, plugin 0x3d132610 typefindfunctions
0:00:00.112769625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'typefindfunctions' feature 'text/html' typename : 'GstTypeFindFactory'
0:00:00.112812625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:656:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkPluginFeature at address 0xffffb46f80f8
0:00:00.112850000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:670:gst_registry_chunks_load_feature: Reading 2 Typefind extensions at address 0xffffb46f8112
0:00:00.112881250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d13d860 (text/html)
0:00:00.112912500 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<text/html> set parent (ref and sink)
0:00:00.112934750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for text/html
0:00:00.112954500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature text/html, plugin 0x3d132610 typefindfunctions
0:00:00.112976125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'typefindfunctions' feature 'application/vnd.rn-realmedia' typename : 'GstTypeFindFactory'
0:00:00.113019625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:656:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkPluginFeature at address 0xffffb46f8150
0:00:00.113092125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:670:gst_registry_chunks_load_feature: Reading 4 Typefind extensions at address 0xffffb46f817d
0:00:00.113129000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d13d940 (application/vnd.rn-realmedia)
0:00:00.113155625 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<application/vnd.rn-realmedia> set parent (ref and sink)
0:00:00.113176875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for application/vnd.rn-realmedia
0:00:00.113197250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature application/vnd.rn-realmedia, plugin 0x3d132610 typefindfunctions
0:00:00.113218375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'typefindfunctions' feature 'application/x-pn-realaudio' typename : 'GstTypeFindFactory'
0:00:00.113262500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:656:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkPluginFeature at address 0xffffb46f81c0
0:00:00.113289250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:670:gst_registry_chunks_load_feature: Reading 4 Typefind extensions at address 0xffffb46f81eb
0:00:00.113318250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d13da20 (application/x-pn-realaudio)
0:00:00.113344000 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<application/x-pn-realaudio> set parent (ref and sink)
0:00:00.113365125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for application/x-pn-realaudio
0:00:00.113384250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature application/x-pn-realaudio, plugin 0x3d132610 typefindfunctions
0:00:00.113405625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'typefindfunctions' feature 'application/x-shockwave-flash' typename : 'GstTypeFindFactory'
0:00:00.113449250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:656:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkPluginFeature at address 0xffffb46f8230
0:00:00.113476625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:670:gst_registry_chunks_load_feature: Reading 2 Typefind extensions at address 0xffffb46f825e
0:00:00.113505375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d13db00 (application/x-shockwave-flash)
0:00:00.113531125 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<application/x-shockwave-flash> set parent (ref and sink)
0:00:00.113552250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for application/x-shockwave-flash
0:00:00.113572375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature application/x-shockwave-flash, plugin 0x3d132610 typefindfunctions
0:00:00.113593375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'typefindfunctions' feature 'application/dash+xml' typename : 'GstTypeFindFactory'
0:00:00.113636250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:656:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkPluginFeature at address 0xffffb46f8290
0:00:00.113679000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:670:gst_registry_chunks_load_feature: Reading 2 Typefind extensions at address 0xffffb46f82b5
0:00:00.113708750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d13dbe0 (application/dash+xml)
0:00:00.113734375 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<application/dash+xml> set parent (ref and sink)
0:00:00.113755375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for application/dash+xml
0:00:00.113775000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature application/dash+xml, plugin 0x3d132610 typefindfunctions
0:00:00.113796250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'typefindfunctions' feature 'application/vnd.ms-sstr+xml' typename : 'GstTypeFindFactory'
0:00:00.113838875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:656:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkPluginFeature at address 0xffffb46f82f0
0:00:00.113871500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d13dcc0 (application/vnd.ms-sstr+xml)
0:00:00.113899250 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<application/vnd.ms-sstr+xml> set parent (ref and sink)
0:00:00.113919875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for application/vnd.ms-sstr+xml
0:00:00.113939750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature application/vnd.ms-sstr+xml, plugin 0x3d132610 typefindfunctions
0:00:00.113960625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'typefindfunctions' feature 'video/x-flv' typename : 'GstTypeFindFactory'
0:00:00.114017125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:656:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkPluginFeature at address 0xffffb46f8340
0:00:00.114045250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:670:gst_registry_chunks_load_feature: Reading 1 Typefind extensions at address 0xffffb46f835c
0:00:00.114073500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d13dda0 (video/x-flv)
0:00:00.114099000 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<video/x-flv> set parent (ref and sink)
0:00:00.114119750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for video/x-flv
0:00:00.114139000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature video/x-flv, plugin 0x3d132610 typefindfunctions
0:00:00.114160375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'typefindfunctions' feature 'text/plain' typename : 'GstTypeFindFactory'
0:00:00.114203000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:656:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkPluginFeature at address 0xffffb46f8380
0:00:00.114229000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:670:gst_registry_chunks_load_feature: Reading 1 Typefind extensions at address 0xffffb46f839b
0:00:00.114256625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d13de80 (text/plain)
0:00:00.114310250 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<text/plain> set parent (ref and sink)
0:00:00.114349250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for text/plain
0:00:00.114369625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature text/plain, plugin 0x3d132610 typefindfunctions
0:00:00.114391000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'typefindfunctions' feature 'text/utf-16' typename : 'GstTypeFindFactory'
0:00:00.114435000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:656:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkPluginFeature at address 0xffffb46f83c0
0:00:00.114461500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:670:gst_registry_chunks_load_feature: Reading 1 Typefind extensions at address 0xffffb46f83dc
0:00:00.114489250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d140030 (text/utf-16)
0:00:00.114514750 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<text/utf-16> set parent (ref and sink)
0:00:00.114535500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for text/utf-16
0:00:00.114554750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature text/utf-16, plugin 0x3d132610 typefindfunctions
0:00:00.114575625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'typefindfunctions' feature 'text/utf-32' typename : 'GstTypeFindFactory'
0:00:00.114618500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:656:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkPluginFeature at address 0xffffb46f8400
0:00:00.114644875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:670:gst_registry_chunks_load_feature: Reading 1 Typefind extensions at address 0xffffb46f841c
0:00:00.114673250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d140110 (text/utf-32)
0:00:00.114698875 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<text/utf-32> set parent (ref and sink)
0:00:00.114719625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for text/utf-32
0:00:00.114738875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature text/utf-32, plugin 0x3d132610 typefindfunctions
0:00:00.114759875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'typefindfunctions' feature 'text/uri-list' typename : 'GstTypeFindFactory'
0:00:00.114802375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:656:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkPluginFeature at address 0xffffb46f8448
0:00:00.114828875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:670:gst_registry_chunks_load_feature: Reading 1 Typefind extensions at address 0xffffb46f8466
0:00:00.114856750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d1401f0 (text/uri-list)
0:00:00.114882250 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<text/uri-list> set parent (ref and sink)
0:00:00.114903250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for text/uri-list
0:00:00.114922625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature text/uri-list, plugin 0x3d132610 typefindfunctions
0:00:00.114959125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'typefindfunctions' feature 'application/itc' typename : 'GstTypeFindFactory'
0:00:00.115005125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:656:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkPluginFeature at address 0xffffb46f8490
0:00:00.115031750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:670:gst_registry_chunks_load_feature: Reading 1 Typefind extensions at address 0xffffb46f84b0
0:00:00.115061000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d1402d0 (application/itc)
0:00:00.115087000 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<application/itc> set parent (ref and sink)
0:00:00.115107875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for application/itc
0:00:00.115127125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature application/itc, plugin 0x3d132610 typefindfunctions
0:00:00.115149250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'typefindfunctions' feature 'application/x-hls' typename : 'GstTypeFindFactory'
0:00:00.115193250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:656:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkPluginFeature at address 0xffffb46f84e0
0:00:00.115220750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:670:gst_registry_chunks_load_feature: Reading 1 Typefind extensions at address 0xffffb46f8502
0:00:00.115249375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d1403b0 (application/x-hls)
0:00:00.115276000 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<application/x-hls> set parent (ref and sink)
0:00:00.115297250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for application/x-hls
0:00:00.115316750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature application/x-hls, plugin 0x3d132610 typefindfunctions
0:00:00.115338000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'typefindfunctions' feature 'application/sdp' typename : 'GstTypeFindFactory'
0:00:00.115386875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:656:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkPluginFeature at address 0xffffb46f8530
0:00:00.115414250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:670:gst_registry_chunks_load_feature: Reading 1 Typefind extensions at address 0xffffb46f8550
0:00:00.115442625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d140490 (application/sdp)
0:00:00.115468500 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<application/sdp> set parent (ref and sink)
0:00:00.115489375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for application/sdp
0:00:00.115508750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature application/sdp, plugin 0x3d132610 typefindfunctions
0:00:00.115530500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'typefindfunctions' feature 'application/smil' typename : 'GstTypeFindFactory'
0:00:00.115589875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:656:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkPluginFeature at address 0xffffb46f8578
0:00:00.115617000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:670:gst_registry_chunks_load_feature: Reading 1 Typefind extensions at address 0xffffb46f8599
0:00:00.115646375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d140570 (application/smil)
0:00:00.115672500 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<application/smil> set parent (ref and sink)
0:00:00.115693500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for application/smil
0:00:00.115713125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature application/smil, plugin 0x3d132610 typefindfunctions
0:00:00.115735250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'typefindfunctions' feature 'application/ttml+xml' typename : 'GstTypeFindFactory'
0:00:00.115778750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:656:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkPluginFeature at address 0xffffb46f85c8
0:00:00.115806125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:670:gst_registry_chunks_load_feature: Reading 1 Typefind extensions at address 0xffffb46f85ed
0:00:00.115834750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d140650 (application/ttml+xml)
0:00:00.115860500 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<application/ttml+xml> set parent (ref and sink)
0:00:00.115881375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for application/ttml+xml
0:00:00.115901000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature application/ttml+xml, plugin 0x3d132610 typefindfunctions
0:00:00.115923000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'typefindfunctions' feature 'application/xml' typename : 'GstTypeFindFactory'
0:00:00.115966625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:656:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkPluginFeature at address 0xffffb46f8620
0:00:00.116001000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:670:gst_registry_chunks_load_feature: Reading 1 Typefind extensions at address 0xffffb46f8640
0:00:00.116030500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d10d040 (application/xml)
0:00:00.116056000 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<application/xml> set parent (ref and sink)
0:00:00.116076375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for application/xml
0:00:00.116095625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature application/xml, plugin 0x3d132610 typefindfunctions
0:00:00.116116625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'typefindfunctions' feature 'audio/x-wav' typename : 'GstTypeFindFactory'
0:00:00.116159750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:656:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkPluginFeature at address 0xffffb46f8668
0:00:00.116203000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:670:gst_registry_chunks_load_feature: Reading 1 Typefind extensions at address 0xffffb46f8684
0:00:00.116232875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d10d120 (audio/x-wav)
0:00:00.116272625 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<audio/x-wav> set parent (ref and sink)
0:00:00.116293500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for audio/x-wav
0:00:00.116313250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature audio/x-wav, plugin 0x3d132610 typefindfunctions
0:00:00.116334375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'typefindfunctions' feature 'audio/x-aiff' typename : 'GstTypeFindFactory'
0:00:00.116377125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:656:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkPluginFeature at address 0xffffb46f86a8
0:00:00.116403625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:670:gst_registry_chunks_load_feature: Reading 3 Typefind extensions at address 0xffffb46f86c5
0:00:00.116432625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d10d200 (audio/x-aiff)
0:00:00.116457875 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<audio/x-aiff> set parent (ref and sink)
0:00:00.116478500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for audio/x-aiff
0:00:00.116497500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature audio/x-aiff, plugin 0x3d132610 typefindfunctions
0:00:00.116518500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'typefindfunctions' feature 'audio/x-svx' typename : 'GstTypeFindFactory'
0:00:00.116561375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:656:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkPluginFeature at address 0xffffb46f86f8
0:00:00.116587625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:670:gst_registry_chunks_load_feature: Reading 2 Typefind extensions at address 0xffffb46f8714
0:00:00.116616625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d10d2e0 (audio/x-svx)
0:00:00.116642250 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<audio/x-svx> set parent (ref and sink)
0:00:00.116663250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for audio/x-svx
0:00:00.116682500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature audio/x-svx, plugin 0x3d132610 typefindfunctions
0:00:00.116703625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'typefindfunctions' feature 'audio/x-paris' typename : 'GstTypeFindFactory'
0:00:00.116759375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:656:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkPluginFeature at address 0xffffb46f8740
0:00:00.116790875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:670:gst_registry_chunks_load_feature: Reading 1 Typefind extensions at address 0xffffb46f875e
0:00:00.116820625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d10d3c0 (audio/x-paris)
0:00:00.116862500 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<audio/x-paris> set parent (ref and sink)
0:00:00.116883875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for audio/x-paris
0:00:00.116903375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature audio/x-paris, plugin 0x3d132610 typefindfunctions
0:00:00.116924625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'typefindfunctions' feature 'audio/x-nist' typename : 'GstTypeFindFactory'
0:00:00.116968250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:656:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkPluginFeature at address 0xffffb46f8788
0:00:00.116994875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:670:gst_registry_chunks_load_feature: Reading 1 Typefind extensions at address 0xffffb46f87a5
0:00:00.117023750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d10d4a0 (audio/x-nist)
0:00:00.117070000 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<audio/x-nist> set parent (ref and sink)
0:00:00.117095875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for audio/x-nist
0:00:00.117116000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature audio/x-nist, plugin 0x3d132610 typefindfunctions
0:00:00.117138125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'typefindfunctions' feature 'audio/x-voc' typename : 'GstTypeFindFactory'
0:00:00.117183250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:656:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkPluginFeature at address 0xffffb46f87d0
0:00:00.117209625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:670:gst_registry_chunks_load_feature: Reading 1 Typefind extensions at address 0xffffb46f87ec
0:00:00.117237500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d10d580 (audio/x-voc)
0:00:00.117262875 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<audio/x-voc> set parent (ref and sink)
0:00:00.117283500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for audio/x-voc
0:00:00.117302500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature audio/x-voc, plugin 0x3d132610 typefindfunctions
0:00:00.117323625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'typefindfunctions' feature 'audio/x-sds' typename : 'GstTypeFindFactory'
0:00:00.117365875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:656:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkPluginFeature at address 0xffffb46f8810
0:00:00.117392125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:670:gst_registry_chunks_load_feature: Reading 1 Typefind extensions at address 0xffffb46f882c
0:00:00.117420250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d10d660 (audio/x-sds)
0:00:00.117445750 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<audio/x-sds> set parent (ref and sink)
0:00:00.117466500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for audio/x-sds
0:00:00.117485500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature audio/x-sds, plugin 0x3d132610 typefindfunctions
0:00:00.117522625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'typefindfunctions' feature 'audio/x-ircam' typename : 'GstTypeFindFactory'
0:00:00.117568500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:656:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkPluginFeature at address 0xffffb46f8858
0:00:00.117595000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:670:gst_registry_chunks_load_feature: Reading 1 Typefind extensions at address 0xffffb46f8876
0:00:00.117650875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d144890 (audio/x-ircam)
0:00:00.117680250 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<audio/x-ircam> set parent (ref and sink)
0:00:00.117701500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for audio/x-ircam
0:00:00.117721250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature audio/x-ircam, plugin 0x3d132610 typefindfunctions
0:00:00.117743375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'typefindfunctions' feature 'audio/x-w64' typename : 'GstTypeFindFactory'
0:00:00.117789250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:656:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkPluginFeature at address 0xffffb46f8898
0:00:00.117816250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:670:gst_registry_chunks_load_feature: Reading 1 Typefind extensions at address 0xffffb46f88b4
0:00:00.117845750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d144970 (audio/x-w64)
0:00:00.117872000 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<audio/x-w64> set parent (ref and sink)
0:00:00.117892625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for audio/x-w64
0:00:00.117911875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature audio/x-w64, plugin 0x3d132610 typefindfunctions
0:00:00.117934000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'typefindfunctions' feature 'audio/x-rf64' typename : 'GstTypeFindFactory'
0:00:00.117978625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:656:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkPluginFeature at address 0xffffb46f88d8
0:00:00.118011000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:670:gst_registry_chunks_load_feature: Reading 1 Typefind extensions at address 0xffffb46f88f5
0:00:00.118042000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d144a50 (audio/x-rf64)
0:00:00.118067875 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<audio/x-rf64> set parent (ref and sink)
0:00:00.118088625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for audio/x-rf64
0:00:00.118108000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature audio/x-rf64, plugin 0x3d132610 typefindfunctions
0:00:00.118131500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'typefindfunctions' feature 'audio/x-shorten' typename : 'GstTypeFindFactory'
0:00:00.118203375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:656:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkPluginFeature at address 0xffffb46f8920
0:00:00.118231125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:670:gst_registry_chunks_load_feature: Reading 1 Typefind extensions at address 0xffffb46f8940
0:00:00.118259375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d144b30 (audio/x-shorten)
0:00:00.118285000 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<audio/x-shorten> set parent (ref and sink)
0:00:00.118306000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for audio/x-shorten
0:00:00.118325250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature audio/x-shorten, plugin 0x3d132610 typefindfunctions
0:00:00.118346375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'typefindfunctions' feature 'application/x-ape' typename : 'GstTypeFindFactory'
0:00:00.118391125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:656:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkPluginFeature at address 0xffffb46f8970
0:00:00.118418625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:670:gst_registry_chunks_load_feature: Reading 1 Typefind extensions at address 0xffffb46f8992
0:00:00.118450250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d144c10 (application/x-ape)
0:00:00.118476125 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<application/x-ape> set parent (ref and sink)
0:00:00.118496875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for application/x-ape
0:00:00.118516125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature application/x-ape, plugin 0x3d132610 typefindfunctions
0:00:00.118537125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'typefindfunctions' feature 'image/jpeg' typename : 'GstTypeFindFactory'
0:00:00.118579375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:656:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkPluginFeature at address 0xffffb46f89b8
0:00:00.118606000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:670:gst_registry_chunks_load_feature: Reading 3 Typefind extensions at address 0xffffb46f89d3
0:00:00.118634375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d144cf0 (image/jpeg)
0:00:00.118659750 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<image/jpeg> set parent (ref and sink)
0:00:00.118680500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for image/jpeg
0:00:00.118699750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature image/jpeg, plugin 0x3d132610 typefindfunctions
0:00:00.118720875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'typefindfunctions' feature 'image/gif' typename : 'GstTypeFindFactory'
0:00:00.118764375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:656:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkPluginFeature at address 0xffffb46f8a00
0:00:00.118790625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:670:gst_registry_chunks_load_feature: Reading 1 Typefind extensions at address 0xffffb46f8a1a
0:00:00.118834875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d144dd0 (image/gif)
0:00:00.118861125 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<image/gif> set parent (ref and sink)
0:00:00.118881625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for image/gif
0:00:00.118900875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature image/gif, plugin 0x3d132610 typefindfunctions
0:00:00.118922000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'typefindfunctions' feature 'image/png' typename : 'GstTypeFindFactory'
0:00:00.118965625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:656:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkPluginFeature at address 0xffffb46f8a40
0:00:00.118991875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:670:gst_registry_chunks_load_feature: Reading 1 Typefind extensions at address 0xffffb46f8a5a
0:00:00.119019000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d144eb0 (image/png)
0:00:00.119044625 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<image/png> set parent (ref and sink)
0:00:00.119064875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for image/png
0:00:00.119083750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature image/png, plugin 0x3d132610 typefindfunctions
0:00:00.119104500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'typefindfunctions' feature 'image/bmp' typename : 'GstTypeFindFactory'
0:00:00.119146875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:656:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkPluginFeature at address 0xffffb46f8a80
0:00:00.119172875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:670:gst_registry_chunks_load_feature: Reading 1 Typefind extensions at address 0xffffb46f8a9a
0:00:00.119201125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d147030 (image/bmp)
0:00:00.119226625 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<image/bmp> set parent (ref and sink)
0:00:00.119247375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for image/bmp
0:00:00.119266375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature image/bmp, plugin 0x3d132610 typefindfunctions
0:00:00.119287750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'typefindfunctions' feature 'image/tiff' typename : 'GstTypeFindFactory'
0:00:00.119331250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:656:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkPluginFeature at address 0xffffb46f8ac0
0:00:00.119371500 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'endianness'
0:00:00.119394125 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'int'
0:00:00.119419750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:670:gst_registry_chunks_load_feature: Reading 2 Typefind extensions at address 0xffffb46f8afb
0:00:00.119466625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d147110 (image/tiff)
0:00:00.119493625 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<image/tiff> set parent (ref and sink)
0:00:00.119514625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for image/tiff
0:00:00.119534125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature image/tiff, plugin 0x3d132610 typefindfunctions
0:00:00.119555500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'typefindfunctions' feature 'image/webp' typename : 'GstTypeFindFactory'
0:00:00.119622625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:656:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkPluginFeature at address 0xffffb46f8b28
0:00:00.119650875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:670:gst_registry_chunks_load_feature: Reading 1 Typefind extensions at address 0xffffb46f8b43
0:00:00.119678875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d1471f0 (image/webp)
0:00:00.119704500 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<image/webp> set parent (ref and sink)
0:00:00.119725250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for image/webp
0:00:00.119744375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature image/webp, plugin 0x3d132610 typefindfunctions
0:00:00.119765500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'typefindfunctions' feature 'image/x-exr' typename : 'GstTypeFindFactory'
0:00:00.119808000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:656:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkPluginFeature at address 0xffffb46f8b68
0:00:00.119834875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:670:gst_registry_chunks_load_feature: Reading 1 Typefind extensions at address 0xffffb46f8b84
0:00:00.119864750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d1472d0 (image/x-exr)
0:00:00.119890500 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<image/x-exr> set parent (ref and sink)
0:00:00.119911250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for image/x-exr
0:00:00.119930625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature image/x-exr, plugin 0x3d132610 typefindfunctions
0:00:00.119951750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'typefindfunctions' feature 'image/x-portable-pixmap' typename : 'GstTypeFindFactory'
0:00:00.119995125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:656:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkPluginFeature at address 0xffffb46f8bb8
0:00:00.120028250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:670:gst_registry_chunks_load_feature: Reading 4 Typefind extensions at address 0xffffb46f8c2c
0:00:00.120056750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d1473b0 (image/x-portable-pixmap)
0:00:00.120082625 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<image/x-portable-pixmap> set parent (ref and sink)
0:00:00.120119875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for image/x-portable-pixmap
0:00:00.120141000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature image/x-portable-pixmap, plugin 0x3d132610 typefindfunctions
0:00:00.120162500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'typefindfunctions' feature 'video/x-matroska' typename : 'GstTypeFindFactory'
0:00:00.120206125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:656:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkPluginFeature at address 0xffffb46f8c60
0:00:00.120233250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:670:gst_registry_chunks_load_feature: Reading 4 Typefind extensions at address 0xffffb46f8c81
0:00:00.120262000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d147490 (video/x-matroska)
0:00:00.120287750 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<video/x-matroska> set parent (ref and sink)
0:00:00.120308250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for video/x-matroska
0:00:00.120327625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature video/x-matroska, plugin 0x3d132610 typefindfunctions
0:00:00.120349000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'typefindfunctions' feature 'application/mxf' typename : 'GstTypeFindFactory'
0:00:00.120392125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:656:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkPluginFeature at address 0xffffb46f8cb8
0:00:00.120419625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:670:gst_registry_chunks_load_feature: Reading 1 Typefind extensions at address 0xffffb46f8cd8
0:00:00.120447625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d147570 (application/mxf)
0:00:00.120473750 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<application/mxf> set parent (ref and sink)
0:00:00.120494625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for application/mxf
0:00:00.120514250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature application/mxf, plugin 0x3d132610 typefindfunctions
0:00:00.120535875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'typefindfunctions' feature 'video/x-mve' typename : 'GstTypeFindFactory'
0:00:00.120580000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:656:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkPluginFeature at address 0xffffb46f8d00
0:00:00.120606125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:670:gst_registry_chunks_load_feature: Reading 1 Typefind extensions at address 0xffffb46f8d1c
0:00:00.120635750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d147650 (video/x-mve)
0:00:00.120661500 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<video/x-mve> set parent (ref and sink)
0:00:00.120682125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for video/x-mve
0:00:00.120701250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature video/x-mve, plugin 0x3d132610 typefindfunctions
0:00:00.120738375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'typefindfunctions' feature 'video/x-dv' typename : 'GstTypeFindFactory'
0:00:00.120786500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:656:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkPluginFeature at address 0xffffb46f8d40
0:00:00.120826375 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'systemstream'
0:00:00.120849375 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'boolean'
0:00:00.120871375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:670:gst_registry_chunks_load_feature: Reading 2 Typefind extensions at address 0xffffb46f8d77
0:00:00.120902125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d148870 (video/x-dv)
0:00:00.120927875 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<video/x-dv> set parent (ref and sink)
0:00:00.120948750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for video/x-dv
0:00:00.120968250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature video/x-dv, plugin 0x3d132610 typefindfunctions
0:00:00.120989500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'typefindfunctions' feature 'audio/x-amr-nb-sh' typename : 'GstTypeFindFactory'
0:00:00.121033500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:656:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkPluginFeature at address 0xffffb46f8da8
0:00:00.121084000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:670:gst_registry_chunks_load_feature: Reading 1 Typefind extensions at address 0xffffb46f8dca
0:00:00.121113750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d148950 (audio/x-amr-nb-sh)
0:00:00.121139250 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<audio/x-amr-nb-sh> set parent (ref and sink)
0:00:00.121160000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for audio/x-amr-nb-sh
0:00:00.121179625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature audio/x-amr-nb-sh, plugin 0x3d132610 typefindfunctions
0:00:00.121200625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'typefindfunctions' feature 'audio/x-amr-wb-sh' typename : 'GstTypeFindFactory'
0:00:00.121244375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:656:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkPluginFeature at address 0xffffb46f8df8
0:00:00.121271625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:670:gst_registry_chunks_load_feature: Reading 1 Typefind extensions at address 0xffffb46f8e1a
0:00:00.121300750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d148a30 (audio/x-amr-wb-sh)
0:00:00.121327500 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<audio/x-amr-wb-sh> set parent (ref and sink)
0:00:00.121348750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for audio/x-amr-wb-sh
0:00:00.121368500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature audio/x-amr-wb-sh, plugin 0x3d132610 typefindfunctions
0:00:00.121411000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'typefindfunctions' feature 'audio/iLBC-sh' typename : 'GstTypeFindFactory'
0:00:00.121457250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:656:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkPluginFeature at address 0xffffb46f8e40
0:00:00.121484000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:670:gst_registry_chunks_load_feature: Reading 1 Typefind extensions at address 0xffffb46f8e5e
0:00:00.121513625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d148b10 (audio/iLBC-sh)
0:00:00.121539750 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<audio/iLBC-sh> set parent (ref and sink)
0:00:00.121560250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for audio/iLBC-sh
0:00:00.121579250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature audio/iLBC-sh, plugin 0x3d132610 typefindfunctions
0:00:00.121601250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'typefindfunctions' feature 'audio/x-sbc' typename : 'GstTypeFindFactory'
0:00:00.121645500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:656:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkPluginFeature at address 0xffffb46f8e88
0:00:00.121672375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:670:gst_registry_chunks_load_feature: Reading 1 Typefind extensions at address 0xffffb46f8ea4
0:00:00.121700750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d148bf0 (audio/x-sbc)
0:00:00.121726375 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<audio/x-sbc> set parent (ref and sink)
0:00:00.121746750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for audio/x-sbc
0:00:00.121765750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature audio/x-sbc, plugin 0x3d132610 typefindfunctions
0:00:00.121787250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'typefindfunctions' feature 'audio/x-sid' typename : 'GstTypeFindFactory'
0:00:00.121831500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:656:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkPluginFeature at address 0xffffb46f8ec8
0:00:00.121857875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:670:gst_registry_chunks_load_feature: Reading 1 Typefind extensions at address 0xffffb46f8ee4
0:00:00.121886375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d148cd0 (audio/x-sid)
0:00:00.121911875 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<audio/x-sid> set parent (ref and sink)
0:00:00.121932375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for audio/x-sid
0:00:00.121951375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature audio/x-sid, plugin 0x3d132610 typefindfunctions
0:00:00.121972625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'typefindfunctions' feature 'image/x-xcf' typename : 'GstTypeFindFactory'
0:00:00.122032875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:656:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkPluginFeature at address 0xffffb46f8f08
0:00:00.122059875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:670:gst_registry_chunks_load_feature: Reading 1 Typefind extensions at address 0xffffb46f8f24
0:00:00.122088375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d148db0 (image/x-xcf)
0:00:00.122114125 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<image/x-xcf> set parent (ref and sink)
0:00:00.122134750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for image/x-xcf
0:00:00.122153750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature image/x-xcf, plugin 0x3d132610 typefindfunctions
0:00:00.122177000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'typefindfunctions' feature 'video/x-mng' typename : 'GstTypeFindFactory'
0:00:00.122220750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:656:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkPluginFeature at address 0xffffb46f8f48
0:00:00.122247125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:670:gst_registry_chunks_load_feature: Reading 1 Typefind extensions at address 0xffffb46f8f64
0:00:00.122277250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d148e90 (video/x-mng)
0:00:00.122302875 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<video/x-mng> set parent (ref and sink)
0:00:00.122323375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for video/x-mng
0:00:00.122342375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature video/x-mng, plugin 0x3d132610 typefindfunctions
0:00:00.122363625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'typefindfunctions' feature 'image/x-jng' typename : 'GstTypeFindFactory'
0:00:00.122417500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:656:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkPluginFeature at address 0xffffb46f8f88
0:00:00.122456875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:670:gst_registry_chunks_load_feature: Reading 1 Typefind extensions at address 0xffffb46f8fa4
0:00:00.122488250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d14b0a0 (image/x-jng)
0:00:00.122513750 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<image/x-jng> set parent (ref and sink)
0:00:00.122534125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for image/x-jng
0:00:00.122553375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature image/x-jng, plugin 0x3d132610 typefindfunctions
0:00:00.122574625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'typefindfunctions' feature 'image/x-xpixmap' typename : 'GstTypeFindFactory'
0:00:00.122617750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:656:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkPluginFeature at address 0xffffb46f8fd0
0:00:00.122644500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:670:gst_registry_chunks_load_feature: Reading 1 Typefind extensions at address 0xffffb46f8ff0
0:00:00.122688625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d14b180 (image/x-xpixmap)
0:00:00.122715250 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<image/x-xpixmap> set parent (ref and sink)
0:00:00.122736000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for image/x-xpixmap
0:00:00.122756000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature image/x-xpixmap, plugin 0x3d132610 typefindfunctions
0:00:00.122777000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'typefindfunctions' feature 'image/x-sun-raster' typename : 'GstTypeFindFactory'
0:00:00.122820000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:656:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkPluginFeature at address 0xffffb46f9020
0:00:00.122852750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:670:gst_registry_chunks_load_feature: Reading 1 Typefind extensions at address 0xffffb46f9043
0:00:00.122881625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d14b260 (image/x-sun-raster)
0:00:00.122907875 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<image/x-sun-raster> set parent (ref and sink)
0:00:00.122928500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for image/x-sun-raster
0:00:00.122948250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature image/x-sun-raster, plugin 0x3d132610 typefindfunctions
0:00:00.122969500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'typefindfunctions' feature 'application/x-bzip' typename : 'GstTypeFindFactory'
0:00:00.123013000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:656:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkPluginFeature at address 0xffffb46f9070
0:00:00.123040125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:670:gst_registry_chunks_load_feature: Reading 1 Typefind extensions at address 0xffffb46f9093
0:00:00.123069375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d14b340 (application/x-bzip)
0:00:00.123095625 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<application/x-bzip> set parent (ref and sink)
0:00:00.123116000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for application/x-bzip
0:00:00.123135750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature application/x-bzip, plugin 0x3d132610 typefindfunctions
0:00:00.123157500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'typefindfunctions' feature 'application/x-gzip' typename : 'GstTypeFindFactory'
0:00:00.123202250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:656:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkPluginFeature at address 0xffffb46f90c0
0:00:00.123228750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:670:gst_registry_chunks_load_feature: Reading 1 Typefind extensions at address 0xffffb46f90e3
0:00:00.123257625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d14b420 (application/x-gzip)
0:00:00.123283750 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<application/x-gzip> set parent (ref and sink)
0:00:00.123320750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for application/x-gzip
0:00:00.123341625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature application/x-gzip, plugin 0x3d132610 typefindfunctions
0:00:00.123364625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'typefindfunctions' feature 'application/zip' typename : 'GstTypeFindFactory'
0:00:00.123410875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:656:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkPluginFeature at address 0xffffb46f9110
0:00:00.123438250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:670:gst_registry_chunks_load_feature: Reading 1 Typefind extensions at address 0xffffb46f9130
0:00:00.123466625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d14b500 (application/zip)
0:00:00.123492625 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<application/zip> set parent (ref and sink)
0:00:00.123513250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for application/zip
0:00:00.123532875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature application/zip, plugin 0x3d132610 typefindfunctions
0:00:00.123556625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'typefindfunctions' feature 'application/x-compress' typename : 'GstTypeFindFactory'
0:00:00.123601625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:656:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkPluginFeature at address 0xffffb46f9160
0:00:00.123628500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:670:gst_registry_chunks_load_feature: Reading 1 Typefind extensions at address 0xffffb46f9187
0:00:00.123658750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d14b5e0 (application/x-compress)
0:00:00.123686125 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<application/x-compress> set parent (ref and sink)
0:00:00.123707625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for application/x-compress
0:00:00.123727875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature application/x-compress, plugin 0x3d132610 typefindfunctions
0:00:00.123749125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'typefindfunctions' feature 'subtitle/x-kate' typename : 'GstTypeFindFactory'
0:00:00.123803375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:656:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkPluginFeature at address 0xffffb46f91b0
0:00:00.123835125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d14b6c0 (subtitle/x-kate)
0:00:00.123861750 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<subtitle/x-kate> set parent (ref and sink)
0:00:00.123883000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for subtitle/x-kate
0:00:00.123902750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature subtitle/x-kate, plugin 0x3d132610 typefindfunctions
0:00:00.123939625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'typefindfunctions' feature 'application/x-subtitle-vtt' typename : 'GstTypeFindFactory'
0:00:00.123986000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:656:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkPluginFeature at address 0xffffb46f91f0
0:00:00.124014000 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'parsed'
0:00:00.124034500 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'boolean'
0:00:00.124055250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:670:gst_registry_chunks_load_feature: Reading 1 Typefind extensions at address 0xffffb46f9232
0:00:00.124086625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d14d050 (application/x-subtitle-vtt)
0:00:00.124114000 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<application/x-subtitle-vtt> set parent (ref and sink)
0:00:00.124135500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for application/x-subtitle-vtt
0:00:00.124155125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature application/x-subtitle-vtt, plugin 0x3d132610 typefindfunctions
0:00:00.124177125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'typefindfunctions' feature 'audio/x-flac' typename : 'GstTypeFindFactory'
0:00:00.124221250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:656:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkPluginFeature at address 0xffffb46f9258
0:00:00.124247750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:670:gst_registry_chunks_load_feature: Reading 1 Typefind extensions at address 0xffffb46f9275
0:00:00.124276250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d14d130 (audio/x-flac)
0:00:00.124302250 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<audio/x-flac> set parent (ref and sink)
0:00:00.124323500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for audio/x-flac
0:00:00.124343375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature audio/x-flac, plugin 0x3d132610 typefindfunctions
0:00:00.124366625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'typefindfunctions' feature 'audio/x-vorbis' typename : 'GstTypeFindFactory'
0:00:00.124408625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:656:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkPluginFeature at address 0xffffb46f92a0
0:00:00.124442375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d14d210 (audio/x-vorbis)
0:00:00.124469500 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<audio/x-vorbis> set parent (ref and sink)
0:00:00.124490375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for audio/x-vorbis
0:00:00.124509625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature audio/x-vorbis, plugin 0x3d132610 typefindfunctions
0:00:00.124532875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'typefindfunctions' feature 'video/x-theora' typename : 'GstTypeFindFactory'
0:00:00.124595500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:656:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkPluginFeature at address 0xffffb46f92e8
0:00:00.124629375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d14d2f0 (video/x-theora)
0:00:00.124656375 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<video/x-theora> set parent (ref and sink)
0:00:00.124677625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for video/x-theora
0:00:00.124697000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature video/x-theora, plugin 0x3d132610 typefindfunctions
0:00:00.124719250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'typefindfunctions' feature 'application/x-ogm-video' typename : 'GstTypeFindFactory'
0:00:00.124764375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:656:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkPluginFeature at address 0xffffb46f9338
0:00:00.124797625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d14d3d0 (application/x-ogm-video)
0:00:00.124825375 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<application/x-ogm-video> set parent (ref and sink)
0:00:00.124846875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for application/x-ogm-video
0:00:00.124866125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature application/x-ogm-video, plugin 0x3d132610 typefindfunctions
0:00:00.124888750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'typefindfunctions' feature 'application/x-ogm-audio' typename : 'GstTypeFindFactory'
0:00:00.124933125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:656:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkPluginFeature at address 0xffffb46f9390
0:00:00.124975875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d14d4b0 (application/x-ogm-audio)
0:00:00.125004750 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<application/x-ogm-audio> set parent (ref and sink)
0:00:00.125026125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for application/x-ogm-audio
0:00:00.125773125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature application/x-ogm-audio, plugin 0x3d132610 typefindfunctions
0:00:00.125801250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'typefindfunctions' feature 'application/x-ogm-text' typename : 'GstTypeFindFactory'
0:00:00.125852625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:656:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkPluginFeature at address 0xffffb46f93e8
0:00:00.125883500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d14d590 (application/x-ogm-text)
0:00:00.125905875 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<application/x-ogm-text> set parent (ref and sink)
0:00:00.125924125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for application/x-ogm-text
0:00:00.125955375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature application/x-ogm-text, plugin 0x3d132610 typefindfunctions
0:00:00.125974750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'typefindfunctions' feature 'audio/x-speex' typename : 'GstTypeFindFactory'
0:00:00.126011500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:656:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkPluginFeature at address 0xffffb46f9430
0:00:00.126038750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d14d670 (audio/x-speex)
0:00:00.126060750 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<audio/x-speex> set parent (ref and sink)
0:00:00.126078125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for audio/x-speex
0:00:00.126094500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature audio/x-speex, plugin 0x3d132610 typefindfunctions
0:00:00.126111875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'typefindfunctions' feature 'audio/x-celt' typename : 'GstTypeFindFactory'
0:00:00.126146750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:656:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkPluginFeature at address 0xffffb46f9470
0:00:00.126173250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d14e870 (audio/x-celt)
0:00:00.126195500 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<audio/x-celt> set parent (ref and sink)
0:00:00.126212875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for audio/x-celt
0:00:00.126229000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature audio/x-celt, plugin 0x3d132610 typefindfunctions
0:00:00.126246000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'typefindfunctions' feature 'application/x-ogg-skeleton' typename : 'GstTypeFindFactory'
0:00:00.126280625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:656:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkPluginFeature at address 0xffffb46f94c0
0:00:00.126302625 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'parsed'
0:00:00.126318750 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'boolean'
0:00:00.126340750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d14e950 (application/x-ogg-skeleton)
0:00:00.126363000 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<application/x-ogg-skeleton> set parent (ref and sink)
0:00:00.126380250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for application/x-ogg-skeleton
0:00:00.126396500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature application/x-ogg-skeleton, plugin 0x3d132610 typefindfunctions
0:00:00.126414625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'typefindfunctions' feature 'text/x-cmml' typename : 'GstTypeFindFactory'
0:00:00.126451625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:656:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkPluginFeature at address 0xffffb46f9528
0:00:00.126502000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d14ea30 (text/x-cmml)
0:00:00.126525500 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<text/x-cmml> set parent (ref and sink)
0:00:00.126542750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for text/x-cmml
0:00:00.126558500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature text/x-cmml, plugin 0x3d132610 typefindfunctions
0:00:00.126575875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'typefindfunctions' feature 'application/x-executable' typename : 'GstTypeFindFactory'
0:00:00.126611375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:656:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkPluginFeature at address 0xffffb46f9570
0:00:00.126638250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d14eb10 (application/x-executable)
0:00:00.126660250 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<application/x-executable> set parent (ref and sink)
0:00:00.126677625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for application/x-executable
0:00:00.126693375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature application/x-executable, plugin 0x3d132610 typefindfunctions
0:00:00.126710000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'typefindfunctions' feature 'audio/aac' typename : 'GstTypeFindFactory'
0:00:00.126743875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:656:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkPluginFeature at address 0xffffb46f95b8
0:00:00.126765875 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'mpegversion'
0:00:00.126781750 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'int'
0:00:00.126802500 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'framed'
0:00:00.126819125 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'boolean'
0:00:00.126836125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:670:gst_registry_chunks_load_feature: Reading 4 Typefind extensions at address 0xffffb46f9605
0:00:00.126860375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d14ebf0 (audio/aac)
0:00:00.126881375 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<audio/aac> set parent (ref and sink)
0:00:00.126898500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for audio/aac
0:00:00.126914125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature audio/aac, plugin 0x3d132610 typefindfunctions
0:00:00.126931750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'typefindfunctions' feature 'audio/x-spc' typename : 'GstTypeFindFactory'
0:00:00.126983000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:656:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkPluginFeature at address 0xffffb46f9638
0:00:00.127018750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:670:gst_registry_chunks_load_feature: Reading 1 Typefind extensions at address 0xffffb46f9654
0:00:00.127043500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d14ecd0 (audio/x-spc)
0:00:00.127064875 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<audio/x-spc> set parent (ref and sink)
0:00:00.127082000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for audio/x-spc
0:00:00.127098000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature audio/x-spc, plugin 0x3d132610 typefindfunctions
0:00:00.127115625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'typefindfunctions' feature 'audio/x-wavpack' typename : 'GstTypeFindFactory'
0:00:00.127150750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:656:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkPluginFeature at address 0xffffb46f9680
0:00:00.127172875 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'framed'
0:00:00.127189375 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'boolean'
0:00:00.127206125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:670:gst_registry_chunks_load_feature: Reading 2 Typefind extensions at address 0xffffb46f96b7
0:00:00.127232750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d14edb0 (audio/x-wavpack)
0:00:00.127254250 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<audio/x-wavpack> set parent (ref and sink)
0:00:00.127271125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for audio/x-wavpack
0:00:00.127286625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature audio/x-wavpack, plugin 0x3d132610 typefindfunctions
0:00:00.127304625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'typefindfunctions' feature 'audio/x-wavpack-correction' typename : 'GstTypeFindFactory'
0:00:00.127340125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:656:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkPluginFeature at address 0xffffb46f96f0
0:00:00.127362000 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'framed'
0:00:00.127378000 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'boolean'
0:00:00.127394000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:670:gst_registry_chunks_load_feature: Reading 1 Typefind extensions at address 0xffffb46f9732
0:00:00.127416625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d14ee90 (audio/x-wavpack-correction)
0:00:00.127438500 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<audio/x-wavpack-correction> set parent (ref and sink)
0:00:00.127455250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for audio/x-wavpack-correction
0:00:00.127471250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature audio/x-wavpack-correction, plugin 0x3d132610 typefindfunctions
0:00:00.127488750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'typefindfunctions' feature 'audio/x-caf' typename : 'GstTypeFindFactory'
0:00:00.127537500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:656:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkPluginFeature at address 0xffffb46f9758
0:00:00.127560125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:670:gst_registry_chunks_load_feature: Reading 1 Typefind extensions at address 0xffffb46f9774
0:00:00.127583000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d1508c0 (audio/x-caf)
0:00:00.127604000 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<audio/x-caf> set parent (ref and sink)
0:00:00.127620750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for audio/x-caf
0:00:00.127636375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature audio/x-caf, plugin 0x3d132610 typefindfunctions
0:00:00.127653750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'typefindfunctions' feature 'application/postscript' typename : 'GstTypeFindFactory'
0:00:00.127689125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:656:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkPluginFeature at address 0xffffb46f97a8
0:00:00.127710875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:670:gst_registry_chunks_load_feature: Reading 1 Typefind extensions at address 0xffffb46f97cf
0:00:00.127733750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d1509a0 (application/postscript)
0:00:00.127755875 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<application/postscript> set parent (ref and sink)
0:00:00.127773375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for application/postscript
0:00:00.127789750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature application/postscript, plugin 0x3d132610 typefindfunctions
0:00:00.127807000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'typefindfunctions' feature 'image/svg+xml' typename : 'GstTypeFindFactory'
0:00:00.127841750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:656:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkPluginFeature at address 0xffffb46f97f8
0:00:00.127863625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:670:gst_registry_chunks_load_feature: Reading 1 Typefind extensions at address 0xffffb46f9816
0:00:00.127886250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d150a80 (image/svg+xml)
0:00:00.127907500 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<image/svg+xml> set parent (ref and sink)
0:00:00.127924750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for image/svg+xml
0:00:00.127940750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature image/svg+xml, plugin 0x3d132610 typefindfunctions
0:00:00.127959500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'typefindfunctions' feature 'application/x-rar' typename : 'GstTypeFindFactory'
0:00:00.127996750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:656:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkPluginFeature at address 0xffffb46f9840
0:00:00.128032375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:670:gst_registry_chunks_load_feature: Reading 1 Typefind extensions at address 0xffffb46f9862
0:00:00.128058125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d150b60 (application/x-rar)
0:00:00.128079750 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<application/x-rar> set parent (ref and sink)
0:00:00.128096750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for application/x-rar
0:00:00.128112625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature application/x-rar, plugin 0x3d132610 typefindfunctions
0:00:00.128131250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'typefindfunctions' feature 'application/x-tar' typename : 'GstTypeFindFactory'
0:00:00.128176500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:656:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkPluginFeature at address 0xffffb46f9890
0:00:00.128208000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:670:gst_registry_chunks_load_feature: Reading 1 Typefind extensions at address 0xffffb46f98b2
0:00:00.128233000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d150c40 (application/x-tar)
0:00:00.128254250 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<application/x-tar> set parent (ref and sink)
0:00:00.128271750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for application/x-tar
0:00:00.128287875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature application/x-tar, plugin 0x3d132610 typefindfunctions
0:00:00.128305125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'typefindfunctions' feature 'application/x-ar' typename : 'GstTypeFindFactory'
0:00:00.128340875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:656:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkPluginFeature at address 0xffffb46f98e0
0:00:00.128362250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:670:gst_registry_chunks_load_feature: Reading 1 Typefind extensions at address 0xffffb46f9901
0:00:00.128386250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d150d20 (application/x-ar)
0:00:00.128408000 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<application/x-ar> set parent (ref and sink)
0:00:00.128425125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for application/x-ar
0:00:00.128441000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature application/x-ar, plugin 0x3d132610 typefindfunctions
0:00:00.128459000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'typefindfunctions' feature 'application/x-ms-dos-executable' typename : 'GstTypeFindFactory'
0:00:00.128496250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:656:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkPluginFeature at address 0xffffb46f9938
0:00:00.128518250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:670:gst_registry_chunks_load_feature: Reading 7 Typefind extensions at address 0xffffb46f9968
0:00:00.128558625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d150e00 (application/x-ms-dos-executable)
0:00:00.128581750 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<application/x-ms-dos-executable> set parent (ref and sink)
0:00:00.128599000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for application/x-ms-dos-executable
0:00:00.128615125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature application/x-ms-dos-executable, plugin 0x3d132610 typefindfunctions
0:00:00.128632875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'typefindfunctions' feature 'video/x-dirac' typename : 'GstTypeFindFactory'
0:00:00.128668750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:656:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkPluginFeature at address 0xffffb46f99b0
0:00:00.128695000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d150ee0 (video/x-dirac)
0:00:00.128716750 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<video/x-dirac> set parent (ref and sink)
0:00:00.128734250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for video/x-dirac
0:00:00.128750375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature video/x-dirac, plugin 0x3d132610 typefindfunctions
0:00:00.128767375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'typefindfunctions' feature 'multipart/x-mixed-replace' typename : 'GstTypeFindFactory'
0:00:00.128802000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:656:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkPluginFeature at address 0xffffb46f9a00
0:00:00.128830250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d151800 (multipart/x-mixed-replace)
0:00:00.128852500 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<multipart/x-mixed-replace> set parent (ref and sink)
0:00:00.128869750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for multipart/x-mixed-replace
0:00:00.128885875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature multipart/x-mixed-replace, plugin 0x3d132610 typefindfunctions
0:00:00.128910875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'typefindfunctions' feature 'application/x-mmsh' typename : 'GstTypeFindFactory'
0:00:00.128948375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:656:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkPluginFeature at address 0xffffb46f9a50
0:00:00.128978750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d1518e0 (application/x-mmsh)
0:00:00.129007625 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<application/x-mmsh> set parent (ref and sink)
0:00:00.129024875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for application/x-mmsh
0:00:00.129055750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature application/x-mmsh, plugin 0x3d132610 typefindfunctions
0:00:00.129093875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'typefindfunctions' feature 'video/vivo' typename : 'GstTypeFindFactory'
0:00:00.129133875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:656:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkPluginFeature at address 0xffffb46f9a98
0:00:00.129159000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:670:gst_registry_chunks_load_feature: Reading 1 Typefind extensions at address 0xffffb46f9ab3
0:00:00.129184250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d1519c0 (video/vivo)
0:00:00.129205500 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<video/vivo> set parent (ref and sink)
0:00:00.129222750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for video/vivo
0:00:00.129238500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature video/vivo, plugin 0x3d132610 typefindfunctions
0:00:00.129256000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'typefindfunctions' feature 'audio/x-nsf' typename : 'GstTypeFindFactory'
0:00:00.129300375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:656:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkPluginFeature at address 0xffffb46f9ad8
0:00:00.129322875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:670:gst_registry_chunks_load_feature: Reading 1 Typefind extensions at address 0xffffb46f9af4
0:00:00.129347875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d151aa0 (audio/x-nsf)
0:00:00.129368750 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<audio/x-nsf> set parent (ref and sink)
0:00:00.129385625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for audio/x-nsf
0:00:00.129401250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature audio/x-nsf, plugin 0x3d132610 typefindfunctions
0:00:00.129418875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'typefindfunctions' feature 'audio/x-gym' typename : 'GstTypeFindFactory'
0:00:00.129454125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:656:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkPluginFeature at address 0xffffb46f9b18
0:00:00.129475625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:670:gst_registry_chunks_load_feature: Reading 1 Typefind extensions at address 0xffffb46f9b34
0:00:00.129499000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d151b80 (audio/x-gym)
0:00:00.129519750 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<audio/x-gym> set parent (ref and sink)
0:00:00.129536750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for audio/x-gym
0:00:00.129552375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature audio/x-gym, plugin 0x3d132610 typefindfunctions
0:00:00.129569625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'typefindfunctions' feature 'audio/x-ay' typename : 'GstTypeFindFactory'
0:00:00.129604625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:656:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkPluginFeature at address 0xffffb46f9b58
0:00:00.129639500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:670:gst_registry_chunks_load_feature: Reading 1 Typefind extensions at address 0xffffb46f9b73
0:00:00.129667000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d151c60 (audio/x-ay)
0:00:00.129688625 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<audio/x-ay> set parent (ref and sink)
0:00:00.129705500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for audio/x-ay
0:00:00.129720875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature audio/x-ay, plugin 0x3d132610 typefindfunctions
0:00:00.129738625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'typefindfunctions' feature 'audio/x-gbs' typename : 'GstTypeFindFactory'
0:00:00.129774250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:656:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkPluginFeature at address 0xffffb46f9b98
0:00:00.129798125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:670:gst_registry_chunks_load_feature: Reading 1 Typefind extensions at address 0xffffb46f9bb4
0:00:00.129821125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d151d40 (audio/x-gbs)
0:00:00.129842000 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<audio/x-gbs> set parent (ref and sink)
0:00:00.129859375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for audio/x-gbs
0:00:00.129875125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature audio/x-gbs, plugin 0x3d132610 typefindfunctions
0:00:00.129892375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'typefindfunctions' feature 'audio/x-vgm' typename : 'GstTypeFindFactory'
0:00:00.129926875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:656:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkPluginFeature at address 0xffffb46f9bd8
0:00:00.129947875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:670:gst_registry_chunks_load_feature: Reading 1 Typefind extensions at address 0xffffb46f9bf4
0:00:00.129971125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d151e20 (audio/x-vgm)
0:00:00.129992500 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<audio/x-vgm> set parent (ref and sink)
0:00:00.130009500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for audio/x-vgm
0:00:00.130025125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature audio/x-vgm, plugin 0x3d132610 typefindfunctions
0:00:00.130042250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'typefindfunctions' feature 'audio/x-sap' typename : 'GstTypeFindFactory'
0:00:00.130076500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:656:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkPluginFeature at address 0xffffb46f9c18
0:00:00.130098000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:670:gst_registry_chunks_load_feature: Reading 1 Typefind extensions at address 0xffffb46f9c34
0:00:00.130120625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d1560b0 (audio/x-sap)
0:00:00.130154750 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<audio/x-sap> set parent (ref and sink)
0:00:00.130172625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for audio/x-sap
0:00:00.130188375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature audio/x-sap, plugin 0x3d132610 typefindfunctions
0:00:00.130205375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'typefindfunctions' feature 'video/x-ivf' typename : 'GstTypeFindFactory'
0:00:00.130240000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:656:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkPluginFeature at address 0xffffb46f9c58
0:00:00.130261250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:670:gst_registry_chunks_load_feature: Reading 1 Typefind extensions at address 0xffffb46f9c74
0:00:00.130296375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d156190 (video/x-ivf)
0:00:00.130318375 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<video/x-ivf> set parent (ref and sink)
0:00:00.130335375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for video/x-ivf
0:00:00.130351000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature video/x-ivf, plugin 0x3d132610 typefindfunctions
0:00:00.130370375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'typefindfunctions' feature 'audio/x-kss' typename : 'GstTypeFindFactory'
0:00:00.130420500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:656:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkPluginFeature at address 0xffffb46f9c98
0:00:00.130443125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:670:gst_registry_chunks_load_feature: Reading 1 Typefind extensions at address 0xffffb46f9cb4
0:00:00.130468625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d156270 (audio/x-kss)
0:00:00.130489500 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<audio/x-kss> set parent (ref and sink)
0:00:00.130506250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for audio/x-kss
0:00:00.130522125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature audio/x-kss, plugin 0x3d132610 typefindfunctions
0:00:00.130541750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'typefindfunctions' feature 'application/pdf' typename : 'GstTypeFindFactory'
0:00:00.130576750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:656:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkPluginFeature at address 0xffffb46f9ce0
0:00:00.130598500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:670:gst_registry_chunks_load_feature: Reading 1 Typefind extensions at address 0xffffb46f9d00
0:00:00.130621125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d156350 (application/pdf)
0:00:00.130641875 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<application/pdf> set parent (ref and sink)
0:00:00.130658875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for application/pdf
0:00:00.130687500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature application/pdf, plugin 0x3d132610 typefindfunctions
0:00:00.130706250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'typefindfunctions' feature 'application/msword' typename : 'GstTypeFindFactory'
0:00:00.130741375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:656:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkPluginFeature at address 0xffffb46f9d30
0:00:00.130762875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:670:gst_registry_chunks_load_feature: Reading 1 Typefind extensions at address 0xffffb46f9d53
0:00:00.130785000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d156430 (application/msword)
0:00:00.130805625 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<application/msword> set parent (ref and sink)
0:00:00.130822375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for application/msword
0:00:00.130838000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature application/msword, plugin 0x3d132610 typefindfunctions
0:00:00.130855000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'typefindfunctions' feature 'image/vnd.adobe.photoshop' typename : 'GstTypeFindFactory'
0:00:00.130889125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:656:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkPluginFeature at address 0xffffb46f9d88
0:00:00.130912375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:670:gst_registry_chunks_load_feature: Reading 1 Typefind extensions at address 0xffffb46f9db2
0:00:00.130935375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d156510 (image/vnd.adobe.photoshop)
0:00:00.130957250 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<image/vnd.adobe.photoshop> set parent (ref and sink)
0:00:00.130974750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for image/vnd.adobe.photoshop
0:00:00.130990875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature image/vnd.adobe.photoshop, plugin 0x3d132610 typefindfunctions
0:00:00.131008250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'typefindfunctions' feature 'image/vnd.wap.wbmp' typename : 'GstTypeFindFactory'
0:00:00.131042125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:656:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkPluginFeature at address 0xffffb46f9de0
0:00:00.131064500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d1565f0 (image/vnd.wap.wbmp)
0:00:00.131086125 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<image/vnd.wap.wbmp> set parent (ref and sink)
0:00:00.131103000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for image/vnd.wap.wbmp
0:00:00.131119000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature image/vnd.wap.wbmp, plugin 0x3d132610 typefindfunctions
0:00:00.131136875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'typefindfunctions' feature 'application/x-yuv4mpeg' typename : 'GstTypeFindFactory'
0:00:00.131184875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:656:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkPluginFeature at address 0xffffb46f9e20
0:00:00.131208125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d1566d0 (application/x-yuv4mpeg)
0:00:00.131230125 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<application/x-yuv4mpeg> set parent (ref and sink)
0:00:00.131247250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for application/x-yuv4mpeg
0:00:00.131263125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature application/x-yuv4mpeg, plugin 0x3d132610 typefindfunctions
0:00:00.131281000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'typefindfunctions' feature 'image/x-icon' typename : 'GstTypeFindFactory'
0:00:00.131315250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:656:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkPluginFeature at address 0xffffb46f9e58
0:00:00.131337875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d1578c0 (image/x-icon)
0:00:00.131359125 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<image/x-icon> set parent (ref and sink)
0:00:00.131376250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for image/x-icon
0:00:00.131392000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature image/x-icon, plugin 0x3d132610 typefindfunctions
0:00:00.131409750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'typefindfunctions' feature 'image/x-degas' typename : 'GstTypeFindFactory'
0:00:00.131445375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:656:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkPluginFeature at address 0xffffb46f9e90
0:00:00.131468500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d1579a0 (image/x-degas)
0:00:00.131489750 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<image/x-degas> set parent (ref and sink)
0:00:00.131506875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for image/x-degas
0:00:00.131522750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature image/x-degas, plugin 0x3d132610 typefindfunctions
0:00:00.131540250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'typefindfunctions' feature 'application/octet-stream' typename : 'GstTypeFindFactory'
0:00:00.131575000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:656:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkPluginFeature at address 0xffffb46f9ed0
0:00:00.131597375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d157a80 (application/octet-stream)
0:00:00.131618375 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<application/octet-stream> set parent (ref and sink)
0:00:00.131635750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for application/octet-stream
0:00:00.131651625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature application/octet-stream, plugin 0x3d132610 typefindfunctions
0:00:00.131681000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'typefindfunctions' feature 'application/x-ssa' typename : 'GstTypeFindFactory'
0:00:00.131717625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:656:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkPluginFeature at address 0xffffb46f9f08
0:00:00.131735375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:670:gst_registry_chunks_load_feature: Reading 2 Typefind extensions at address 0xffffb46f9f19
0:00:00.131757875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d157b60 (application/x-ssa)
0:00:00.131778750 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<application/x-ssa> set parent (ref and sink)
0:00:00.131795875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for application/x-ssa
0:00:00.131811750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature application/x-ssa, plugin 0x3d132610 typefindfunctions
0:00:00.131829375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'typefindfunctions' feature 'video/x-pva' typename : 'GstTypeFindFactory'
0:00:00.131863875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:656:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkPluginFeature at address 0xffffb46f9f40
0:00:00.131885875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:670:gst_registry_chunks_load_feature: Reading 1 Typefind extensions at address 0xffffb46f9f5c
0:00:00.131919000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d157c40 (video/x-pva)
0:00:00.131940875 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<video/x-pva> set parent (ref and sink)
0:00:00.131957625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for video/x-pva
0:00:00.131973250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature video/x-pva, plugin 0x3d132610 typefindfunctions
0:00:00.131990000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'typefindfunctions' feature 'audio/x-xi' typename : 'GstTypeFindFactory'
0:00:00.132025250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:656:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkPluginFeature at address 0xffffb46f9f80
0:00:00.132047000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:670:gst_registry_chunks_load_feature: Reading 1 Typefind extensions at address 0xffffb46f9f9b
0:00:00.132069625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d157d20 (audio/x-xi)
0:00:00.132090125 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<audio/x-xi> set parent (ref and sink)
0:00:00.132106875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for audio/x-xi
0:00:00.132122500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature audio/x-xi, plugin 0x3d132610 typefindfunctions
0:00:00.132139250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'typefindfunctions' feature 'audio/audible' typename : 'GstTypeFindFactory'
0:00:00.132187250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:656:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkPluginFeature at address 0xffffb46f9fc0
0:00:00.132208625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:670:gst_registry_chunks_load_feature: Reading 2 Typefind extensions at address 0xffffb46f9fe0
0:00:00.132231375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d157e00 (audio/audible)
0:00:00.132251875 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<audio/audible> set parent (ref and sink)
0:00:00.132268750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for audio/audible
0:00:00.132284375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature audio/audible, plugin 0x3d132610 typefindfunctions
0:00:00.132301750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrybinary.c:606:priv_gst_registry_binary_read_cache: reading binary registry 159719(26fe7)/405909
0:00:00.132319125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:829:_priv_gst_registry_chunks_load_plugin: Reading/casting for GstRegistryChunkPluginElement at address 0xffffb46f9fe8
0:00:00.132357875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:850:_priv_gst_registry_chunks_load_plugin: read strings for name='dtmf'
0:00:00.132376250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:851:_priv_gst_registry_chunks_load_plugin: desc.description='DTMF plugins'
0:00:00.132390500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:852:_priv_gst_registry_chunks_load_plugin: filename='/data/halley/gst-sdk/lib/gstreamer-1.0/libgstdtmf.so'
0:00:00.132405125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:853:_priv_gst_registry_chunks_load_plugin: desc.version='1.14.0'
0:00:00.132419250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:854:_priv_gst_registry_chunks_load_plugin: desc.license='LGPL'
0:00:00.132433125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:855:_priv_gst_registry_chunks_load_plugin: desc.source='gst-plugins-good'
0:00:00.132447625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:856:_priv_gst_registry_chunks_load_plugin: desc.package='GStreamer Good Plug-ins source release'
0:00:00.132462125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:857:_priv_gst_registry_chunks_load_plugin: desc.origin='Unknown package origin'
0:00:00.132476250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:858:_priv_gst_registry_chunks_load_plugin: desc.datetime=2018-03-19
0:00:00.132496000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:466:gst_registry_add_plugin:<registry0> adding plugin 0x3d132740 for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstdtmf.so"
0:00:00.132518250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:479:gst_registry_add_plugin:<registry0> emitting plugin-added for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstdtmf.so"
0:00:00.132534875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:879:_priv_gst_registry_chunks_load_plugin: Added plugin 'dtmf' plugin with 3 features from binary registry
0:00:00.132551875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'dtmf' feature 'dtmfsrc' typename : 'GstElementFactory'
0:00:00.132587500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb46fa0c8
0:00:00.132609625 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.132638750 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.132660500 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.132676750 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.132694500 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.132710125 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.132728375 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.132744000 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.132761000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=1
0:00:00.132776125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46fa1a8
0:00:00.132794250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.132815250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d157ee0 (dtmfsrc)
0:00:00.132843750 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<dtmfsrc> set parent (ref and sink)
0:00:00.132861625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for dtmfsrc
0:00:00.132877375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature dtmfsrc, plugin 0x3d132740 dtmf
0:00:00.132894500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'dtmf' feature 'rtpdtmfsrc' typename : 'GstElementFactory'
0:00:00.132937750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb46fa228
0:00:00.132960375 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.132976000 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.132993500 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.133009000 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.133025625 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.133040625 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.133079750 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.133095375 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.133111875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=1
0:00:00.133126625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46fa310
0:00:00.133157000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.133179500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d159840 (rtpdtmfsrc)
0:00:00.133200375 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<rtpdtmfsrc> set parent (ref and sink)
0:00:00.133217250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for rtpdtmfsrc
0:00:00.133232875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature rtpdtmfsrc, plugin 0x3d132740 dtmf
0:00:00.133249750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'dtmf' feature 'rtpdtmfdepay' typename : 'GstElementFactory'
0:00:00.133285625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb46fa3c8
0:00:00.133307625 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.133323250 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.133340750 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.133356125 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.133373125 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.133387875 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.133405625 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.133421125 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.133437750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.133452875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46fa4e8
0:00:00.133469125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.133483500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46fa548
0:00:00.133500250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.133520250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d159920 (rtpdtmfdepay)
0:00:00.133541250 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<rtpdtmfdepay> set parent (ref and sink)
0:00:00.133558000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for rtpdtmfdepay
0:00:00.133573500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature rtpdtmfdepay, plugin 0x3d132740 dtmf
0:00:00.133590625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrybinary.c:606:priv_gst_registry_binary_read_cache: reading binary registry 161248(275e0)/405909
0:00:00.133607125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:829:_priv_gst_registry_chunks_load_plugin: Reading/casting for GstRegistryChunkPluginElement at address 0xffffb46fa5e0
0:00:00.133656500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:850:_priv_gst_registry_chunks_load_plugin: read strings for name='debug'
0:00:00.133674375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:851:_priv_gst_registry_chunks_load_plugin: desc.description='elements for testing and debugging'
0:00:00.133689500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:852:_priv_gst_registry_chunks_load_plugin: filename='/data/halley/gst-sdk/lib/gstreamer-1.0/libgstdebug.so'
0:00:00.133704125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:853:_priv_gst_registry_chunks_load_plugin: desc.version='1.14.0'
0:00:00.133717750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:854:_priv_gst_registry_chunks_load_plugin: desc.license='LGPL'
0:00:00.133731125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:855:_priv_gst_registry_chunks_load_plugin: desc.source='gst-plugins-good'
0:00:00.133745125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:856:_priv_gst_registry_chunks_load_plugin: desc.package='GStreamer Good Plug-ins source release'
0:00:00.133759625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:857:_priv_gst_registry_chunks_load_plugin: desc.origin='Unknown package origin'
0:00:00.133773625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:858:_priv_gst_registry_chunks_load_plugin: desc.datetime=2018-03-19
0:00:00.133791625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:466:gst_registry_add_plugin:<registry0> adding plugin 0x3d132870 for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstdebug.so"
0:00:00.133813625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:479:gst_registry_add_plugin:<registry0> emitting plugin-added for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstdebug.so"
0:00:00.133830000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:879:_priv_gst_registry_chunks_load_plugin: Added plugin 'debug' plugin with 9 features from binary registry
0:00:00.133847000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'debug' feature 'breakmydata' typename : 'GstElementFactory'
0:00:00.133881875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb46fa6e0
0:00:00.133903750 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.133919500 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.133936625 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.133952000 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.133968625 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.133984000 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.134001500 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.134017125 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.134033375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.134048125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46fa7b0
0:00:00.134079125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.134095000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46fa7c8
0:00:00.134110625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.134130375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d159a00 (breakmydata)
0:00:00.134151000 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<breakmydata> set parent (ref and sink)
0:00:00.134167750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for breakmydata
0:00:00.134183250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature breakmydata, plugin 0x3d132870 debug
0:00:00.134199875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'debug' feature 'capssetter' typename : 'GstElementFactory'
0:00:00.134234875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb46fa7f8
0:00:00.134256000 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.134271625 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.134288500 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.134303750 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.134320250 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.134335125 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.134352500 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.134367875 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.134384500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.134399125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46fa8c8
0:00:00.134414750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.134429250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46fa8e0
0:00:00.134444625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.134464250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d159ae0 (capssetter)
0:00:00.134484500 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<capssetter> set parent (ref and sink)
0:00:00.134501250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for capssetter
0:00:00.134529375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature capssetter, plugin 0x3d132870 debug
0:00:00.134547750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'debug' feature 'rndbuffersize' typename : 'GstElementFactory'
0:00:00.134582875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb46fa910
0:00:00.134609500 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.134626000 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.134643250 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.134658875 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.134675750 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.134690875 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.134708000 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.134723250 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.134739750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.134754500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46fa9e8
0:00:00.134770000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.134784625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46faa00
0:00:00.134800000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.134819625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d159bc0 (rndbuffersize)
0:00:00.134840500 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<rndbuffersize> set parent (ref and sink)
0:00:00.134857875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for rndbuffersize
0:00:00.134873625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature rndbuffersize, plugin 0x3d132870 debug
0:00:00.134890500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'debug' feature 'navseek' typename : 'GstElementFactory'
0:00:00.134925750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb46faa30
0:00:00.134946875 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.134962250 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.134979625 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.135008625 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.135027625 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.135042625 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.135059875 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.135075125 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.135091375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.135106125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46fab30
0:00:00.135121500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.135135625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46fab48
0:00:00.135150875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.135170750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d159ca0 (navseek)
0:00:00.135191375 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<navseek> set parent (ref and sink)
0:00:00.135208625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for navseek
0:00:00.135224375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature navseek, plugin 0x3d132870 debug
0:00:00.135241250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'debug' feature 'pushfilesrc' typename : 'GstElementFactory'
0:00:00.135276625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb46fab78
0:00:00.135297875 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.135313500 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.135330625 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.135345875 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.135362375 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.135377250 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.135395000 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.135410250 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.135427000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=1
0:00:00.135441625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46fac80
0:00:00.135469875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.135485875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:628:gst_registry_chunks_load_feature: Reading 1 UriTypes at address 0xffffb46fac90
0:00:00.135502250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:643:gst_registry_chunks_load_feature: Reading 2 Interfaces at address 0xffffb46fac9d
0:00:00.135525750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d159d80 (pushfilesrc)
0:00:00.135546250 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<pushfilesrc> set parent (ref and sink)
0:00:00.135563750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for pushfilesrc
0:00:00.135579500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature pushfilesrc, plugin 0x3d132870 debug
0:00:00.135596000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'debug' feature 'progressreport' typename : 'GstElementFactory'
0:00:00.135835625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb46face0
0:00:00.135858625 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.135872375 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.135887500 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.135900500 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.135914500 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.135926875 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.135941375 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.135953875 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.135967375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.135979875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46fadd0
0:00:00.135993125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.136005125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46fade8
0:00:00.136017750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.136035000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d159e60 (progressreport)
0:00:00.136052250 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<progressreport> set parent (ref and sink)
0:00:00.136066625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for progressreport
0:00:00.136079500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature progressreport, plugin 0x3d132870 debug
0:00:00.136105250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'debug' feature 'taginject' typename : 'GstElementFactory'
0:00:00.136137125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb46fae18
0:00:00.136154500 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.136167125 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.136181125 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.136193875 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.136207625 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.136220000 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.136234125 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.136246375 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.136259625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.136271625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46faed8
0:00:00.136284250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.136295875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46faee8
0:00:00.136318375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.136336375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d15b080 (taginject)
0:00:00.136353125 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<taginject> set parent (ref and sink)
0:00:00.136366875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for taginject
0:00:00.136379500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature taginject, plugin 0x3d132870 debug
0:00:00.136393500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'debug' feature 'testsink' typename : 'GstElementFactory'
0:00:00.136422500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb46faf18
0:00:00.136439500 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.136452125 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.136465875 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.136478500 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.136503000 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.136516500 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.136530750 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.136543000 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.136556000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=1
0:00:00.136568000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46fafe0
0:00:00.136580375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.136596875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d15b160 (testsink)
0:00:00.136613875 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<testsink> set parent (ref and sink)
0:00:00.136627875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for testsink
0:00:00.136640625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature testsink, plugin 0x3d132870 debug
0:00:00.136654625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'debug' feature 'cpureport' typename : 'GstElementFactory'
0:00:00.136683500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb46fb010
0:00:00.136701375 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.136714250 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.136728125 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.136741000 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.136754500 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.136766875 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.136781250 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.136793750 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.136807250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.136819375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46fb100
0:00:00.136831750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.136843375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46fb118
0:00:00.136855875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.136882500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d15b240 (cpureport)
0:00:00.136899750 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<cpureport> set parent (ref and sink)
0:00:00.136913375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for cpureport
0:00:00.136926250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature cpureport, plugin 0x3d132870 debug
0:00:00.136940125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrybinary.c:606:priv_gst_registry_binary_read_cache: reading binary registry 164136(28128)/405909
0:00:00.136953625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:829:_priv_gst_registry_chunks_load_plugin: Reading/casting for GstRegistryChunkPluginElement at address 0xffffb46fb128
0:00:00.136990500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:850:_priv_gst_registry_chunks_load_plugin: read strings for name='goom2k1'
0:00:00.137005125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:851:_priv_gst_registry_chunks_load_plugin: desc.description='GOOM 2k1 visualization filter'
0:00:00.137016875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:852:_priv_gst_registry_chunks_load_plugin: filename='/data/halley/gst-sdk/lib/gstreamer-1.0/libgstgoom2k1.so'
0:00:00.137028875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:853:_priv_gst_registry_chunks_load_plugin: desc.version='1.14.0'
0:00:00.137039875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:854:_priv_gst_registry_chunks_load_plugin: desc.license='LGPL'
0:00:00.137069000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:855:_priv_gst_registry_chunks_load_plugin: desc.source='gst-plugins-good'
0:00:00.137081375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:856:_priv_gst_registry_chunks_load_plugin: desc.package='GStreamer Good Plug-ins source release'
0:00:00.137092625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:857:_priv_gst_registry_chunks_load_plugin: desc.origin='Unknown package origin'
0:00:00.137103750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:858:_priv_gst_registry_chunks_load_plugin: desc.datetime=2018-03-19
0:00:00.137118625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:466:gst_registry_add_plugin:<registry0> adding plugin 0x3d1329a0 for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstgoom2k1.so"
0:00:00.137136500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:479:gst_registry_add_plugin:<registry0> emitting plugin-added for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstgoom2k1.so"
0:00:00.137149875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:879:_priv_gst_registry_chunks_load_plugin: Added plugin 'goom2k1' plugin with 1 features from binary registry
0:00:00.137163500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'goom2k1' feature 'goom2k1' typename : 'GstElementFactory'
0:00:00.137192125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb46fb220
0:00:00.137210000 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.137222750 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.137237125 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.137249625 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.137274875 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.137287875 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.137302750 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.137315375 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.137328625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.137340750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46fb340
0:00:00.137356000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.137368000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46fb450
0:00:00.137382375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.137398875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d15b320 (goom2k1)
0:00:00.137415375 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<goom2k1> set parent (ref and sink)
0:00:00.137429000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for goom2k1
0:00:00.137441625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature goom2k1, plugin 0x3d1329a0 goom2k1
0:00:00.137455125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrybinary.c:606:priv_gst_registry_binary_read_cache: reading binary registry 165093(284e5)/405909
0:00:00.137468750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:829:_priv_gst_registry_chunks_load_plugin: Reading/casting for GstRegistryChunkPluginElement at address 0xffffb46fb4e8
0:00:00.137497000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:850:_priv_gst_registry_chunks_load_plugin: read strings for name='wavenc'
0:00:00.137511125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:851:_priv_gst_registry_chunks_load_plugin: desc.description='Encode raw audio into WAV'
0:00:00.137522875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:852:_priv_gst_registry_chunks_load_plugin: filename='/data/halley/gst-sdk/lib/gstreamer-1.0/libgstwavenc.so'
0:00:00.137534500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:853:_priv_gst_registry_chunks_load_plugin: desc.version='1.14.0'
0:00:00.137545375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:854:_priv_gst_registry_chunks_load_plugin: desc.license='LGPL'
0:00:00.137556250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:855:_priv_gst_registry_chunks_load_plugin: desc.source='gst-plugins-good'
0:00:00.137567625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:856:_priv_gst_registry_chunks_load_plugin: desc.package='GStreamer Good Plug-ins source release'
0:00:00.137578875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:857:_priv_gst_registry_chunks_load_plugin: desc.origin='Unknown package origin'
0:00:00.137590000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:858:_priv_gst_registry_chunks_load_plugin: desc.datetime=2018-03-19
0:00:00.137616000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:466:gst_registry_add_plugin:<registry0> adding plugin 0x3d132ad0 for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstwavenc.so"
0:00:00.137640250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:479:gst_registry_add_plugin:<registry0> emitting plugin-added for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstwavenc.so"
0:00:00.137654125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:879:_priv_gst_registry_chunks_load_plugin: Added plugin 'wavenc' plugin with 1 features from binary registry
0:00:00.137668125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'wavenc' feature 'wavenc' typename : 'GstElementFactory'
0:00:00.137697750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb46fb5d8
0:00:00.137724875 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.137739250 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.137753500 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.137766375 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.137780500 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.137792750 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.137806875 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.137819375 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.137832625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.137844875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46fb6b8
0:00:00.137858625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.137870750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46fb6e0
0:00:00.137886750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.137898625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:643:gst_registry_chunks_load_feature: Reading 2 Interfaces at address 0xffffb46fb80d
0:00:00.137918375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d15b400 (wavenc)
0:00:00.137935750 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<wavenc> set parent (ref and sink)
0:00:00.137949750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for wavenc
0:00:00.137962375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature wavenc, plugin 0x3d132ad0 wavenc
0:00:00.137976250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrybinary.c:606:priv_gst_registry_binary_read_cache: reading binary registry 165927(28827)/405909
0:00:00.137989625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:829:_priv_gst_registry_chunks_load_plugin: Reading/casting for GstRegistryChunkPluginElement at address 0xffffb46fb828
0:00:00.138029500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:850:_priv_gst_registry_chunks_load_plugin: read strings for name='goom'
0:00:00.138043750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:851:_priv_gst_registry_chunks_load_plugin: desc.description='GOOM visualization filter'
0:00:00.138055625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:852:_priv_gst_registry_chunks_load_plugin: filename='/data/halley/gst-sdk/lib/gstreamer-1.0/libgstgoom.so'
0:00:00.138067375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:853:_priv_gst_registry_chunks_load_plugin: desc.version='1.14.0'
0:00:00.138078375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:854:_priv_gst_registry_chunks_load_plugin: desc.license='LGPL'
0:00:00.138089250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:855:_priv_gst_registry_chunks_load_plugin: desc.source='gst-plugins-good'
0:00:00.138100750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:856:_priv_gst_registry_chunks_load_plugin: desc.package='GStreamer Good Plug-ins source release'
0:00:00.138112625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:857:_priv_gst_registry_chunks_load_plugin: desc.origin='Unknown package origin'
0:00:00.138123875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:858:_priv_gst_registry_chunks_load_plugin: desc.datetime=2018-03-19
0:00:00.138138500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:466:gst_registry_add_plugin:<registry0> adding plugin 0x3d132c00 for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstgoom.so"
0:00:00.138156000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:479:gst_registry_add_plugin:<registry0> emitting plugin-added for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstgoom.so"
0:00:00.138169000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:879:_priv_gst_registry_chunks_load_plugin: Added plugin 'goom' plugin with 1 features from binary registry
0:00:00.138182625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'goom' feature 'goom' typename : 'GstElementFactory'
0:00:00.138210250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb46fb918
0:00:00.138228125 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.138240875 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.138254875 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.138267375 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.138280750 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.138293000 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.138307625 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.138320000 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.138333375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.138345500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46fba20
0:00:00.138371375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.138384500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46fbb30
0:00:00.138398375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.138414500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d15b4e0 (goom)
0:00:00.138431125 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<goom> set parent (ref and sink)
0:00:00.138444875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for goom
0:00:00.138457500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature goom, plugin 0x3d132c00 goom
0:00:00.138471125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrybinary.c:606:priv_gst_registry_binary_read_cache: reading binary registry 166853(28bc5)/405909
0:00:00.138484375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:829:_priv_gst_registry_chunks_load_plugin: Reading/casting for GstRegistryChunkPluginElement at address 0xffffb46fbbc8
0:00:00.138513125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:850:_priv_gst_registry_chunks_load_plugin: read strings for name='ivtc'
0:00:00.138527250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:851:_priv_gst_registry_chunks_load_plugin: desc.description='Inverse Telecine'
0:00:00.138538500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:852:_priv_gst_registry_chunks_load_plugin: filename='/data/halley/gst-sdk/lib/gstreamer-1.0/libgstivtc.so'
0:00:00.138550000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:853:_priv_gst_registry_chunks_load_plugin: desc.version='1.14.0'
0:00:00.138561000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:854:_priv_gst_registry_chunks_load_plugin: desc.license='LGPL'
0:00:00.138572000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:855:_priv_gst_registry_chunks_load_plugin: desc.source='gst-plugins-bad'
0:00:00.138583250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:856:_priv_gst_registry_chunks_load_plugin: desc.package='GStreamer Bad Plug-ins'
0:00:00.138594375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:857:_priv_gst_registry_chunks_load_plugin: desc.origin='Unknown package origin'
0:00:00.138605500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:858:_priv_gst_registry_chunks_load_plugin: desc.datetime=2018-03-19
0:00:00.138620000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:466:gst_registry_add_plugin:<registry0> adding plugin 0x3d132d30 for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstivtc.so"
0:00:00.138637250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:479:gst_registry_add_plugin:<registry0> emitting plugin-added for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstivtc.so"
0:00:00.138650250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:879:_priv_gst_registry_chunks_load_plugin: Added plugin 'ivtc' plugin with 2 features from binary registry
0:00:00.138663875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'ivtc' feature 'ivtc' typename : 'GstElementFactory'
0:00:00.138700875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb46fbc98
0:00:00.138730250 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.138744000 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.138758125 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.138770875 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.138784500 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.138797000 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.138811000 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.138823375 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.138836625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.138848750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46fbd68
0:00:00.138863750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.138876125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46fbe08
0:00:00.138890000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.138906375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d15b5c0 (ivtc)
0:00:00.138923500 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<ivtc> set parent (ref and sink)
0:00:00.138937625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for ivtc
0:00:00.138950500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature ivtc, plugin 0x3d132d30 ivtc
0:00:00.138964375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'ivtc' feature 'combdetect' typename : 'GstElementFactory'
0:00:00.138993000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb46fbec8
0:00:00.139010250 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.139022875 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.139036750 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.139049250 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.139062750 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.139074875 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.139089125 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.139101500 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.139125375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.139138375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46fbfa8
0:00:00.139152375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.139164000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46fc048
0:00:00.139177375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.139193875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d15b6a0 (combdetect)
0:00:00.139211000 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<combdetect> set parent (ref and sink)
0:00:00.139225000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for combdetect
0:00:00.139237750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature combdetect, plugin 0x3d132d30 ivtc
0:00:00.139251125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrybinary.c:606:priv_gst_registry_binary_read_cache: reading binary registry 168167(290e7)/405909
0:00:00.139264250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:829:_priv_gst_registry_chunks_load_plugin: Reading/casting for GstRegistryChunkPluginElement at address 0xffffb46fc0e8
0:00:00.139293375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:850:_priv_gst_registry_chunks_load_plugin: read strings for name='audiorate'
0:00:00.139307500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:851:_priv_gst_registry_chunks_load_plugin: desc.description='Adjusts audio frames'
0:00:00.139319125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:852:_priv_gst_registry_chunks_load_plugin: filename='/data/halley/gst-sdk/lib/gstreamer-1.0/libgstaudiorate.so'
0:00:00.139330500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:853:_priv_gst_registry_chunks_load_plugin: desc.version='1.14.0'
0:00:00.139341500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:854:_priv_gst_registry_chunks_load_plugin: desc.license='LGPL'
0:00:00.139352500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:855:_priv_gst_registry_chunks_load_plugin: desc.source='gst-plugins-base'
0:00:00.139363750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:856:_priv_gst_registry_chunks_load_plugin: desc.package='GStreamer Base Plug-ins source release'
0:00:00.139375250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:857:_priv_gst_registry_chunks_load_plugin: desc.origin='Unknown package origin'
0:00:00.139386375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:858:_priv_gst_registry_chunks_load_plugin: desc.datetime=2018-03-19
0:00:00.139400750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:466:gst_registry_add_plugin:<registry0> adding plugin 0x3d132e60 for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstaudiorate.so"
0:00:00.139418125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:479:gst_registry_add_plugin:<registry0> emitting plugin-added for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstaudiorate.so"
0:00:00.139431000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:879:_priv_gst_registry_chunks_load_plugin: Added plugin 'audiorate' plugin with 1 features from binary registry
0:00:00.139458375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'audiorate' feature 'audiorate' typename : 'GstElementFactory'
0:00:00.139488000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb46fc1e0
0:00:00.139505750 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.139518250 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.139532375 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.139545000 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.139558500 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.139570625 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.139585500 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.139597875 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.139611000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.139623000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46fc2f8
0:00:00.139638750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.139650625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46fc470
0:00:00.139664875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.139680750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d15e810 (audiorate)
0:00:00.139697250 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<audiorate> set parent (ref and sink)
0:00:00.139710750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for audiorate
0:00:00.139723375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature audiorate, plugin 0x3d132e60 audiorate
0:00:00.139736875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrybinary.c:606:priv_gst_registry_binary_read_cache: reading binary registry 169442(295e2)/405909
0:00:00.139750000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:829:_priv_gst_registry_chunks_load_plugin: Reading/casting for GstRegistryChunkPluginElement at address 0xffffb46fc5e8
0:00:00.139796625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:850:_priv_gst_registry_chunks_load_plugin: read strings for name='legacyrawparse'
0:00:00.139811625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:851:_priv_gst_registry_chunks_load_plugin: desc.description='Parses byte streams into raw frames'
0:00:00.139824000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:852:_priv_gst_registry_chunks_load_plugin: filename='/data/halley/gst-sdk/lib/gstreamer-1.0/libgstlegacyrawparse.so'
0:00:00.139835750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:853:_priv_gst_registry_chunks_load_plugin: desc.version='1.14.0'
0:00:00.139857625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:854:_priv_gst_registry_chunks_load_plugin: desc.license='LGPL'
0:00:00.139869750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:855:_priv_gst_registry_chunks_load_plugin: desc.source='gst-plugins-bad'
0:00:00.139881000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:856:_priv_gst_registry_chunks_load_plugin: desc.package='GStreamer Bad Plug-ins source release'
0:00:00.139892375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:857:_priv_gst_registry_chunks_load_plugin: desc.origin='Unknown package origin'
0:00:00.139903625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:858:_priv_gst_registry_chunks_load_plugin: desc.datetime=2018-03-19
0:00:00.139918750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:466:gst_registry_add_plugin:<registry0> adding plugin 0x3d160050 for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstlegacyrawparse.so"
0:00:00.139936500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:479:gst_registry_add_plugin:<registry0> emitting plugin-added for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstlegacyrawparse.so"
0:00:00.139950000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:879:_priv_gst_registry_chunks_load_plugin: Added plugin 'legacyrawparse' plugin with 2 features from binary registry
0:00:00.139964000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'legacyrawparse' feature 'videoparse' typename : 'GstElementFactory'
0:00:00.139993000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb46fc6f8
0:00:00.140010625 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.140023250 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.140037000 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.140049375 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.140062875 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.140075000 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.140089250 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.140101500 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.140115500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.140127625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46fc840
0:00:00.140140250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.140151875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46fc858
0:00:00.140164750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.140176250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:643:gst_registry_chunks_load_feature: Reading 1 Interfaces at address 0xffffb46fc870
0:00:00.140205000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d15e8f0 (videoparse)
0:00:00.140222500 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<videoparse> set parent (ref and sink)
0:00:00.140236250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for videoparse
0:00:00.140248750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature videoparse, plugin 0x3d160050 legacyrawparse
0:00:00.140262625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'legacyrawparse' feature 'audioparse' typename : 'GstElementFactory'
0:00:00.140290750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb46fc8a0
0:00:00.140310500 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.140323125 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.140336875 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.140349375 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.140362750 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.140375375 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.140390000 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.140402375 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.140415875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.140427875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46fc9c0
0:00:00.140440500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.140452250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46fc9d8
0:00:00.140472750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.140484625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:643:gst_registry_chunks_load_feature: Reading 1 Interfaces at address 0xffffb46fcd54
0:00:00.140502125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d15e9d0 (audioparse)
0:00:00.140519125 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<audioparse> set parent (ref and sink)
0:00:00.140532750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for audioparse
0:00:00.140545375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature audioparse, plugin 0x3d160050 legacyrawparse
0:00:00.140559250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrybinary.c:606:priv_gst_registry_binary_read_cache: reading binary registry 171362(29d62)/405909
0:00:00.140582875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:829:_priv_gst_registry_chunks_load_plugin: Reading/casting for GstRegistryChunkPluginElement at address 0xffffb46fcd68
0:00:00.140612625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:850:_priv_gst_registry_chunks_load_plugin: read strings for name='effectv'
0:00:00.140627000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:851:_priv_gst_registry_chunks_load_plugin: desc.description='effect plugins from the effectv project'
0:00:00.140638750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:852:_priv_gst_registry_chunks_load_plugin: filename='/data/halley/gst-sdk/lib/gstreamer-1.0/libgsteffectv.so'
0:00:00.140650250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:853:_priv_gst_registry_chunks_load_plugin: desc.version='1.14.0'
0:00:00.140661250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:854:_priv_gst_registry_chunks_load_plugin: desc.license='LGPL'
0:00:00.140672125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:855:_priv_gst_registry_chunks_load_plugin: desc.source='gst-plugins-good'
0:00:00.140683625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:856:_priv_gst_registry_chunks_load_plugin: desc.package='GStreamer Good Plug-ins source release'
0:00:00.140694875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:857:_priv_gst_registry_chunks_load_plugin: desc.origin='Unknown package origin'
0:00:00.140706000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:858:_priv_gst_registry_chunks_load_plugin: desc.datetime=2018-03-19
0:00:00.140720625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:466:gst_registry_add_plugin:<registry0> adding plugin 0x3d160180 for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgsteffectv.so"
0:00:00.140737750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:479:gst_registry_add_plugin:<registry0> emitting plugin-added for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgsteffectv.so"
0:00:00.140750875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:879:_priv_gst_registry_chunks_load_plugin: Added plugin 'effectv' plugin with 12 features from binary registry
0:00:00.140764250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'effectv' feature 'edgetv' typename : 'GstElementFactory'
0:00:00.140791875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb46fce68
0:00:00.140809250 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.140822000 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.140836000 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.140848375 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.140862000 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.140874125 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.140888125 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.140900625 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.140914000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.140936250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46fcf48
0:00:00.140952000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.140963875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46fcfe8
0:00:00.140977625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.140993625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d15eab0 (edgetv)
0:00:00.141010375 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<edgetv> set parent (ref and sink)
0:00:00.141023875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for edgetv
0:00:00.141036375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature edgetv, plugin 0x3d160180 effectv
0:00:00.141066500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'effectv' feature 'agingtv' typename : 'GstElementFactory'
0:00:00.141096875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb46fd0a8
0:00:00.141114750 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.141127500 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.141141500 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.141154000 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.141167750 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.141179875 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.141194250 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.141206750 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.141220000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.141232000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46fd1a8
0:00:00.141245875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.141257375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46fd248
0:00:00.141270750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.141286750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d15eb90 (agingtv)
0:00:00.141303500 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<agingtv> set parent (ref and sink)
0:00:00.141317500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for agingtv
0:00:00.141340875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature agingtv, plugin 0x3d160180 effectv
0:00:00.141355500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'effectv' feature 'dicetv' typename : 'GstElementFactory'
0:00:00.141400000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb46fd300
0:00:00.141418000 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.141430625 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.141444500 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.141456875 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.141470625 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.141482875 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.141497125 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.141509250 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.141522250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.141534375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46fd3f8
0:00:00.141549250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.141561250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46fd4a8
0:00:00.141577375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.141594125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d15ec70 (dicetv)
0:00:00.141611125 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<dicetv> set parent (ref and sink)
0:00:00.141625000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for dicetv
0:00:00.141637750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature dicetv, plugin 0x3d160180 effectv
0:00:00.141651625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'effectv' feature 'warptv' typename : 'GstElementFactory'
0:00:00.141680375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb46fd570
0:00:00.141697750 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.141710500 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.141724250 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.141747000 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.141762250 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.141774375 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.141788875 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.141801250 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.141814375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.141826375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46fd668
0:00:00.141842375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.141854000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46fd718
0:00:00.141871625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.141888500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d15ed50 (warptv)
0:00:00.141905250 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<warptv> set parent (ref and sink)
0:00:00.141919125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for warptv
0:00:00.141931875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature warptv, plugin 0x3d160180 effectv
0:00:00.141945500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'effectv' feature 'shagadelictv' typename : 'GstElementFactory'
0:00:00.141974250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb46fd7e8
0:00:00.141991875 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.142004500 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.142018000 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.142030500 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.142044125 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.142056375 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.142070875 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.142083250 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.142096750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.142109000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46fd8d8
0:00:00.142133125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.142146000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46fd970
0:00:00.142159375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.142175750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d15ee30 (shagadelictv)
0:00:00.142192875 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<shagadelictv> set parent (ref and sink)
0:00:00.142206875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for shagadelictv
0:00:00.142219625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature shagadelictv, plugin 0x3d160180 effectv
0:00:00.142233500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'effectv' feature 'vertigotv' typename : 'GstElementFactory'
0:00:00.142264125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb46fda28
0:00:00.142281500 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.142294000 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.142308125 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.142320500 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.142334000 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.142346125 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.142360750 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.142373250 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.142386750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.142398875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46fdb30
0:00:00.142413375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.142425125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46fdbd0
0:00:00.142438500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.142454875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d162830 (vertigotv)
0:00:00.142471375 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<vertigotv> set parent (ref and sink)
0:00:00.142485375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for vertigotv
0:00:00.142508500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature vertigotv, plugin 0x3d160180 effectv
0:00:00.142524000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'effectv' feature 'revtv' typename : 'GstElementFactory'
0:00:00.142553125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb46fdc88
0:00:00.142571125 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.142584000 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.142598000 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.142610875 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.142624750 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.142637500 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.142652375 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.142665000 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.142678500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.142690750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46fdd88
0:00:00.142704375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.142716125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46fde28
0:00:00.142735125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.142751375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d162910 (revtv)
0:00:00.142768625 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<revtv> set parent (ref and sink)
0:00:00.142782875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for revtv
0:00:00.142795875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature revtv, plugin 0x3d160180 effectv
0:00:00.142809500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'effectv' feature 'quarktv' typename : 'GstElementFactory'
0:00:00.142837750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb46fdee8
0:00:00.142855375 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.142868000 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.142881750 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.142894250 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.142922500 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.142935750 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.142949750 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.142962250 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.142975875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.142987875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46fdfc8
0:00:00.143002875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.143014625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46fe078
0:00:00.143028000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.143044500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d1629f0 (quarktv)
0:00:00.143061125 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<quarktv> set parent (ref and sink)
0:00:00.143074875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for quarktv
0:00:00.143087625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature quarktv, plugin 0x3d160180 effectv
0:00:00.143100750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'effectv' feature 'optv' typename : 'GstElementFactory'
0:00:00.143130000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb46fe140
0:00:00.143147875 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.143160500 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.143174375 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.143186750 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.143200250 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.143212500 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.143226375 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.143238625 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.143252875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.143264875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46fe278
0:00:00.143278625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.143301500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46fe318
0:00:00.143316375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.143332375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d162ad0 (optv)
0:00:00.143349250 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<optv> set parent (ref and sink)
0:00:00.143363000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for optv
0:00:00.143376000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature optv, plugin 0x3d160180 effectv
0:00:00.143389500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'effectv' feature 'radioactv' typename : 'GstElementFactory'
0:00:00.143428000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb46fe3d8
0:00:00.143446500 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.143459250 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.143473125 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.143486000 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.143499750 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.143512000 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.143525875 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.143538000 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.143552125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.143564000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46fe508
0:00:00.143577625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.143589250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46fe5a8
0:00:00.143602750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.143618875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d162bb0 (radioactv)
0:00:00.143635625 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<radioactv> set parent (ref and sink)
0:00:00.143649500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for radioactv
0:00:00.143662000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature radioactv, plugin 0x3d160180 effectv
0:00:00.143686375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'effectv' feature 'streaktv' typename : 'GstElementFactory'
0:00:00.143716750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb46fe668
0:00:00.143734375 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.143747000 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.143761000 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.143773500 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.143787000 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.143799125 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.143813375 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.143825500 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.143839750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.143852000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46fe7b0
0:00:00.143866625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.143878625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46fe860
0:00:00.143892250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.143908625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d162c90 (streaktv)
0:00:00.143925250 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<streaktv> set parent (ref and sink)
0:00:00.143939250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for streaktv
0:00:00.143952250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature streaktv, plugin 0x3d160180 effectv
0:00:00.143965875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'effectv' feature 'rippletv' typename : 'GstElementFactory'
0:00:00.143994375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb46fe928
0:00:00.144012375 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.144025125 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.144039000 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.144051500 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.144065250 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.144088000 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.144103875 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.144116625 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.144131125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.144143375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46fea78
0:00:00.144157250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.144169000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46feb28
0:00:00.144182750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.144199625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d162d70 (rippletv)
0:00:00.144216500 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<rippletv> set parent (ref and sink)
0:00:00.144230125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for rippletv
0:00:00.144242625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature rippletv, plugin 0x3d160180 effectv
0:00:00.144256750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrybinary.c:606:priv_gst_registry_binary_read_cache: reading binary registry 179155(2bbd3)/405909
0:00:00.144270375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:829:_priv_gst_registry_chunks_load_plugin: Reading/casting for GstRegistryChunkPluginElement at address 0xffffb46febd8
0:00:00.144299500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:850:_priv_gst_registry_chunks_load_plugin: read strings for name='videoscale'
0:00:00.144313500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:851:_priv_gst_registry_chunks_load_plugin: desc.description='Resizes video'
0:00:00.144324875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:852:_priv_gst_registry_chunks_load_plugin: filename='/data/halley/gst-sdk/lib/gstreamer-1.0/libgstvideoscale.so'
0:00:00.144336625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:853:_priv_gst_registry_chunks_load_plugin: desc.version='1.14.0'
0:00:00.144347625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:854:_priv_gst_registry_chunks_load_plugin: desc.license='LGPL'
0:00:00.144358625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:855:_priv_gst_registry_chunks_load_plugin: desc.source='gst-plugins-base'
0:00:00.144370000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:856:_priv_gst_registry_chunks_load_plugin: desc.package='GStreamer Base Plug-ins source release'
0:00:00.144381375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:857:_priv_gst_registry_chunks_load_plugin: desc.origin='Unknown package origin'
0:00:00.144392625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:858:_priv_gst_registry_chunks_load_plugin: desc.datetime=2018-03-19
0:00:00.144407250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:466:gst_registry_add_plugin:<registry0> adding plugin 0x3d1602b0 for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstvideoscale.so"
0:00:00.144437375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:479:gst_registry_add_plugin:<registry0> emitting plugin-added for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstvideoscale.so"
0:00:00.144451250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:879:_priv_gst_registry_chunks_load_plugin: Added plugin 'videoscale' plugin with 1 features from binary registry
0:00:00.144464875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'videoscale' feature 'videoscale' typename : 'GstElementFactory'
0:00:00.144492875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb46fecc8
0:00:00.144512125 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.144524625 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.144538500 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.144550875 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.144564375 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.144576500 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.144590375 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.144602750 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.144616125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.144628125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46feda0
0:00:00.144662375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.144675625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46ff3e0
0:00:00.144697750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.144714125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d162e50 (videoscale)
0:00:00.144731000 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<videoscale> set parent (ref and sink)
0:00:00.144745125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for videoscale
0:00:00.144757875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature videoscale, plugin 0x3d1602b0 videoscale
0:00:00.144771750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrybinary.c:606:priv_gst_registry_binary_read_cache: reading binary registry 182814(2ca1e)/405909
0:00:00.144785125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:829:_priv_gst_registry_chunks_load_plugin: Reading/casting for GstRegistryChunkPluginElement at address 0xffffb46ffa20
0:00:00.144813500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:850:_priv_gst_registry_chunks_load_plugin: read strings for name='alphacolor'
0:00:00.144827625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:851:_priv_gst_registry_chunks_load_plugin: desc.description='RGBA from/to AYUV colorspace conversion preserving the alpha channel'
0:00:00.144850000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:852:_priv_gst_registry_chunks_load_plugin: filename='/data/halley/gst-sdk/lib/gstreamer-1.0/libgstalphacolor.so'
0:00:00.144863000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:853:_priv_gst_registry_chunks_load_plugin: desc.version='1.14.0'
0:00:00.144874000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:854:_priv_gst_registry_chunks_load_plugin: desc.license='LGPL'
0:00:00.144884875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:855:_priv_gst_registry_chunks_load_plugin: desc.source='gst-plugins-good'
0:00:00.144896375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:856:_priv_gst_registry_chunks_load_plugin: desc.package='GStreamer Good Plug-ins source release'
0:00:00.144908000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:857:_priv_gst_registry_chunks_load_plugin: desc.origin='Unknown package origin'
0:00:00.144919375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:858:_priv_gst_registry_chunks_load_plugin: desc.datetime=2018-03-19
0:00:00.144934250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:466:gst_registry_add_plugin:<registry0> adding plugin 0x3d1603e0 for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstalphacolor.so"
0:00:00.144951500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:479:gst_registry_add_plugin:<registry0> emitting plugin-added for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstalphacolor.so"
0:00:00.144964625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:879:_priv_gst_registry_chunks_load_plugin: Added plugin 'alphacolor' plugin with 1 features from binary registry
0:00:00.144978125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'alphacolor' feature 'alphacolor' typename : 'GstElementFactory'
0:00:00.145006625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb46ffb48
0:00:00.145024000 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.145036750 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.145067375 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.145081375 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.145095000 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.145107125 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.145121500 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.145133750 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.145147000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.145159125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46ffc60
0:00:00.145173500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.145195875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb46ffd18
0:00:00.145210625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.145227000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d165090 (alphacolor)
0:00:00.145243750 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<alphacolor> set parent (ref and sink)
0:00:00.145257500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for alphacolor
0:00:00.145270250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature alphacolor, plugin 0x3d1603e0 alphacolor
0:00:00.145283750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrybinary.c:606:priv_gst_registry_binary_read_cache: reading binary registry 183753(2cdc9)/405909
0:00:00.145297125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:829:_priv_gst_registry_chunks_load_plugin: Reading/casting for GstRegistryChunkPluginElement at address 0xffffb46ffdd0
0:00:00.145325625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:850:_priv_gst_registry_chunks_load_plugin: read strings for name='playback'
0:00:00.145339875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:851:_priv_gst_registry_chunks_load_plugin: desc.description='various playback elements'
0:00:00.145351625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:852:_priv_gst_registry_chunks_load_plugin: filename='/data/halley/gst-sdk/lib/gstreamer-1.0/libgstplayback.so'
0:00:00.145363250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:853:_priv_gst_registry_chunks_load_plugin: desc.version='1.14.0'
0:00:00.145374375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:854:_priv_gst_registry_chunks_load_plugin: desc.license='LGPL'
0:00:00.145385375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:855:_priv_gst_registry_chunks_load_plugin: desc.source='gst-plugins-base'
0:00:00.145396750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:856:_priv_gst_registry_chunks_load_plugin: desc.package='GStreamer Base Plug-ins source release'
0:00:00.145408250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:857:_priv_gst_registry_chunks_load_plugin: desc.origin='Unknown package origin'
0:00:00.145419375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:858:_priv_gst_registry_chunks_load_plugin: desc.datetime=2018-03-19
0:00:00.145434125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:466:gst_registry_add_plugin:<registry0> adding plugin 0x3d160510 for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstplayback.so"
0:00:00.145451375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:479:gst_registry_add_plugin:<registry0> emitting plugin-added for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstplayback.so"
0:00:00.145464375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:879:_priv_gst_registry_chunks_load_plugin: Added plugin 'playback' plugin with 11 features from binary registry
0:00:00.145479500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'playback' feature 'playbin' typename : 'GstElementFactory'
0:00:00.145508125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb46ffec8
0:00:00.145524875 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.145547500 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.145562750 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.145575750 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.145589375 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.145601500 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.145615750 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.145628000 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.145641250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=0
0:00:00.145653375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:643:gst_registry_chunks_load_feature: Reading 5 Interfaces at address 0xffffb46fffac
0:00:00.145675500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d165170 (playbin)
0:00:00.145713750 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<playbin> set parent (ref and sink)
0:00:00.145729750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for playbin
0:00:00.145743000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature playbin, plugin 0x3d160510 playback
0:00:00.145770125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'playback' feature 'playbin3' typename : 'GstElementFactory'
0:00:00.145800875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb4700018
0:00:00.145818625 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.145831375 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.145845250 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.145857875 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.145871500 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.145883750 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.145898000 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.145910500 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.145924125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=0
0:00:00.145936500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:643:gst_registry_chunks_load_feature: Reading 5 Interfaces at address 0xffffb47000fc
0:00:00.145955875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d165250 (playbin3)
0:00:00.145972625 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<playbin3> set parent (ref and sink)
0:00:00.145997875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for playbin3
0:00:00.146011250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature playbin3, plugin 0x3d160510 playback
0:00:00.146025000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'playback' feature 'playsink' typename : 'GstElementFactory'
0:00:00.146062000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb4700168
0:00:00.146080375 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.146093250 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.146107125 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.146119875 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.146133625 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.146145875 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.146159875 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.146172500 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.146185875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=5
0:00:00.146198125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb4700248
0:00:00.146211750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template audio_raw_sink
0:00:00.146223625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb4700268
0:00:00.146236500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template audio_sink
0:00:00.146248375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb4700280
0:00:00.146268750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template video_raw_sink
0:00:00.146282500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb47002a0
0:00:00.146295750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template video_sink
0:00:00.146307625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb47002b8
0:00:00.146320750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template text_sink
0:00:00.146332875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:643:gst_registry_chunks_load_feature: Reading 5 Interfaces at address 0xffffb47002ce
0:00:00.146352875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d165330 (playsink)
0:00:00.146385625 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<playsink> set parent (ref and sink)
0:00:00.146400500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for playsink
0:00:00.146413375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature playsink, plugin 0x3d160510 playback
0:00:00.146427000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'playback' feature 'subtitleoverlay' typename : 'GstElementFactory'
0:00:00.146456625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb4700340
0:00:00.146474250 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.146486750 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.146500750 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.146513250 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.146526875 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.146539000 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.146552750 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.146565000 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.146578375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=3
0:00:00.146590375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb4700448
0:00:00.146603250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.146615000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb4700458
0:00:00.146627625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template video_sink
0:00:00.146639250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb4700470
0:00:00.146652875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template subtitle_sink
0:00:00.146664875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:643:gst_registry_chunks_load_feature: Reading 1 Interfaces at address 0xffffb470048a
0:00:00.146683000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d165410 (subtitleoverlay)
0:00:00.146700125 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<subtitleoverlay> set parent (ref and sink)
0:00:00.146713875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for subtitleoverlay
0:00:00.146726375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature subtitleoverlay, plugin 0x3d160510 playback
0:00:00.146751125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'playback' feature 'streamsynchronizer' typename : 'GstElementFactory'
0:00:00.146782125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb47004c0
0:00:00.146800125 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.146813000 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.146827125 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.146839875 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.146853375 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.146865625 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.146880250 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.146892500 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.146906250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.146918875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb47005e8
0:00:00.146932875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src_%u
0:00:00.146944875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb4700600
0:00:00.146957875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink_%u
0:00:00.146974625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d1654f0 (streamsynchronizer)
0:00:00.146994375 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<streamsynchronizer> set parent (ref and sink)
0:00:00.147008625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for streamsynchronizer
0:00:00.147021750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature streamsynchronizer, plugin 0x3d160510 playback
0:00:00.147036250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'playback' feature 'decodebin' typename : 'GstElementFactory'
0:00:00.147067625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb4700630
0:00:00.147097000 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.147112375 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.147127250 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.147140000 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.147169375 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.147183875 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.147198500 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.147210875 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.147225250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.147237625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb4700760
0:00:00.147251000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.147263000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb4700778
0:00:00.147275625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src_%u
0:00:00.147287375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:643:gst_registry_chunks_load_feature: Reading 1 Interfaces at address 0xffffb470078b
0:00:00.147309125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d1655d0 (decodebin)
0:00:00.147326125 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<decodebin> set parent (ref and sink)
0:00:00.147340250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for decodebin
0:00:00.147354250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature decodebin, plugin 0x3d160510 playback
0:00:00.147368250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'playback' feature 'decodebin3' typename : 'GstElementFactory'
0:00:00.147405000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb47007b8
0:00:00.147424625 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.147437750 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.147452375 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.147465250 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.147479375 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.147491750 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.147506125 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.147518625 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.147532000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=6
0:00:00.147544250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb47008a0
0:00:00.147576625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.147589750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb47008b8
0:00:00.147602625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink_%u
0:00:00.147614250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb47008d0
0:00:00.147627625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template video_%u
0:00:00.147639375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb47008e8
0:00:00.147652500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template audio_%u
0:00:00.147664125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb4700900
0:00:00.147678125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template text_%u
0:00:00.147690625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb4700918
0:00:00.147703625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src_%u
0:00:00.147715750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:643:gst_registry_chunks_load_feature: Reading 1 Interfaces at address 0xffffb470092b
0:00:00.147743375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d1656b0 (decodebin3)
0:00:00.147762000 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<decodebin3> set parent (ref and sink)
0:00:00.147777625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for decodebin3
0:00:00.147792125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature decodebin3, plugin 0x3d160510 playback
0:00:00.147807250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'playback' feature 'uridecodebin' typename : 'GstElementFactory'
0:00:00.147849750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb4700958
0:00:00.147869500 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.147882500 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.147897750 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.147910500 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.147924625 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.147937000 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.147976750 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.147991250 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.148005000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=1
0:00:00.148017875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb4700a40
0:00:00.148032250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src_%u
0:00:00.148044625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:643:gst_registry_chunks_load_feature: Reading 1 Interfaces at address 0xffffb4700a53
0:00:00.148065875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d168000 (uridecodebin)
0:00:00.148083875 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<uridecodebin> set parent (ref and sink)
0:00:00.148098000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for uridecodebin
0:00:00.148111125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature uridecodebin, plugin 0x3d160510 playback
0:00:00.148126375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'playback' feature 'uridecodebin3' typename : 'GstElementFactory'
0:00:00.148159625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb4700a88
0:00:00.148178750 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.148192125 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.148206375 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.148219625 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.148233875 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.148246500 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.148261125 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.148273750 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.148288000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=4
0:00:00.148300500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb4700ba0
0:00:00.148314250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template video_%u
0:00:00.148326250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb4700bb8
0:00:00.148339750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template audio_%u
0:00:00.148363750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb4700bd0
0:00:00.148395000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template text_%u
0:00:00.148408500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb4700be8
0:00:00.148422000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src_%u
0:00:00.148434000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:643:gst_registry_chunks_load_feature: Reading 1 Interfaces at address 0xffffb4700bfb
0:00:00.148454875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d1680e0 (uridecodebin3)
0:00:00.148472250 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<uridecodebin3> set parent (ref and sink)
0:00:00.148486750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for uridecodebin3
0:00:00.148500375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature uridecodebin3, plugin 0x3d160510 playback
0:00:00.148515125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'playback' feature 'urisourcebin' typename : 'GstElementFactory'
0:00:00.148548875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb4700c28
0:00:00.148567375 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.148580875 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.148595000 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.148607750 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.148621875 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.148634625 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.148649125 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.148661625 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.148675250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=1
0:00:00.148687750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb4700d08
0:00:00.148701250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src_%u
0:00:00.148713250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:643:gst_registry_chunks_load_feature: Reading 1 Interfaces at address 0xffffb4700d1b
0:00:00.148731625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d1681c0 (urisourcebin)
0:00:00.148749500 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<urisourcebin> set parent (ref and sink)
0:00:00.148777375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for urisourcebin
0:00:00.148791750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature urisourcebin, plugin 0x3d160510 playback
0:00:00.148806625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'playback' feature 'parsebin' typename : 'GstElementFactory'
0:00:00.148837375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb4700d48
0:00:00.148855625 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.148868625 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.148882750 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.148895500 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.148909250 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.148922500 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.148937125 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.148950375 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.148965000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.148978000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb4700e60
0:00:00.148991250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.149003000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb4700e78
0:00:00.149015750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src_%u
0:00:00.149027500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:643:gst_registry_chunks_load_feature: Reading 1 Interfaces at address 0xffffb4700e8b
0:00:00.149077875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d1682a0 (parsebin)
0:00:00.149477500 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<parsebin> set parent (ref and sink)
0:00:00.149519375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for parsebin
0:00:00.149557625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature parsebin, plugin 0x3d160510 playback
0:00:00.149598000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrybinary.c:606:priv_gst_registry_binary_read_cache: reading binary registry 188057(2de99)/405909
0:00:00.149638250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:829:_priv_gst_registry_chunks_load_plugin: Reading/casting for GstRegistryChunkPluginElement at address 0xffffb4700ea0
0:00:00.149741875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:850:_priv_gst_registry_chunks_load_plugin: read strings for name='flv'
0:00:00.149824000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:851:_priv_gst_registry_chunks_load_plugin: desc.description='FLV muxing and demuxing plugin'
0:00:00.149860250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:852:_priv_gst_registry_chunks_load_plugin: filename='/data/halley/gst-sdk/lib/gstreamer-1.0/libgstflv.so'
0:00:00.149893750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:853:_priv_gst_registry_chunks_load_plugin: desc.version='1.14.0'
0:00:00.149924375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:854:_priv_gst_registry_chunks_load_plugin: desc.license='LGPL'
0:00:00.149954250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:855:_priv_gst_registry_chunks_load_plugin: desc.source='gst-plugins-good'
0:00:00.149985375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:856:_priv_gst_registry_chunks_load_plugin: desc.package='GStreamer Good Plug-ins source release'
0:00:00.150017625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:857:_priv_gst_registry_chunks_load_plugin: desc.origin='Unknown package origin'
0:00:00.150049000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:858:_priv_gst_registry_chunks_load_plugin: desc.datetime=2018-03-19
0:00:00.150092375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:466:gst_registry_add_plugin:<registry0> adding plugin 0x3d160640 for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstflv.so"
0:00:00.150145125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:479:gst_registry_add_plugin:<registry0> emitting plugin-added for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstflv.so"
0:00:00.150182125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:879:_priv_gst_registry_chunks_load_plugin: Added plugin 'flv' plugin with 2 features from binary registry
0:00:00.150220875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'flv' feature 'flvdemux' typename : 'GstElementFactory'
0:00:00.150309750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb4700f98
0:00:00.150360500 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.150398375 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.150441375 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.150476875 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.150513875 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.150547500 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.150587250 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.150621625 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.150658250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=3
0:00:00.150691750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb4701078
0:00:00.150729000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.150798250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb4701098
0:00:00.150885375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template audio
0:00:00.150923875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb47013a0
0:00:00.150962000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template video
0:00:00.151009500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d168380 (flvdemux)
0:00:00.151058625 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<flvdemux> set parent (ref and sink)
0:00:00.151097375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for flvdemux
0:00:00.151132375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature flvdemux, plugin 0x3d160640 flv
0:00:00.151169875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'flv' feature 'flvmux' typename : 'GstElementFactory'
0:00:00.151248750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb4701458
0:00:00.151294875 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.151328750 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.151366000 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.151399250 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.151435125 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.151467500 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.151505500 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.151538500 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.151575125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=3
0:00:00.151607750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb4701550
0:00:00.151644750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template video
0:00:00.151676500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb47015d8
0:00:00.151725375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template audio
0:00:00.151756875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb47018d0
0:00:00.151790250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.151847375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:643:gst_registry_chunks_load_feature: Reading 1 Interfaces at address 0xffffb47018e8
0:00:00.151901500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d168460 (flvmux)
0:00:00.151947250 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<flvmux> set parent (ref and sink)
0:00:00.151985000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for flvmux
0:00:00.152018875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature flvmux, plugin 0x3d160640 flv
0:00:00.152056500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrybinary.c:606:priv_gst_registry_binary_read_cache: reading binary registry 190709(2e8f5)/405909
0:00:00.152093625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:829:_priv_gst_registry_chunks_load_plugin: Reading/casting for GstRegistryChunkPluginElement at address 0xffffb47018f8
0:00:00.152173375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:850:_priv_gst_registry_chunks_load_plugin: read strings for name='audioconvert'
0:00:00.152212000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:851:_priv_gst_registry_chunks_load_plugin: desc.description='Convert audio to different formats'
0:00:00.152243500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:852:_priv_gst_registry_chunks_load_plugin: filename='/data/halley/gst-sdk/lib/gstreamer-1.0/libgstaudioconvert.so'
0:00:00.152274375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:853:_priv_gst_registry_chunks_load_plugin: desc.version='1.14.0'
0:00:00.152304625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:854:_priv_gst_registry_chunks_load_plugin: desc.license='LGPL'
0:00:00.152333750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:855:_priv_gst_registry_chunks_load_plugin: desc.source='gst-plugins-base'
0:00:00.152364125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:856:_priv_gst_registry_chunks_load_plugin: desc.package='GStreamer Base Plug-ins source release'
0:00:00.152395125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:857:_priv_gst_registry_chunks_load_plugin: desc.origin='Unknown package origin'
0:00:00.152425125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:858:_priv_gst_registry_chunks_load_plugin: desc.datetime=2018-03-19
0:00:00.152463750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:466:gst_registry_add_plugin:<registry0> adding plugin 0x3d160770 for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstaudioconvert.so"
0:00:00.152511875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:479:gst_registry_add_plugin:<registry0> emitting plugin-added for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstaudioconvert.so"
0:00:00.152547875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:879:_priv_gst_registry_chunks_load_plugin: Added plugin 'audioconvert' plugin with 1 features from binary registry
0:00:00.152586875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'audioconvert' feature 'audioconvert' typename : 'GstElementFactory'
0:00:00.152665500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb4701a08
0:00:00.152711125 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.152745750 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.152782500 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.152841500 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.152883250 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.152915500 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.152953375 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.152988375 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.153023375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.153099625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb4701af0
0:00:00.153150250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.153181750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb4701c50
0:00:00.153218625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.153262375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d168540 (audioconvert)
0:00:00.153310000 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<audioconvert> set parent (ref and sink)
0:00:00.153346875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for audioconvert
0:00:00.153381875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature audioconvert, plugin 0x3d160770 audioconvert
0:00:00.153420250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrybinary.c:606:priv_gst_registry_binary_read_cache: reading binary registry 191918(2edae)/405909
0:00:00.153456000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:829:_priv_gst_registry_chunks_load_plugin: Reading/casting for GstRegistryChunkPluginElement at address 0xffffb4701db0
0:00:00.153534000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:850:_priv_gst_registry_chunks_load_plugin: read strings for name='apetag'
0:00:00.153571875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:851:_priv_gst_registry_chunks_load_plugin: desc.description='APEv1/2 tag reader'
0:00:00.153602500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:852:_priv_gst_registry_chunks_load_plugin: filename='/data/halley/gst-sdk/lib/gstreamer-1.0/libgstapetag.so'
0:00:00.153632500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:853:_priv_gst_registry_chunks_load_plugin: desc.version='1.14.0'
0:00:00.153661625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:854:_priv_gst_registry_chunks_load_plugin: desc.license='LGPL'
0:00:00.153690750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:855:_priv_gst_registry_chunks_load_plugin: desc.source='gst-plugins-good'
0:00:00.153720750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:856:_priv_gst_registry_chunks_load_plugin: desc.package='GStreamer Good Plug-ins source release'
0:00:00.153751625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:857:_priv_gst_registry_chunks_load_plugin: desc.origin='Unknown package origin'
0:00:00.153820875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:858:_priv_gst_registry_chunks_load_plugin: desc.datetime=2018-03-19
0:00:00.153864375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:466:gst_registry_add_plugin:<registry0> adding plugin 0x3d1608a0 for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstapetag.so"
0:00:00.153911750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:479:gst_registry_add_plugin:<registry0> emitting plugin-added for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstapetag.so"
0:00:00.153947625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:879:_priv_gst_registry_chunks_load_plugin: Added plugin 'apetag' plugin with 1 features from binary registry
0:00:00.154000875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'apetag' feature 'apedemux' typename : 'GstElementFactory'
0:00:00.154078375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb4701ea0
0:00:00.154125750 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.154161375 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.154200125 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.154234125 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.154271250 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.154304125 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.154343250 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.154376000 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.154411625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.154444250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb4701fb0
0:00:00.154479000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.154509875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb4701fc0
0:00:00.154544375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.154587125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d168620 (apedemux)
0:00:00.154634625 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<apedemux> set parent (ref and sink)
0:00:00.154671625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for apedemux
0:00:00.154706125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature apedemux, plugin 0x3d1608a0 apetag
0:00:00.154744000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrybinary.c:606:priv_gst_registry_binary_read_cache: reading binary registry 192482(2efe2)/405909
0:00:00.154779375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:829:_priv_gst_registry_chunks_load_plugin: Reading/casting for GstRegistryChunkPluginElement at address 0xffffb4701fe8
0:00:00.154889000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:850:_priv_gst_registry_chunks_load_plugin: read strings for name='aiurdemux'
0:00:00.154929000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:851:_priv_gst_registry_chunks_load_plugin: desc.description='aiur universal demux'
0:00:00.154960625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:852:_priv_gst_registry_chunks_load_plugin: filename='/data/halley/gst-sdk/lib/gstreamer-1.0/libgstaiurdemux.so'
0:00:00.154992000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:853:_priv_gst_registry_chunks_load_plugin: desc.version='4.4.4'
0:00:00.155021500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:854:_priv_gst_registry_chunks_load_plugin: desc.license='LGPL'
0:00:00.155050250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:855:_priv_gst_registry_chunks_load_plugin: desc.source='imx-gst1.0-plugin'
0:00:00.155080000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:856:_priv_gst_registry_chunks_load_plugin: desc.package='Freescle Gstreamer Multimedia Plugins'
0:00:00.155110000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:857:_priv_gst_registry_chunks_load_plugin: desc.origin='http://www.freescale.com'
0:00:00.155139875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:858:_priv_gst_registry_chunks_load_plugin: desc.datetime=
0:00:00.155179125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:466:gst_registry_add_plugin:<registry0> adding plugin 0x3d1609d0 for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstaiurdemux.so"
0:00:00.155226750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:479:gst_registry_add_plugin:<registry0> emitting plugin-added for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstaiurdemux.so"
0:00:00.155263000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:879:_priv_gst_registry_chunks_load_plugin: Added plugin 'aiurdemux' plugin with 2 features from binary registry
0:00:00.155301375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'aiurdemux' feature 'webm' typename : 'GstTypeFindFactory'
0:00:00.155381375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:656:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkPluginFeature at address 0xffffb47020d0
0:00:00.155431125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:670:gst_registry_chunks_load_feature: Reading 1 Typefind extensions at address 0xffffb47020eb
0:00:00.155484500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d16b0b0 (webm)
0:00:00.155531250 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<webm> set parent (ref and sink)
0:00:00.155568375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for webm
0:00:00.155602125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature webm, plugin 0x3d1609d0 aiurdemux
0:00:00.155640500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'aiurdemux' feature 'aiurdemux' typename : 'GstElementFactory'
0:00:00.155721250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb4702110
0:00:00.155768375 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.155802500 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.155867250 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.155904250 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.155940875 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.155974000 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.156013375 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.156047625 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.156084250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=3
0:00:00.156117875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb4702220
0:00:00.156152625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template video_%u
0:00:00.156183500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb4702238
0:00:00.156217250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template audio_%u
0:00:00.156248000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb4702250
0:00:00.156281250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template subtitle_%u
0:00:00.156324500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d16b190 (aiurdemux)
0:00:00.156371000 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<aiurdemux> set parent (ref and sink)
0:00:00.156407750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for aiurdemux
0:00:00.156441875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature aiurdemux, plugin 0x3d1609d0 aiurdemux
0:00:00.156480375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrybinary.c:606:priv_gst_registry_binary_read_cache: reading binary registry 193128(2f268)/405909
0:00:00.156516125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:829:_priv_gst_registry_chunks_load_plugin: Reading/casting for GstRegistryChunkPluginElement at address 0xffffb4702268
0:00:00.156593125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:850:_priv_gst_registry_chunks_load_plugin: read strings for name='rtpmanager'
0:00:00.156631500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:851:_priv_gst_registry_chunks_load_plugin: desc.description='RTP session management plugin library'
0:00:00.156663125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:852:_priv_gst_registry_chunks_load_plugin: filename='/data/halley/gst-sdk/lib/gstreamer-1.0/libgstrtpmanager.so'
0:00:00.156694000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:853:_priv_gst_registry_chunks_load_plugin: desc.version='1.14.0'
0:00:00.156723500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:854:_priv_gst_registry_chunks_load_plugin: desc.license='LGPL'
0:00:00.156752625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:855:_priv_gst_registry_chunks_load_plugin: desc.source='gst-plugins-good'
0:00:00.156809000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:856:_priv_gst_registry_chunks_load_plugin: desc.package='GStreamer Good Plug-ins source release'
0:00:00.156843000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:857:_priv_gst_registry_chunks_load_plugin: desc.origin='Unknown package origin'
0:00:00.156873125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:858:_priv_gst_registry_chunks_load_plugin: desc.datetime=2018-03-19
0:00:00.156912250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:466:gst_registry_add_plugin:<registry0> adding plugin 0x3d160b00 for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstrtpmanager.so"
0:00:00.156960000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:479:gst_registry_add_plugin:<registry0> emitting plugin-added for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstrtpmanager.so"
0:00:00.156995375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:879:_priv_gst_registry_chunks_load_plugin: Added plugin 'rtpmanager' plugin with 10 features from binary registry
0:00:00.157033625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'rtpmanager' feature 'rtpbin' typename : 'GstElementFactory'
0:00:00.157154125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb4702370
0:00:00.157200250 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.157233625 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.157270500 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.157303625 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.157340125 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.157372375 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.157410000 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.157445000 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.157480500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=6
0:00:00.157512500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb4702448
0:00:00.157548875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template recv_rtp_sink_%u
0:00:00.157580750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb4702488
0:00:00.157615625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template recv_rtcp_sink_%u
0:00:00.157646875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb47024d0
0:00:00.157681375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template send_rtp_sink_%u
0:00:00.157739250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb4702500
0:00:00.157791500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template recv_rtp_src_%u_%u_%u
0:00:00.157827875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb4702530
0:00:00.157863000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template send_rtcp_src_%u
0:00:00.157894125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb4702578
0:00:00.157929125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template send_rtp_src_%u
0:00:00.157961125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:643:gst_registry_chunks_load_feature: Reading 1 Interfaces at address 0xffffb47025b6
0:00:00.158030375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d16b270 (rtpbin)
0:00:00.158079875 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<rtpbin> set parent (ref and sink)
0:00:00.158116250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for rtpbin
0:00:00.158149750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature rtpbin, plugin 0x3d160b00 rtpmanager
0:00:00.158186750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'rtpmanager' feature 'rtpjitterbuffer' typename : 'GstElementFactory'
0:00:00.158266500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb47025e8
0:00:00.158313250 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.158347000 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.158384250 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.158417625 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.158454375 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.158486500 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.158525125 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.158557625 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.158596375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=3
0:00:00.158628625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb4702738
0:00:00.158662250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.158693625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb4702758
0:00:00.158753875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.158788500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb4702778
0:00:00.158824500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink_rtcp
0:00:00.158870375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d16b350 (rtpjitterbuffer)
0:00:00.158917500 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<rtpjitterbuffer> set parent (ref and sink)
0:00:00.158955250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for rtpjitterbuffer
0:00:00.158989375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature rtpjitterbuffer, plugin 0x3d160b00 rtpmanager
0:00:00.159028625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'rtpmanager' feature 'rtpptdemux' typename : 'GstElementFactory'
0:00:00.159107875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb47027c0
0:00:00.159154375 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.159189875 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.159226875 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.159260875 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.159298125 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.159330625 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.159369250 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.159403375 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.159439625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.159473000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb47028b8
0:00:00.159507125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.159538375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb47028d8
0:00:00.159573875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src_%u
0:00:00.159619750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d16b430 (rtpptdemux)
0:00:00.159665125 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<rtpptdemux> set parent (ref and sink)
0:00:00.159703000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for rtpptdemux
0:00:00.159765625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature rtpptdemux, plugin 0x3d160b00 rtpmanager
0:00:00.159807500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'rtpmanager' feature 'rtpsession' typename : 'GstElementFactory'
0:00:00.159885750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb4702930
0:00:00.159931250 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.159964875 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.160001750 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.160034750 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.160071125 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.160103500 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.160140625 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.160175125 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.160211625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=7
0:00:00.160244875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb4702a08
0:00:00.160281250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template recv_rtp_sink
0:00:00.160314875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb4702a30
0:00:00.160352750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template recv_rtcp_sink
0:00:00.160387250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb4702a60
0:00:00.160429375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template send_rtp_sink
0:00:00.160463750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb4702a88
0:00:00.160499125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template recv_rtp_src
0:00:00.160532500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb4702ab0
0:00:00.160567750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sync_src
0:00:00.160600875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb4702ad8
0:00:00.160635875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template send_rtp_src
0:00:00.160695875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb4702b00
0:00:00.160734625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template send_rtcp_src
0:00:00.160781500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d16b510 (rtpsession)
0:00:00.160828625 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<rtpsession> set parent (ref and sink)
0:00:00.160867250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for rtpsession
0:00:00.160902375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature rtpsession, plugin 0x3d160b00 rtpmanager
0:00:00.160941375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'rtpmanager' feature 'rtprtxqueue' typename : 'GstElementFactory'
0:00:00.161017750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb4702b48
0:00:00.161815000 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.161843125 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.161866750 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.161886000 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.161907250 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.161926000 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.161948125 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.161967875 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.161988875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.162008250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb4702c38
0:00:00.162028375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.162047250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb4702c58
0:00:00.162067250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.162094750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d16b5f0 (rtprtxqueue)
0:00:00.162122250 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<rtprtxqueue> set parent (ref and sink)
0:00:00.162144250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for rtprtxqueue
0:00:00.162164125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature rtprtxqueue, plugin 0x3d160b00 rtpmanager
0:00:00.162204875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'rtpmanager' feature 'rtprtxreceive' typename : 'GstElementFactory'
0:00:00.162263750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb4702c98
0:00:00.162291625 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.162311375 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.162332875 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.162351875 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.162372375 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.162390750 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.162411750 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.162430125 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.162450125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.162468625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb4702da0
0:00:00.162488375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.162506000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb4702dc0
0:00:00.162524750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.162550250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d16b6d0 (rtprtxreceive)
0:00:00.162577125 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<rtprtxreceive> set parent (ref and sink)
0:00:00.162599125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for rtprtxreceive
0:00:00.162619125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature rtprtxreceive, plugin 0x3d160b00 rtpmanager
0:00:00.162640625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'rtpmanager' feature 'rtprtxsend' typename : 'GstElementFactory'
0:00:00.162689250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb4702e00
0:00:00.162716750 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.162736000 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.162757125 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.162776000 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.162796875 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.162830750 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.162855000 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.162874375 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.162895000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.162914000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb4702f08
0:00:00.162934125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.162953250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb4702f28
0:00:00.162973875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.162998875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d170060 (rtprtxsend)
0:00:00.163025625 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<rtprtxsend> set parent (ref and sink)
0:00:00.163046625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for rtprtxsend
0:00:00.163065875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature rtprtxsend, plugin 0x3d160b00 rtpmanager
0:00:00.163087375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'rtpmanager' feature 'rtpssrcdemux' typename : 'GstElementFactory'
0:00:00.163131875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb4702f90
0:00:00.163157875 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.163177000 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.163198250 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.163217000 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.163237875 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.163256125 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.163277125 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.163295500 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.163315250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=4
0:00:00.163333625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb4703078
0:00:00.163352875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.163392500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb4703098
0:00:00.163415000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template rtcp_sink
0:00:00.163432750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb47030c0
0:00:00.163451625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src_%u
0:00:00.163469250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb47030e8
0:00:00.163490125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template rtcp_src_%u
0:00:00.163516375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d170140 (rtpssrcdemux)
0:00:00.163543000 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<rtpssrcdemux> set parent (ref and sink)
0:00:00.163564125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for rtpssrcdemux
0:00:00.163583625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature rtpssrcdemux, plugin 0x3d160b00 rtpmanager
0:00:00.163605250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'rtpmanager' feature 'rtpmux' typename : 'GstElementFactory'
0:00:00.163648125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb4703128
0:00:00.163673750 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.163693250 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.163714125 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.163733000 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.163753375 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.163771750 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.163792375 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.163810875 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.163830625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.163848750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb4703200
0:00:00.163868000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.163885625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb4703220
0:00:00.163904500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink_%u
0:00:00.163944125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d170220 (rtpmux)
0:00:00.163978750 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<rtpmux> set parent (ref and sink)
0:00:00.163999250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for rtpmux
0:00:00.164018500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature rtpmux, plugin 0x3d160b00 rtpmanager
0:00:00.164039875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'rtpmanager' feature 'rtpdtmfmux' typename : 'GstElementFactory'
0:00:00.164085375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb4703260
0:00:00.164111625 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.164130625 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.164151500 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.164170500 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.164190875 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.164209125 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.164230125 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.164248500 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.164268375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=3
0:00:00.164286500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb4703348
0:00:00.164305500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.164323125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb4703368
0:00:00.164342000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink_%u
0:00:00.164359375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb4703390
0:00:00.164379000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template priority_sink_%u
0:00:00.164403750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d170300 (rtpdtmfmux)
0:00:00.164430500 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<rtpdtmfmux> set parent (ref and sink)
0:00:00.164451375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for rtpdtmfmux
0:00:00.164470750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature rtpdtmfmux, plugin 0x3d160b00 rtpmanager
0:00:00.164507500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrybinary.c:606:priv_gst_registry_binary_read_cache: reading binary registry 197563(303bb)/405909
0:00:00.164531000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:829:_priv_gst_registry_chunks_load_plugin: Reading/casting for GstRegistryChunkPluginElement at address 0xffffb47033c0
0:00:00.164590250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:850:_priv_gst_registry_chunks_load_plugin: read strings for name='mxf'
0:00:00.164613125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:851:_priv_gst_registry_chunks_load_plugin: desc.description='MXF plugin library'
0:00:00.164630500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:852:_priv_gst_registry_chunks_load_plugin: filename='/data/halley/gst-sdk/lib/gstreamer-1.0/libgstmxf.so'
0:00:00.164648000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:853:_priv_gst_registry_chunks_load_plugin: desc.version='1.14.0'
0:00:00.164664625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:854:_priv_gst_registry_chunks_load_plugin: desc.license='LGPL'
0:00:00.164681125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:855:_priv_gst_registry_chunks_load_plugin: desc.source='gst-plugins-bad'
0:00:00.164697750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:856:_priv_gst_registry_chunks_load_plugin: desc.package='GStreamer Bad Plug-ins source release'
0:00:00.164715000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:857:_priv_gst_registry_chunks_load_plugin: desc.origin='Unknown package origin'
0:00:00.164732250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:858:_priv_gst_registry_chunks_load_plugin: desc.datetime=2018-03-19
0:00:00.164754500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:466:gst_registry_add_plugin:<registry0> adding plugin 0x3d160c30 for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstmxf.so"
0:00:00.164781500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:479:gst_registry_add_plugin:<registry0> emitting plugin-added for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstmxf.so"
0:00:00.164802125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:879:_priv_gst_registry_chunks_load_plugin: Added plugin 'mxf' plugin with 2 features from binary registry
0:00:00.164822875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'mxf' feature 'mxfdemux' typename : 'GstElementFactory'
0:00:00.164866250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb47034a8
0:00:00.164893000 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.164912000 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.164932750 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.164951750 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.164972250 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.164990875 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.165011500 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.165030750 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.165091750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.165116250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb4703588
0:00:00.165136875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.165155500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb47035a8
0:00:00.165175625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template track_%u
0:00:00.165201750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d1703e0 (mxfdemux)
0:00:00.165234875 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<mxfdemux> set parent (ref and sink)
0:00:00.165257750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for mxfdemux
0:00:00.165277250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature mxfdemux, plugin 0x3d160c30 mxf
0:00:00.165298250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'mxf' feature 'mxfmux' typename : 'GstElementFactory'
0:00:00.165343750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb47035d8
0:00:00.165370750 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.165390375 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.165411375 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.165430750 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.165451500 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.165470250 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.165492500 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.165511625 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.165532375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=9
0:00:00.165550750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb47036d0
0:00:00.165570125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.165588000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb47036f0
0:00:00.165619625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template bwf_audio_sink_%u
0:00:00.165638000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb47039b0
0:00:00.165675000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template alaw_audio_sink_%u
0:00:00.165694500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb4703a10
0:00:00.165744500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template dv_dif_video_sink_%u
0:00:00.165766375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb4703ac0
0:00:00.165789250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template jpeg2000_video_sink_%u
0:00:00.165807750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb4703b78
0:00:00.165831750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template mpeg_audio_sink_%u
0:00:00.165849625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb4703ca8
0:00:00.165874500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template mpeg_video_sink_%u
0:00:00.165892500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb4703e10
0:00:00.165936375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template up_video_sink_%u
0:00:00.165954375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb47045b8
0:00:00.165977625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template vc3_video_sink_%u
0:00:00.166003875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d1704c0 (mxfmux)
0:00:00.166030000 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<mxfmux> set parent (ref and sink)
0:00:00.166051500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for mxfmux
0:00:00.166070750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature mxfmux, plugin 0x3d160c30 mxf
0:00:00.166092625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrybinary.c:606:priv_gst_registry_binary_read_cache: reading binary registry 202312(31648)/405909
0:00:00.166114000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:829:_priv_gst_registry_chunks_load_plugin: Reading/casting for GstRegistryChunkPluginElement at address 0xffffb4704648
0:00:00.166160375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:850:_priv_gst_registry_chunks_load_plugin: read strings for name='matroska'
0:00:00.166182500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:851:_priv_gst_registry_chunks_load_plugin: desc.description='Matroska and WebM stream handling'
0:00:00.166200625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:852:_priv_gst_registry_chunks_load_plugin: filename='/data/halley/gst-sdk/lib/gstreamer-1.0/libgstmatroska.so'
0:00:00.166218125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:853:_priv_gst_registry_chunks_load_plugin: desc.version='1.14.0'
0:00:00.166256250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:854:_priv_gst_registry_chunks_load_plugin: desc.license='LGPL'
0:00:00.166275000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:855:_priv_gst_registry_chunks_load_plugin: desc.source='gst-plugins-good'
0:00:00.166292375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:856:_priv_gst_registry_chunks_load_plugin: desc.package='GStreamer Good Plug-ins source release'
0:00:00.166310250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:857:_priv_gst_registry_chunks_load_plugin: desc.origin='Unknown package origin'
0:00:00.166327500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:858:_priv_gst_registry_chunks_load_plugin: desc.datetime=2018-03-19
0:00:00.166350375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:466:gst_registry_add_plugin:<registry0> adding plugin 0x3d160d60 for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstmatroska.so"
0:00:00.166377750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:479:gst_registry_add_plugin:<registry0> emitting plugin-added for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstmatroska.so"
0:00:00.166398125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:879:_priv_gst_registry_chunks_load_plugin: Added plugin 'matroska' plugin with 4 features from binary registry
0:00:00.166419875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'matroska' feature 'matroskademux' typename : 'GstElementFactory'
0:00:00.166465500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb4704750
0:00:00.166492000 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.166511375 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.166532875 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.166552000 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.166572625 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.166591250 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.166613000 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.166631750 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.166652125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=4
0:00:00.166670875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb4704860
0:00:00.166691125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template video_%u
0:00:00.166708875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb4704878
0:00:00.166728250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template audio_%u
0:00:00.166746000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb4704890
0:00:00.166782875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template subtitle_%u
0:00:00.166802875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb4704960
0:00:00.166823375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.166848375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d1705a0 (matroskademux)
0:00:00.166875750 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<matroskademux> set parent (ref and sink)
0:00:00.166896875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for matroskademux
0:00:00.166916375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature matroskademux, plugin 0x3d160d60 matroska
0:00:00.166938750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'matroska' feature 'matroskaparse' typename : 'GstElementFactory'
0:00:00.166994125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb47049e0
0:00:00.167021250 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.167040375 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.167061875 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.167081000 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.167101625 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.167120625 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.167142500 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.167162250 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.167183625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.167202875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb4704af0
0:00:00.167223500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.167242125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb4704b50
0:00:00.167262125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.167287875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d170680 (matroskaparse)
0:00:00.167314375 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<matroskaparse> set parent (ref and sink)
0:00:00.167335875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for matroskaparse
0:00:00.167370750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature matroskaparse, plugin 0x3d160d60 matroska
0:00:00.167393750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'matroska' feature 'matroskamux' typename : 'GstElementFactory'
0:00:00.167438750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb4704bd0
0:00:00.167465625 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.167485000 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.167505750 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.167524625 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.167545250 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.167563625 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.167584750 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.167603125 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.167623375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=4
0:00:00.167641500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb4704ce0
0:00:00.167677375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template video_%u
0:00:00.167695125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb47052f0
0:00:00.167728875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template audio_%u
0:00:00.167746625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb4705958
0:00:00.167767250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template subtitle_%u
0:00:00.167784750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb4705a08
0:00:00.167804375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.167822375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:643:gst_registry_chunks_load_feature: Reading 2 Interfaces at address 0xffffb4705a4c
0:00:00.167852250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d175000 (matroskamux)
0:00:00.167878250 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<matroskamux> set parent (ref and sink)
0:00:00.167899750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for matroskamux
0:00:00.167919250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature matroskamux, plugin 0x3d160d60 matroska
0:00:00.167956875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'matroska' feature 'webmmux' typename : 'GstElementFactory'
0:00:00.168003750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb4705a80
0:00:00.168030375 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.168049750 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.168070625 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.168089625 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.168110500 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.168129000 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.168150875 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.168170125 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.168191125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=4
0:00:00.168212125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb4705b88
0:00:00.168247750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template video_%u
0:00:00.168268500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb4705ce0
0:00:00.168289875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template audio_%u
0:00:00.168308625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb4705d90
0:00:00.168329000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template subtitle_%u
0:00:00.168347500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb4705e40
0:00:00.168370000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.168388625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:643:gst_registry_chunks_load_feature: Reading 2 Interfaces at address 0xffffb4705e63
0:00:00.168417000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d1750e0 (webmmux)
0:00:00.168443500 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<webmmux> set parent (ref and sink)
0:00:00.168464875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for webmmux
0:00:00.168484500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature webmmux, plugin 0x3d160d60 matroska
0:00:00.168505625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrybinary.c:606:priv_gst_registry_binary_read_cache: reading binary registry 208509(32e7d)/405909
0:00:00.168541875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:829:_priv_gst_registry_chunks_load_plugin: Reading/casting for GstRegistryChunkPluginElement at address 0xffffb4705e80
0:00:00.168588625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:850:_priv_gst_registry_chunks_load_plugin: read strings for name='coreelements'
0:00:00.168610875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:851:_priv_gst_registry_chunks_load_plugin: desc.description='GStreamer core elements'
0:00:00.168629500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:852:_priv_gst_registry_chunks_load_plugin: filename='/data/halley/gst-sdk/lib/gstreamer-1.0/libgstcoreelements.so'
0:00:00.168647625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:853:_priv_gst_registry_chunks_load_plugin: desc.version='1.14.0'
0:00:00.168664500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:854:_priv_gst_registry_chunks_load_plugin: desc.license='LGPL'
0:00:00.168681250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:855:_priv_gst_registry_chunks_load_plugin: desc.source='gstreamer'
0:00:00.168697750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:856:_priv_gst_registry_chunks_load_plugin: desc.package='GStreamer source release'
0:00:00.168714750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:857:_priv_gst_registry_chunks_load_plugin: desc.origin='Unknown package origin'
0:00:00.168732000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:858:_priv_gst_registry_chunks_load_plugin: desc.datetime=2018-03-19
0:00:00.168754500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:466:gst_registry_add_plugin:<registry0> adding plugin 0x3d160e90 for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstcoreelements.so"
0:00:00.168781875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:479:gst_registry_add_plugin:<registry0> emitting plugin-added for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstcoreelements.so"
0:00:00.168802125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:879:_priv_gst_registry_chunks_load_plugin: Added plugin 'coreelements' plugin with 21 features from binary registry
0:00:00.168823875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'coreelements' feature 'capsfilter' typename : 'GstElementFactory'
0:00:00.168867625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb4705f70
0:00:00.168894500 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.168914250 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.168935250 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.168954250 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.168975625 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.168994375 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.169016125 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.169035000 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.169079000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.169115000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb4706050
0:00:00.169137125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.169155125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb4706060
0:00:00.169174000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.169198875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d1751c0 (capsfilter)
0:00:00.169234500 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<capsfilter> set parent (ref and sink)
0:00:00.169256250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for capsfilter
0:00:00.169276000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature capsfilter, plugin 0x3d160e90 coreelements
0:00:00.169297625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'coreelements' feature 'concat' typename : 'GstElementFactory'
0:00:00.169342875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb4706090
0:00:00.169369375 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.169388625 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.169409375 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.169428625 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.169449000 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.169467375 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.169488750 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.169508750 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.169529750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.169548250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb4706168
0:00:00.169567250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink_%u
0:00:00.169585000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb4706180
0:00:00.169603750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.169628250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d1752a0 (concat)
0:00:00.169654375 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<concat> set parent (ref and sink)
0:00:00.169691625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for concat
0:00:00.169711875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature concat, plugin 0x3d160e90 coreelements
0:00:00.169733375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'coreelements' feature 'dataurisrc' typename : 'GstElementFactory'
0:00:00.169778625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb47061b0
0:00:00.169805375 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.169824500 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.169845875 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.169864750 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.169885625 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.169904125 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.169925250 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.169944625 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.169966750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=1
0:00:00.169985750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb47062c8
0:00:00.170005750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.170024500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:628:gst_registry_chunks_load_feature: Reading 1 UriTypes at address 0xffffb47062d8
0:00:00.170045500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:643:gst_registry_chunks_load_feature: Reading 1 Interfaces at address 0xffffb47062e1
0:00:00.170073875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d175380 (dataurisrc)
0:00:00.170105875 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<dataurisrc> set parent (ref and sink)
0:00:00.170128125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for dataurisrc
0:00:00.170147750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature dataurisrc, plugin 0x3d160e90 coreelements
0:00:00.170169125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'coreelements' feature 'downloadbuffer' typename : 'GstElementFactory'
0:00:00.170213250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb4706310
0:00:00.170240000 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.170259125 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.170295125 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.170316000 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.170337125 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.170356125 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.170377500 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.170397625 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.170418500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.170437250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb47063d8
0:00:00.170467250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.170487750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb47063e8
0:00:00.170507375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.170532250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d175460 (downloadbuffer)
0:00:00.170558000 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<downloadbuffer> set parent (ref and sink)
0:00:00.170579125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for downloadbuffer
0:00:00.170598500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature downloadbuffer, plugin 0x3d160e90 coreelements
0:00:00.170619750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'coreelements' feature 'fakesrc' typename : 'GstElementFactory'
0:00:00.170673625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb4706418
0:00:00.170701625 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.170721000 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.170741875 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.170761000 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.170781625 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.170800875 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.170822750 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.170841875 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.170863000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=1
0:00:00.170896875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb4706518
0:00:00.170918375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.170943250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d175540 (fakesrc)
0:00:00.170969125 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<fakesrc> set parent (ref and sink)
0:00:00.170990875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for fakesrc
0:00:00.171010375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature fakesrc, plugin 0x3d160e90 coreelements
0:00:00.171031250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'coreelements' feature 'fakesink' typename : 'GstElementFactory'
0:00:00.171074250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb4706548
0:00:00.171113500 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.171135375 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.171156625 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.171176000 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.171197250 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.171215875 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.171237000 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.171255750 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.171277875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=1
0:00:00.171296750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb4706670
0:00:00.171316500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.171341875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d175620 (fakesink)
0:00:00.171368625 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<fakesink> set parent (ref and sink)
0:00:00.171389750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for fakesink
0:00:00.171409250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature fakesink, plugin 0x3d160e90 coreelements
0:00:00.171429875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'coreelements' feature 'fdsrc' typename : 'GstElementFactory'
0:00:00.171473125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb47066a0
0:00:00.171515250 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.171535875 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.171557000 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.171575875 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.171596125 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.171614250 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.171635500 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.171654375 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.171674375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=1
0:00:00.171692750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb4706780
0:00:00.171712000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.171729500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:628:gst_registry_chunks_load_feature: Reading 1 UriTypes at address 0xffffb4706790
0:00:00.171749500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:643:gst_registry_chunks_load_feature: Reading 1 Interfaces at address 0xffffb4706797
0:00:00.171776750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d179070 (fdsrc)
0:00:00.171802625 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<fdsrc> set parent (ref and sink)
0:00:00.171823375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for fdsrc
0:00:00.171842625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature fdsrc, plugin 0x3d160e90 coreelements
0:00:00.171863125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'coreelements' feature 'fdsink' typename : 'GstElementFactory'
0:00:00.171906125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb47067c0
0:00:00.171932125 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.171951125 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.171972250 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.171991125 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.172011250 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.172029750 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.172051125 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.172069875 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.172105500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=1
0:00:00.172125375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb47068a0
0:00:00.172144375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.172162125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:628:gst_registry_chunks_load_feature: Reading 1 UriTypes at address 0xffffb47068b1
0:00:00.172182250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:643:gst_registry_chunks_load_feature: Reading 1 Interfaces at address 0xffffb47068bf
0:00:00.172209000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d179150 (fdsink)
0:00:00.172234125 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<fdsink> set parent (ref and sink)
0:00:00.172255000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for fdsink
0:00:00.172274250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature fdsink, plugin 0x3d160e90 coreelements
0:00:00.172302500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'coreelements' feature 'filesrc' typename : 'GstElementFactory'
0:00:00.172361250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb47068e8
0:00:00.172394250 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.172418250 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.172448750 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.172468625 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.172489250 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.172511125 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.172543625 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.172568125 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.172594250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=1
0:00:00.172616750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb47069c8
0:00:00.172641250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.172663500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:628:gst_registry_chunks_load_feature: Reading 1 UriTypes at address 0xffffb47069d8
0:00:00.172687625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:643:gst_registry_chunks_load_feature: Reading 1 Interfaces at address 0xffffb47069e1
0:00:00.172717625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d179230 (filesrc)
0:00:00.172766625 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<filesrc> set parent (ref and sink)
0:00:00.172792250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for filesrc
0:00:00.172815000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature filesrc, plugin 0x3d160e90 coreelements
0:00:00.172838375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'coreelements' feature 'funnel' typename : 'GstElementFactory'
0:00:00.172887500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb4706a08
0:00:00.172914000 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.172933250 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.172957875 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.172982125 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.173007125 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.173029125 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.173789250 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.173813125 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.173831125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.173846625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb4706ae0
0:00:00.173863250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink_%u
0:00:00.173878000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb4706af8
0:00:00.173893500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.173915750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d179310 (funnel)
0:00:00.173937125 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<funnel> set parent (ref and sink)
0:00:00.173954750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for funnel
0:00:00.173970875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature funnel, plugin 0x3d160e90 coreelements
0:00:00.173987750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'coreelements' feature 'identity' typename : 'GstElementFactory'
0:00:00.174025500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb4706b28
0:00:00.174050000 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.174080625 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.174099375 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.174114750 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.174131250 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.174146500 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.174164125 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.174191625 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.174208375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.174223250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb4706bf8
0:00:00.174239000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.174253250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb4706c08
0:00:00.174268500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.174290250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d1793f0 (identity)
0:00:00.174311250 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<identity> set parent (ref and sink)
0:00:00.174328625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for identity
0:00:00.174344750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature identity, plugin 0x3d160e90 coreelements
0:00:00.174361500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'coreelements' feature 'input-selector' typename : 'GstElementFactory'
0:00:00.174410625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb4706c40
0:00:00.174433625 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.174449250 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.174466500 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.174482000 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.174499000 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.174514250 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.174531625 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.174546875 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.174581875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.174598875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb4706d70
0:00:00.174614750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink_%u
0:00:00.174629625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb4706d88
0:00:00.174647750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.174669125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d1794d0 (input-selector)
0:00:00.174690125 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<input-selector> set parent (ref and sink)
0:00:00.174706875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for input-selector
0:00:00.174722500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature input-selector, plugin 0x3d160e90 coreelements
0:00:00.174739625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'coreelements' feature 'output-selector' typename : 'GstElementFactory'
0:00:00.174775500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb4706dc0
0:00:00.174801375 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.174817875 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.174835375 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.174851000 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.174875250 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.174896375 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.174914750 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.174930125 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.174946625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.174961500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb4706e98
0:00:00.174977250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.174992000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb4706eb0
0:00:00.175007625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src_%u
0:00:00.175027875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d1795b0 (output-selector)
0:00:00.175066750 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<output-selector> set parent (ref and sink)
0:00:00.175085375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for output-selector
0:00:00.175101250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature output-selector, plugin 0x3d160e90 coreelements
0:00:00.175119125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'coreelements' feature 'queue' typename : 'GstElementFactory'
0:00:00.175159875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb4706ee0
0:00:00.175182000 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.175197750 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.175215000 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.175231000 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.175247875 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.175263250 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.175280875 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.175296500 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.175313500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.175328000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb4706f98
0:00:00.175343750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.175358000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb4706fa8
0:00:00.175373250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.175393125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d179690 (queue)
0:00:00.175413375 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<queue> set parent (ref and sink)
0:00:00.175430375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for queue
0:00:00.175446375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature queue, plugin 0x3d160e90 coreelements
0:00:00.175463750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'coreelements' feature 'queue2' typename : 'GstElementFactory'
0:00:00.175498500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb4706fd8
0:00:00.175519875 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.175547875 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.175566500 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.175581875 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.175598250 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.175613375 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.175630750 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.175646000 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.175663000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.175677625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb47070c8
0:00:00.175693250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.175707625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb47070d8
0:00:00.175723125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.175743375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d17b8c0 (queue2)
0:00:00.175764250 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<queue2> set parent (ref and sink)
0:00:00.175781750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for queue2
0:00:00.175797375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature queue2, plugin 0x3d160e90 coreelements
0:00:00.175814750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'coreelements' feature 'filesink' typename : 'GstElementFactory'
0:00:00.175850000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb4707108
0:00:00.175871625 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.175887625 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.175904750 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.175920375 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.175937000 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.175952500 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.175970000 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.175985500 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.176002125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=1
0:00:00.176029500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb47071e8
0:00:00.176046625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.176061000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:628:gst_registry_chunks_load_feature: Reading 1 UriTypes at address 0xffffb47071f9
0:00:00.176077625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:643:gst_registry_chunks_load_feature: Reading 1 Interfaces at address 0xffffb4707209
0:00:00.176101750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d17b9a0 (filesink)
0:00:00.176123750 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<filesink> set parent (ref and sink)
0:00:00.176142875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for filesink
0:00:00.176159875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature filesink, plugin 0x3d160e90 coreelements
0:00:00.176177000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'coreelements' feature 'tee' typename : 'GstElementFactory'
0:00:00.176212875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb4707230
0:00:00.176250625 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.176268375 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.176285875 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.176301625 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.176320625 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.176336750 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.176354500 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.176372250 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.176389375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.176409000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb4707320
0:00:00.176429250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.176447125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb4707338
0:00:00.176467125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src_%u
0:00:00.176491125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d17ba80 (tee)
0:00:00.176512500 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<tee> set parent (ref and sink)
0:00:00.176543375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for tee
0:00:00.176560375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature tee, plugin 0x3d160e90 coreelements
0:00:00.176577625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'coreelements' feature 'typefind' typename : 'GstElementFactory'
0:00:00.176620125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb4707368
0:00:00.176643125 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.176661500 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.176680375 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.176699000 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.176716500 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.176734375 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.176755250 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.176771250 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.176787875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.176805250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb4707440
0:00:00.176821250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.176835500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb4707450
0:00:00.176850625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.176870875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d17bb60 (typefind)
0:00:00.176891500 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<typefind> set parent (ref and sink)
0:00:00.176908625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for typefind
0:00:00.176924625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature typefind, plugin 0x3d160e90 coreelements
0:00:00.176941500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'coreelements' feature 'multiqueue' typename : 'GstElementFactory'
0:00:00.176991875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb4707480
0:00:00.177016750 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.177032750 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.177082625 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.177102875 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.177120125 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.177135250 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.177152750 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.177168125 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.177184875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.177200125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb4707540
0:00:00.177216000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink_%u
0:00:00.177230625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb4707558
0:00:00.177255875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src_%u
0:00:00.177279625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d17bc40 (multiqueue)
0:00:00.177301000 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<multiqueue> set parent (ref and sink)
0:00:00.177321500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for multiqueue
0:00:00.177337875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature multiqueue, plugin 0x3d160e90 coreelements
0:00:00.177355500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'coreelements' feature 'valve' typename : 'GstElementFactory'
0:00:00.177392250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb4707588
0:00:00.177413875 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.177429750 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.177447000 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.177462625 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.177481375 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.177497750 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.177516125 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.177532000 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.177548625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.177583500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb4707678
0:00:00.177601125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.177615500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb4707688
0:00:00.177631000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.177652000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d17bd20 (valve)
0:00:00.177672500 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<valve> set parent (ref and sink)
0:00:00.177692250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for valve
0:00:00.177708000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature valve, plugin 0x3d160e90 coreelements
0:00:00.177725000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'coreelements' feature 'streamiddemux' typename : 'GstElementFactory'
0:00:00.177760875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb47076c0
0:00:00.177786125 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.177802125 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.177819500 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.177835000 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.177851875 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.177867000 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.177884750 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.177902750 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.177920000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.177937750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb4707798
0:00:00.177955500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.177970750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb47077b0
0:00:00.177991750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src_%u
0:00:00.178015750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d17be00 (streamiddemux)
0:00:00.178036750 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<streamiddemux> set parent (ref and sink)
0:00:00.178067250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for streamiddemux
0:00:00.178084000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature streamiddemux, plugin 0x3d160e90 coreelements
0:00:00.178102125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrybinary.c:606:priv_gst_registry_binary_read_cache: reading binary registry 214979(347c3)/405909
0:00:00.178119125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:829:_priv_gst_registry_chunks_load_plugin: Reading/casting for GstRegistryChunkPluginElement at address 0xffffb47077c8
0:00:00.178157000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:850:_priv_gst_registry_chunks_load_plugin: read strings for name='dvb'
0:00:00.178174250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:851:_priv_gst_registry_chunks_load_plugin: desc.description='DVB elements'
0:00:00.178188375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:852:_priv_gst_registry_chunks_load_plugin: filename='/data/halley/gst-sdk/lib/gstreamer-1.0/libgstdvb.so'
0:00:00.178202875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:853:_priv_gst_registry_chunks_load_plugin: desc.version='1.14.0'
0:00:00.178216750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:854:_priv_gst_registry_chunks_load_plugin: desc.license='LGPL'
0:00:00.178230250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:855:_priv_gst_registry_chunks_load_plugin: desc.source='gst-plugins-bad'
0:00:00.178244000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:856:_priv_gst_registry_chunks_load_plugin: desc.package='GStreamer Bad Plug-ins source release'
0:00:00.178258250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:857:_priv_gst_registry_chunks_load_plugin: desc.origin='Unknown package origin'
0:00:00.178275000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:858:_priv_gst_registry_chunks_load_plugin: desc.datetime=2018-03-19
0:00:00.178294375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:466:gst_registry_add_plugin:<registry0> adding plugin 0x3d172060 for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstdvb.so"
0:00:00.178316500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:479:gst_registry_add_plugin:<registry0> emitting plugin-added for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstdvb.so"
0:00:00.178333000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:879:_priv_gst_registry_chunks_load_plugin: Added plugin 'dvb' plugin with 2 features from binary registry
0:00:00.178349750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'dvb' feature 'dvbsrc' typename : 'GstElementFactory'
0:00:00.178384750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb47078a8
0:00:00.178407250 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.178423125 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.178440125 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.178456000 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.178472750 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.178487750 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.178517875 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.178534375 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.178553500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=1
0:00:00.178568375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb4707a08
0:00:00.178584875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.178605625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d17bee0 (dvbsrc)
0:00:00.178626875 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<dvbsrc> set parent (ref and sink)
0:00:00.178643875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for dvbsrc
0:00:00.178659500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature dvbsrc, plugin 0x3d172060 dvb
0:00:00.178676500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'dvb' feature 'dvbbasebin' typename : 'GstElementFactory'
0:00:00.178712000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb4707a70
0:00:00.178733500 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.178749250 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.178766375 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.178782000 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.178799000 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.178814125 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.178834625 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.178850125 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.178867750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.178882500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb4707b98
0:00:00.178899250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template program_%u
0:00:00.178913750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb4707bd8
0:00:00.178929500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.178943750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:628:gst_registry_chunks_load_feature: Reading 1 UriTypes at address 0xffffb4707c0d
0:00:00.178960125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:643:gst_registry_chunks_load_feature: Reading 2 Interfaces at address 0xffffb4707c18
0:00:00.179000750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d17e040 (dvbbasebin)
0:00:00.179022625 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<dvbbasebin> set parent (ref and sink)
0:00:00.179039875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for dvbbasebin
0:00:00.179055625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature dvbbasebin, plugin 0x3d172060 dvb
0:00:00.179072125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrybinary.c:606:priv_gst_registry_binary_read_cache: reading binary registry 216116(34c34)/405909
0:00:00.179090625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:829:_priv_gst_registry_chunks_load_plugin: Reading/casting for GstRegistryChunkPluginElement at address 0xffffb4707c38
0:00:00.179127625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:850:_priv_gst_registry_chunks_load_plugin: read strings for name='audiovisualizers'
0:00:00.179145125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:851:_priv_gst_registry_chunks_load_plugin: desc.description='Creates video visualizations of audio input'
0:00:00.179162125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:852:_priv_gst_registry_chunks_load_plugin: filename='/data/halley/gst-sdk/lib/gstreamer-1.0/libgstaudiovisualizers.so'
0:00:00.179177000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:853:_priv_gst_registry_chunks_load_plugin: desc.version='1.14.0'
0:00:00.179190750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:854:_priv_gst_registry_chunks_load_plugin: desc.license='LGPL'
0:00:00.179204375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:855:_priv_gst_registry_chunks_load_plugin: desc.source='gst-plugins-bad'
0:00:00.179218125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:856:_priv_gst_registry_chunks_load_plugin: desc.package='GStreamer Bad Plug-ins source release'
0:00:00.179231875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:857:_priv_gst_registry_chunks_load_plugin: desc.origin='Unknown package origin'
0:00:00.179245625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:858:_priv_gst_registry_chunks_load_plugin: desc.datetime=2018-03-19
0:00:00.179264125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:466:gst_registry_add_plugin:<registry0> adding plugin 0x3d172190 for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstaudiovisualizers.so"
0:00:00.179285750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:479:gst_registry_add_plugin:<registry0> emitting plugin-added for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstaudiovisualizers.so"
0:00:00.179301875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:879:_priv_gst_registry_chunks_load_plugin: Added plugin 'audiovisualizers' plugin with 4 features from binary registry
0:00:00.179318750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'audiovisualizers' feature 'spacescope' typename : 'GstElementFactory'
0:00:00.179356625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb4707d50
0:00:00.179378625 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.179394625 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.179411875 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.179452625 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.179475375 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.179491000 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.179508750 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.179524250 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.179540750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.179555500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb4707e28
0:00:00.179572750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.179587125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb4707ec0
0:00:00.179604625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.179625500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d17e120 (spacescope)
0:00:00.179646125 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<spacescope> set parent (ref and sink)
0:00:00.179663000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for spacescope
0:00:00.179678500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature spacescope, plugin 0x3d172190 audiovisualizers
0:00:00.179695750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'audiovisualizers' feature 'spectrascope' typename : 'GstElementFactory'
0:00:00.179734375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb4707f80
0:00:00.179756125 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.179771875 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.179789125 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.179804625 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.179821500 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.179836500 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.179853750 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.179869250 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.179885500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.179900375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb4708068
0:00:00.179930000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.179945750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb4708100
0:00:00.179962250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.179982375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d17e200 (spectrascope)
0:00:00.180003250 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<spectrascope> set parent (ref and sink)
0:00:00.180020750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for spectrascope
0:00:00.180036750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature spectrascope, plugin 0x3d172190 audiovisualizers
0:00:00.180054125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'audiovisualizers' feature 'synaescope' typename : 'GstElementFactory'
0:00:00.180102875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb47081c0
0:00:00.180125500 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.180141250 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.180158000 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.180173625 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.180190875 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.180206000 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.180224375 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.180239750 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.180256000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.180271250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb47082d0
0:00:00.180289125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.180304375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb4708368
0:00:00.180321250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.180341875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d17e2e0 (synaescope)
0:00:00.180363375 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<synaescope> set parent (ref and sink)
0:00:00.180381000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for synaescope
0:00:00.180409375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature synaescope, plugin 0x3d172190 audiovisualizers
0:00:00.180430375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'audiovisualizers' feature 'wavescope' typename : 'GstElementFactory'
0:00:00.180469875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb4708428
0:00:00.180491875 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.180507750 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.180525125 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.180540875 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.180557625 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.180572625 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.180589375 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.180604625 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.180620875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.180635625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb4708508
0:00:00.180652625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.180667000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb47085a0
0:00:00.180683500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.180705625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d17e3c0 (wavescope)
0:00:00.180726875 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<wavescope> set parent (ref and sink)
0:00:00.180746625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for wavescope
0:00:00.180762375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature wavescope, plugin 0x3d172190 audiovisualizers
0:00:00.180779500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrybinary.c:606:priv_gst_registry_binary_read_cache: reading binary registry 218689(35641)/405909
0:00:00.180798125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:829:_priv_gst_registry_chunks_load_plugin: Reading/casting for GstRegistryChunkPluginElement at address 0xffffb4708648
0:00:00.180842625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:850:_priv_gst_registry_chunks_load_plugin: read strings for name='fbdevsink'
0:00:00.180860625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:851:_priv_gst_registry_chunks_load_plugin: desc.description='Linux framebuffer video sink'
0:00:00.180875250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:852:_priv_gst_registry_chunks_load_plugin: filename='/data/halley/gst-sdk/lib/gstreamer-1.0/libgstfbdevsink.so'
0:00:00.180902625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:853:_priv_gst_registry_chunks_load_plugin: desc.version='1.14.0'
0:00:00.180917875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:854:_priv_gst_registry_chunks_load_plugin: desc.license='LGPL'
0:00:00.180931625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:855:_priv_gst_registry_chunks_load_plugin: desc.source='gst-plugins-bad'
0:00:00.180945750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:856:_priv_gst_registry_chunks_load_plugin: desc.package='GStreamer Bad Plug-ins source release'
0:00:00.180959875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:857:_priv_gst_registry_chunks_load_plugin: desc.origin='Unknown package origin'
0:00:00.180973875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:858:_priv_gst_registry_chunks_load_plugin: desc.datetime=2018-03-19
0:00:00.180993375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:466:gst_registry_add_plugin:<registry0> adding plugin 0x3d1722c0 for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstfbdevsink.so"
0:00:00.181014875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:479:gst_registry_add_plugin:<registry0> emitting plugin-added for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstfbdevsink.so"
0:00:00.181031375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:879:_priv_gst_registry_chunks_load_plugin: Added plugin 'fbdevsink' plugin with 1 features from binary registry
0:00:00.181068625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'fbdevsink' feature 'fbdevsink' typename : 'GstElementFactory'
0:00:00.181107500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb4708748
0:00:00.181129375 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.181145000 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.181162500 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.181177875 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.181194500 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.181209375 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.181226500 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.181242125 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.181259000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=1
0:00:00.181274000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb4708820
0:00:00.181292750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.181313875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d17e4a0 (fbdevsink)
0:00:00.181334750 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<fbdevsink> set parent (ref and sink)
0:00:00.181365500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for fbdevsink
0:00:00.181382375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature fbdevsink, plugin 0x3d1722c0 fbdevsink
0:00:00.181399375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrybinary.c:606:priv_gst_registry_binary_read_cache: reading binary registry 219369(358e9)/405909
0:00:00.181416375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:829:_priv_gst_registry_chunks_load_plugin: Reading/casting for GstRegistryChunkPluginElement at address 0xffffb47088f0
0:00:00.181452750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:850:_priv_gst_registry_chunks_load_plugin: read strings for name='speed'
0:00:00.181470250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:851:_priv_gst_registry_chunks_load_plugin: desc.description='Set speed/pitch on audio/raw streams (resampler)'
0:00:00.181485125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:852:_priv_gst_registry_chunks_load_plugin: filename='/data/halley/gst-sdk/lib/gstreamer-1.0/libgstspeed.so'
0:00:00.181499250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:853:_priv_gst_registry_chunks_load_plugin: desc.version='1.14.0'
0:00:00.181513000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:854:_priv_gst_registry_chunks_load_plugin: desc.license='LGPL'
0:00:00.181526375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:855:_priv_gst_registry_chunks_load_plugin: desc.source='gst-plugins-bad'
0:00:00.181540250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:856:_priv_gst_registry_chunks_load_plugin: desc.package='GStreamer Bad Plug-ins source release'
0:00:00.181554625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:857:_priv_gst_registry_chunks_load_plugin: desc.origin='Unknown package origin'
0:00:00.181568500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:858:_priv_gst_registry_chunks_load_plugin: desc.datetime=2018-03-19
0:00:00.181586500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:466:gst_registry_add_plugin:<registry0> adding plugin 0x3d1723f0 for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstspeed.so"
0:00:00.181615375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:479:gst_registry_add_plugin:<registry0> emitting plugin-added for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstspeed.so"
0:00:00.181632500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:879:_priv_gst_registry_chunks_load_plugin: Added plugin 'speed' plugin with 1 features from binary registry
0:00:00.181650125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'speed' feature 'speed' typename : 'GstElementFactory'
0:00:00.181685000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb47089f8
0:00:00.181706875 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.181722375 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.181739375 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.181754625 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.181771250 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.181786000 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.181816750 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.181833000 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.181850375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.181865125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb4708b18
0:00:00.181882625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.181897500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb4708b90
0:00:00.181914000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.181934000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d17e580 (speed)
0:00:00.181954625 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<speed> set parent (ref and sink)
0:00:00.181971375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for speed
0:00:00.181987125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature speed, plugin 0x3d1723f0 speed
0:00:00.182004000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrybinary.c:606:priv_gst_registry_binary_read_cache: reading binary registry 220168(35c08)/405909
0:00:00.182020375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:829:_priv_gst_registry_chunks_load_plugin: Reading/casting for GstRegistryChunkPluginElement at address 0xffffb4708c08
0:00:00.182055250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:850:_priv_gst_registry_chunks_load_plugin: read strings for name='rtsp'
0:00:00.182073125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:851:_priv_gst_registry_chunks_load_plugin: desc.description='transfer data via RTSP'
0:00:00.182089500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:852:_priv_gst_registry_chunks_load_plugin: filename='/data/halley/gst-sdk/lib/gstreamer-1.0/libgstrtsp.so'
0:00:00.182108500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:853:_priv_gst_registry_chunks_load_plugin: desc.version='1.14.0'
0:00:00.182122625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:854:_priv_gst_registry_chunks_load_plugin: desc.license='LGPL'
0:00:00.182136250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:855:_priv_gst_registry_chunks_load_plugin: desc.source='gst-plugins-good'
0:00:00.182150375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:856:_priv_gst_registry_chunks_load_plugin: desc.package='GStreamer Good Plug-ins source release'
0:00:00.182164750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:857:_priv_gst_registry_chunks_load_plugin: desc.origin='Unknown package origin'
0:00:00.182178500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:858:_priv_gst_registry_chunks_load_plugin: desc.datetime=2018-03-19
0:00:00.182197000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:466:gst_registry_add_plugin:<registry0> adding plugin 0x3d172520 for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstrtsp.so"
0:00:00.182218750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:479:gst_registry_add_plugin:<registry0> emitting plugin-added for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstrtsp.so"
0:00:00.182247625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:879:_priv_gst_registry_chunks_load_plugin: Added plugin 'rtsp' plugin with 2 features from binary registry
0:00:00.182265625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'rtsp' feature 'rtspsrc' typename : 'GstElementFactory'
0:00:00.182301500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb4708cf8
0:00:00.182324250 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.182340125 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.182362625 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.182384000 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.182401500 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.182416625 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.182434500 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.182449875 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.182468125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=1
0:00:00.182483250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb4708e48
0:00:00.182501250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template stream_%u
0:00:00.182516250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:628:gst_registry_chunks_load_feature: Reading 9 UriTypes at address 0xffffb4708e7f
0:00:00.182534125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:643:gst_registry_chunks_load_feature: Reading 2 Interfaces at address 0xffffb4708ebf
0:00:00.182557500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d17e660 (rtspsrc)
0:00:00.182579000 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<rtspsrc> set parent (ref and sink)
0:00:00.182596375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for rtspsrc
0:00:00.182612250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature rtspsrc, plugin 0x3d172520 rtsp
0:00:00.182629375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'rtsp' feature 'rtpdec' typename : 'GstElementFactory'
0:00:00.182665375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb4708ef8
0:00:00.182690750 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.182707125 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.182724500 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.182752625 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.182772000 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.182787375 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.182805875 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.182821375 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.182838250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=4
0:00:00.182853625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb4708ff8
0:00:00.182870375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template recv_rtp_sink_%u
0:00:00.182885000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb4709028
0:00:00.182901250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template recv_rtcp_sink_%u
0:00:00.182918000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb4709058
0:00:00.182941250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template recv_rtp_src_%u_%u_%u
0:00:00.182956000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb4709088
0:00:00.182972000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template rtcp_src_%u
0:00:00.182993250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d180060 (rtpdec)
0:00:00.183014250 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<rtpdec> set parent (ref and sink)
0:00:00.183031000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for rtpdec
0:00:00.183046625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature rtpdec, plugin 0x3d172520 rtsp
0:00:00.183063625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrybinary.c:606:priv_gst_registry_binary_read_cache: reading binary registry 221359(360af)/405909
0:00:00.183082250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:829:_priv_gst_registry_chunks_load_plugin: Reading/casting for GstRegistryChunkPluginElement at address 0xffffb47090b0
0:00:00.183119250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:850:_priv_gst_registry_chunks_load_plugin: read strings for name='dvbsuboverlay'
0:00:00.183136625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:851:_priv_gst_registry_chunks_load_plugin: desc.description='DVB subtitle renderer'
0:00:00.183151000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:852:_priv_gst_registry_chunks_load_plugin: filename='/data/halley/gst-sdk/lib/gstreamer-1.0/libgstdvbsuboverlay.so'
0:00:00.183165125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:853:_priv_gst_registry_chunks_load_plugin: desc.version='1.14.0'
0:00:00.183191125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:854:_priv_gst_registry_chunks_load_plugin: desc.license='LGPL'
0:00:00.183206250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:855:_priv_gst_registry_chunks_load_plugin: desc.source='gst-plugins-bad'
0:00:00.183220000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:856:_priv_gst_registry_chunks_load_plugin: desc.package='GStreamer Bad Plug-ins source release'
0:00:00.183234000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:857:_priv_gst_registry_chunks_load_plugin: desc.origin='Unknown package origin'
0:00:00.183247750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:858:_priv_gst_registry_chunks_load_plugin: desc.datetime=2018-03-19
0:00:00.183266250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:466:gst_registry_add_plugin:<registry0> adding plugin 0x3d172650 for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstdvbsuboverlay.so"
0:00:00.183287750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:479:gst_registry_add_plugin:<registry0> emitting plugin-added for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstdvbsuboverlay.so"
0:00:00.183303875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:879:_priv_gst_registry_chunks_load_plugin: Added plugin 'dvbsuboverlay' plugin with 1 features from binary registry
0:00:00.183320375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'dvbsuboverlay' feature 'dvbsuboverlay' typename : 'GstElementFactory'
0:00:00.183355375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb47091b0
0:00:00.183377250 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.183392875 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.183410125 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.183428000 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.183446125 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.183461375 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.183478500 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.183493875 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.183510500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=3
0:00:00.183525250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb47092a0
0:00:00.183552125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.183566875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb47096f8
0:00:00.183602500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template video_sink
0:00:00.183621250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb4709b58
0:00:00.183651500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template text_sink
0:00:00.183674125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d180140 (dvbsuboverlay)
0:00:00.183695625 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<dvbsuboverlay> set parent (ref and sink)
0:00:00.183713125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for dvbsuboverlay
0:00:00.183729250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature dvbsuboverlay, plugin 0x3d172650 dvbsuboverlay
0:00:00.183746750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrybinary.c:606:priv_gst_registry_binary_read_cache: reading binary registry 224123(36b7b)/405909
0:00:00.183763500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:829:_priv_gst_registry_chunks_load_plugin: Reading/casting for GstRegistryChunkPluginElement at address 0xffffb4709b80
0:00:00.183801625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:850:_priv_gst_registry_chunks_load_plugin: read strings for name='rfbsrc'
0:00:00.183819500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:851:_priv_gst_registry_chunks_load_plugin: desc.description='Connects to a VNC server and decodes RFB stream'
0:00:00.183834500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:852:_priv_gst_registry_chunks_load_plugin: filename='/data/halley/gst-sdk/lib/gstreamer-1.0/libgstrfbsrc.so'
0:00:00.183848875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:853:_priv_gst_registry_chunks_load_plugin: desc.version='1.14.0'
0:00:00.183862500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:854:_priv_gst_registry_chunks_load_plugin: desc.license='LGPL'
0:00:00.183876125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:855:_priv_gst_registry_chunks_load_plugin: desc.source='gst-plugins-bad'
0:00:00.183890000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:856:_priv_gst_registry_chunks_load_plugin: desc.package='GStreamer Bad Plug-ins source release'
0:00:00.183904250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:857:_priv_gst_registry_chunks_load_plugin: desc.origin='Unknown package origin'
0:00:00.183918250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:858:_priv_gst_registry_chunks_load_plugin: desc.datetime=2018-03-19
0:00:00.183936500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:466:gst_registry_add_plugin:<registry0> adding plugin 0x3d172780 for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstrfbsrc.so"
0:00:00.183957875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:479:gst_registry_add_plugin:<registry0> emitting plugin-added for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstrfbsrc.so"
0:00:00.183976375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:879:_priv_gst_registry_chunks_load_plugin: Added plugin 'rfbsrc' plugin with 1 features from binary registry
0:00:00.183993625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'rfbsrc' feature 'rfbsrc' typename : 'GstElementFactory'
0:00:00.184044000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb4709c88
0:00:00.184067375 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.184083375 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.184100875 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.184134125 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.184154500 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.184170125 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.184187875 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.184203250 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.184221750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=1
0:00:00.184236625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb4709dc8
0:00:00.184260750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.184281375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d180220 (rfbsrc)
0:00:00.184302500 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<rfbsrc> set parent (ref and sink)
0:00:00.184319500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for rfbsrc
0:00:00.184337500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature rfbsrc, plugin 0x3d172780 rfbsrc
0:00:00.184354875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrybinary.c:606:priv_gst_registry_binary_read_cache: reading binary registry 225549(3710d)/405909
0:00:00.184371500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:829:_priv_gst_registry_chunks_load_plugin: Reading/casting for GstRegistryChunkPluginElement at address 0xffffb470a110
0:00:00.184409875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:850:_priv_gst_registry_chunks_load_plugin: read strings for name='beepdec'
0:00:00.184428000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:851:_priv_gst_registry_chunks_load_plugin: desc.description='universal audio decoder'
0:00:00.184442875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:852:_priv_gst_registry_chunks_load_plugin: filename='/data/halley/gst-sdk/lib/gstreamer-1.0/libgstbeepdec.so'
0:00:00.184457500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:853:_priv_gst_registry_chunks_load_plugin: desc.version='4.4.4'
0:00:00.184471125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:854:_priv_gst_registry_chunks_load_plugin: desc.license='LGPL'
0:00:00.184484750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:855:_priv_gst_registry_chunks_load_plugin: desc.source='imx-gst1.0-plugin'
0:00:00.184498750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:856:_priv_gst_registry_chunks_load_plugin: desc.package='Freescle Gstreamer Multimedia Plugins'
0:00:00.184512875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:857:_priv_gst_registry_chunks_load_plugin: desc.origin='http://www.freescale.com'
0:00:00.184529000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:858:_priv_gst_registry_chunks_load_plugin: desc.datetime=
0:00:00.184550125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:466:gst_registry_add_plugin:<registry0> adding plugin 0x3d1728b0 for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstbeepdec.so"
0:00:00.184588250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:479:gst_registry_add_plugin:<registry0> emitting plugin-added for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstbeepdec.so"
0:00:00.184607875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:879:_priv_gst_registry_chunks_load_plugin: Added plugin 'beepdec' plugin with 3 features from binary registry
0:00:00.184625125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'beepdec' feature 'ac3' typename : 'GstTypeFindFactory'
0:00:00.184662875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:656:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkPluginFeature at address 0xffffb470a1f8
0:00:00.184687125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:670:gst_registry_chunks_load_feature: Reading 1 Typefind extensions at address 0xffffb470a214
0:00:00.184711125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d180300 (ac3)
0:00:00.184732000 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<ac3> set parent (ref and sink)
0:00:00.184748750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for ac3
0:00:00.184764375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature ac3, plugin 0x3d1728b0 beepdec
0:00:00.184781250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'beepdec' feature '3ca' typename : 'GstTypeFindFactory'
0:00:00.184820000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:656:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkPluginFeature at address 0xffffb470a230
0:00:00.184842750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:670:gst_registry_chunks_load_feature: Reading 1 Typefind extensions at address 0xffffb470a24c
0:00:00.184869375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d1803e0 (3ca)
0:00:00.184890375 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<3ca> set parent (ref and sink)
0:00:00.184907250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for 3ca
0:00:00.184922875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature 3ca, plugin 0x3d1728b0 beepdec
0:00:00.184941750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'beepdec' feature 'beepdec' typename : 'GstElementFactory'
0:00:00.184978125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb470a270
0:00:00.185000000 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.185016125 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.185033875 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.185262750 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.185282250 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.185295500 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.185310500 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.185336000 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.185353125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=1
0:00:00.185366500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb470a370
0:00:00.185382000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.185400000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d1804c0 (beepdec)
0:00:00.185417000 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<beepdec> set parent (ref and sink)
0:00:00.185430875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for beepdec
0:00:00.185445375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature beepdec, plugin 0x3d1728b0 beepdec
0:00:00.185462000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrybinary.c:606:priv_gst_registry_binary_read_cache: reading binary registry 226355(37433)/405909
0:00:00.185476000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:829:_priv_gst_registry_chunks_load_plugin: Reading/casting for GstRegistryChunkPluginElement at address 0xffffb470a438
0:00:00.185508000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:850:_priv_gst_registry_chunks_load_plugin: read strings for name='volume'
0:00:00.185524500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:851:_priv_gst_registry_chunks_load_plugin: desc.description='plugin for controlling audio volume'
0:00:00.185538375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:852:_priv_gst_registry_chunks_load_plugin: filename='/data/halley/gst-sdk/lib/gstreamer-1.0/libgstvolume.so'
0:00:00.185552250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:853:_priv_gst_registry_chunks_load_plugin: desc.version='1.14.0'
0:00:00.185563625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:854:_priv_gst_registry_chunks_load_plugin: desc.license='LGPL'
0:00:00.185576375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:855:_priv_gst_registry_chunks_load_plugin: desc.source='gst-plugins-base'
0:00:00.185590000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:856:_priv_gst_registry_chunks_load_plugin: desc.package='GStreamer Base Plug-ins source release'
0:00:00.185601625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:857:_priv_gst_registry_chunks_load_plugin: desc.origin='Unknown package origin'
0:00:00.185612875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:858:_priv_gst_registry_chunks_load_plugin: desc.datetime=2018-03-19
0:00:00.185628125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:466:gst_registry_add_plugin:<registry0> adding plugin 0x3d1729e0 for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstvolume.so"
0:00:00.185646000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:479:gst_registry_add_plugin:<registry0> emitting plugin-added for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstvolume.so"
0:00:00.185659250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:879:_priv_gst_registry_chunks_load_plugin: Added plugin 'volume' plugin with 1 features from binary registry
0:00:00.185672875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'volume' feature 'volume' typename : 'GstElementFactory'
0:00:00.185713500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb470a538
0:00:00.185731500 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.185744125 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.185757750 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.185770375 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.185784375 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.185796750 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.185811625 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.185824125 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.185837625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.185849625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb470a608
0:00:00.185864500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.185876500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb470a6b8
0:00:00.185890125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.185901750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:643:gst_registry_chunks_load_feature: Reading 1 Interfaces at address 0xffffb470a765
0:00:00.185920375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d1805a0 (volume)
0:00:00.185937125 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<volume> set parent (ref and sink)
0:00:00.185951000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for volume
0:00:00.185963625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature volume, plugin 0x3d1729e0 volume
0:00:00.185977500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrybinary.c:606:priv_gst_registry_binary_read_cache: reading binary registry 227189(37775)/405909
0:00:00.185990750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:829:_priv_gst_registry_chunks_load_plugin: Reading/casting for GstRegistryChunkPluginElement at address 0xffffb470a778
0:00:00.186020000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:850:_priv_gst_registry_chunks_load_plugin: read strings for name='mpegpsdemux'
0:00:00.186034000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:851:_priv_gst_registry_chunks_load_plugin: desc.description='MPEG-PS demuxer'
0:00:00.186045375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:852:_priv_gst_registry_chunks_load_plugin: filename='/data/halley/gst-sdk/lib/gstreamer-1.0/libgstmpegpsdemux.so'
0:00:00.186056875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:853:_priv_gst_registry_chunks_load_plugin: desc.version='1.14.0'
0:00:00.186078125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:854:_priv_gst_registry_chunks_load_plugin: desc.license='unknown'
0:00:00.186090375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:855:_priv_gst_registry_chunks_load_plugin: desc.source='gst-plugins-bad'
0:00:00.186101375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:856:_priv_gst_registry_chunks_load_plugin: desc.package='GStreamer Bad Plug-ins source release'
0:00:00.186112625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:857:_priv_gst_registry_chunks_load_plugin: desc.origin='Unknown package origin'
0:00:00.186123875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:858:_priv_gst_registry_chunks_load_plugin: desc.datetime=2018-03-19
0:00:00.186138500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:466:gst_registry_add_plugin:<registry0> adding plugin 0x3d172b10 for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstmpegpsdemux.so"
0:00:00.186155750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:479:gst_registry_add_plugin:<registry0> emitting plugin-added for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstmpegpsdemux.so"
0:00:00.186170250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:879:_priv_gst_registry_chunks_load_plugin: Added plugin 'mpegpsdemux' plugin with 1 features from binary registry
0:00:00.186184250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'mpegpsdemux' feature 'mpegpsdemux' typename : 'GstElementFactory'
0:00:00.186213375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb470a870
0:00:00.186245500 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.186260250 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.186274625 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.186287375 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.186301750 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.186314500 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.186328875 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.186341625 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.186355375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=5
0:00:00.186367750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb470a958
0:00:00.186383000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template video_%02x
0:00:00.186395250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb470a9d8
0:00:00.186410500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template audio_%02x
0:00:00.186422250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb470aaa0
0:00:00.186451125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template subpicture_%02x
0:00:00.186465375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb470aad0
0:00:00.186479000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template private_%d
0:00:00.186491000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb470aae8
0:00:00.186504625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.186522250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d180680 (mpegpsdemux)
0:00:00.186540000 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<mpegpsdemux> set parent (ref and sink)
0:00:00.186554250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for mpegpsdemux
0:00:00.186567125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature mpegpsdemux, plugin 0x3d172b10 mpegpsdemux
0:00:00.186581500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrybinary.c:606:priv_gst_registry_binary_read_cache: reading binary registry 228165(37b45)/405909
0:00:00.186595000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:829:_priv_gst_registry_chunks_load_plugin: Reading/casting for GstRegistryChunkPluginElement at address 0xffffb470ab48
0:00:00.186623875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:850:_priv_gst_registry_chunks_load_plugin: read strings for name='audiofx'
0:00:00.186638250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:851:_priv_gst_registry_chunks_load_plugin: desc.description='Audio effects plugin'
0:00:00.186650125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:852:_priv_gst_registry_chunks_load_plugin: filename='/data/halley/gst-sdk/lib/gstreamer-1.0/libgstaudiofx.so'
0:00:00.186662000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:853:_priv_gst_registry_chunks_load_plugin: desc.version='1.14.0'
0:00:00.186673250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:854:_priv_gst_registry_chunks_load_plugin: desc.license='LGPL'
0:00:00.186684250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:855:_priv_gst_registry_chunks_load_plugin: desc.source='gst-plugins-good'
0:00:00.186695875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:856:_priv_gst_registry_chunks_load_plugin: desc.package='GStreamer Good Plug-ins source release'
0:00:00.186707500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:857:_priv_gst_registry_chunks_load_plugin: desc.origin='Unknown package origin'
0:00:00.186719000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:858:_priv_gst_registry_chunks_load_plugin: desc.datetime=2018-03-19
0:00:00.186734000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:466:gst_registry_add_plugin:<registry0> adding plugin 0x3d172c40 for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstaudiofx.so"
0:00:00.186751625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:479:gst_registry_add_plugin:<registry0> emitting plugin-added for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstaudiofx.so"
0:00:00.186764875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:879:_priv_gst_registry_chunks_load_plugin: Added plugin 'audiofx' plugin with 13 features from binary registry
0:00:00.186789250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'audiofx' feature 'audiopanorama' typename : 'GstElementFactory'
0:00:00.186819375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb470ac40
0:00:00.186837000 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.186849750 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.186863875 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.186876375 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.186890000 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.186902250 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.186916625 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.186929125 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.186942500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.186954625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb470ad38
0:00:00.186973250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.186986000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb470adc0
0:00:00.187000250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.187016750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d1828c0 (audiopanorama)
0:00:00.187034125 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<audiopanorama> set parent (ref and sink)
0:00:00.187048375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for audiopanorama
0:00:00.187061125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature audiopanorama, plugin 0x3d172c40 audiofx
0:00:00.187075250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'audiofx' feature 'audioinvert' typename : 'GstElementFactory'
0:00:00.187105000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb470ae70
0:00:00.187123125 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.187135875 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.187149875 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.187162625 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.187176625 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.187199500 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.187215625 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.187228125 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.187241625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.187254000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb470af70
0:00:00.187268500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.187280375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb470b018
0:00:00.187294000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.187310625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d1829a0 (audioinvert)
0:00:00.187327750 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<audioinvert> set parent (ref and sink)
0:00:00.187341750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for audioinvert
0:00:00.187354500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature audioinvert, plugin 0x3d172c40 audiofx
0:00:00.187368125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'audiofx' feature 'audiokaraoke' typename : 'GstElementFactory'
0:00:00.187397125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb470b0e0
0:00:00.187414500 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.187427000 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.187440625 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.187453250 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.187467000 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.187479000 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.187493000 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.187505750 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.187519125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.187531250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb470b1b8
0:00:00.187546125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.187569000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb470b268
0:00:00.187583750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.187599875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d182a80 (audiokaraoke)
0:00:00.187616500 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<audiokaraoke> set parent (ref and sink)
0:00:00.187630000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for audiokaraoke
0:00:00.187642875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature audiokaraoke, plugin 0x3d172c40 audiofx
0:00:00.187656500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'audiofx' feature 'audioamplify' typename : 'GstElementFactory'
0:00:00.187684875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb470b338
0:00:00.187702250 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.187715125 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.187729125 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.187741500 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.187755125 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.187767375 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.187781625 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.187799500 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.187813500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.187825625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb470b438
0:00:00.187840625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.187852375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb470b4f8
0:00:00.187866000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.187882375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d182b60 (audioamplify)
0:00:00.187898750 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<audioamplify> set parent (ref and sink)
0:00:00.187912250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for audioamplify
0:00:00.187925125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature audioamplify, plugin 0x3d172c40 audiofx
0:00:00.187938875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'audiofx' feature 'audiodynamic' typename : 'GstElementFactory'
0:00:00.187978250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb470b5d8
0:00:00.187996250 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.188008875 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.188023000 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.188035625 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.188049125 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.188061500 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.188075500 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.188088125 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.188101625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.188113750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb470b6c8
0:00:00.188127375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.188139000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb470b770
0:00:00.188152500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.188168625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d182c40 (audiodynamic)
0:00:00.188185500 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<audiodynamic> set parent (ref and sink)
0:00:00.188199250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for audiodynamic
0:00:00.188212000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature audiodynamic, plugin 0x3d172c40 audiofx
0:00:00.188225625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'audiofx' feature 'audiocheblimit' typename : 'GstElementFactory'
0:00:00.188254125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb470b840
0:00:00.188271750 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.188284250 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.188298500 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.188311125 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.188324625 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.188359250 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.188375250 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.188387375 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.188400750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.188413125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb470b958
0:00:00.188427375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.188439125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb470b9f0
0:00:00.188452625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.188469625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d182d20 (audiocheblimit)
0:00:00.188486375 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<audiocheblimit> set parent (ref and sink)
0:00:00.188500500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for audiocheblimit
0:00:00.188513500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature audiocheblimit, plugin 0x3d172c40 audiofx
0:00:00.188527375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'audiofx' feature 'audiochebband' typename : 'GstElementFactory'
0:00:00.188556000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb470baa8
0:00:00.188573625 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.188586125 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.188600375 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.188613250 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.188627250 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.188639500 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.188653875 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.188666375 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.188683000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.188695500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb470bbc0
0:00:00.188709250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.188720875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb470bc58
0:00:00.188744625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.188762375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d182e00 (audiochebband)
0:00:00.188779375 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<audiochebband> set parent (ref and sink)
0:00:00.188793125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for audiochebband
0:00:00.188806125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature audiochebband, plugin 0x3d172c40 audiofx
0:00:00.188819750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'audiofx' feature 'audioiirfilter' typename : 'GstElementFactory'
0:00:00.188848500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb470bd10
0:00:00.188866125 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.188878625 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.188892500 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.188905000 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.188918625 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.188930875 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.188945125 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.188959500 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.188973750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.188985875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb470be20
0:00:00.189010250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.189026875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb470beb8
0:00:00.189056750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.189079875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d182ee0 (audioiirfilter)
0:00:00.189098500 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<audioiirfilter> set parent (ref and sink)
0:00:00.189113375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for audioiirfilter
0:00:00.189128500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature audioiirfilter, plugin 0x3d172c40 audiofx
0:00:00.189142250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'audiofx' feature 'audiowsinclimit' typename : 'GstElementFactory'
0:00:00.189206125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb470bf70
0:00:00.189226750 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.189239750 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.189254125 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.189266750 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.189282750 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.189295250 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.189309500 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.189321750 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.189337125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.189349250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb470c120
0:00:00.189362750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.189374375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb470c1b8
0:00:00.189387625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.189403875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d1880a0 (audiowsinclimit)
0:00:00.189420625 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<audiowsinclimit> set parent (ref and sink)
0:00:00.189434500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for audiowsinclimit
0:00:00.189449375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature audiowsinclimit, plugin 0x3d172c40 audiofx
0:00:00.189463500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'audiofx' feature 'audiowsincband' typename : 'GstElementFactory'
0:00:00.189492500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb470c270
0:00:00.189511125 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.189524375 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.189538500 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.189551125 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.189565000 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.189587875 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.189603500 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.189615625 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.189631125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.189643375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb470c428
0:00:00.189657000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.189668750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb470c4c0
0:00:00.189682125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.189699000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d188180 (audiowsincband)
0:00:00.189715625 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<audiowsincband> set parent (ref and sink)
0:00:00.189729375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for audiowsincband
0:00:00.189742125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature audiowsincband, plugin 0x3d172c40 audiofx
0:00:00.189755625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'audiofx' feature 'audiofirfilter' typename : 'GstElementFactory'
0:00:00.189783625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb470c578
0:00:00.189801250 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.189813875 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.189827875 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.189840125 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.189853625 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.189865750 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.189880250 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.189892750 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.189906500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.189918625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb470c688
0:00:00.189932250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.189943750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb470c720
0:00:00.189967875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.189985625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d188260 (audiofirfilter)
0:00:00.190004375 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<audiofirfilter> set parent (ref and sink)
0:00:00.190018625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for audiofirfilter
0:00:00.190031500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature audiofirfilter, plugin 0x3d172c40 audiofx
0:00:00.190046250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'audiofx' feature 'audioecho' typename : 'GstElementFactory'
0:00:00.190075625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb470c7d0
0:00:00.190092875 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.190105500 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.190119250 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.190131625 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.190145250 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.190157500 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.190172000 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.190184125 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.190197500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.190209625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb470c8d8
0:00:00.190222750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.190234500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb470c970
0:00:00.190247875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.190264000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d188340 (audioecho)
0:00:00.190281500 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<audioecho> set parent (ref and sink)
0:00:00.190295375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for audioecho
0:00:00.190308000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature audioecho, plugin 0x3d172c40 audiofx
0:00:00.190322125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'audiofx' feature 'scaletempo' typename : 'GstElementFactory'
0:00:00.190364500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb470ca28
0:00:00.190385375 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.190398375 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.190412000 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.190424375 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.190438250 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.190450375 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.190464750 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.190476875 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.190490125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.190502125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb470cb10
0:00:00.190518250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.190530250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb470cc40
0:00:00.190544750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.190561250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d188420 (scaletempo)
0:00:00.190578750 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<scaletempo> set parent (ref and sink)
0:00:00.190592625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for scaletempo
0:00:00.190605500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature scaletempo, plugin 0x3d172c40 audiofx
0:00:00.190619750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrybinary.c:606:priv_gst_registry_binary_read_cache: reading binary registry 236911(39d6f)/405909
0:00:00.190633375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:829:_priv_gst_registry_chunks_load_plugin: Reading/casting for GstRegistryChunkPluginElement at address 0xffffb470cd70
0:00:00.190662875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:850:_priv_gst_registry_chunks_load_plugin: read strings for name='auparse'
0:00:00.190677000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:851:_priv_gst_registry_chunks_load_plugin: desc.description='parses au streams'
0:00:00.190688500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:852:_priv_gst_registry_chunks_load_plugin: filename='/data/halley/gst-sdk/lib/gstreamer-1.0/libgstauparse.so'
0:00:00.190700250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:853:_priv_gst_registry_chunks_load_plugin: desc.version='1.14.0'
0:00:00.190711250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:854:_priv_gst_registry_chunks_load_plugin: desc.license='LGPL'
0:00:00.190732750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:855:_priv_gst_registry_chunks_load_plugin: desc.source='gst-plugins-good'
0:00:00.190745500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:856:_priv_gst_registry_chunks_load_plugin: desc.package='GStreamer Good Plug-ins source release'
0:00:00.190757125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:857:_priv_gst_registry_chunks_load_plugin: desc.origin='Unknown package origin'
0:00:00.190768625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:858:_priv_gst_registry_chunks_load_plugin: desc.datetime=2018-03-19
0:00:00.190783750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:466:gst_registry_add_plugin:<registry0> adding plugin 0x3d172d70 for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstauparse.so"
0:00:00.190810875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:479:gst_registry_add_plugin:<registry0> emitting plugin-added for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstauparse.so"
0:00:00.190825625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:879:_priv_gst_registry_chunks_load_plugin: Added plugin 'auparse' plugin with 1 features from binary registry
0:00:00.190840375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'auparse' feature 'auparse' typename : 'GstElementFactory'
0:00:00.190870500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb470ce60
0:00:00.190888250 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.190901000 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.190914875 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.190927375 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.190941125 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.190953375 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.190967500 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.190980500 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.190994250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.191006625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb470cf48
0:00:00.191020000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.191031625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb470cf60
0:00:00.191049500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.191065750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d188500 (auparse)
0:00:00.191083625 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<auparse> set parent (ref and sink)
0:00:00.191108750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for auparse
0:00:00.191122375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature auparse, plugin 0x3d172d70 auparse
0:00:00.191137000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrybinary.c:606:priv_gst_registry_binary_read_cache: reading binary registry 238014(3a1be)/405909
0:00:00.191151000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:829:_priv_gst_registry_chunks_load_plugin: Reading/casting for GstRegistryChunkPluginElement at address 0xffffb470d1c0
0:00:00.191191125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:850:_priv_gst_registry_chunks_load_plugin: read strings for name='shapewipe'
0:00:00.191206000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:851:_priv_gst_registry_chunks_load_plugin: desc.description='Shape Wipe transition filter'
0:00:00.191218000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:852:_priv_gst_registry_chunks_load_plugin: filename='/data/halley/gst-sdk/lib/gstreamer-1.0/libgstshapewipe.so'
0:00:00.191229750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:853:_priv_gst_registry_chunks_load_plugin: desc.version='1.14.0'
0:00:00.191240875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:854:_priv_gst_registry_chunks_load_plugin: desc.license='LGPL'
0:00:00.191251750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:855:_priv_gst_registry_chunks_load_plugin: desc.source='gst-plugins-good'
0:00:00.191263250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:856:_priv_gst_registry_chunks_load_plugin: desc.package='GStreamer Good Plug-ins source release'
0:00:00.191274750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:857:_priv_gst_registry_chunks_load_plugin: desc.origin='Unknown package origin'
0:00:00.191286125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:858:_priv_gst_registry_chunks_load_plugin: desc.datetime=2018-03-19
0:00:00.191301000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:466:gst_registry_add_plugin:<registry0> adding plugin 0x3d172ea0 for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstshapewipe.so"
0:00:00.191319500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:479:gst_registry_add_plugin:<registry0> emitting plugin-added for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstshapewipe.so"
0:00:00.191333250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:879:_priv_gst_registry_chunks_load_plugin: Added plugin 'shapewipe' plugin with 1 features from binary registry
0:00:00.191347750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'shapewipe' feature 'shapewipe' typename : 'GstElementFactory'
0:00:00.191376500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb470d2c0
0:00:00.191394625 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.191407625 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.191421875 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.191434375 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.191448500 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.191460625 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.191485750 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.191500000 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.191513875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=3
0:00:00.191526125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb470d3e0
0:00:00.191541500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template video_sink
0:00:00.191553250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb470d498
0:00:00.191568750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template mask_sink
0:00:00.191580625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb470d5a0
0:00:00.191594000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.191610625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d1885e0 (shapewipe)
0:00:00.191628625 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<shapewipe> set parent (ref and sink)
0:00:00.191642875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for shapewipe
0:00:00.191655875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature shapewipe, plugin 0x3d172ea0 shapewipe
0:00:00.191670375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrybinary.c:606:priv_gst_registry_binary_read_cache: reading binary registry 239185(3a651)/405909
0:00:00.191684000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:829:_priv_gst_registry_chunks_load_plugin: Reading/casting for GstRegistryChunkPluginElement at address 0xffffb470d658
0:00:00.191713500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:850:_priv_gst_registry_chunks_load_plugin: read strings for name='spectrum'
0:00:00.191728375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:851:_priv_gst_registry_chunks_load_plugin: desc.description='Run an FFT on the audio signal, output spectrum data'
0:00:00.191740625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:852:_priv_gst_registry_chunks_load_plugin: filename='/data/halley/gst-sdk/lib/gstreamer-1.0/libgstspectrum.so'
0:00:00.191752375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:853:_priv_gst_registry_chunks_load_plugin: desc.version='1.14.0'
0:00:00.191763625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:854:_priv_gst_registry_chunks_load_plugin: desc.license='LGPL'
0:00:00.191774500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:855:_priv_gst_registry_chunks_load_plugin: desc.source='gst-plugins-good'
0:00:00.191785875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:856:_priv_gst_registry_chunks_load_plugin: desc.package='GStreamer Good Plug-ins source release'
0:00:00.191797375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:857:_priv_gst_registry_chunks_load_plugin: desc.origin='Unknown package origin'
0:00:00.191808750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:858:_priv_gst_registry_chunks_load_plugin: desc.datetime=2018-03-19
0:00:00.191837750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:466:gst_registry_add_plugin:<registry0> adding plugin 0x3d189050 for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstspectrum.so"
0:00:00.191856875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:479:gst_registry_add_plugin:<registry0> emitting plugin-added for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstspectrum.so"
0:00:00.191870250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:879:_priv_gst_registry_chunks_load_plugin: Added plugin 'spectrum' plugin with 1 features from binary registry
0:00:00.191884625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'spectrum' feature 'spectrum' typename : 'GstElementFactory'
0:00:00.191915875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb470d770
0:00:00.191934125 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.191946875 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.191960875 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.191973375 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.191987000 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.191999750 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.192014375 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.192027375 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.192042875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.192055500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb470d8e0
0:00:00.192070750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.192083500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb470d988
0:00:00.192097000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.192113000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d1886c0 (spectrum)
0:00:00.192131000 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<spectrum> set parent (ref and sink)
0:00:00.192145000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for spectrum
0:00:00.192158000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature spectrum, plugin 0x3d189050 spectrum
0:00:00.192172250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrybinary.c:606:priv_gst_registry_binary_read_cache: reading binary registry 240177(3aa31)/405909
0:00:00.192186000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:829:_priv_gst_registry_chunks_load_plugin: Reading/casting for GstRegistryChunkPluginElement at address 0xffffb470da38
0:00:00.192226875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:850:_priv_gst_registry_chunks_load_plugin: read strings for name='audiotestsrc'
0:00:00.192241875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:851:_priv_gst_registry_chunks_load_plugin: desc.description='Creates audio test signals of given frequency and volume'
0:00:00.192254000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:852:_priv_gst_registry_chunks_load_plugin: filename='/data/halley/gst-sdk/lib/gstreamer-1.0/libgstaudiotestsrc.so'
0:00:00.192265625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:853:_priv_gst_registry_chunks_load_plugin: desc.version='1.14.0'
0:00:00.192276750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:854:_priv_gst_registry_chunks_load_plugin: desc.license='LGPL'
0:00:00.192287750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:855:_priv_gst_registry_chunks_load_plugin: desc.source='gst-plugins-base'
0:00:00.192299125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:856:_priv_gst_registry_chunks_load_plugin: desc.package='GStreamer Base Plug-ins source release'
0:00:00.192310750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:857:_priv_gst_registry_chunks_load_plugin: desc.origin='Unknown package origin'
0:00:00.192322000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:858:_priv_gst_registry_chunks_load_plugin: desc.datetime=2018-03-19
0:00:00.192336750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:466:gst_registry_add_plugin:<registry0> adding plugin 0x3d189180 for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstaudiotestsrc.so"
0:00:00.192355000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:479:gst_registry_add_plugin:<registry0> emitting plugin-added for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstaudiotestsrc.so"
0:00:00.192368250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:879:_priv_gst_registry_chunks_load_plugin: Added plugin 'audiotestsrc' plugin with 1 features from binary registry
0:00:00.192382875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'audiotestsrc' feature 'audiotestsrc' typename : 'GstElementFactory'
0:00:00.192412875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb470db60
0:00:00.192430875 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.192443625 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.192457625 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.192470125 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.192483500 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.192495750 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.192510250 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.192523000 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.192536625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=1
0:00:00.192549250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb470dc60
0:00:00.192575750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.192593500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d18a830 (audiotestsrc)
0:00:00.192611250 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<audiotestsrc> set parent (ref and sink)
0:00:00.192625125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for audiotestsrc
0:00:00.192638000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature audiotestsrc, plugin 0x3d189180 audiotestsrc
0:00:00.192653375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrybinary.c:606:priv_gst_registry_binary_read_cache: reading binary registry 241085(3adbd)/405909
0:00:00.192667125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:829:_priv_gst_registry_chunks_load_plugin: Reading/casting for GstRegistryChunkPluginElement at address 0xffffb470ddc0
0:00:00.192696875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:850:_priv_gst_registry_chunks_load_plugin: read strings for name='removesilence'
0:00:00.192711500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:851:_priv_gst_registry_chunks_load_plugin: desc.description='Removes silence from an audio stream'
0:00:00.192724000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:852:_priv_gst_registry_chunks_load_plugin: filename='/data/halley/gst-sdk/lib/gstreamer-1.0/libgstremovesilence.so'
0:00:00.192735625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:853:_priv_gst_registry_chunks_load_plugin: desc.version='1.14.0'
0:00:00.192746750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:854:_priv_gst_registry_chunks_load_plugin: desc.license='LGPL'
0:00:00.192757625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:855:_priv_gst_registry_chunks_load_plugin: desc.source='gst-plugins-bad'
0:00:00.192768875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:856:_priv_gst_registry_chunks_load_plugin: desc.package='GStreamer Bad Plug-ins source release'
0:00:00.192780250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:857:_priv_gst_registry_chunks_load_plugin: desc.origin='Unknown package origin'
0:00:00.192791625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:858:_priv_gst_registry_chunks_load_plugin: desc.datetime=2018-03-19
0:00:00.192806250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:466:gst_registry_add_plugin:<registry0> adding plugin 0x3d1892b0 for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstremovesilence.so"
0:00:00.192824125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:479:gst_registry_add_plugin:<registry0> emitting plugin-added for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstremovesilence.so"
0:00:00.192837625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:879:_priv_gst_registry_chunks_load_plugin: Added plugin 'removesilence' plugin with 1 features from binary registry
0:00:00.192852250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'removesilence' feature 'removesilence' typename : 'GstElementFactory'
0:00:00.192881625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb470ded0
0:00:00.192899875 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.192912500 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.192936625 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.192950625 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.192964250 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.192976375 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.192990500 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.193002750 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.193016875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.193028750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb470e010
0:00:00.193060250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.193077250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb470e088
0:00:00.193091000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.193107625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d18a910 (removesilence)
0:00:00.193125625 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<removesilence> set parent (ref and sink)
0:00:00.193139875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for removesilence
0:00:00.193152750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature removesilence, plugin 0x3d1892b0 removesilence
0:00:00.193167375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrybinary.c:606:priv_gst_registry_binary_read_cache: reading binary registry 241921(3b101)/405909
0:00:00.193180500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:829:_priv_gst_registry_chunks_load_plugin: Reading/casting for GstRegistryChunkPluginElement at address 0xffffb470e108
0:00:00.193210375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:850:_priv_gst_registry_chunks_load_plugin: read strings for name='camerabin'
0:00:00.193225125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:851:_priv_gst_registry_chunks_load_plugin: desc.description='Take image snapshots and record movies from camera'
0:00:00.193237000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:852:_priv_gst_registry_chunks_load_plugin: filename='/data/halley/gst-sdk/lib/gstreamer-1.0/libgstcamerabin.so'
0:00:00.193248750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:853:_priv_gst_registry_chunks_load_plugin: desc.version='1.14.0'
0:00:00.193259875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:854:_priv_gst_registry_chunks_load_plugin: desc.license='LGPL'
0:00:00.193270750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:855:_priv_gst_registry_chunks_load_plugin: desc.source='gst-plugins-bad'
0:00:00.193282000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:856:_priv_gst_registry_chunks_load_plugin: desc.package='GStreamer Bad Plug-ins source release'
0:00:00.193293625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:857:_priv_gst_registry_chunks_load_plugin: desc.origin='Unknown package origin'
0:00:00.193315750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:858:_priv_gst_registry_chunks_load_plugin: desc.datetime=2018-03-19
0:00:00.193331750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:466:gst_registry_add_plugin:<registry0> adding plugin 0x3d1893e0 for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstcamerabin.so"
0:00:00.193350125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:479:gst_registry_add_plugin:<registry0> emitting plugin-added for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstcamerabin.so"
0:00:00.193363375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:879:_priv_gst_registry_chunks_load_plugin: Added plugin 'camerabin' plugin with 3 features from binary registry
0:00:00.193377750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'camerabin' feature 'viewfinderbin' typename : 'GstElementFactory'
0:00:00.193407375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb470e220
0:00:00.193425375 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.193438250 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.193452125 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.193464750 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.193478125 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.193490375 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.193504250 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.193516500 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.193529750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=1
0:00:00.193541625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb470e308
0:00:00.193555125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.193567000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:643:gst_registry_chunks_load_feature: Reading 1 Interfaces at address 0xffffb470e326
0:00:00.193585750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d18a9f0 (viewfinderbin)
0:00:00.193603250 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<viewfinderbin> set parent (ref and sink)
0:00:00.193617125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for viewfinderbin
0:00:00.193629625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature viewfinderbin, plugin 0x3d1893e0 camerabin
0:00:00.193644000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'camerabin' feature 'wrappercamerabinsrc' typename : 'GstElementFactory'
0:00:00.193672625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb470e360
0:00:00.193700750 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.193714375 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.193728750 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.193741250 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.193754750 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.193767125 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.193781375 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.193794625 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.193808375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=3
0:00:00.193820375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb470e478
0:00:00.193834000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template vfsrc
0:00:00.193846250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb470e490
0:00:00.193859375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template imgsrc
0:00:00.193871250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb470e4a8
0:00:00.193892875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template vidsrc
0:00:00.193906750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:643:gst_registry_chunks_load_feature: Reading 1 Interfaces at address 0xffffb470e4bb
0:00:00.193925500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d18aad0 (wrappercamerabinsrc)
0:00:00.193943375 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<wrappercamerabinsrc> set parent (ref and sink)
0:00:00.193957750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for wrappercamerabinsrc
0:00:00.193970750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature wrappercamerabinsrc, plugin 0x3d1893e0 camerabin
0:00:00.193985375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'camerabin' feature 'camerabin' typename : 'GstElementFactory'
0:00:00.194015500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb470e4e8
0:00:00.194033500 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.194046125 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.194059875 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.194082500 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.194097750 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.194109875 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.194124375 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.194136750 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.194150250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=0
0:00:00.194162500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:643:gst_registry_chunks_load_feature: Reading 2 Interfaces at address 0xffffb470e5e9
0:00:00.194182500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d18abb0 (camerabin)
0:00:00.194200125 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<camerabin> set parent (ref and sink)
0:00:00.194214375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for camerabin
0:00:00.194227500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature camerabin, plugin 0x3d1893e0 camerabin
0:00:00.194241750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrybinary.c:606:priv_gst_registry_binary_read_cache: reading binary registry 243204(3b604)/405909
0:00:00.194255125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:829:_priv_gst_registry_chunks_load_plugin: Reading/casting for GstRegistryChunkPluginElement at address 0xffffb470e608
0:00:00.194285625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:850:_priv_gst_registry_chunks_load_plugin: read strings for name='decklink'
0:00:00.194300125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:851:_priv_gst_registry_chunks_load_plugin: desc.description='Blackmagic Decklink plugin'
0:00:00.194312125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:852:_priv_gst_registry_chunks_load_plugin: filename='/data/halley/gst-sdk/lib/gstreamer-1.0/libgstdecklink.so'
0:00:00.194323625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:853:_priv_gst_registry_chunks_load_plugin: desc.version='1.14.0'
0:00:00.194334625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:854:_priv_gst_registry_chunks_load_plugin: desc.license='LGPL'
0:00:00.194345500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:855:_priv_gst_registry_chunks_load_plugin: desc.source='gst-plugins-bad'
0:00:00.194356750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:856:_priv_gst_registry_chunks_load_plugin: desc.package='GStreamer Bad Plug-ins'
0:00:00.194368500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:857:_priv_gst_registry_chunks_load_plugin: desc.origin='Unknown package origin'
0:00:00.194379875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:858:_priv_gst_registry_chunks_load_plugin: desc.datetime=2018-03-19
0:00:00.194394500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:466:gst_registry_add_plugin:<registry0> adding plugin 0x3d189510 for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstdecklink.so"
0:00:00.194412625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:479:gst_registry_add_plugin:<registry0> emitting plugin-added for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstdecklink.so"
0:00:00.194436750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:879:_priv_gst_registry_chunks_load_plugin: Added plugin 'decklink' plugin with 4 features from binary registry
0:00:00.194452250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'decklink' feature 'decklinkaudiosink' typename : 'GstElementFactory'
0:00:00.194481250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb470e6f8
0:00:00.194499250 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.194512000 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.194525875 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.194538500 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.194552000 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.194564125 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.194578125 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.194594750 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.194609500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=1
0:00:00.194621625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb470e800
0:00:00.194636625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.194653750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d18ac90 (decklinkaudiosink)
0:00:00.194671750 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<decklinkaudiosink> set parent (ref and sink)
0:00:00.194685625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for decklinkaudiosink
0:00:00.194698500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature decklinkaudiosink, plugin 0x3d189510 decklink
0:00:00.194713250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'decklink' feature 'decklinkvideosink' typename : 'GstElementFactory'
0:00:00.194749875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb470e8a8
0:00:00.194768125 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.194781125 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.194795375 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.194808125 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.194822625 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.194837000 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.194862625 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.194877500 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.194892375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=1
0:00:00.194905000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb470e9b0
0:00:00.195094375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.195115250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d18ad70 (decklinkvideosink)
0:00:00.195133375 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<decklinkvideosink> set parent (ref and sink)
0:00:00.195147625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for decklinkvideosink
0:00:00.195161250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature decklinkvideosink, plugin 0x3d189510 decklink
0:00:00.195175750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'decklink' feature 'decklinkaudiosrc' typename : 'GstElementFactory'
0:00:00.195211125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb4714580
0:00:00.195228250 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.195241000 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.195255125 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.195267750 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.195281625 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.195294000 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.195307750 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.195321125 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.195335750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=1
0:00:00.195348750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb4714688
0:00:00.195364250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.195381875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d18ae50 (decklinkaudiosrc)
0:00:00.195399875 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<decklinkaudiosrc> set parent (ref and sink)
0:00:00.195414250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for decklinkaudiosrc
0:00:00.195445750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature decklinkaudiosrc, plugin 0x3d189510 decklink
0:00:00.195460750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'decklink' feature 'decklinkvideosrc' typename : 'GstElementFactory'
0:00:00.195489750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb47147c0
0:00:00.195506750 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.195519500 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.195533375 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.195545750 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.195559750 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.195571875 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.195585625 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.195599000 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.195613500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=1
0:00:00.195626125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb47148c8
0:00:00.195796000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.195815125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d18c850 (decklinkvideosrc)
0:00:00.195832375 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<decklinkvideosrc> set parent (ref and sink)
0:00:00.195846250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for decklinkvideosrc
0:00:00.195859125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature decklinkvideosrc, plugin 0x3d189510 decklink
0:00:00.195873250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrybinary.c:606:priv_gst_registry_binary_read_cache: reading binary registry 291115(4712b)/405909
0:00:00.195886875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:829:_priv_gst_registry_chunks_load_plugin: Reading/casting for GstRegistryChunkPluginElement at address 0xffffb471a130
0:00:00.195916250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:850:_priv_gst_registry_chunks_load_plugin: read strings for name='audioparsers'
0:00:00.195931250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:851:_priv_gst_registry_chunks_load_plugin: desc.description='Parsers for various audio formats'
0:00:00.195943125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:852:_priv_gst_registry_chunks_load_plugin: filename='/data/halley/gst-sdk/lib/gstreamer-1.0/libgstaudioparsers.so'
0:00:00.195954875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:853:_priv_gst_registry_chunks_load_plugin: desc.version='1.14.0'
0:00:00.195966125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:854:_priv_gst_registry_chunks_load_plugin: desc.license='LGPL'
0:00:00.195994000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:855:_priv_gst_registry_chunks_load_plugin: desc.source='gst-plugins-good'
0:00:00.196007500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:856:_priv_gst_registry_chunks_load_plugin: desc.package='GStreamer Good Plug-ins source release'
0:00:00.196018750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:857:_priv_gst_registry_chunks_load_plugin: desc.origin='Unknown package origin'
0:00:00.196030000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:858:_priv_gst_registry_chunks_load_plugin: desc.datetime=2018-03-19
0:00:00.196045125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:466:gst_registry_add_plugin:<registry0> adding plugin 0x3d189640 for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstaudioparsers.so"
0:00:00.196069500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:479:gst_registry_add_plugin:<registry0> emitting plugin-added for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstaudioparsers.so"
0:00:00.196082750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:879:_priv_gst_registry_chunks_load_plugin: Added plugin 'audioparsers' plugin with 8 features from binary registry
0:00:00.196096125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'audioparsers' feature 'aacparse' typename : 'GstElementFactory'
0:00:00.196132375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb471a238
0:00:00.196151375 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.196164500 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.196178625 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.196191125 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.196204875 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.196217125 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.196231000 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.196243375 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.196256625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.196268750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb471a320
0:00:00.196282250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.196294375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb471a358
0:00:00.196308625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.196325500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d18c930 (aacparse)
0:00:00.196342125 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<aacparse> set parent (ref and sink)
0:00:00.196367125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for aacparse
0:00:00.196380500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature aacparse, plugin 0x3d189640 audioparsers
0:00:00.196394250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'audioparsers' feature 'amrparse' typename : 'GstElementFactory'
0:00:00.196422875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb471a3f0
0:00:00.196439875 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.196452625 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.196466625 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.196479125 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.196492875 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.196505000 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.196519000 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.196531500 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.196545000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.196557125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb471a4e8
0:00:00.196570875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.196582875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb471a520
0:00:00.196596625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.196612875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d18ca10 (amrparse)
0:00:00.196629875 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<amrparse> set parent (ref and sink)
0:00:00.196643500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for amrparse
0:00:00.196656125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature amrparse, plugin 0x3d189640 audioparsers
0:00:00.196669750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'audioparsers' feature 'ac3parse' typename : 'GstElementFactory'
0:00:00.196697875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb471a5a8
0:00:00.196714750 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.196727500 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.196752000 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.196765500 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.196779375 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.196791500 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.196805125 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.196817625 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.196831125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.196847125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb471a698
0:00:00.196861250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.196873000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb471a6e0
0:00:00.196888250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.196905750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d18caf0 (ac3parse)
0:00:00.196923250 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<ac3parse> set parent (ref and sink)
0:00:00.196937250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for ac3parse
0:00:00.196950375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature ac3parse, plugin 0x3d189640 audioparsers
0:00:00.196964000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'audioparsers' feature 'dcaparse' typename : 'GstElementFactory'
0:00:00.196994375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb471a808
0:00:00.197012750 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.197025750 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.197040500 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.197079000 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.197093750 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.197106250 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.197120250 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.197140625 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.197155000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.197186750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb471a900
0:00:00.197214625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.197228500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb471a930
0:00:00.197244000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.197266125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d18cbd0 (dcaparse)
0:00:00.197283750 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<dcaparse> set parent (ref and sink)
0:00:00.197297875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for dcaparse
0:00:00.197312125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature dcaparse, plugin 0x3d189640 audioparsers
0:00:00.197326750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'audioparsers' feature 'flacparse' typename : 'GstElementFactory'
0:00:00.197381125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb471aa30
0:00:00.197402625 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.197416500 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.197431625 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.197444250 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.197458375 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.197470750 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.197485750 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.197498125 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.197511875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.197524250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb471ab40
0:00:00.197539250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.197551375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb471aba0
0:00:00.197565375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.197583500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d18ccb0 (flacparse)
0:00:00.197600750 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<flacparse> set parent (ref and sink)
0:00:00.197614750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for flacparse
0:00:00.197647625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature flacparse, plugin 0x3d189640 audioparsers
0:00:00.197663750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'audioparsers' feature 'mpegaudioparse' typename : 'GstElementFactory'
0:00:00.197706250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb471abe0
0:00:00.197727625 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.197741125 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.197756625 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.197769625 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.197784000 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.197796750 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.197811750 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.197824625 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.197839125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.197851625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb471ad30
0:00:00.197867875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.197880875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb471ad60
0:00:00.197897000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.197917250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d18cd90 (mpegaudioparse)
0:00:00.197935625 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<mpegaudioparse> set parent (ref and sink)
0:00:00.197950375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for mpegaudioparse
0:00:00.197964625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature mpegaudioparse, plugin 0x3d189640 audioparsers
0:00:00.197979750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'audioparsers' feature 'sbcparse' typename : 'GstElementFactory'
0:00:00.198013750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb471ae28
0:00:00.198033875 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.198048250 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.198081875 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.198096250 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.198110375 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.198123000 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.198137750 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.198150375 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.198164250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.198176500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb471af28
0:00:00.198192125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.198205250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb471af98
0:00:00.198219875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.198240000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d18ce70 (sbcparse)
0:00:00.198258000 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<sbcparse> set parent (ref and sink)
0:00:00.198272375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for sbcparse
0:00:00.198286375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature sbcparse, plugin 0x3d189640 audioparsers
0:00:00.198300250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'audioparsers' feature 'wavpackparse' typename : 'GstElementFactory'
0:00:00.198330500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb471afd0
0:00:00.198348375 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.198361250 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.198375500 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.198388250 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.198402125 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.198414500 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.198430500 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.198443125 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.198456625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.198468750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb471b0c0
0:00:00.198496375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.198509500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb471b0e0
0:00:00.198524375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.198542250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d19b890 (wavpackparse)
0:00:00.198560625 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<wavpackparse> set parent (ref and sink)
0:00:00.198576250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for wavpackparse
0:00:00.198589500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature wavpackparse, plugin 0x3d189640 audioparsers
0:00:00.198604250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrybinary.c:606:priv_gst_registry_binary_read_cache: reading binary registry 295310(4818e)/405909
0:00:00.198621250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:829:_priv_gst_registry_chunks_load_plugin: Reading/casting for GstRegistryChunkPluginElement at address 0xffffb471b190
0:00:00.198657250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:850:_priv_gst_registry_chunks_load_plugin: read strings for name='alpha'
0:00:00.198671875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:851:_priv_gst_registry_chunks_load_plugin: desc.description='adds an alpha channel to video - constant or via chroma-keying'
0:00:00.198683875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:852:_priv_gst_registry_chunks_load_plugin: filename='/data/halley/gst-sdk/lib/gstreamer-1.0/libgstalpha.so'
0:00:00.198695375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:853:_priv_gst_registry_chunks_load_plugin: desc.version='1.14.0'
0:00:00.198706500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:854:_priv_gst_registry_chunks_load_plugin: desc.license='LGPL'
0:00:00.198717625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:855:_priv_gst_registry_chunks_load_plugin: desc.source='gst-plugins-good'
0:00:00.198729125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:856:_priv_gst_registry_chunks_load_plugin: desc.package='GStreamer Good Plug-ins source release'
0:00:00.198741125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:857:_priv_gst_registry_chunks_load_plugin: desc.origin='Unknown package origin'
0:00:00.198752500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:858:_priv_gst_registry_chunks_load_plugin: desc.datetime=2018-03-19
0:00:00.198769375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:466:gst_registry_add_plugin:<registry0> adding plugin 0x3d189770 for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstalpha.so"
0:00:00.198788000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:479:gst_registry_add_plugin:<registry0> emitting plugin-added for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstalpha.so"
0:00:00.198803375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:879:_priv_gst_registry_chunks_load_plugin: Added plugin 'alpha' plugin with 1 features from binary registry
0:00:00.198817250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'alpha' feature 'alpha' typename : 'GstElementFactory'
0:00:00.198860000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb471b2a8
0:00:00.198899000 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.198914375 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.198929500 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.198942750 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.198957375 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.198970375 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.198985500 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.199001875 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.199017625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.199030625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb471b410
0:00:00.199046875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.199059500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb471b518
0:00:00.199073875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.199095000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d19b970 (alpha)
0:00:00.199113000 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<alpha> set parent (ref and sink)
0:00:00.199127500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for alpha
0:00:00.199141000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature alpha, plugin 0x3d189770 alpha
0:00:00.199155750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrybinary.c:606:priv_gst_registry_binary_read_cache: reading binary registry 296475(4861b)/405909
0:00:00.199170125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:829:_priv_gst_registry_chunks_load_plugin: Reading/casting for GstRegistryChunkPluginElement at address 0xffffb471b620
0:00:00.199211500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:850:_priv_gst_registry_chunks_load_plugin: read strings for name='proxy'
0:00:00.199227875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:851:_priv_gst_registry_chunks_load_plugin: desc.description='plugin for proxied inter-pipeline communication'
0:00:00.199239750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:852:_priv_gst_registry_chunks_load_plugin: filename='/data/halley/gst-sdk/lib/gstreamer-1.0/libgstproxy.so'
0:00:00.199251375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:853:_priv_gst_registry_chunks_load_plugin: desc.version='1.14.0'
0:00:00.199262500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:854:_priv_gst_registry_chunks_load_plugin: desc.license='LGPL'
0:00:00.199273500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:855:_priv_gst_registry_chunks_load_plugin: desc.source='gst-plugins-bad'
0:00:00.199303750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:856:_priv_gst_registry_chunks_load_plugin: desc.package='GStreamer Bad Plug-ins'
0:00:00.199317250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:857:_priv_gst_registry_chunks_load_plugin: desc.origin='Unknown package origin'
0:00:00.199328625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:858:_priv_gst_registry_chunks_load_plugin: desc.datetime=2018-03-19
0:00:00.199345500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:466:gst_registry_add_plugin:<registry0> adding plugin 0x3d1898a0 for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstproxy.so"
0:00:00.199364000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:479:gst_registry_add_plugin:<registry0> emitting plugin-added for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstproxy.so"
0:00:00.199378000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:879:_priv_gst_registry_chunks_load_plugin: Added plugin 'proxy' plugin with 2 features from binary registry
0:00:00.199391875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'proxy' feature 'proxysrc' typename : 'GstElementFactory'
0:00:00.199428125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb471b718
0:00:00.199447875 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.199462250 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.199477875 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.199490750 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.199504875 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.199517625 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.199532750 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.199545500 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.199559625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=1
0:00:00.199571875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb471b810
0:00:00.199585875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.199597875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:643:gst_registry_chunks_load_feature: Reading 1 Interfaces at address 0xffffb471b820
0:00:00.199619750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d19ba50 (proxysrc)
0:00:00.199637250 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<proxysrc> set parent (ref and sink)
0:00:00.199653625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for proxysrc
0:00:00.199666625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature proxysrc, plugin 0x3d1898a0 proxy
0:00:00.199700000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'proxy' feature 'proxysink' typename : 'GstElementFactory'
0:00:00.199737875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb471b850
0:00:00.199755875 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.199768875 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.199783125 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.199796000 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.199809500 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.199821875 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.199836250 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.199848750 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.199862375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=1
0:00:00.199874875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb471b940
0:00:00.199889375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.199910125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d19bb30 (proxysink)
0:00:00.199927250 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<proxysink> set parent (ref and sink)
0:00:00.199941500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for proxysink
0:00:00.199955125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature proxysink, plugin 0x3d1898a0 proxy
0:00:00.199969750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrybinary.c:606:priv_gst_registry_binary_read_cache: reading binary registry 297297(48951)/405909
0:00:00.199984875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:829:_priv_gst_registry_chunks_load_plugin: Reading/casting for GstRegistryChunkPluginElement at address 0xffffb471b958
0:00:00.200022625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:850:_priv_gst_registry_chunks_load_plugin: read strings for name='rtspclientsink'
0:00:00.200037750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:851:_priv_gst_registry_chunks_load_plugin: desc.description='RTSP client sink element'
0:00:00.200049625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:852:_priv_gst_registry_chunks_load_plugin: filename='/data/halley/gst-sdk/lib/gstreamer-1.0/libgstrtspclientsink.so'
0:00:00.200060750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:853:_priv_gst_registry_chunks_load_plugin: desc.version='1.14.0'
0:00:00.200071875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:854:_priv_gst_registry_chunks_load_plugin: desc.license='LGPL'
0:00:00.200082875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:855:_priv_gst_registry_chunks_load_plugin: desc.source='gst-rtsp-server'
0:00:00.200108625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:856:_priv_gst_registry_chunks_load_plugin: desc.package='GStreamer RTSP Server Library source release'
0:00:00.200121125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:857:_priv_gst_registry_chunks_load_plugin: desc.origin='Unknown package origin'
0:00:00.200132375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:858:_priv_gst_registry_chunks_load_plugin: desc.datetime=2018-03-19
0:00:00.200147875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:466:gst_registry_add_plugin:<registry0> adding plugin 0x3d1899d0 for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstrtspclientsink.so"
0:00:00.200166125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:479:gst_registry_add_plugin:<registry0> emitting plugin-added for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstrtspclientsink.so"
0:00:00.200179500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:879:_priv_gst_registry_chunks_load_plugin: Added plugin 'rtspclientsink' plugin with 1 features from binary registry
0:00:00.200192875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'rtspclientsink' feature 'rtspclientsink' typename : 'GstElementFactory'
0:00:00.200249000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb471ba68
0:00:00.200267875 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.200281500 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.200295500 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.200308000 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.200324375 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.200337125 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.200351750 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.200363875 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.200377375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=1
0:00:00.200389625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb471bb60
0:00:00.200409250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink_%u
0:00:00.200421875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:628:gst_registry_chunks_load_feature: Reading 9 UriTypes at address 0xffffb471bb74
0:00:00.200441000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:643:gst_registry_chunks_load_feature: Reading 2 Interfaces at address 0xffffb471bbb7
0:00:00.200474625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d19bc10 (rtspclientsink)
0:00:00.200493500 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<rtspclientsink> set parent (ref and sink)
0:00:00.200507500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for rtspclientsink
0:00:00.200531500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature rtspclientsink, plugin 0x3d1899d0 rtspclientsink
0:00:00.200547125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrybinary.c:606:priv_gst_registry_binary_read_cache: reading binary registry 297939(48bd3)/405909
0:00:00.200561375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:829:_priv_gst_registry_chunks_load_plugin: Reading/casting for GstRegistryChunkPluginElement at address 0xffffb471bbd8
0:00:00.200610000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:850:_priv_gst_registry_chunks_load_plugin: read strings for name='replaygain'
0:00:00.200625500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:851:_priv_gst_registry_chunks_load_plugin: desc.description='ReplayGain volume normalization'
0:00:00.200637500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:852:_priv_gst_registry_chunks_load_plugin: filename='/data/halley/gst-sdk/lib/gstreamer-1.0/libgstreplaygain.so'
0:00:00.200649250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:853:_priv_gst_registry_chunks_load_plugin: desc.version='1.14.0'
0:00:00.200660375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:854:_priv_gst_registry_chunks_load_plugin: desc.license='LGPL'
0:00:00.200671375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:855:_priv_gst_registry_chunks_load_plugin: desc.source='gst-plugins-good'
0:00:00.200682625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:856:_priv_gst_registry_chunks_load_plugin: desc.package='GStreamer Good Plug-ins source release'
0:00:00.200694000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:857:_priv_gst_registry_chunks_load_plugin: desc.origin='Unknown package origin'
0:00:00.200705250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:858:_priv_gst_registry_chunks_load_plugin: desc.datetime=2018-03-19
0:00:00.200720250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:466:gst_registry_add_plugin:<registry0> adding plugin 0x3d189b00 for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstreplaygain.so"
0:00:00.200737625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:479:gst_registry_add_plugin:<registry0> emitting plugin-added for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstreplaygain.so"
0:00:00.200751250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:879:_priv_gst_registry_chunks_load_plugin: Added plugin 'replaygain' plugin with 3 features from binary registry
0:00:00.200765000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'replaygain' feature 'rganalysis' typename : 'GstElementFactory'
0:00:00.200793625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb471bce0
0:00:00.200811250 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.200824250 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.200838375 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.200850875 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.200864375 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.200876750 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.200890875 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.200913750 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.200929000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.200941125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb471bdd0
0:00:00.200958375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.200970125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb471bf58
0:00:00.200985625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.201001750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d19bcf0 (rganalysis)
0:00:00.201019000 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<rganalysis> set parent (ref and sink)
0:00:00.201032625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for rganalysis
0:00:00.201081875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature rganalysis, plugin 0x3d189b00 replaygain
0:00:00.201100250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'replaygain' feature 'rglimiter' typename : 'GstElementFactory'
0:00:00.201131125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb471c0f8
0:00:00.201149500 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.201162375 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.201176500 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.201189250 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.201203000 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.201215750 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.201230750 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.201243500 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.201257625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.201269875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb471c1f0
0:00:00.201284625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.201296500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb471c290
0:00:00.201309875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.201337750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d19bdd0 (rglimiter)
0:00:00.201356000 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<rglimiter> set parent (ref and sink)
0:00:00.201370125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for rglimiter
0:00:00.201383000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature rglimiter, plugin 0x3d189b00 replaygain
0:00:00.201398000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'replaygain' feature 'rgvolume' typename : 'GstElementFactory'
0:00:00.201429000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb471c350
0:00:00.201446500 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.201459125 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.201473250 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.201486000 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.201499625 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.201512250 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.201526625 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.201539125 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.201552625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.201564500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb471c440
0:00:00.201579250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.201591125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb471c4e8
0:00:00.201604750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.201616375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:643:gst_registry_chunks_load_feature: Reading 1 Interfaces at address 0xffffb471c591
0:00:00.201634375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d19beb0 (rgvolume)
0:00:00.201651375 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<rgvolume> set parent (ref and sink)
0:00:00.201665375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for rgvolume
0:00:00.201678250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature rgvolume, plugin 0x3d189b00 replaygain
0:00:00.201692250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrybinary.c:606:priv_gst_registry_binary_read_cache: reading binary registry 300447(4959f)/405909
0:00:00.201706000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:829:_priv_gst_registry_chunks_load_plugin: Reading/casting for GstRegistryChunkPluginElement at address 0xffffb471c5a0
0:00:00.201747625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:850:_priv_gst_registry_chunks_load_plugin: read strings for name='interlace'
0:00:00.201762250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:851:_priv_gst_registry_chunks_load_plugin: desc.description='Create an interlaced video stream'
0:00:00.201774250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:852:_priv_gst_registry_chunks_load_plugin: filename='/data/halley/gst-sdk/lib/gstreamer-1.0/libgstinterlace.so'
0:00:00.201785875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:853:_priv_gst_registry_chunks_load_plugin: desc.version='1.14.0'
0:00:00.201796875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:854:_priv_gst_registry_chunks_load_plugin: desc.license='LGPL'
0:00:00.201807875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:855:_priv_gst_registry_chunks_load_plugin: desc.source='gst-plugins-bad'
0:00:00.201819000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:856:_priv_gst_registry_chunks_load_plugin: desc.package='GStreamer Bad Plug-ins source release'
0:00:00.201830500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:857:_priv_gst_registry_chunks_load_plugin: desc.origin='Unknown package origin'
0:00:00.201841875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:858:_priv_gst_registry_chunks_load_plugin: desc.datetime=2018-03-19
0:00:00.201856500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:466:gst_registry_add_plugin:<registry0> adding plugin 0x3d189c30 for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstinterlace.so"
0:00:00.201873625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:479:gst_registry_add_plugin:<registry0> emitting plugin-added for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstinterlace.so"
0:00:00.201886750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:879:_priv_gst_registry_chunks_load_plugin: Added plugin 'interlace' plugin with 1 features from binary registry
0:00:00.201900000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'interlace' feature 'interlace' typename : 'GstElementFactory'
0:00:00.201927875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb471c6a0
0:00:00.201945500 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.201958250 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.201972125 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.201984625 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.201998375 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.202010750 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.202025000 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.202037500 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.202050875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.202062875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb471c790
0:00:00.202088375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.202101500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb471c860
0:00:00.202116500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.202133000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d19d810 (interlace)
0:00:00.202198875 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<interlace> set parent (ref and sink)
0:00:00.202214125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for interlace
0:00:00.202227125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature interlace, plugin 0x3d189c30 interlace
0:00:00.202241375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrybinary.c:606:priv_gst_registry_binary_read_cache: reading binary registry 301400(49958)/405909
0:00:00.202254875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:829:_priv_gst_registry_chunks_load_plugin: Reading/casting for GstRegistryChunkPluginElement at address 0xffffb471c958
0:00:00.202284000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:850:_priv_gst_registry_chunks_load_plugin: read strings for name='wavparse'
0:00:00.202298000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:851:_priv_gst_registry_chunks_load_plugin: desc.description='Parse a .wav file into raw audio'
0:00:00.202309625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:852:_priv_gst_registry_chunks_load_plugin: filename='/data/halley/gst-sdk/lib/gstreamer-1.0/libgstwavparse.so'
0:00:00.202321250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:853:_priv_gst_registry_chunks_load_plugin: desc.version='1.14.0'
0:00:00.202332250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:854:_priv_gst_registry_chunks_load_plugin: desc.license='LGPL'
0:00:00.202343250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:855:_priv_gst_registry_chunks_load_plugin: desc.source='gst-plugins-good'
0:00:00.202354500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:856:_priv_gst_registry_chunks_load_plugin: desc.package='GStreamer Good Plug-ins source release'
0:00:00.202366250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:857:_priv_gst_registry_chunks_load_plugin: desc.origin='Unknown package origin'
0:00:00.202377750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:858:_priv_gst_registry_chunks_load_plugin: desc.datetime=2018-03-19
0:00:00.202392375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:466:gst_registry_add_plugin:<registry0> adding plugin 0x3d189d60 for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstwavparse.so"
0:00:00.202409125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:479:gst_registry_add_plugin:<registry0> emitting plugin-added for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstwavparse.so"
0:00:00.202422500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:879:_priv_gst_registry_chunks_load_plugin: Added plugin 'wavparse' plugin with 1 features from binary registry
0:00:00.202435875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'wavparse' feature 'wavparse' typename : 'GstElementFactory'
0:00:00.202463750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb471ca58
0:00:00.202492250 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.202506000 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.202519875 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.202532500 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.202546125 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.202558375 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.202572875 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.202585500 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.202598750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.202610500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb471cb40
0:00:00.202624250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.202636000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb471cb60
0:00:00.202660375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.202676625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d19d8f0 (wavparse)
0:00:00.202693625 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<wavparse> set parent (ref and sink)
0:00:00.202707375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for wavparse
0:00:00.202719875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature wavparse, plugin 0x3d189d60 wavparse
0:00:00.202733750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrybinary.c:606:priv_gst_registry_binary_read_cache: reading binary registry 303105(4a001)/405909
0:00:00.202747250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:829:_priv_gst_registry_chunks_load_plugin: Reading/casting for GstRegistryChunkPluginElement at address 0xffffb471d008
0:00:00.202776000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:850:_priv_gst_registry_chunks_load_plugin: read strings for name='stereo'
0:00:00.202790125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:851:_priv_gst_registry_chunks_load_plugin: desc.description='Muck with the stereo signal, enhance its 'stereo-ness''
0:00:00.202802250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:852:_priv_gst_registry_chunks_load_plugin: filename='/data/halley/gst-sdk/lib/gstreamer-1.0/libgststereo.so'
0:00:00.202813625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:853:_priv_gst_registry_chunks_load_plugin: desc.version='1.14.0'
0:00:00.202824500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:854:_priv_gst_registry_chunks_load_plugin: desc.license='LGPL'
0:00:00.202835500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:855:_priv_gst_registry_chunks_load_plugin: desc.source='gst-plugins-bad'
0:00:00.202857250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:856:_priv_gst_registry_chunks_load_plugin: desc.package='GStreamer Bad Plug-ins source release'
0:00:00.202870250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:857:_priv_gst_registry_chunks_load_plugin: desc.origin='Unknown package origin'
0:00:00.202881625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:858:_priv_gst_registry_chunks_load_plugin: desc.datetime=2018-03-19
0:00:00.202896125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:466:gst_registry_add_plugin:<registry0> adding plugin 0x3d189e90 for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgststereo.so"
0:00:00.202913500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:479:gst_registry_add_plugin:<registry0> emitting plugin-added for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgststereo.so"
0:00:00.202927000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:879:_priv_gst_registry_chunks_load_plugin: Added plugin 'stereo' plugin with 1 features from binary registry
0:00:00.202940375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'stereo' feature 'stereo' typename : 'GstElementFactory'
0:00:00.202969375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb471d118
0:00:00.202987125 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.203000000 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.203013875 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.203026375 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.203040000 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.203052125 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.203066625 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.203079250 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.203092875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.203105250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb471d218
0:00:00.203119250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.203131375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb471d278
0:00:00.203144500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.203160625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d19d9d0 (stereo)
0:00:00.203177375 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<stereo> set parent (ref and sink)
0:00:00.203191250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for stereo
0:00:00.203214125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature stereo, plugin 0x3d189e90 stereo
0:00:00.203229125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrybinary.c:606:priv_gst_registry_binary_read_cache: reading binary registry 303829(4a2d5)/405909
0:00:00.203242625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:829:_priv_gst_registry_chunks_load_plugin: Reading/casting for GstRegistryChunkPluginElement at address 0xffffb471d2d8
0:00:00.203273250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:850:_priv_gst_registry_chunks_load_plugin: read strings for name='audiomixer'
0:00:00.203287250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:851:_priv_gst_registry_chunks_load_plugin: desc.description='Mixes multiple audio streams'
0:00:00.203299250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:852:_priv_gst_registry_chunks_load_plugin: filename='/data/halley/gst-sdk/lib/gstreamer-1.0/libgstaudiomixer.so'
0:00:00.203310875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:853:_priv_gst_registry_chunks_load_plugin: desc.version='1.14.0'
0:00:00.203321875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:854:_priv_gst_registry_chunks_load_plugin: desc.license='LGPL'
0:00:00.203332875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:855:_priv_gst_registry_chunks_load_plugin: desc.source='gst-plugins-base'
0:00:00.203344125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:856:_priv_gst_registry_chunks_load_plugin: desc.package='GStreamer Base Plug-ins source release'
0:00:00.203355625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:857:_priv_gst_registry_chunks_load_plugin: desc.origin='Unknown package origin'
0:00:00.203366875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:858:_priv_gst_registry_chunks_load_plugin: desc.datetime=2018-03-19
0:00:00.203381625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:466:gst_registry_add_plugin:<registry0> adding plugin 0x3d19f060 for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstaudiomixer.so"
0:00:00.203399000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:479:gst_registry_add_plugin:<registry0> emitting plugin-added for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstaudiomixer.so"
0:00:00.203412250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:879:_priv_gst_registry_chunks_load_plugin: Added plugin 'audiomixer' plugin with 3 features from binary registry
0:00:00.203426000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'audiomixer' feature 'audiomixer' typename : 'GstElementFactory'
0:00:00.203458875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb471d3d8
0:00:00.203476250 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.203488875 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.203502750 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.203515500 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.203529500 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.203541875 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.203556125 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.203579125 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.203594125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.203606250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb471d4b8
0:00:00.203621125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.203633125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb471d570
0:00:00.203649625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink_%u
0:00:00.203661625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:643:gst_registry_chunks_load_feature: Reading 1 Interfaces at address 0xffffb471d6d1
0:00:00.203679500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d19dab0 (audiomixer)
0:00:00.203696500 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<audiomixer> set parent (ref and sink)
0:00:00.203710375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for audiomixer
0:00:00.203723000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature audiomixer, plugin 0x3d19f060 audiomixer
0:00:00.203736750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'audiomixer' feature 'liveadder' typename : 'GstElementFactory'
0:00:00.203766000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb471d700
0:00:00.203783500 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.203796250 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.203810000 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.203822250 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.203835875 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.203848125 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.203862250 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.203874625 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.203888125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.203900125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb471d7e0
0:00:00.203914250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.203926125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb471d898
0:00:00.203955000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink_%u
0:00:00.203968625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:643:gst_registry_chunks_load_feature: Reading 1 Interfaces at address 0xffffb471d9f9
0:00:00.203987750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d19db90 (liveadder)
0:00:00.204004750 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<liveadder> set parent (ref and sink)
0:00:00.204018875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for liveadder
0:00:00.204031625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature liveadder, plugin 0x3d19f060 audiomixer
0:00:00.204045500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'audiomixer' feature 'audiointerleave' typename : 'GstElementFactory'
0:00:00.204074750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb471da30
0:00:00.204092250 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.204104875 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.204119125 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.204132125 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.204146375 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.204158625 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.204172250 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.204184500 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.204197625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.204209500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb471db10
0:00:00.204226125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.204237875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb471dc70
0:00:00.204252500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink_%u
0:00:00.204264250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:643:gst_registry_chunks_load_feature: Reading 1 Interfaces at address 0xffffb471ddd6
0:00:00.204282500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d19dc70 (audiointerleave)
0:00:00.204299625 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<audiointerleave> set parent (ref and sink)
0:00:00.204313750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for audiointerleave
0:00:00.204337750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature audiointerleave, plugin 0x3d19f060 audiomixer
0:00:00.204353125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrybinary.c:606:priv_gst_registry_binary_read_cache: reading binary registry 306660(4ade4)/405909
0:00:00.204366375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:829:_priv_gst_registry_chunks_load_plugin: Reading/casting for GstRegistryChunkPluginElement at address 0xffffb471dde8
0:00:00.204396875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:850:_priv_gst_registry_chunks_load_plugin: read strings for name='inter'
0:00:00.204410875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:851:_priv_gst_registry_chunks_load_plugin: desc.description='plugin for inter-pipeline communication'
0:00:00.204423000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:852:_priv_gst_registry_chunks_load_plugin: filename='/data/halley/gst-sdk/lib/gstreamer-1.0/libgstinter.so'
0:00:00.204434750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:853:_priv_gst_registry_chunks_load_plugin: desc.version='1.14.0'
0:00:00.204445750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:854:_priv_gst_registry_chunks_load_plugin: desc.license='LGPL'
0:00:00.204456625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:855:_priv_gst_registry_chunks_load_plugin: desc.source='gst-plugins-bad'
0:00:00.204467875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:856:_priv_gst_registry_chunks_load_plugin: desc.package='GStreamer Bad Plug-ins'
0:00:00.204479500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:857:_priv_gst_registry_chunks_load_plugin: desc.origin='Unknown package origin'
0:00:00.204490625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:858:_priv_gst_registry_chunks_load_plugin: desc.datetime=2018-03-19
0:00:00.204505875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:466:gst_registry_add_plugin:<registry0> adding plugin 0x3d19f190 for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstinter.so"
0:00:00.204523500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:479:gst_registry_add_plugin:<registry0> emitting plugin-added for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstinter.so"
0:00:00.204536750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:879:_priv_gst_registry_chunks_load_plugin: Added plugin 'inter' plugin with 6 features from binary registry
0:00:00.204550375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'inter' feature 'interaudiosrc' typename : 'GstElementFactory'
0:00:00.204579000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb471dee0
0:00:00.204596500 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.204609250 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.204623375 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.204635750 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.204649375 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.204664625 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.204679750 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.204702625 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.204717500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=1
0:00:00.204729875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb471dfd8
0:00:00.204745000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.204762375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d19dd50 (interaudiosrc)
0:00:00.204791125 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<interaudiosrc> set parent (ref and sink)
0:00:00.204807125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for interaudiosrc
0:00:00.204820375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature interaudiosrc, plugin 0x3d19f190 inter
0:00:00.204834250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'inter' feature 'interaudiosink' typename : 'GstElementFactory'
0:00:00.204864125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb471e158
0:00:00.204882125 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.204894875 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.204909125 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.204922000 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.204935500 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.204948125 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.204962750 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.204975250 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.204988750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=1
0:00:00.205000750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb471e248
0:00:00.205016875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.205035250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d19de30 (interaudiosink)
0:00:00.205074250 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<interaudiosink> set parent (ref and sink)
0:00:00.205088500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for interaudiosink
0:00:00.205101500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature interaudiosink, plugin 0x3d19f190 inter
0:00:00.205115500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'inter' feature 'intersubsrc' typename : 'GstElementFactory'
0:00:00.205162750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb471e3a8
0:00:00.205183250 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.205196375 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.205210750 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.205223375 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.205237000 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.205249375 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.205263625 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.205275875 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.205289000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=1
0:00:00.205300875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb471e4a8
0:00:00.205314375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.205331000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d141890 (intersubsrc)
0:00:00.205348000 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<intersubsrc> set parent (ref and sink)
0:00:00.205361625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for intersubsrc
0:00:00.205374375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature intersubsrc, plugin 0x3d19f190 inter
0:00:00.205388250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'inter' feature 'intersubsink' typename : 'GstElementFactory'
0:00:00.205417125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb471e4e8
0:00:00.205434750 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.205447625 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.205461875 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.205474750 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.205488500 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.205501250 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.205515875 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.205528375 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.205554125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=1
0:00:00.205567875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb471e5e8
0:00:00.205582000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.205598750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d141970 (intersubsink)
0:00:00.205616125 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<intersubsink> set parent (ref and sink)
0:00:00.205630000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for intersubsink
0:00:00.205643000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature intersubsink, plugin 0x3d19f190 inter
0:00:00.205657125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'inter' feature 'intervideosrc' typename : 'GstElementFactory'
0:00:00.205695875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb471e620
0:00:00.205714500 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.205727375 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.205743875 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.205757000 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.205770875 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.205785000 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.205802125 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.205816750 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.205832625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=1
0:00:00.205847250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb471e718
0:00:00.205868000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.205885125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d141a50 (intervideosrc)
0:00:00.205904750 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<intervideosrc> set parent (ref and sink)
0:00:00.205919000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for intervideosrc
0:00:00.205931875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature intervideosrc, plugin 0x3d19f190 inter
0:00:00.205945875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'inter' feature 'intervideosink' typename : 'GstElementFactory'
0:00:00.205986625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb471ea68
0:00:00.206007000 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.206020250 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.206034625 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.206049750 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.206064125 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.206078750 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.206094000 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.206106750 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.206120250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=1
0:00:00.206134625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb471eb58
0:00:00.206153125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.206170000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d141b30 (intervideosink)
0:00:00.206186750 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<intervideosink> set parent (ref and sink)
0:00:00.206200750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for intervideosink
0:00:00.206213625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature intervideosink, plugin 0x3d19f190 inter
0:00:00.206227375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrybinary.c:606:priv_gst_registry_binary_read_cache: reading binary registry 310917(4be85)/405909
0:00:00.206240500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:829:_priv_gst_registry_chunks_load_plugin: Reading/casting for GstRegistryChunkPluginElement at address 0xffffb471ee88
0:00:00.206272625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:850:_priv_gst_registry_chunks_load_plugin: read strings for name='app'
0:00:00.206286750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:851:_priv_gst_registry_chunks_load_plugin: desc.description='Elements used to communicate with applications'
0:00:00.206298875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:852:_priv_gst_registry_chunks_load_plugin: filename='/data/halley/gst-sdk/lib/gstreamer-1.0/libgstapp.so'
0:00:00.206310500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:853:_priv_gst_registry_chunks_load_plugin: desc.version='1.14.0'
0:00:00.206321625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:854:_priv_gst_registry_chunks_load_plugin: desc.license='LGPL'
0:00:00.206332500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:855:_priv_gst_registry_chunks_load_plugin: desc.source='gst-plugins-base'
0:00:00.206343875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:856:_priv_gst_registry_chunks_load_plugin: desc.package='GStreamer Base Plug-ins source release'
0:00:00.206365625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:857:_priv_gst_registry_chunks_load_plugin: desc.origin='Unknown package origin'
0:00:00.206378125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:858:_priv_gst_registry_chunks_load_plugin: desc.datetime=2018-03-19
0:00:00.206393125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:466:gst_registry_add_plugin:<registry0> adding plugin 0x3d19f2c0 for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstapp.so"
0:00:00.206410500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:479:gst_registry_add_plugin:<registry0> emitting plugin-added for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstapp.so"
0:00:00.206423750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:879:_priv_gst_registry_chunks_load_plugin: Added plugin 'app' plugin with 2 features from binary registry
0:00:00.206437375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'app' feature 'appsrc' typename : 'GstElementFactory'
0:00:00.206468000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb471ef88
0:00:00.206486625 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.206499375 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.206512875 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.206525500 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.206539250 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.206552125 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.206567250 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.206579875 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.206594000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=1
0:00:00.206606375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb471f098
0:00:00.206630250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.206644625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:628:gst_registry_chunks_load_feature: Reading 1 UriTypes at address 0xffffb471f0a8
0:00:00.206658750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:643:gst_registry_chunks_load_feature: Reading 1 Interfaces at address 0xffffb471f0b3
0:00:00.206677375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d141c10 (appsrc)
0:00:00.206694250 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<appsrc> set parent (ref and sink)
0:00:00.206708125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for appsrc
0:00:00.206721000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature appsrc, plugin 0x3d19f2c0 app
0:00:00.206734625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'app' feature 'appsink' typename : 'GstElementFactory'
0:00:00.206774875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb471f0e0
0:00:00.206793500 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.206806375 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.206820375 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.206833000 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.206846875 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.206859375 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.206874250 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.206886625 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.206900500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=1
0:00:00.206912875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb471f1f0
0:00:00.206925625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.206937625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:628:gst_registry_chunks_load_feature: Reading 1 UriTypes at address 0xffffb471f201
0:00:00.206951125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:643:gst_registry_chunks_load_feature: Reading 1 Interfaces at address 0xffffb471f214
0:00:00.206968625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d141cf0 (appsink)
0:00:00.206986250 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<appsink> set parent (ref and sink)
0:00:00.207000000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for appsink
0:00:00.207012750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature appsink, plugin 0x3d19f2c0 app
0:00:00.207026375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrybinary.c:606:priv_gst_registry_binary_read_cache: reading binary registry 311842(4c222)/405909
0:00:00.207039625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:829:_priv_gst_registry_chunks_load_plugin: Reading/casting for GstRegistryChunkPluginElement at address 0xffffb471f228
0:00:00.207068875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:850:_priv_gst_registry_chunks_load_plugin: read strings for name='timecode'
0:00:00.207083250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:851:_priv_gst_registry_chunks_load_plugin: desc.description='Timecode-related elements'
0:00:00.207095250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:852:_priv_gst_registry_chunks_load_plugin: filename='/data/halley/gst-sdk/lib/gstreamer-1.0/libgsttimecode.so'
0:00:00.207107750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:853:_priv_gst_registry_chunks_load_plugin: desc.version='1.14.0'
0:00:00.207119000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:854:_priv_gst_registry_chunks_load_plugin: desc.license='LGPL'
0:00:00.207140375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:855:_priv_gst_registry_chunks_load_plugin: desc.source='gst-plugins-bad'
0:00:00.207153500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:856:_priv_gst_registry_chunks_load_plugin: desc.package='GStreamer Bad Plug-ins source release'
0:00:00.207165000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:857:_priv_gst_registry_chunks_load_plugin: desc.origin='Unknown package origin'
0:00:00.207176750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:858:_priv_gst_registry_chunks_load_plugin: desc.datetime=2018-03-19
0:00:00.207192000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:466:gst_registry_add_plugin:<registry0> adding plugin 0x3d19f3f0 for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgsttimecode.so"
0:00:00.207210250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:479:gst_registry_add_plugin:<registry0> emitting plugin-added for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgsttimecode.so"
0:00:00.207224000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:879:_priv_gst_registry_chunks_load_plugin: Added plugin 'timecode' plugin with 2 features from binary registry
0:00:00.207237875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'timecode' feature 'timecodestamper' typename : 'GstElementFactory'
0:00:00.207268625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb471f328
0:00:00.207286375 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.207299500 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.207314250 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.207327250 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.207341625 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.207354375 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.207369000 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.207381625 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.207395125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.207407250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb471f418
0:00:00.207420500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.207432250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb471f438
0:00:00.207444750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.207460625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d141dd0 (timecodestamper)
0:00:00.207477000 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<timecodestamper> set parent (ref and sink)
0:00:00.207501625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for timecodestamper
0:00:00.207515000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature timecodestamper, plugin 0x3d19f3f0 timecode
0:00:00.207528625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'timecode' feature 'avwait' typename : 'GstElementFactory'
0:00:00.207557250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb471f470
0:00:00.207574875 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.207587500 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.207601375 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.207613875 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.207627750 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.207640750 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.207656375 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.207668875 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.207682375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=4
0:00:00.207694375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb471f590
0:00:00.207708375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template asrc
0:00:00.207720125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb471f5b0
0:00:00.207733125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template asink
0:00:00.207744625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb471f5d0
0:00:00.207757500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template vsrc
0:00:00.207769000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb471f5f0
0:00:00.207781625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template vsink
0:00:00.207797750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d141eb0 (avwait)
0:00:00.207814125 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<avwait> set parent (ref and sink)
0:00:00.207828000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for avwait
0:00:00.207841000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature avwait, plugin 0x3d19f3f0 timecode
0:00:00.207865500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrybinary.c:606:priv_gst_registry_binary_read_cache: reading binary registry 312842(4c60a)/405909
0:00:00.207880375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:829:_priv_gst_registry_chunks_load_plugin: Reading/casting for GstRegistryChunkPluginElement at address 0xffffb471f610
0:00:00.207933625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:850:_priv_gst_registry_chunks_load_plugin: read strings for name='frei0r'
0:00:00.207950375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:851:_priv_gst_registry_chunks_load_plugin: desc.description='frei0r plugin library'
0:00:00.207962250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:852:_priv_gst_registry_chunks_load_plugin: filename='/data/halley/gst-sdk/lib/gstreamer-1.0/libgstfrei0r.so'
0:00:00.207974000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:853:_priv_gst_registry_chunks_load_plugin: desc.version='1.14.0'
0:00:00.207985375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:854:_priv_gst_registry_chunks_load_plugin: desc.license='LGPL'
0:00:00.207996125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:855:_priv_gst_registry_chunks_load_plugin: desc.source='gst-plugins-bad'
0:00:00.208007250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:856:_priv_gst_registry_chunks_load_plugin: desc.package='GStreamer Bad Plug-ins source release'
0:00:00.208018750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:857:_priv_gst_registry_chunks_load_plugin: desc.origin='Unknown package origin'
0:00:00.208030000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:858:_priv_gst_registry_chunks_load_plugin: desc.datetime=2018-03-19
0:00:00.208044875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:466:gst_registry_add_plugin:<registry0> adding plugin 0x3d19f520 for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstfrei0r.so"
0:00:00.208062250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:479:gst_registry_add_plugin:<registry0> emitting plugin-added for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstfrei0r.so"
0:00:00.208075875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:879:_priv_gst_registry_chunks_load_plugin: Added plugin 'frei0r' plugin with 0 features from binary registry
0:00:00.208092250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:775:gst_registry_chunks_load_plugin_dep:<plugin108> Unpacking GstRegistryChunkDep from 0xffffb471f6e8
0:00:00.208110500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:793:gst_registry_chunks_load_plugin_dep:<plugin108> Loaded external plugin dependency from registry: env_hash: 00000000, stat_hash: fffffffa
0:00:00.208127125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:795:gst_registry_chunks_load_plugin_dep:<plugin108> evar: FREI0R_PATH
0:00:00.208141750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:795:gst_registry_chunks_load_plugin_dep:<plugin108> evar: HOME/.frei0r-1/lib
0:00:00.208156125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:797:gst_registry_chunks_load_plugin_dep:<plugin108> path: /usr/lib/frei0r-1
0:00:00.208170250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:797:gst_registry_chunks_load_plugin_dep:<plugin108> path: /usr/lib/frei0r-1
0:00:00.208184125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:797:gst_registry_chunks_load_plugin_dep:<plugin108> path: /usr/local/lib/frei0r-1
0:00:00.208198125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:797:gst_registry_chunks_load_plugin_dep:<plugin108> path: /usr/lib32/frei0r-1
0:00:00.208212125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:797:gst_registry_chunks_load_plugin_dep:<plugin108> path: /usr/local/lib32/frei0r-1
0:00:00.208237625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:797:gst_registry_chunks_load_plugin_dep:<plugin108> path: /usr/lib64/frei0r-1
0:00:00.208252125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:797:gst_registry_chunks_load_plugin_dep:<plugin108> path: /usr/local/lib64/frei0r-1
0:00:00.208264125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrybinary.c:606:priv_gst_registry_binary_read_cache: reading binary registry 313271(4c7b7)/405909
0:00:00.208277750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:829:_priv_gst_registry_chunks_load_plugin: Reading/casting for GstRegistryChunkPluginElement at address 0xffffb471f7b8
0:00:00.208310500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:850:_priv_gst_registry_chunks_load_plugin: read strings for name='subenc'
0:00:00.208325375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:851:_priv_gst_registry_chunks_load_plugin: desc.description='subtitle encoders'
0:00:00.208337125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:852:_priv_gst_registry_chunks_load_plugin: filename='/data/halley/gst-sdk/lib/gstreamer-1.0/libgstsubenc.so'
0:00:00.208349000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:853:_priv_gst_registry_chunks_load_plugin: desc.version='1.14.0'
0:00:00.208360500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:854:_priv_gst_registry_chunks_load_plugin: desc.license='LGPL'
0:00:00.208371875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:855:_priv_gst_registry_chunks_load_plugin: desc.source='gst-plugins-bad'
0:00:00.208383375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:856:_priv_gst_registry_chunks_load_plugin: desc.package='GStreamer Bad Plug-ins source release'
0:00:00.208395250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:857:_priv_gst_registry_chunks_load_plugin: desc.origin='Unknown package origin'
0:00:00.208406625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:858:_priv_gst_registry_chunks_load_plugin: desc.datetime=2018-03-19
0:00:00.208421375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:466:gst_registry_add_plugin:<registry0> adding plugin 0x3d19f650 for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstsubenc.so"
0:00:00.208439000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:479:gst_registry_add_plugin:<registry0> emitting plugin-added for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstsubenc.so"
0:00:00.208452250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:879:_priv_gst_registry_chunks_load_plugin: Added plugin 'subenc' plugin with 2 features from binary registry
0:00:00.208467250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'subenc' feature 'srtenc' typename : 'GstElementFactory'
0:00:00.208497000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb471f8a0
0:00:00.208514625 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.208527500 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.208541500 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.208554250 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.208568250 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.208580875 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.208605625 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.208619250 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.208632500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.208644500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb471f978
0:00:00.208658500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.208670125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb471f9b8
0:00:00.208683625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.208699625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d1a6810 (srtenc)
0:00:00.208718500 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<srtenc> set parent (ref and sink)
0:00:00.208732500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for srtenc
0:00:00.208745375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature srtenc, plugin 0x3d19f650 subenc
0:00:00.208759750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'subenc' feature 'webvttenc' typename : 'GstElementFactory'
0:00:00.208790500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb471f9f8
0:00:00.208808750 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.208821625 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.208835875 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.208848625 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.208862500 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.208875000 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.208889000 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.208901500 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.208914875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.208927125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb471fad0
0:00:00.208940375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.208952000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb471fb10
0:00:00.208975875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.208996000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d1a68f0 (webvttenc)
0:00:00.209014750 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<webvttenc> set parent (ref and sink)
0:00:00.209029000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for webvttenc
0:00:00.209058250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature webvttenc, plugin 0x3d19f650 subenc
0:00:00.209077625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrybinary.c:606:priv_gst_registry_binary_read_cache: reading binary registry 314167(4cb37)/405909
0:00:00.209091000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:829:_priv_gst_registry_chunks_load_plugin: Reading/casting for GstRegistryChunkPluginElement at address 0xffffb471fb38
0:00:00.209123125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:850:_priv_gst_registry_chunks_load_plugin: read strings for name='isomp4'
0:00:00.209137750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:851:_priv_gst_registry_chunks_load_plugin: desc.description='ISO base media file format support (mp4, 3gpp, qt, mj2)'
0:00:00.209149500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:852:_priv_gst_registry_chunks_load_plugin: filename='/data/halley/gst-sdk/lib/gstreamer-1.0/libgstisomp4.so'
0:00:00.209160750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:853:_priv_gst_registry_chunks_load_plugin: desc.version='1.14.0'
0:00:00.209171875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:854:_priv_gst_registry_chunks_load_plugin: desc.license='LGPL'
0:00:00.209182750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:855:_priv_gst_registry_chunks_load_plugin: desc.source='gst-plugins-good'
0:00:00.209194125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:856:_priv_gst_registry_chunks_load_plugin: desc.package='GStreamer Good Plug-ins source release'
0:00:00.209205625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:857:_priv_gst_registry_chunks_load_plugin: desc.origin='Unknown package origin'
0:00:00.209216750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:858:_priv_gst_registry_chunks_load_plugin: desc.datetime=2018-03-19
0:00:00.209231500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:466:gst_registry_add_plugin:<registry0> adding plugin 0x3d19f780 for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstisomp4.so"
0:00:00.209249875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:479:gst_registry_add_plugin:<registry0> emitting plugin-added for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstisomp4.so"
0:00:00.209263375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:879:_priv_gst_registry_chunks_load_plugin: Added plugin 'isomp4' plugin with 8 features from binary registry
0:00:00.209278125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'isomp4' feature 'qtdemux' typename : 'GstElementFactory'
0:00:00.209306750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb471fc48
0:00:00.209324625 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.209337875 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.209351875 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.209375000 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.209390375 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.209402750 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.209417625 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.209431000 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.209444875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=4
0:00:00.209456750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb471fd68
0:00:00.209470500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.209482500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb471fdb0
0:00:00.209495875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template video_%u
0:00:00.209507500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb471fdc8
0:00:00.209529000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template audio_%u
0:00:00.209542750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb471fde0
0:00:00.209555625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template subtitle_%u
0:00:00.209572250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d1a69d0 (qtdemux)
0:00:00.209590250 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<qtdemux> set parent (ref and sink)
0:00:00.209604375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for qtdemux
0:00:00.209617250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature qtdemux, plugin 0x3d19f780 isomp4
0:00:00.209631875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'isomp4' feature 'rtpxqtdepay' typename : 'GstElementFactory'
0:00:00.209661625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb471fe18
0:00:00.209679500 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.209692500 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.209706625 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.209719250 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.209733125 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.209757250 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.209773250 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.209786000 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.209799500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.209811750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb471ff18
0:00:00.209824375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.209836125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb471ff28
0:00:00.209850875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.209867625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d1a6ab0 (rtpxqtdepay)
0:00:00.209885375 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<rtpxqtdepay> set parent (ref and sink)
0:00:00.209899375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for rtpxqtdepay
0:00:00.209912250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature rtpxqtdepay, plugin 0x3d19f780 isomp4
0:00:00.209926750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'isomp4' feature 'qtmux' typename : 'GstElementFactory'
0:00:00.209956000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb471fff0
0:00:00.209986750 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.210000750 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.210017875 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.210030750 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.210044500 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.210056750 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.210070750 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.210083000 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.210096500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=4
0:00:00.210109000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb47200f0
0:00:00.210122750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.210134625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb4720138
0:00:00.210168500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template audio_%u
0:00:00.210181500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb47205f0
0:00:00.210203750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template video_%u
0:00:00.210215625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb4720c10
0:00:00.210228750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template subtitle_%u
0:00:00.210240500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:643:gst_registry_chunks_load_feature: Reading 3 Interfaces at address 0xffffb4720c44
0:00:00.210261625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d1a6b90 (qtmux)
0:00:00.210278625 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<qtmux> set parent (ref and sink)
0:00:00.210292875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for qtmux
0:00:00.210305875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature qtmux, plugin 0x3d19f780 isomp4
0:00:00.210319750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'isomp4' feature 'mp4mux' typename : 'GstElementFactory'
0:00:00.210348875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb4720c88
0:00:00.210365875 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.210378625 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.210392500 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.210405250 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.210419000 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.210431250 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.210445250 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.210457375 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.210470625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=4
0:00:00.210482875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb4720d80
0:00:00.210496500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.210508375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb4720db8
0:00:00.210534500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template audio_%u
0:00:00.210547500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb4720f98
0:00:00.210578875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template video_%u
0:00:00.210596000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb47211e0
0:00:00.210616000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template subtitle_%u
0:00:00.210629875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:643:gst_registry_chunks_load_feature: Reading 3 Interfaces at address 0xffffb4721214
0:00:00.210649625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d1a6c70 (mp4mux)
0:00:00.210666875 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<mp4mux> set parent (ref and sink)
0:00:00.210680750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for mp4mux
0:00:00.210693625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature mp4mux, plugin 0x3d19f780 isomp4
0:00:00.210707625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'isomp4' feature 'ismlmux' typename : 'GstElementFactory'
0:00:00.210737625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb4721258
0:00:00.210755625 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.210768500 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.210782750 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.210795500 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.210809125 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.210821375 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.210835250 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.210847375 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.210860625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=3
0:00:00.210872750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb4721350
0:00:00.210886375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.210898250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb4721390
0:00:00.210912875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template audio_%u
0:00:00.210935250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb4721478
0:00:00.210953000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template video_%u
0:00:00.210964875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:643:gst_registry_chunks_load_feature: Reading 3 Interfaces at address 0xffffb47215e3
0:00:00.210987500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d1a6d50 (ismlmux)
0:00:00.211005250 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<ismlmux> set parent (ref and sink)
0:00:00.211019625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for ismlmux
0:00:00.211032750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature ismlmux, plugin 0x3d19f780 isomp4
0:00:00.211046875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'isomp4' feature '3gppmux' typename : 'GstElementFactory'
0:00:00.211076750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb4721628
0:00:00.211094875 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.211107750 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.211121875 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.211134250 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.211147750 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.211159875 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.211173750 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.211186125 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.211199375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=4
0:00:00.211211500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb4721720
0:00:00.211224750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.211236750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb4721758
0:00:00.211254875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template audio_%u
0:00:00.211266875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb47218e8
0:00:00.211283250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template video_%u
0:00:00.211295000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb4721aa0
0:00:00.211323375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template subtitle_%u
0:00:00.211336500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:643:gst_registry_chunks_load_feature: Reading 3 Interfaces at address 0xffffb4721ad4
0:00:00.211357125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d1a6e30 (3gppmux)
0:00:00.211374500 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<3gppmux> set parent (ref and sink)
0:00:00.211388750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for 3gppmux
0:00:00.211401875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature 3gppmux, plugin 0x3d19f780 isomp4
0:00:00.211416500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'isomp4' feature 'mj2mux' typename : 'GstElementFactory'
0:00:00.211453750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb4721b18
0:00:00.211472125 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.211485250 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.211499250 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.211512125 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.211526000 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.211538250 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.211552625 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.211564875 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.211580375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=3
0:00:00.211595750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb4721c10
0:00:00.211610250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.211622125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb4721c28
0:00:00.211636250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template audio_%u
0:00:00.211648125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb4721cc0
0:00:00.211662500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template video_%u
0:00:00.211674375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:643:gst_registry_chunks_load_feature: Reading 3 Interfaces at address 0xffffb4721d68
0:00:00.211698250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d1ac880 (mj2mux)
0:00:00.211734375 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<mj2mux> set parent (ref and sink)
0:00:00.211749625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for mj2mux
0:00:00.211763000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature mj2mux, plugin 0x3d19f780 isomp4
0:00:00.211776625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'isomp4' feature 'qtmoovrecover' typename : 'GstElementFactory'
0:00:00.211809000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb4721db0
0:00:00.211826875 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.211839625 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.211853750 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.211866250 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.211879875 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.211892375 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.211906250 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.211918875 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.211932375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=0
0:00:00.211944500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:643:gst_registry_chunks_load_feature: Reading 1 Interfaces at address 0xffffb4721e92
0:00:00.211966125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d1ac960 (qtmoovrecover)
0:00:00.211983625 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<qtmoovrecover> set parent (ref and sink)
0:00:00.211997625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for qtmoovrecover
0:00:00.212010500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature qtmoovrecover, plugin 0x3d19f780 isomp4
0:00:00.212025000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrybinary.c:606:priv_gst_registry_binary_read_cache: reading binary registry 323232(4eea0)/405909
0:00:00.212039250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:829:_priv_gst_registry_chunks_load_plugin: Reading/casting for GstRegistryChunkPluginElement at address 0xffffb4721ea0
0:00:00.212068875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:850:_priv_gst_registry_chunks_load_plugin: read strings for name='videotestsrc'
0:00:00.212083250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:851:_priv_gst_registry_chunks_load_plugin: desc.description='Creates a test video stream'
0:00:00.212095125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:852:_priv_gst_registry_chunks_load_plugin: filename='/data/halley/gst-sdk/lib/gstreamer-1.0/libgstvideotestsrc.so'
0:00:00.212106875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:853:_priv_gst_registry_chunks_load_plugin: desc.version='1.14.0'
0:00:00.212128375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:854:_priv_gst_registry_chunks_load_plugin: desc.license='LGPL'
0:00:00.212140750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:855:_priv_gst_registry_chunks_load_plugin: desc.source='gst-plugins-base'
0:00:00.212152250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:856:_priv_gst_registry_chunks_load_plugin: desc.package='GStreamer Base Plug-ins source release'
0:00:00.212163625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:857:_priv_gst_registry_chunks_load_plugin: desc.origin='Unknown package origin'
0:00:00.212175000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:858:_priv_gst_registry_chunks_load_plugin: desc.datetime=2018-03-19
0:00:00.212190250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:466:gst_registry_add_plugin:<registry0> adding plugin 0x3d19f8b0 for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstvideotestsrc.so"
0:00:00.212207500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:479:gst_registry_add_plugin:<registry0> emitting plugin-added for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstvideotestsrc.so"
0:00:00.212221000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:879:_priv_gst_registry_chunks_load_plugin: Added plugin 'videotestsrc' plugin with 1 features from binary registry
0:00:00.212235500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'videotestsrc' feature 'videotestsrc' typename : 'GstElementFactory'
0:00:00.212266125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb4721fa8
0:00:00.212292375 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.212306875 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.212321000 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.212334000 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.212348125 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.212360625 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.212375125 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.212387750 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.212401125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=1
0:00:00.212413000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb4722080
0:00:00.212434750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.212451750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d1aca40 (videotestsrc)
0:00:00.212469125 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<videotestsrc> set parent (ref and sink)
0:00:00.212483625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for videotestsrc
0:00:00.212496625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature videotestsrc, plugin 0x3d19f8b0 videotestsrc
0:00:00.212520750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrybinary.c:606:priv_gst_registry_binary_read_cache: reading binary registry 324778(4f4aa)/405909
0:00:00.212535250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:829:_priv_gst_registry_chunks_load_plugin: Reading/casting for GstRegistryChunkPluginElement at address 0xffffb47224b0
0:00:00.212564125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:850:_priv_gst_registry_chunks_load_plugin: read strings for name='asfmux'
0:00:00.212578625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:851:_priv_gst_registry_chunks_load_plugin: desc.description='ASF Muxer Plugin'
0:00:00.212590125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:852:_priv_gst_registry_chunks_load_plugin: filename='/data/halley/gst-sdk/lib/gstreamer-1.0/libgstasfmux.so'
0:00:00.212601750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:853:_priv_gst_registry_chunks_load_plugin: desc.version='1.14.0'
0:00:00.212612750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:854:_priv_gst_registry_chunks_load_plugin: desc.license='LGPL'
0:00:00.212623625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:855:_priv_gst_registry_chunks_load_plugin: desc.source='gst-plugins-bad'
0:00:00.212635125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:856:_priv_gst_registry_chunks_load_plugin: desc.package='GStreamer Bad Plug-ins source release'
0:00:00.212646875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:857:_priv_gst_registry_chunks_load_plugin: desc.origin='Unknown package origin'
0:00:00.212658250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:858:_priv_gst_registry_chunks_load_plugin: desc.datetime=2018-03-19
0:00:00.212673750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:466:gst_registry_add_plugin:<registry0> adding plugin 0x3d19f9e0 for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstasfmux.so"
0:00:00.212692000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:479:gst_registry_add_plugin:<registry0> emitting plugin-added for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstasfmux.so"
0:00:00.212705125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:879:_priv_gst_registry_chunks_load_plugin: Added plugin 'asfmux' plugin with 3 features from binary registry
0:00:00.212719375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'asfmux' feature 'asfmux' typename : 'GstElementFactory'
0:00:00.212747500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb4722598
0:00:00.212764875 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.212777500 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.212791250 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.212803750 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.212817250 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.212829625 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.212844250 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.212857500 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.212881625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=3
0:00:00.212894625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb4722688
0:00:00.212908625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.212920500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb47226c0
0:00:00.212934375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template audio_%u
0:00:00.212946125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb4722758
0:00:00.212959625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template video_%u
0:00:00.212971500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:643:gst_registry_chunks_load_feature: Reading 1 Interfaces at address 0xffffb472278f
0:00:00.212990125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d1acb20 (asfmux)
0:00:00.213008250 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<asfmux> set parent (ref and sink)
0:00:00.213022750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for asfmux
0:00:00.213035750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature asfmux, plugin 0x3d19f9e0 asfmux
0:00:00.213074250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'asfmux' feature 'rtpasfpay' typename : 'GstElementFactory'
0:00:00.213104625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb47227b8
0:00:00.213121625 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.213134375 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.213148375 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.213160875 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.213174625 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.213186875 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.213201250 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.213214250 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.213228375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.213241125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb47228c0
0:00:00.213254375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.213277500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb47228f8
0:00:00.213293000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.213309625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d1acc00 (rtpasfpay)
0:00:00.213327250 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<rtpasfpay> set parent (ref and sink)
0:00:00.213341250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for rtpasfpay
0:00:00.213354125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature rtpasfpay, plugin 0x3d19f9e0 asfmux
0:00:00.213368375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'asfmux' feature 'asfparse' typename : 'GstElementFactory'
0:00:00.213398375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb4722998
0:00:00.213417375 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.213430000 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.213443875 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.213456625 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.213470125 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.213482250 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.213496125 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.213509250 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.213522875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.213535000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb4722a60
0:00:00.213548375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.213560375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb4722a98
0:00:00.213574125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.213590375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d1acce0 (asfparse)
0:00:00.213607750 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<asfparse> set parent (ref and sink)
0:00:00.213621500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for asfparse
0:00:00.213634125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature asfparse, plugin 0x3d19f9e0 asfmux
0:00:00.213659125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrybinary.c:606:priv_gst_registry_binary_read_cache: reading binary registry 326347(4facb)/405909
0:00:00.213674500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:829:_priv_gst_registry_chunks_load_plugin: Reading/casting for GstRegistryChunkPluginElement at address 0xffffb4722ad0
0:00:00.213704750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:850:_priv_gst_registry_chunks_load_plugin: read strings for name='videoconvert'
0:00:00.213719375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:851:_priv_gst_registry_chunks_load_plugin: desc.description='Colorspace conversion'
0:00:00.213731250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:852:_priv_gst_registry_chunks_load_plugin: filename='/data/halley/gst-sdk/lib/gstreamer-1.0/libgstvideoconvert.so'
0:00:00.213742375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:853:_priv_gst_registry_chunks_load_plugin: desc.version='1.14.0'
0:00:00.213753500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:854:_priv_gst_registry_chunks_load_plugin: desc.license='LGPL'
0:00:00.213764625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:855:_priv_gst_registry_chunks_load_plugin: desc.source='gst-plugins-base'
0:00:00.213776375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:856:_priv_gst_registry_chunks_load_plugin: desc.package='GStreamer Base Plug-ins source release'
0:00:00.213787625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:857:_priv_gst_registry_chunks_load_plugin: desc.origin='Unknown package origin'
0:00:00.213799125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:858:_priv_gst_registry_chunks_load_plugin: desc.datetime=2018-03-19
0:00:00.213814375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:466:gst_registry_add_plugin:<registry0> adding plugin 0x3d19fb10 for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstvideoconvert.so"
0:00:00.213832125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:479:gst_registry_add_plugin:<registry0> emitting plugin-added for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstvideoconvert.so"
0:00:00.213845750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:879:_priv_gst_registry_chunks_load_plugin: Added plugin 'videoconvert' plugin with 1 features from binary registry
0:00:00.213860625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'videoconvert' feature 'videoconvert' typename : 'GstElementFactory'
0:00:00.213890750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb4722bd0
0:00:00.213908875 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.213921625 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.213935875 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.213949000 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.213963125 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.213975750 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.213990375 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.214002875 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.214027000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.214040375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb4722ce8
0:00:00.214072250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.214086000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb4723340
0:00:00.214104625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.214121125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d1acdc0 (videoconvert)
0:00:00.214138500 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<videoconvert> set parent (ref and sink)
0:00:00.214152250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for videoconvert
0:00:00.214165250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature videoconvert, plugin 0x3d19fb10 videoconvert
0:00:00.214179750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrybinary.c:606:priv_gst_registry_binary_read_cache: reading binary registry 330131(50993)/405909
0:00:00.214193000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:829:_priv_gst_registry_chunks_load_plugin: Reading/casting for GstRegistryChunkPluginElement at address 0xffffb4723998
0:00:00.214221750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:850:_priv_gst_registry_chunks_load_plugin: read strings for name='adder'
0:00:00.214236000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:851:_priv_gst_registry_chunks_load_plugin: desc.description='Adds multiple streams'
0:00:00.214247750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:852:_priv_gst_registry_chunks_load_plugin: filename='/data/halley/gst-sdk/lib/gstreamer-1.0/libgstadder.so'
0:00:00.214259250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:853:_priv_gst_registry_chunks_load_plugin: desc.version='1.14.0'
0:00:00.214270375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:854:_priv_gst_registry_chunks_load_plugin: desc.license='LGPL'
0:00:00.214281125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:855:_priv_gst_registry_chunks_load_plugin: desc.source='gst-plugins-base'
0:00:00.214292625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:856:_priv_gst_registry_chunks_load_plugin: desc.package='GStreamer Base Plug-ins source release'
0:00:00.214304250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:857:_priv_gst_registry_chunks_load_plugin: desc.origin='Unknown package origin'
0:00:00.214315375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:858:_priv_gst_registry_chunks_load_plugin: desc.datetime=2018-03-19
0:00:00.214330500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:466:gst_registry_add_plugin:<registry0> adding plugin 0x3d19fc40 for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstadder.so"
0:00:00.214348250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:479:gst_registry_add_plugin:<registry0> emitting plugin-added for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstadder.so"
0:00:00.214361750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:879:_priv_gst_registry_chunks_load_plugin: Added plugin 'adder' plugin with 1 features from binary registry
0:00:00.214376500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'adder' feature 'adder' typename : 'GstElementFactory'
0:00:00.214421000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb4723a88
0:00:00.214439250 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.214452125 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.214466000 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.214478625 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.214492625 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.214504875 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.214519125 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.214531625 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.214545375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.214557500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb4723b70
0:00:00.214571875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.214583625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb4723c40
0:00:00.214597125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink_%u
0:00:00.214609000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:643:gst_registry_chunks_load_feature: Reading 1 Interfaces at address 0xffffb4723d10
0:00:00.214627875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d1acea0 (adder)
0:00:00.214645625 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<adder> set parent (ref and sink)
0:00:00.214659625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for adder
0:00:00.214672500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature adder, plugin 0x3d19fc40 adder
0:00:00.214687375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrybinary.c:606:priv_gst_registry_binary_read_cache: reading binary registry 331038(50d1e)/405909
0:00:00.214701375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:829:_priv_gst_registry_chunks_load_plugin: Reading/casting for GstRegistryChunkPluginElement at address 0xffffb4723d20
0:00:00.214740125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:850:_priv_gst_registry_chunks_load_plugin: read strings for name='multifile'
0:00:00.214755000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:851:_priv_gst_registry_chunks_load_plugin: desc.description='Reads/Writes buffers from/to sequentially named files'
0:00:00.214767375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:852:_priv_gst_registry_chunks_load_plugin: filename='/data/halley/gst-sdk/lib/gstreamer-1.0/libgstmultifile.so'
0:00:00.214790250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:853:_priv_gst_registry_chunks_load_plugin: desc.version='1.14.0'
0:00:00.214803000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:854:_priv_gst_registry_chunks_load_plugin: desc.license='LGPL'
0:00:00.214814000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:855:_priv_gst_registry_chunks_load_plugin: desc.source='gst-plugins-good'
0:00:00.214825500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:856:_priv_gst_registry_chunks_load_plugin: desc.package='GStreamer Good Plug-ins source release'
0:00:00.214837000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:857:_priv_gst_registry_chunks_load_plugin: desc.origin='Unknown package origin'
0:00:00.214848000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:858:_priv_gst_registry_chunks_load_plugin: desc.datetime=2018-03-19
0:00:00.214863125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:466:gst_registry_add_plugin:<registry0> adding plugin 0x3d19fd70 for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstmultifile.so"
0:00:00.214881125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:479:gst_registry_add_plugin:<registry0> emitting plugin-added for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstmultifile.so"
0:00:00.214894625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:879:_priv_gst_registry_chunks_load_plugin: Added plugin 'multifile' plugin with 5 features from binary registry
0:00:00.214908250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'multifile' feature 'multifilesrc' typename : 'GstElementFactory'
0:00:00.214937500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb4723e38
0:00:00.214954375 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.214967375 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.214981750 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.214994500 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.215008500 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.215021000 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.215036125 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.215050250 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.215064125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=1
0:00:00.215076250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb4723f28
0:00:00.215089125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.215100875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:628:gst_registry_chunks_load_feature: Reading 1 UriTypes at address 0xffffb4723f38
0:00:00.215114875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:643:gst_registry_chunks_load_feature: Reading 1 Interfaces at address 0xffffb4723f46
0:00:00.215132500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d1b0030 (multifilesrc)
0:00:00.215163750 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<multifilesrc> set parent (ref and sink)
0:00:00.215178625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for multifilesrc
0:00:00.215191500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature multifilesrc, plugin 0x3d19fd70 multifile
0:00:00.215205250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'multifile' feature 'multifilesink' typename : 'GstElementFactory'
0:00:00.215234000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb4723f78
0:00:00.215251250 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.215264250 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.215278500 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.215291500 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.215305375 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.215318375 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.215332875 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.215346000 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.215360250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=1
0:00:00.215373000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb4724068
0:00:00.215385875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.215402500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d1b0110 (multifilesink)
0:00:00.215422250 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<multifilesink> set parent (ref and sink)
0:00:00.215436000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for multifilesink
0:00:00.215449000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature multifilesink, plugin 0x3d19fd70 multifile
0:00:00.215464000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'multifile' feature 'splitfilesrc' typename : 'GstElementFactory'
0:00:00.215494625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb4724098
0:00:00.215513375 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.215526250 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.215540750 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.215564500 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.215580250 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.215592625 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.215607750 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.215621625 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.215635750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=1
0:00:00.215648000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb47241b8
0:00:00.215664000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.215676750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:628:gst_registry_chunks_load_feature: Reading 1 UriTypes at address 0xffffb47241c8
0:00:00.215690875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:643:gst_registry_chunks_load_feature: Reading 1 Interfaces at address 0xffffb47241d6
0:00:00.215710250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d1b01f0 (splitfilesrc)
0:00:00.215728000 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<splitfilesrc> set parent (ref and sink)
0:00:00.215742125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for splitfilesrc
0:00:00.215755125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature splitfilesrc, plugin 0x3d19fd70 multifile
0:00:00.215769375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'multifile' feature 'splitmuxsink' typename : 'GstElementFactory'
0:00:00.215799500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb4724208
0:00:00.215818375 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.215831125 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.215845250 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.215858000 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.215872750 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.215885125 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.215900750 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.215914125 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.215928125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=3
0:00:00.215941000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb4724320
0:00:00.215964875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template video
0:00:00.215977875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb4724338
0:00:00.215990750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template audio_%u
0:00:00.216002375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb4724350
0:00:00.216015125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template subtitle_%u
0:00:00.216026750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:643:gst_registry_chunks_load_feature: Reading 1 Interfaces at address 0xffffb4724368
0:00:00.216046500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d1b02d0 (splitmuxsink)
0:00:00.216064125 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<splitmuxsink> set parent (ref and sink)
0:00:00.216078500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for splitmuxsink
0:00:00.216091625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature splitmuxsink, plugin 0x3d19fd70 multifile
0:00:00.216106250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'multifile' feature 'splitmuxsrc' typename : 'GstElementFactory'
0:00:00.216135000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb4724398
0:00:00.216153875 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.216166875 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.216181125 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.216194000 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.216208000 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.216220375 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.216235625 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.216248875 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.216263250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=3
0:00:00.216276000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb47244a0
0:00:00.216297750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template video
0:00:00.216311250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb47244b8
0:00:00.216324125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template audio_%u
0:00:00.216347375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb47244d0
0:00:00.216361375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template subtitle_%u
0:00:00.216373250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:628:gst_registry_chunks_load_feature: Reading 1 UriTypes at address 0xffffb47244e8
0:00:00.216387250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:643:gst_registry_chunks_load_feature: Reading 2 Interfaces at address 0xffffb47244f5
0:00:00.216407000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d1b03b0 (splitmuxsrc)
0:00:00.216424750 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<splitmuxsrc> set parent (ref and sink)
0:00:00.216438750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for splitmuxsrc
0:00:00.216451750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature splitmuxsrc, plugin 0x3d19fd70 multifile
0:00:00.216466750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrybinary.c:606:priv_gst_registry_binary_read_cache: reading binary registry 333073(51511)/405909
0:00:00.216480875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:829:_priv_gst_registry_chunks_load_plugin: Reading/casting for GstRegistryChunkPluginElement at address 0xffffb4724518
0:00:00.216513125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:850:_priv_gst_registry_chunks_load_plugin: read strings for name='pnm'
0:00:00.216527750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:851:_priv_gst_registry_chunks_load_plugin: desc.description='PNM plugin'
0:00:00.216539375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:852:_priv_gst_registry_chunks_load_plugin: filename='/data/halley/gst-sdk/lib/gstreamer-1.0/libgstpnm.so'
0:00:00.216551375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:853:_priv_gst_registry_chunks_load_plugin: desc.version='1.14.0'
0:00:00.216562875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:854:_priv_gst_registry_chunks_load_plugin: desc.license='LGPL'
0:00:00.216574000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:855:_priv_gst_registry_chunks_load_plugin: desc.source='gst-plugins-bad'
0:00:00.216585750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:856:_priv_gst_registry_chunks_load_plugin: desc.package='GStreamer Bad Plug-ins source release'
0:00:00.216597000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:857:_priv_gst_registry_chunks_load_plugin: desc.origin='Unknown package origin'
0:00:00.216608750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:858:_priv_gst_registry_chunks_load_plugin: desc.datetime=2018-03-19
0:00:00.216623750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:466:gst_registry_add_plugin:<registry0> adding plugin 0x3d19fea0 for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstpnm.so"
0:00:00.216642750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:479:gst_registry_add_plugin:<registry0> emitting plugin-added for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstpnm.so"
0:00:00.216656125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:879:_priv_gst_registry_chunks_load_plugin: Added plugin 'pnm' plugin with 2 features from binary registry
0:00:00.216670250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'pnm' feature 'pnmdec' typename : 'GstElementFactory'
0:00:00.216712750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb47245f8
0:00:00.216731625 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.216744375 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.216758875 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.216771375 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.216785500 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.216797750 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.216812625 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.216826375 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.216840250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.216852500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb4724710
0:00:00.216868375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.216880250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb47247c8
0:00:00.216894000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.216910375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d1b0490 (pnmdec)
0:00:00.216927750 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<pnmdec> set parent (ref and sink)
0:00:00.216942125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for pnmdec
0:00:00.216955125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature pnmdec, plugin 0x3d19fea0 pnm
0:00:00.216969375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'pnm' feature 'pnmenc' typename : 'GstElementFactory'
0:00:00.217006125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb4724858
0:00:00.217024625 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.217037500 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.217072625 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.217086250 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.217100375 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.217112625 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.217138875 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.217153125 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.217167500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.217180500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb4724968
0:00:00.217194250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.217206125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb4724a20
0:00:00.217219250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.217230875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:643:gst_registry_chunks_load_feature: Reading 1 Interfaces at address 0xffffb4724a90
0:00:00.217250000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d1b0570 (pnmenc)
0:00:00.217267500 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<pnmenc> set parent (ref and sink)
0:00:00.217281625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for pnmenc
0:00:00.217294625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature pnmenc, plugin 0x3d19fea0 pnm
0:00:00.217309000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrybinary.c:606:priv_gst_registry_binary_read_cache: reading binary registry 334490(51a9a)/405909
0:00:00.217322875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:829:_priv_gst_registry_chunks_load_plugin: Reading/casting for GstRegistryChunkPluginElement at address 0xffffb4724aa0
0:00:00.217353000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:850:_priv_gst_registry_chunks_load_plugin: read strings for name='videofiltersbad'
0:00:00.217367500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:851:_priv_gst_registry_chunks_load_plugin: desc.description='Video filters in gst-plugins-bad'
0:00:00.217379500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:852:_priv_gst_registry_chunks_load_plugin: filename='/data/halley/gst-sdk/lib/gstreamer-1.0/libgstvideofiltersbad.so'
0:00:00.217391125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:853:_priv_gst_registry_chunks_load_plugin: desc.version='1.14.0'
0:00:00.217402250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:854:_priv_gst_registry_chunks_load_plugin: desc.license='LGPL'
0:00:00.217413250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:855:_priv_gst_registry_chunks_load_plugin: desc.source='gst-plugins-bad'
0:00:00.217424750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:856:_priv_gst_registry_chunks_load_plugin: desc.package='GStreamer Bad Plug-ins'
0:00:00.217435875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:857:_priv_gst_registry_chunks_load_plugin: desc.origin='Unknown package origin'
0:00:00.217447125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:858:_priv_gst_registry_chunks_load_plugin: desc.datetime=2018-03-19
0:00:00.217461750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:466:gst_registry_add_plugin:<registry0> adding plugin 0x3d1b1040 for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstvideofiltersbad.so"
0:00:00.217493625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:479:gst_registry_add_plugin:<registry0> emitting plugin-added for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstvideofiltersbad.so"
0:00:00.217507875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:879:_priv_gst_registry_chunks_load_plugin: Added plugin 'videofiltersbad' plugin with 3 features from binary registry
0:00:00.217522250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'videofiltersbad' feature 'scenechange' typename : 'GstElementFactory'
0:00:00.217552250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb4724ba0
0:00:00.217570375 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.217583375 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.217597750 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.217610500 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.217624500 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.217637000 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.217651125 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.217663625 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.217676875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.217689250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb4724c80
0:00:00.217703875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.217715875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb4724d30
0:00:00.217729625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.217745500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d1b0650 (scenechange)
0:00:00.217764625 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<scenechange> set parent (ref and sink)
0:00:00.217778875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for scenechange
0:00:00.217791750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature scenechange, plugin 0x3d1b1040 videofiltersbad
0:00:00.217806500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'videofiltersbad' feature 'zebrastripe' typename : 'GstElementFactory'
0:00:00.217835125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb4724e00
0:00:00.217852625 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.217875375 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.217890750 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.217903125 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.217916875 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.217929250 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.217943625 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.217956625 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.217970375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.217983000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb4724f00
0:00:00.217998375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.218010750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb4724fd0
0:00:00.218025000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.218042625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d1b38a0 (zebrastripe)
0:00:00.218060250 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<zebrastripe> set parent (ref and sink)
0:00:00.218075000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for zebrastripe
0:00:00.218088125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature zebrastripe, plugin 0x3d1b1040 videofiltersbad
0:00:00.218102000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'videofiltersbad' feature 'videodiff' typename : 'GstElementFactory'
0:00:00.218132500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb47250c0
0:00:00.218150000 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.218163125 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.218177250 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.218190125 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.218204000 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.218216375 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.218230750 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.218243250 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.218267250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.218280500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb47251a8
0:00:00.218295875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.218307625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb4725258
0:00:00.218321125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.218337250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d1b3980 (videodiff)
0:00:00.218354750 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<videodiff> set parent (ref and sink)
0:00:00.218368625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for videodiff
0:00:00.218381750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature videodiff, plugin 0x3d1b1040 videofiltersbad
0:00:00.218395750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrybinary.c:606:priv_gst_registry_binary_read_cache: reading binary registry 336644(52304)/405909
0:00:00.218409000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:829:_priv_gst_registry_chunks_load_plugin: Reading/casting for GstRegistryChunkPluginElement at address 0xffffb4725308
0:00:00.218438375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:850:_priv_gst_registry_chunks_load_plugin: read strings for name='tcp'
0:00:00.218452875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:851:_priv_gst_registry_chunks_load_plugin: desc.description='transfer data over the network via TCP'
0:00:00.218464875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:852:_priv_gst_registry_chunks_load_plugin: filename='/data/halley/gst-sdk/lib/gstreamer-1.0/libgsttcp.so'
0:00:00.218476500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:853:_priv_gst_registry_chunks_load_plugin: desc.version='1.14.0'
0:00:00.218487625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:854:_priv_gst_registry_chunks_load_plugin: desc.license='LGPL'
0:00:00.218498625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:855:_priv_gst_registry_chunks_load_plugin: desc.source='gst-plugins-base'
0:00:00.218509875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:856:_priv_gst_registry_chunks_load_plugin: desc.package='GStreamer Base Plug-ins source release'
0:00:00.218521250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:857:_priv_gst_registry_chunks_load_plugin: desc.origin='Unknown package origin'
0:00:00.218532500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:858:_priv_gst_registry_chunks_load_plugin: desc.datetime=2018-03-19
0:00:00.218547250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:466:gst_registry_add_plugin:<registry0> adding plugin 0x3d1b1170 for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgsttcp.so"
0:00:00.218565250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:479:gst_registry_add_plugin:<registry0> emitting plugin-added for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgsttcp.so"
0:00:00.218578375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:879:_priv_gst_registry_chunks_load_plugin: Added plugin 'tcp' plugin with 7 features from binary registry
0:00:00.218592500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'tcp' feature 'socketsrc' typename : 'GstElementFactory'
0:00:00.218632250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb4725408
0:00:00.218650250 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.218663375 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.218677750 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.218690375 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.218704500 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.218716750 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.218731250 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.218744875 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.218759625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=1
0:00:00.218771625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb4725528
0:00:00.218784250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.218800250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d1b3a60 (socketsrc)
0:00:00.218817250 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<socketsrc> set parent (ref and sink)
0:00:00.218830875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for socketsrc
0:00:00.218843625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature socketsrc, plugin 0x3d1b1170 tcp
0:00:00.218857875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'tcp' feature 'tcpclientsink' typename : 'GstElementFactory'
0:00:00.218887250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb4725558
0:00:00.218905000 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.218917750 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.218931875 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.218944625 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.218958875 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.218971125 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.218985875 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.218999250 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.219031750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=1
0:00:00.219045000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb4725660
0:00:00.219057750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.219074000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d1b3b40 (tcpclientsink)
0:00:00.219091625 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<tcpclientsink> set parent (ref and sink)
0:00:00.219106000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for tcpclientsink
0:00:00.219119125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature tcpclientsink, plugin 0x3d1b1170 tcp
0:00:00.219132875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'tcp' feature 'tcpclientsrc' typename : 'GstElementFactory'
0:00:00.219161875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb4725690
0:00:00.219179875 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.219192500 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.219206500 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.219219000 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.219232375 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.219244625 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.219259250 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.219272500 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.219286125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=1
0:00:00.219298375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb47257a0
0:00:00.219311000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.219327500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d1b3c20 (tcpclientsrc)
0:00:00.219345000 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<tcpclientsrc> set parent (ref and sink)
0:00:00.219359250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for tcpclientsrc
0:00:00.219372500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature tcpclientsrc, plugin 0x3d1b1170 tcp
0:00:00.219386750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'tcp' feature 'tcpserversink' typename : 'GstElementFactory'
0:00:00.219437250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb47257d0
0:00:00.219455500 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.219468125 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.219482125 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.219495000 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.219508750 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.219521125 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.219535500 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.219548625 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.219562750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=1
0:00:00.219574875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb47258d8
0:00:00.219587750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.219604125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d1b3d00 (tcpserversink)
0:00:00.219621750 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<tcpserversink> set parent (ref and sink)
0:00:00.219636250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for tcpserversink
0:00:00.219649375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature tcpserversink, plugin 0x3d1b1170 tcp
0:00:00.219663750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'tcp' feature 'tcpserversrc' typename : 'GstElementFactory'
0:00:00.219692500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb4725908
0:00:00.219710250 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.219722875 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.219737000 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.219749625 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.219763375 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.219775750 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.219790500 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.219803500 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.219830125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=1
0:00:00.219843875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb4725a18
0:00:00.219856750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.219873250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d1b3de0 (tcpserversrc)
0:00:00.219890500 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<tcpserversrc> set parent (ref and sink)
0:00:00.219904750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for tcpserversrc
0:00:00.219918000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature tcpserversrc, plugin 0x3d1b1170 tcp
0:00:00.219932000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'tcp' feature 'multifdsink' typename : 'GstElementFactory'
0:00:00.219960000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb4725a48
0:00:00.219978000 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.219990375 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.220004625 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.220017125 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.220030625 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.220043125 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.220057500 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.220070875 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.220085875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=1
0:00:00.220098625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb4725b70
0:00:00.220111375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.220128250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d1b3ec0 (multifdsink)
0:00:00.220145875 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<multifdsink> set parent (ref and sink)
0:00:00.220160375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for multifdsink
0:00:00.220173250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature multifdsink, plugin 0x3d1b1170 tcp
0:00:00.220187000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'tcp' feature 'multisocketsink' typename : 'GstElementFactory'
0:00:00.220220875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb4725ba8
0:00:00.220249750 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.220263250 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.220277125 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.220289750 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.220303250 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.220315625 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.220329875 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.220343000 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.220358875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=1
0:00:00.220371000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb4725d00
0:00:00.220383625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.220402500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d1b50b0 (multisocketsink)
0:00:00.220420000 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<multisocketsink> set parent (ref and sink)
0:00:00.220434250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for multisocketsink
0:00:00.220447375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature multisocketsink, plugin 0x3d1b1170 tcp
0:00:00.220461750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrybinary.c:606:priv_gst_registry_binary_read_cache: reading binary registry 339217(52d11)/405909
0:00:00.220477500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:829:_priv_gst_registry_chunks_load_plugin: Reading/casting for GstRegistryChunkPluginElement at address 0xffffb4725d18
0:00:00.220507000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:850:_priv_gst_registry_chunks_load_plugin: read strings for name='aiff'
0:00:00.220522250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:851:_priv_gst_registry_chunks_load_plugin: desc.description='Create and parse Audio Interchange File Format (AIFF) files'
0:00:00.220534750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:852:_priv_gst_registry_chunks_load_plugin: filename='/data/halley/gst-sdk/lib/gstreamer-1.0/libgstaiff.so'
0:00:00.220546250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:853:_priv_gst_registry_chunks_load_plugin: desc.version='1.14.0'
0:00:00.220557375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:854:_priv_gst_registry_chunks_load_plugin: desc.license='LGPL'
0:00:00.220568375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:855:_priv_gst_registry_chunks_load_plugin: desc.source='gst-plugins-bad'
0:00:00.220579500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:856:_priv_gst_registry_chunks_load_plugin: desc.package='GStreamer Bad Plug-ins source release'
0:00:00.220590750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:857:_priv_gst_registry_chunks_load_plugin: desc.origin='Unknown package origin'
0:00:00.220612125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:858:_priv_gst_registry_chunks_load_plugin: desc.datetime=2018-03-19
0:00:00.220628375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:466:gst_registry_add_plugin:<registry0> adding plugin 0x3d1b12a0 for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstaiff.so"
0:00:00.220650000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:479:gst_registry_add_plugin:<registry0> emitting plugin-added for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstaiff.so"
0:00:00.220664000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:879:_priv_gst_registry_chunks_load_plugin: Added plugin 'aiff' plugin with 2 features from binary registry
0:00:00.220678375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'aiff' feature 'aiffparse' typename : 'GstElementFactory'
0:00:00.220707625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb4725e28
0:00:00.220725250 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.220738125 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.220752375 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.220765125 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.220778875 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.220791375 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.220805875 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.220818125 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.220831875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.220844000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb4725f28
0:00:00.220857125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.220868750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb4725f48
0:00:00.220891750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.220910250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d1b5190 (aiffparse)
0:00:00.220927500 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<aiffparse> set parent (ref and sink)
0:00:00.220941750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for aiffparse
0:00:00.220954625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature aiffparse, plugin 0x3d1b12a0 aiff
0:00:00.220969375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'aiff' feature 'aiffmux' typename : 'GstElementFactory'
0:00:00.221011500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb4726008
0:00:00.221030000 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.221057250 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.221077000 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.221090000 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.221103875 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.221116375 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.221130875 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.221143875 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.221157250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.221169500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb47260e8
0:00:00.221182250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.221193875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb4726108
0:00:00.221209250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.221225875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d1b5270 (aiffmux)
0:00:00.221243500 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<aiffmux> set parent (ref and sink)
0:00:00.221258000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for aiffmux
0:00:00.221270875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature aiffmux, plugin 0x3d1b12a0 aiff
0:00:00.221285000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrybinary.c:606:priv_gst_registry_binary_read_cache: reading binary registry 340363(5318b)/405909
0:00:00.221299125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:829:_priv_gst_registry_chunks_load_plugin: Reading/casting for GstRegistryChunkPluginElement at address 0xffffb4726190
0:00:00.221328625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:850:_priv_gst_registry_chunks_load_plugin: read strings for name='vmnc'
0:00:00.221343250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:851:_priv_gst_registry_chunks_load_plugin: desc.description='VmWare Video Codec plugins'
0:00:00.221355375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:852:_priv_gst_registry_chunks_load_plugin: filename='/data/halley/gst-sdk/lib/gstreamer-1.0/libgstvmnc.so'
0:00:00.221367000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:853:_priv_gst_registry_chunks_load_plugin: desc.version='1.14.0'
0:00:00.221377875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:854:_priv_gst_registry_chunks_load_plugin: desc.license='LGPL'
0:00:00.221399750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:855:_priv_gst_registry_chunks_load_plugin: desc.source='gst-plugins-bad'
0:00:00.221412500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:856:_priv_gst_registry_chunks_load_plugin: desc.package='GStreamer Bad Plug-ins source release'
0:00:00.221423750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:857:_priv_gst_registry_chunks_load_plugin: desc.origin='Unknown package origin'
0:00:00.221435000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:858:_priv_gst_registry_chunks_load_plugin: desc.datetime=2018-03-19
0:00:00.221449875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:466:gst_registry_add_plugin:<registry0> adding plugin 0x3d1b13d0 for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstvmnc.so"
0:00:00.221467750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:479:gst_registry_add_plugin:<registry0> emitting plugin-added for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstvmnc.so"
0:00:00.221480875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:879:_priv_gst_registry_chunks_load_plugin: Added plugin 'vmnc' plugin with 1 features from binary registry
0:00:00.221495250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'vmnc' feature 'vmncdec' typename : 'GstElementFactory'
0:00:00.221523875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb4726280
0:00:00.221541250 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.221554000 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.221568000 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.221580875 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.221594500 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.221608250 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.221622750 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.221635625 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.221649500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.221662000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb4726370
0:00:00.221677375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.221689625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb4726440
0:00:00.221704250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.221721250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d1b5350 (vmncdec)
0:00:00.221739000 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<vmncdec> set parent (ref and sink)
0:00:00.221753375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for vmncdec
0:00:00.221776750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature vmncdec, plugin 0x3d1b13d0 vmnc
0:00:00.221792000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrybinary.c:606:priv_gst_registry_binary_read_cache: reading binary registry 341202(534d2)/405909
0:00:00.221805625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:829:_priv_gst_registry_chunks_load_plugin: Reading/casting for GstRegistryChunkPluginElement at address 0xffffb47264d8
0:00:00.221835625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:850:_priv_gst_registry_chunks_load_plugin: read strings for name='geometrictransform'
0:00:00.221850375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:851:_priv_gst_registry_chunks_load_plugin: desc.description='Various geometric image transform elements'
0:00:00.221862875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:852:_priv_gst_registry_chunks_load_plugin: filename='/data/halley/gst-sdk/lib/gstreamer-1.0/libgstgeometrictransform.so'
0:00:00.221874750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:853:_priv_gst_registry_chunks_load_plugin: desc.version='1.14.0'
0:00:00.221886000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:854:_priv_gst_registry_chunks_load_plugin: desc.license='LGPL'
0:00:00.221896875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:855:_priv_gst_registry_chunks_load_plugin: desc.source='gst-plugins-bad'
0:00:00.221908000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:856:_priv_gst_registry_chunks_load_plugin: desc.package='GStreamer Bad Plug-ins source release'
0:00:00.221919125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:857:_priv_gst_registry_chunks_load_plugin: desc.origin='Unknown package origin'
0:00:00.221930500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:858:_priv_gst_registry_chunks_load_plugin: desc.datetime=2018-03-19
0:00:00.221945125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:466:gst_registry_add_plugin:<registry0> adding plugin 0x3d1b1500 for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstgeometrictransform.so"
0:00:00.221978500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:479:gst_registry_add_plugin:<registry0> emitting plugin-added for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstgeometrictransform.so"
0:00:00.221993125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:879:_priv_gst_registry_chunks_load_plugin: Added plugin 'geometrictransform' plugin with 16 features from binary registry
0:00:00.222007625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'geometrictransform' feature 'circle' typename : 'GstElementFactory'
0:00:00.222045000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb47265f0
0:00:00.222063000 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.222075875 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.222089500 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.222102000 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.222116375 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.222128625 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.222153875 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.222167500 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.222181250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.222193625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb47266e8
0:00:00.222208750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.222220750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb47267d8
0:00:00.222234750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.222250750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d1b5430 (circle)
0:00:00.222268375 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<circle> set parent (ref and sink)
0:00:00.222282625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for circle
0:00:00.222295500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature circle, plugin 0x3d1b1500 geometrictransform
0:00:00.222310375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'geometrictransform' feature 'diffuse' typename : 'GstElementFactory'
0:00:00.222339375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb47268e0
0:00:00.222357000 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.222369750 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.222383250 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.222395500 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.222409125 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.222421250 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.222435500 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.222447750 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.222461125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.222473250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb47269f0
0:00:00.222487375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.222499250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb4726ae0
0:00:00.222523875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.222541250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d1b5510 (diffuse)
0:00:00.222558875 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<diffuse> set parent (ref and sink)
0:00:00.222572875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for diffuse
0:00:00.222585625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature diffuse, plugin 0x3d1b1500 geometrictransform
0:00:00.222600125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'geometrictransform' feature 'kaleidoscope' typename : 'GstElementFactory'
0:00:00.222629625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb4726bf0
0:00:00.222647500 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.222660250 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.222673750 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.222686000 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.222699750 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.222712125 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.222726875 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.222739375 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.222753000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.222765375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb4726cf8
0:00:00.222779375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.222791125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb4726de8
0:00:00.222805375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.222822250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d1b55f0 (kaleidoscope)
0:00:00.222839375 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<kaleidoscope> set parent (ref and sink)
0:00:00.222853500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for kaleidoscope
0:00:00.222866375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature kaleidoscope, plugin 0x3d1b1500 geometrictransform
0:00:00.222882250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'geometrictransform' feature 'marble' typename : 'GstElementFactory'
0:00:00.222926875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb4726ef0
0:00:00.222944625 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.222957375 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.222971250 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.222983750 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.222997375 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.223009625 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.223024000 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.223036375 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.223049875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.223062000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb4726fe0
0:00:00.223076375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.223088250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb47270d0
0:00:00.223102125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.223118250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d1b56d0 (marble)
0:00:00.223135750 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<marble> set parent (ref and sink)
0:00:00.223149625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for marble
0:00:00.223162625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature marble, plugin 0x3d1b1500 geometrictransform
0:00:00.223176500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'geometrictransform' feature 'pinch' typename : 'GstElementFactory'
0:00:00.223205375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb47271d8
0:00:00.223223125 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.223235875 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.223249500 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.223262125 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.223276125 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.223288625 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.223314125 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.223327625 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.223341375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.223353500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb47272d8
0:00:00.223367750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.223379375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb47273c8
0:00:00.223393000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.223409375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d1b9850 (pinch)
0:00:00.223427250 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<pinch> set parent (ref and sink)
0:00:00.223441125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for pinch
0:00:00.223454000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature pinch, plugin 0x3d1b1500 geometrictransform
0:00:00.223469000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'geometrictransform' feature 'rotate' typename : 'GstElementFactory'
0:00:00.223499000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb47274d0
0:00:00.223516875 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.223529875 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.223543625 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.223556125 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.223569875 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.223582125 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.223596375 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.223608875 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.223622500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.223634750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb47275c8
0:00:00.223648625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.223660375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb47276b8
0:00:00.223674250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.223702750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d1b9930 (rotate)
0:00:00.223721125 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<rotate> set parent (ref and sink)
0:00:00.223735250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for rotate
0:00:00.223748125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature rotate, plugin 0x3d1b1500 geometrictransform
0:00:00.223762875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'geometrictransform' feature 'sphere' typename : 'GstElementFactory'
0:00:00.223792875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb47277c0
0:00:00.223810625 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.223823375 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.223837250 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.223849875 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.223864000 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.223876250 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.223890375 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.223903375 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.223917250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.223929875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb47278c0
0:00:00.223944500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.223957000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb47279b0
0:00:00.223971250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.223988750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d1b9a10 (sphere)
0:00:00.224006375 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<sphere> set parent (ref and sink)
0:00:00.224020625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for sphere
0:00:00.224033500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature sphere, plugin 0x3d1b1500 geometrictransform
0:00:00.224047375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'geometrictransform' feature 'twirl' typename : 'GstElementFactory'
0:00:00.224083250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb4727ab8
0:00:00.224112250 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.224126125 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.224139625 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.224152000 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.224165625 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.224177750 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.224191625 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.224204000 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.224217125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.224229375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb4727ba8
0:00:00.224243500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.224255000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb4727c98
0:00:00.224269125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.224285875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d1b9af0 (twirl)
0:00:00.224303000 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<twirl> set parent (ref and sink)
0:00:00.224316875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for twirl
0:00:00.224329750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature twirl, plugin 0x3d1b1500 geometrictransform
0:00:00.224344375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'geometrictransform' feature 'waterripple' typename : 'GstElementFactory'
0:00:00.224375250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb4727da0
0:00:00.224396375 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.224409875 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.224423500 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.224436250 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.224450125 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.224462500 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.224477125 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.224499625 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.224514500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.224526750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb4727ea0
0:00:00.224541000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.224552625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb4727f90
0:00:00.224566500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.224582750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d1b9bd0 (waterripple)
0:00:00.224599625 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<waterripple> set parent (ref and sink)
0:00:00.224613875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for waterripple
0:00:00.224626625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature waterripple, plugin 0x3d1b1500 geometrictransform
0:00:00.224640375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'geometrictransform' feature 'stretch' typename : 'GstElementFactory'
0:00:00.224674500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb4728098
0:00:00.224696500 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.224709875 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.224723750 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.224736500 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.224750250 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.224762875 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.224777750 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.224790000 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.224803250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.224815500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb4728198
0:00:00.224829500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.224841125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb4728288
0:00:00.224855125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.224882125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d1b9cb0 (stretch)
0:00:00.224900000 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<stretch> set parent (ref and sink)
0:00:00.224913500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for stretch
0:00:00.224926500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature stretch, plugin 0x3d1b1500 geometrictransform
0:00:00.224940875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'geometrictransform' feature 'bulge' typename : 'GstElementFactory'
0:00:00.224969625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb4728390
0:00:00.224987125 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.224999500 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.225013000 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.225025500 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.225039000 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.225074375 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.225089500 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.225101750 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.225115000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.225127125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb4728480
0:00:00.225149500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.225163625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb4728570
0:00:00.225177750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.225194750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d1b9d90 (bulge)
0:00:00.225211625 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<bulge> set parent (ref and sink)
0:00:00.225225500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for bulge
0:00:00.225238500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature bulge, plugin 0x3d1b1500 geometrictransform
0:00:00.225252875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'geometrictransform' feature 'tunnel' typename : 'GstElementFactory'
0:00:00.225282250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb4728678
0:00:00.225310500 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.225324125 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.225337625 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.225350375 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.225364125 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.225376250 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.225390375 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.225402625 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.225417875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.225429875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb4728750
0:00:00.225443750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.225455375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb4728840
0:00:00.225469375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.225485750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d1b9e70 (tunnel)
0:00:00.225502250 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<tunnel> set parent (ref and sink)
0:00:00.225516250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for tunnel
0:00:00.225529125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature tunnel, plugin 0x3d1b1500 geometrictransform
0:00:00.225543375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'geometrictransform' feature 'square' typename : 'GstElementFactory'
0:00:00.225572125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb4728948
0:00:00.225589500 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.225602250 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.225615875 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.225628250 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.225641875 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.225653875 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.225668125 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.225691250 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.225706250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.225718250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb4728a40
0:00:00.225732250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.225743750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb4728b30
0:00:00.225757625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.225774000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d1ba860 (square)
0:00:00.225790875 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<square> set parent (ref and sink)
0:00:00.225804750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for square
0:00:00.225817750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature square, plugin 0x3d1b1500 geometrictransform
0:00:00.225831875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'geometrictransform' feature 'mirror' typename : 'GstElementFactory'
0:00:00.225860125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb4728c38
0:00:00.225877500 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.225890250 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.225904000 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.225916375 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.225930000 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.225942125 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.225956750 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.225969125 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.225982500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.225994625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb4728d48
0:00:00.226008500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.226020125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb4728e38
0:00:00.226033875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.226061000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d1ba940 (mirror)
0:00:00.226078000 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<mirror> set parent (ref and sink)
0:00:00.226092000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for mirror
0:00:00.226104750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature mirror, plugin 0x3d1b1500 geometrictransform
0:00:00.226118875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'geometrictransform' feature 'fisheye' typename : 'GstElementFactory'
0:00:00.226156375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb4728f40
0:00:00.226174875 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.226187500 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.226201125 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.226213500 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.226227500 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.226239625 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.226254625 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.226266875 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.226280000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.226292125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb4729068
0:00:00.226308375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.226320125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb4729158
0:00:00.226334125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.226350250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d1baa20 (fisheye)
0:00:00.226367500 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<fisheye> set parent (ref and sink)
0:00:00.226381625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for fisheye
0:00:00.226394375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature fisheye, plugin 0x3d1b1500 geometrictransform
0:00:00.226408500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'geometrictransform' feature 'perspective' typename : 'GstElementFactory'
0:00:00.226436875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb4729260
0:00:00.226470375 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.226484375 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.226498000 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.226510250 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.226523875 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.226535875 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.226550250 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.226563000 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.226576625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.226588750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb4729348
0:00:00.226602750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.226614500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb4729438
0:00:00.226628250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.226644875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d1bab00 (perspective)
0:00:00.226662000 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<perspective> set parent (ref and sink)
0:00:00.226675500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for perspective
0:00:00.226688250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature perspective, plugin 0x3d1b1500 geometrictransform
0:00:00.226702750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrybinary.c:606:priv_gst_registry_binary_read_cache: reading binary registry 353570(56522)/405909
0:00:00.226716625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:829:_priv_gst_registry_chunks_load_plugin: Reading/casting for GstRegistryChunkPluginElement at address 0xffffb4729528
0:00:00.226746625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:850:_priv_gst_registry_chunks_load_plugin: read strings for name='mpegpsmux'
0:00:00.226760625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:851:_priv_gst_registry_chunks_load_plugin: desc.description='MPEG-PS muxer'
0:00:00.226772125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:852:_priv_gst_registry_chunks_load_plugin: filename='/data/halley/gst-sdk/lib/gstreamer-1.0/libgstmpegpsmux.so'
0:00:00.226783875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:853:_priv_gst_registry_chunks_load_plugin: desc.version='1.14.0'
0:00:00.226795125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:854:_priv_gst_registry_chunks_load_plugin: desc.license='LGPL'
0:00:00.226806000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:855:_priv_gst_registry_chunks_load_plugin: desc.source='gst-plugins-bad'
0:00:00.226830875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:856:_priv_gst_registry_chunks_load_plugin: desc.package='GStreamer Bad Plug-ins source release'
0:00:00.226844000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:857:_priv_gst_registry_chunks_load_plugin: desc.origin='Unknown package origin'
0:00:00.226855375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:858:_priv_gst_registry_chunks_load_plugin: desc.datetime=2018-03-19
0:00:00.226870125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:466:gst_registry_add_plugin:<registry0> adding plugin 0x3d1b1630 for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstmpegpsmux.so"
0:00:00.226888000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:479:gst_registry_add_plugin:<registry0> emitting plugin-added for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstmpegpsmux.so"
0:00:00.226901125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:879:_priv_gst_registry_chunks_load_plugin: Added plugin 'mpegpsmux' plugin with 1 features from binary registry
0:00:00.226915000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'mpegpsmux' feature 'mpegpsmux' typename : 'GstElementFactory'
0:00:00.226943250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb4729618
0:00:00.226961375 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.226974000 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.226988125 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.227000500 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.227014125 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.227026250 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.227040625 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.227053125 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.227066500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.227078625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb4729718
0:00:00.227109500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink_%u
0:00:00.227123250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb47298b8
0:00:00.227136625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.227153375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d1babe0 (mpegpsmux)
0:00:00.227170250 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<mpegpsmux> set parent (ref and sink)
0:00:00.227184250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for mpegpsmux
0:00:00.227197125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature mpegpsmux, plugin 0x3d1b1630 mpegpsmux
0:00:00.227221625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrybinary.c:606:priv_gst_registry_binary_read_cache: reading binary registry 354559(568ff)/405909
0:00:00.227236500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:829:_priv_gst_registry_chunks_load_plugin: Reading/casting for GstRegistryChunkPluginElement at address 0xffffb4729900
0:00:00.227265500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:850:_priv_gst_registry_chunks_load_plugin: read strings for name='gaudieffects'
0:00:00.227279625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:851:_priv_gst_registry_chunks_load_plugin: desc.description='Gaudi video effects.'
0:00:00.227291500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:852:_priv_gst_registry_chunks_load_plugin: filename='/data/halley/gst-sdk/lib/gstreamer-1.0/libgstgaudieffects.so'
0:00:00.227303250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:853:_priv_gst_registry_chunks_load_plugin: desc.version='1.14.0'
0:00:00.227314500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:854:_priv_gst_registry_chunks_load_plugin: desc.license='LGPL'
0:00:00.227325625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:855:_priv_gst_registry_chunks_load_plugin: desc.source='gst-plugins-bad'
0:00:00.227337000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:856:_priv_gst_registry_chunks_load_plugin: desc.package='GStreamer Bad Plug-ins source release'
0:00:00.227348500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:857:_priv_gst_registry_chunks_load_plugin: desc.origin='Unknown package origin'
0:00:00.227359875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:858:_priv_gst_registry_chunks_load_plugin: desc.datetime=2018-03-19
0:00:00.227374750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:466:gst_registry_add_plugin:<registry0> adding plugin 0x3d1b1760 for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstgaudieffects.so"
0:00:00.227392250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:479:gst_registry_add_plugin:<registry0> emitting plugin-added for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstgaudieffects.so"
0:00:00.227405625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:879:_priv_gst_registry_chunks_load_plugin: Added plugin 'gaudieffects' plugin with 7 features from binary registry
0:00:00.227419125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'gaudieffects' feature 'burn' typename : 'GstElementFactory'
0:00:00.227447375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb47299f8
0:00:00.227464875 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.227477625 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.227491375 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.227503875 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.227517375 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.227529625 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.227544125 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.227556500 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.227580500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.227593750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb4729ae8
0:00:00.227609375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.227621000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb4729b88
0:00:00.227634750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.227651250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d1bacc0 (burn)
0:00:00.227668125 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<burn> set parent (ref and sink)
0:00:00.227682250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for burn
0:00:00.227695000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature burn, plugin 0x3d1b1760 gaudieffects
0:00:00.227709250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'gaudieffects' feature 'chromium' typename : 'GstElementFactory'
0:00:00.227738000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb4729c48
0:00:00.227755375 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.227767750 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.227781375 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.227793875 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.227807375 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.227820125 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.227834625 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.227847000 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.227860375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.227872375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb4729d40
0:00:00.227886125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.227897625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb4729de0
0:00:00.227911250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.227929375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d1bada0 (chromium)
0:00:00.227962625 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<chromium> set parent (ref and sink)
0:00:00.227977375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for chromium
0:00:00.227990500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature chromium, plugin 0x3d1b1760 gaudieffects
0:00:00.228004000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'gaudieffects' feature 'dilate' typename : 'GstElementFactory'
0:00:00.228032375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb4729e98
0:00:00.228049750 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.228062375 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.228075875 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.228088375 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.228102000 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.228114250 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.228128625 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.228141000 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.228154375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.228166375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb4729f88
0:00:00.228180000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.228191625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb472a028
0:00:00.228205125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.228221125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d1bae80 (dilate)
0:00:00.228237750 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<dilate> set parent (ref and sink)
0:00:00.228251375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for dilate
0:00:00.228264250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature dilate, plugin 0x3d1b1760 gaudieffects
0:00:00.228277875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'gaudieffects' feature 'dodge' typename : 'GstElementFactory'
0:00:00.228306125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb472a0e0
0:00:00.228323375 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.228346000 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.228360875 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.228373375 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.228387000 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.228399125 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.228413500 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.228425875 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.228439500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.228451625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb472a1d8
0:00:00.228465125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.228476500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb472a278
0:00:00.228490250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.228506500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d1be030 (dodge)
0:00:00.228523000 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<dodge> set parent (ref and sink)
0:00:00.228536625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for dodge
0:00:00.228549500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature dodge, plugin 0x3d1b1760 gaudieffects
0:00:00.228563000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'gaudieffects' feature 'exclusion' typename : 'GstElementFactory'
0:00:00.228592125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb472a338
0:00:00.228609625 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.228622375 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.228635875 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.228648125 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.228661750 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.228674000 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.228688375 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.228701000 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.228714375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.228736500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb472a430
0:00:00.228761625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.228775125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb472a4d0
0:00:00.228788750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.228805500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d1be110 (exclusion)
0:00:00.228822125 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<exclusion> set parent (ref and sink)
0:00:00.228836125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for exclusion
0:00:00.228848750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature exclusion, plugin 0x3d1b1760 gaudieffects
0:00:00.228862750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'gaudieffects' feature 'solarize' typename : 'GstElementFactory'
0:00:00.228891500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb472a590
0:00:00.228909125 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.228922000 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.228936000 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.228948750 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.228962625 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.228975000 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.228989500 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.229002125 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.229015625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.229027750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb472a688
0:00:00.229055750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.229072750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb472a728
0:00:00.229094875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.229113250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d1be1f0 (solarize)
0:00:00.229130125 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<solarize> set parent (ref and sink)
0:00:00.229155250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for solarize
0:00:00.229169000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature solarize, plugin 0x3d1b1760 gaudieffects
0:00:00.229183000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'gaudieffects' feature 'gaussianblur' typename : 'GstElementFactory'
0:00:00.229212625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb472a7e8
0:00:00.229230625 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.229243125 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.229257000 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.229269375 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.229283000 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.229295125 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.229309500 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.229321750 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.229335000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.229346750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb472a8d0
0:00:00.229361125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.229373000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb472a968
0:00:00.229386375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.229402750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d1be2d0 (gaussianblur)
0:00:00.229419625 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<gaussianblur> set parent (ref and sink)
0:00:00.229433375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for gaussianblur
0:00:00.229446125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature gaussianblur, plugin 0x3d1b1760 gaudieffects
0:00:00.229460125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrybinary.c:606:priv_gst_registry_binary_read_cache: reading binary registry 358909(579fd)/405909
0:00:00.229473500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:829:_priv_gst_registry_chunks_load_plugin: Reading/casting for GstRegistryChunkPluginElement at address 0xffffb472aa00
0:00:00.229505000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:850:_priv_gst_registry_chunks_load_plugin: read strings for name='imxvideoconvert'
0:00:00.229529375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:851:_priv_gst_registry_chunks_load_plugin: desc.description='IMX Video Convert Plugins'
0:00:00.229542500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:852:_priv_gst_registry_chunks_load_plugin: filename='/data/halley/gst-sdk/lib/gstreamer-1.0/libgstimxvideoconvert.so'
0:00:00.229554250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:853:_priv_gst_registry_chunks_load_plugin: desc.version='4.4.4'
0:00:00.229565375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:854:_priv_gst_registry_chunks_load_plugin: desc.license='LGPL'
0:00:00.229576250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:855:_priv_gst_registry_chunks_load_plugin: desc.source='imx-gst1.0-plugin'
0:00:00.229587625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:856:_priv_gst_registry_chunks_load_plugin: desc.package='Freescle Gstreamer Multimedia Plugins'
0:00:00.229598750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:857:_priv_gst_registry_chunks_load_plugin: desc.origin='http://www.freescale.com'
0:00:00.229610000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:858:_priv_gst_registry_chunks_load_plugin: desc.datetime=
0:00:00.229624875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:466:gst_registry_add_plugin:<registry0> adding plugin 0x3d1b1890 for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstimxvideoconvert.so"
0:00:00.229642000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:479:gst_registry_add_plugin:<registry0> emitting plugin-added for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstimxvideoconvert.so"
0:00:00.229655375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:879:_priv_gst_registry_chunks_load_plugin: Added plugin 'imxvideoconvert' plugin with 1 features from binary registry
0:00:00.229669125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'imxvideoconvert' feature 'imxvideoconvert_g2d' typename : 'GstElementFactory'
0:00:00.229698000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb472ab08
0:00:00.229715375 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.229728000 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.229742000 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.229754500 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.229768500 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.229780875 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.229794875 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.229807375 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.229821000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.229833125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb472abf0
0:00:00.229849125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.229860750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb472ad48
0:00:00.229883750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.229901500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d1be3b0 (imxvideoconvert_g2d)
0:00:00.229919125 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<imxvideoconvert_g2d> set parent (ref and sink)
0:00:00.229933000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for imxvideoconvert_g2d
0:00:00.229945625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature imxvideoconvert_g2d, plugin 0x3d1b1890 imxvideoconvert
0:00:00.229959500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrybinary.c:606:priv_gst_registry_binary_read_cache: reading binary registry 360029(57e5d)/405909
0:00:00.229972750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:829:_priv_gst_registry_chunks_load_plugin: Reading/casting for GstRegistryChunkPluginElement at address 0xffffb472ae60
0:00:00.230002625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:850:_priv_gst_registry_chunks_load_plugin: read strings for name='id3demux'
0:00:00.230017000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:851:_priv_gst_registry_chunks_load_plugin: desc.description='Demux ID3v1 and ID3v2 tags from a file'
0:00:00.230028750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:852:_priv_gst_registry_chunks_load_plugin: filename='/data/halley/gst-sdk/lib/gstreamer-1.0/libgstid3demux.so'
0:00:00.230040625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:853:_priv_gst_registry_chunks_load_plugin: desc.version='1.14.0'
0:00:00.230051625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:854:_priv_gst_registry_chunks_load_plugin: desc.license='LGPL'
0:00:00.230062500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:855:_priv_gst_registry_chunks_load_plugin: desc.source='gst-plugins-good'
0:00:00.230073875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:856:_priv_gst_registry_chunks_load_plugin: desc.package='GStreamer Good Plug-ins source release'
0:00:00.230085250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:857:_priv_gst_registry_chunks_load_plugin: desc.origin='Unknown package origin'
0:00:00.230096500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:858:_priv_gst_registry_chunks_load_plugin: desc.datetime=2018-03-19
0:00:00.230111000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:466:gst_registry_add_plugin:<registry0> adding plugin 0x3d1b19c0 for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstid3demux.so"
0:00:00.230128000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:479:gst_registry_add_plugin:<registry0> emitting plugin-added for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstid3demux.so"
0:00:00.230141000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:879:_priv_gst_registry_chunks_load_plugin: Added plugin 'id3demux' plugin with 1 features from binary registry
0:00:00.230154500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'id3demux' feature 'id3demux' typename : 'GstElementFactory'
0:00:00.230182125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb472af68
0:00:00.230199500 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.230222500 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.230237875 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.230250250 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.230263875 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.230276000 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.230290500 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.230302875 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.230316250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.230328250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb472b078
0:00:00.230341375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.230353250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb472b088
0:00:00.230366875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.230383000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d1be490 (id3demux)
0:00:00.230399625 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<id3demux> set parent (ref and sink)
0:00:00.230413750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for id3demux
0:00:00.230426625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature id3demux, plugin 0x3d1b19c0 id3demux
0:00:00.230440125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrybinary.c:606:priv_gst_registry_binary_read_cache: reading binary registry 360615(580a7)/405909
0:00:00.230453375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:829:_priv_gst_registry_chunks_load_plugin: Reading/casting for GstRegistryChunkPluginElement at address 0xffffb472b0a8
0:00:00.230482250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:850:_priv_gst_registry_chunks_load_plugin: read strings for name='cutter'
0:00:00.230496125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:851:_priv_gst_registry_chunks_load_plugin: desc.description='Audio Cutter to split audio into non-silent bits'
0:00:00.230507875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:852:_priv_gst_registry_chunks_load_plugin: filename='/data/halley/gst-sdk/lib/gstreamer-1.0/libgstcutter.so'
0:00:00.230519375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:853:_priv_gst_registry_chunks_load_plugin: desc.version='1.14.0'
0:00:00.230530500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:854:_priv_gst_registry_chunks_load_plugin: desc.license='LGPL'
0:00:00.230541375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:855:_priv_gst_registry_chunks_load_plugin: desc.source='gst-plugins-good'
0:00:00.230552750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:856:_priv_gst_registry_chunks_load_plugin: desc.package='GStreamer Good Plug-ins source release'
0:00:00.230578125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:857:_priv_gst_registry_chunks_load_plugin: desc.origin='Unknown package origin'
0:00:00.230590750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:858:_priv_gst_registry_chunks_load_plugin: desc.datetime=2018-03-19
0:00:00.230605625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:466:gst_registry_add_plugin:<registry0> adding plugin 0x3d1b1af0 for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstcutter.so"
0:00:00.230622750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:479:gst_registry_add_plugin:<registry0> emitting plugin-added for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstcutter.so"
0:00:00.230635750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:879:_priv_gst_registry_chunks_load_plugin: Added plugin 'cutter' plugin with 1 features from binary registry
0:00:00.230649125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'cutter' feature 'cutter' typename : 'GstElementFactory'
0:00:00.230677000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb472b1b0
0:00:00.230694375 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.230707125 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.230721000 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.230733500 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.230747125 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.230759250 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.230773625 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.230786125 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.230799625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.230811625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb472b2b8
0:00:00.230826500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.230838500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb472b348
0:00:00.230852125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.230868250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d1be570 (cutter)
0:00:00.230884625 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<cutter> set parent (ref and sink)
0:00:00.230898250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for cutter
0:00:00.230910750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature cutter, plugin 0x3d1b1af0 cutter
0:00:00.230924625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrybinary.c:606:priv_gst_registry_binary_read_cache: reading binary registry 361433(583d9)/405909
0:00:00.230947875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:829:_priv_gst_registry_chunks_load_plugin: Reading/casting for GstRegistryChunkPluginElement at address 0xffffb472b3e0
0:00:00.230978125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:850:_priv_gst_registry_chunks_load_plugin: read strings for name='level'
0:00:00.230992125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:851:_priv_gst_registry_chunks_load_plugin: desc.description='Audio level plugin'
0:00:00.231003500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:852:_priv_gst_registry_chunks_load_plugin: filename='/data/halley/gst-sdk/lib/gstreamer-1.0/libgstlevel.so'
0:00:00.231015125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:853:_priv_gst_registry_chunks_load_plugin: desc.version='1.14.0'
0:00:00.231026250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:854:_priv_gst_registry_chunks_load_plugin: desc.license='LGPL'
0:00:00.231037125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:855:_priv_gst_registry_chunks_load_plugin: desc.source='gst-plugins-good'
0:00:00.231048625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:856:_priv_gst_registry_chunks_load_plugin: desc.package='GStreamer Good Plug-ins source release'
0:00:00.231060125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:857:_priv_gst_registry_chunks_load_plugin: desc.origin='Unknown package origin'
0:00:00.231071375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:858:_priv_gst_registry_chunks_load_plugin: desc.datetime=2018-03-19
0:00:00.231086000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:466:gst_registry_add_plugin:<registry0> adding plugin 0x3d1b1c20 for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstlevel.so"
0:00:00.231103125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:479:gst_registry_add_plugin:<registry0> emitting plugin-added for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstlevel.so"
0:00:00.231116125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:879:_priv_gst_registry_chunks_load_plugin: Added plugin 'level' plugin with 1 features from binary registry
0:00:00.231129500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'level' feature 'level' typename : 'GstElementFactory'
0:00:00.231157000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb472b4c8
0:00:00.231174500 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.231187125 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.231200625 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.231213000 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.231226500 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.231238750 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.231253000 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.231265375 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.231279125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.231301250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb472b5c8
0:00:00.231316875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.231329000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb472b670
0:00:00.231342500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.231358750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d1be650 (level)
0:00:00.231380500 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<level> set parent (ref and sink)
0:00:00.231394750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for level
0:00:00.231407500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature level, plugin 0x3d1b1c20 level
0:00:00.231421375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrybinary.c:606:priv_gst_registry_binary_read_cache: reading binary registry 362261(58715)/405909
0:00:00.231434625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:829:_priv_gst_registry_chunks_load_plugin: Reading/casting for GstRegistryChunkPluginElement at address 0xffffb472b718
0:00:00.231463625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:850:_priv_gst_registry_chunks_load_plugin: read strings for name='netsim'
0:00:00.231477625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:851:_priv_gst_registry_chunks_load_plugin: desc.description='Network Simulator'
0:00:00.231489000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:852:_priv_gst_registry_chunks_load_plugin: filename='/data/halley/gst-sdk/lib/gstreamer-1.0/libgstnetsim.so'
0:00:00.231500625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:853:_priv_gst_registry_chunks_load_plugin: desc.version='1.14.0'
0:00:00.231511625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:854:_priv_gst_registry_chunks_load_plugin: desc.license='LGPL'
0:00:00.231522625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:855:_priv_gst_registry_chunks_load_plugin: desc.source='gst-plugins-bad'
0:00:00.231534000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:856:_priv_gst_registry_chunks_load_plugin: desc.package='GStreamer Bad Plug-ins source release'
0:00:00.231545500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:857:_priv_gst_registry_chunks_load_plugin: desc.origin='Unknown package origin'
0:00:00.231556875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:858:_priv_gst_registry_chunks_load_plugin: desc.datetime=2018-03-19
0:00:00.231571500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:466:gst_registry_add_plugin:<registry0> adding plugin 0x3d1b1d50 for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstnetsim.so"
0:00:00.231588500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:479:gst_registry_add_plugin:<registry0> emitting plugin-added for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstnetsim.so"
0:00:00.231601375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:879:_priv_gst_registry_chunks_load_plugin: Added plugin 'netsim' plugin with 1 features from binary registry
0:00:00.231614500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'netsim' feature 'netsim' typename : 'GstElementFactory'
0:00:00.231663750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb472b800
0:00:00.231682875 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.231695625 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.231709625 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.231722250 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.231736125 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.231748625 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.231763375 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.231775750 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.231790000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.231802125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb472b948
0:00:00.231814750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.231826375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb472b958
0:00:00.231838875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.231854750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d1c3890 (netsim)
0:00:00.231871750 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<netsim> set parent (ref and sink)
0:00:00.231885875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for netsim
0:00:00.231898625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature netsim, plugin 0x3d1b1d50 netsim
0:00:00.231912375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrybinary.c:606:priv_gst_registry_binary_read_cache: reading binary registry 362857(58969)/405909
0:00:00.231925750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:829:_priv_gst_registry_chunks_load_plugin: Reading/casting for GstRegistryChunkPluginElement at address 0xffffb472b970
0:00:00.231954250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:850:_priv_gst_registry_chunks_load_plugin: read strings for name='gdp'
0:00:00.231968375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:851:_priv_gst_registry_chunks_load_plugin: desc.description='Payload/depayload GDP packets'
0:00:00.231980250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:852:_priv_gst_registry_chunks_load_plugin: filename='/data/halley/gst-sdk/lib/gstreamer-1.0/libgstgdp.so'
0:00:00.231992000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:853:_priv_gst_registry_chunks_load_plugin: desc.version='1.14.0'
0:00:00.232002875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:854:_priv_gst_registry_chunks_load_plugin: desc.license='LGPL'
0:00:00.232013750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:855:_priv_gst_registry_chunks_load_plugin: desc.source='gst-plugins-bad'
0:00:00.232035375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:856:_priv_gst_registry_chunks_load_plugin: desc.package='GStreamer Bad Plug-ins source release'
0:00:00.232048125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:857:_priv_gst_registry_chunks_load_plugin: desc.origin='Unknown package origin'
0:00:00.232059375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:858:_priv_gst_registry_chunks_load_plugin: desc.datetime=2018-03-19
0:00:00.232074375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:466:gst_registry_add_plugin:<registry0> adding plugin 0x3d1b1e80 for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstgdp.so"
0:00:00.232091000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:479:gst_registry_add_plugin:<registry0> emitting plugin-added for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstgdp.so"
0:00:00.232104125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:879:_priv_gst_registry_chunks_load_plugin: Added plugin 'gdp' plugin with 2 features from binary registry
0:00:00.232119375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'gdp' feature 'gdpdepay' typename : 'GstElementFactory'
0:00:00.232148000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb472ba60
0:00:00.232165875 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.232178625 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.232192750 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.232205500 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.232219375 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.232231750 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.232245875 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.232258375 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.232272000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.232284125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb472bb60
0:00:00.232297500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.232309500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb472bb80
0:00:00.232322125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.232338125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d1c3970 (gdpdepay)
0:00:00.232354750 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<gdpdepay> set parent (ref and sink)
0:00:00.232368500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for gdpdepay
0:00:00.232391500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature gdpdepay, plugin 0x3d1b1e80 gdp
0:00:00.232406500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'gdp' feature 'gdppay' typename : 'GstElementFactory'
0:00:00.232435375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb472bbb0
0:00:00.232452875 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.232465750 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.232479750 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.232492500 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.232506250 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.232518625 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.232533125 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.232545375 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.232559000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.232571125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb472bca8
0:00:00.232584000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.232595875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb472bcc0
0:00:00.232609000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.232625125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d1c3a50 (gdppay)
0:00:00.232642375 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<gdppay> set parent (ref and sink)
0:00:00.232656375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for gdppay
0:00:00.232669125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature gdppay, plugin 0x3d1b1e80 gdp
0:00:00.232682625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrybinary.c:606:priv_gst_registry_binary_read_cache: reading binary registry 363742(58cde)/405909
0:00:00.232695750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:829:_priv_gst_registry_chunks_load_plugin: Reading/casting for GstRegistryChunkPluginElement at address 0xffffb472bce0
0:00:00.232735750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:850:_priv_gst_registry_chunks_load_plugin: read strings for name='icydemux'
0:00:00.232750750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:851:_priv_gst_registry_chunks_load_plugin: desc.description='Demux ICY tags from a stream'
0:00:00.232762750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:852:_priv_gst_registry_chunks_load_plugin: filename='/data/halley/gst-sdk/lib/gstreamer-1.0/libgsticydemux.so'
0:00:00.232784375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:853:_priv_gst_registry_chunks_load_plugin: desc.version='1.14.0'
0:00:00.232796750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:854:_priv_gst_registry_chunks_load_plugin: desc.license='LGPL'
0:00:00.232807625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:855:_priv_gst_registry_chunks_load_plugin: desc.source='gst-plugins-good'
0:00:00.232819125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:856:_priv_gst_registry_chunks_load_plugin: desc.package='GStreamer Good Plug-ins source release'
0:00:00.232830625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:857:_priv_gst_registry_chunks_load_plugin: desc.origin='Unknown package origin'
0:00:00.232841750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:858:_priv_gst_registry_chunks_load_plugin: desc.datetime=2018-03-19
0:00:00.232856500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:466:gst_registry_add_plugin:<registry0> adding plugin 0x3d1c5060 for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgsticydemux.so"
0:00:00.232873500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:479:gst_registry_add_plugin:<registry0> emitting plugin-added for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgsticydemux.so"
0:00:00.232886875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:879:_priv_gst_registry_chunks_load_plugin: Added plugin 'icydemux' plugin with 1 features from binary registry
0:00:00.232900625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'icydemux' feature 'icydemux' typename : 'GstElementFactory'
0:00:00.232929125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb472bde0
0:00:00.232946875 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.232959625 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.232973750 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.232986125 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.232999875 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.233012500 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.233026875 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.233039000 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.233072500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.233085000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb472bf10
0:00:00.233097750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.233109500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb472bf20
0:00:00.233122875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.233150500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d1c3b30 (icydemux)
0:00:00.233168250 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<icydemux> set parent (ref and sink)
0:00:00.233181875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for icydemux
0:00:00.233194500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature icydemux, plugin 0x3d1c5060 icydemux
0:00:00.233208375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrybinary.c:606:priv_gst_registry_binary_read_cache: reading binary registry 364393(58f69)/405909
0:00:00.233221875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:829:_priv_gst_registry_chunks_load_plugin: Reading/casting for GstRegistryChunkPluginElement at address 0xffffb472bf70
0:00:00.233250500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:850:_priv_gst_registry_chunks_load_plugin: read strings for name='bz2'
0:00:00.233264750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:851:_priv_gst_registry_chunks_load_plugin: desc.description='Compress or decompress streams'
0:00:00.233276500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:852:_priv_gst_registry_chunks_load_plugin: filename='/data/halley/gst-sdk/lib/gstreamer-1.0/libgstbz2.so'
0:00:00.233288125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:853:_priv_gst_registry_chunks_load_plugin: desc.version='1.14.0'
0:00:00.233299250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:854:_priv_gst_registry_chunks_load_plugin: desc.license='LGPL'
0:00:00.233310375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:855:_priv_gst_registry_chunks_load_plugin: desc.source='gst-plugins-bad'
0:00:00.233321625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:856:_priv_gst_registry_chunks_load_plugin: desc.package='GStreamer Bad Plug-ins source release'
0:00:00.233333375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:857:_priv_gst_registry_chunks_load_plugin: desc.origin='Unknown package origin'
0:00:00.233344625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:858:_priv_gst_registry_chunks_load_plugin: desc.datetime=2018-03-19
0:00:00.233359125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:466:gst_registry_add_plugin:<registry0> adding plugin 0x3d1c5190 for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstbz2.so"
0:00:00.233376375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:479:gst_registry_add_plugin:<registry0> emitting plugin-added for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstbz2.so"
0:00:00.233389500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:879:_priv_gst_registry_chunks_load_plugin: Added plugin 'bz2' plugin with 2 features from binary registry
0:00:00.233402875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'bz2' feature 'bz2enc' typename : 'GstElementFactory'
0:00:00.233431000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb472c060
0:00:00.233453875 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.233467375 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.233481250 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.233493500 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.233517875 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.233531125 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.233544875 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.233557000 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.233570375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.233582000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb472c130
0:00:00.233594750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.233606500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb472c148
0:00:00.233619625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.233636000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d1c3c10 (bz2enc)
0:00:00.233652625 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<bz2enc> set parent (ref and sink)
0:00:00.233666625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for bz2enc
0:00:00.233679375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature bz2enc, plugin 0x3d1c5190 bz2
0:00:00.233693125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'bz2' feature 'bz2dec' typename : 'GstElementFactory'
0:00:00.233722250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb472c180
0:00:00.233739625 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.233752250 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.233766125 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.233778625 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.233792125 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.233804250 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.233818125 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.233830625 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.233844125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.233856250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb472c258
0:00:00.233869250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.233891375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb472c278
0:00:00.233905375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.233922125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d1c3cf0 (bz2dec)
0:00:00.233939125 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<bz2dec> set parent (ref and sink)
0:00:00.233953000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for bz2dec
0:00:00.233965750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature bz2dec, plugin 0x3d1c5190 bz2
0:00:00.233979500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrybinary.c:606:priv_gst_registry_binary_read_cache: reading binary registry 365192(59288)/405909
0:00:00.233993000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:829:_priv_gst_registry_chunks_load_plugin: Reading/casting for GstRegistryChunkPluginElement at address 0xffffb472c288
0:00:00.234021625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:850:_priv_gst_registry_chunks_load_plugin: read strings for name='ipcpipeline'
0:00:00.234035750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:851:_priv_gst_registry_chunks_load_plugin: desc.description='plugin for inter-process pipeline communication'
0:00:00.234047625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:852:_priv_gst_registry_chunks_load_plugin: filename='/data/halley/gst-sdk/lib/gstreamer-1.0/libgstipcpipeline.so'
0:00:00.234059125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:853:_priv_gst_registry_chunks_load_plugin: desc.version='1.14.0'
0:00:00.234070125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:854:_priv_gst_registry_chunks_load_plugin: desc.license='LGPL'
0:00:00.234081125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:855:_priv_gst_registry_chunks_load_plugin: desc.source='gst-plugins-bad'
0:00:00.234092625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:856:_priv_gst_registry_chunks_load_plugin: desc.package='GStreamer Bad Plug-ins'
0:00:00.234103750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:857:_priv_gst_registry_chunks_load_plugin: desc.origin='Unknown package origin'
0:00:00.234115000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:858:_priv_gst_registry_chunks_load_plugin: desc.datetime=2018-03-19
0:00:00.234129625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:466:gst_registry_add_plugin:<registry0> adding plugin 0x3d1c52c0 for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstipcpipeline.so"
0:00:00.234146750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:479:gst_registry_add_plugin:<registry0> emitting plugin-added for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstipcpipeline.so"
0:00:00.234159750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:879:_priv_gst_registry_chunks_load_plugin: Added plugin 'ipcpipeline' plugin with 3 features from binary registry
0:00:00.234173750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'ipcpipeline' feature 'ipcpipelinesrc' typename : 'GstElementFactory'
0:00:00.234202000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb472c390
0:00:00.234219500 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.234247625 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.234263250 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.234275875 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.234289500 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.234301500 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.234315875 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.234328500 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.234342250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=1
0:00:00.234354625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb472c4a0
0:00:00.234367375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.234383875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d1c3dd0 (ipcpipelinesrc)
0:00:00.234400875 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<ipcpipelinesrc> set parent (ref and sink)
0:00:00.234415000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for ipcpipelinesrc
0:00:00.234427875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature ipcpipelinesrc, plugin 0x3d1c52c0 ipcpipeline
0:00:00.234442125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'ipcpipeline' feature 'ipcpipelinesink' typename : 'GstElementFactory'
0:00:00.234479125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb472c4d8
0:00:00.234497875 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.234510750 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.234525125 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.234537875 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.234551625 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.234563875 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.234578500 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.234591000 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.234604500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=1
0:00:00.234616750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb472c5f0
0:00:00.234641750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.234659500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d1c3eb0 (ipcpipelinesink)
0:00:00.234676625 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<ipcpipelinesink> set parent (ref and sink)
0:00:00.234690625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for ipcpipelinesink
0:00:00.234703250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature ipcpipelinesink, plugin 0x3d1c52c0 ipcpipeline
0:00:00.234717625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'ipcpipeline' feature 'ipcslavepipeline' typename : 'GstElementFactory'
0:00:00.234746500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb472c628
0:00:00.234763875 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.234776500 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.234790625 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.234803000 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.234816625 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.234828750 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.234843000 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.234855250 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.234868875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=0
0:00:00.234881375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:643:gst_registry_chunks_load_feature: Reading 1 Interfaces at address 0xffffb472c73f
0:00:00.234899875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d1c6820 (ipcslavepipeline)
0:00:00.234917375 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<ipcslavepipeline> set parent (ref and sink)
0:00:00.234931500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for ipcslavepipeline
0:00:00.234944375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature ipcslavepipeline, plugin 0x3d1c52c0 ipcpipeline
0:00:00.234958250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrybinary.c:606:priv_gst_registry_binary_read_cache: reading binary registry 366413(5974d)/405909
0:00:00.234971375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:829:_priv_gst_registry_chunks_load_plugin: Reading/casting for GstRegistryChunkPluginElement at address 0xffffb472c750
0:00:00.234999625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:850:_priv_gst_registry_chunks_load_plugin: read strings for name='vcdsrc'
0:00:00.235013750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:851:_priv_gst_registry_chunks_load_plugin: desc.description='Asynchronous read from VCD disk'
0:00:00.235036000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:852:_priv_gst_registry_chunks_load_plugin: filename='/data/halley/gst-sdk/lib/gstreamer-1.0/libgstvcdsrc.so'
0:00:00.235048875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:853:_priv_gst_registry_chunks_load_plugin: desc.version='1.14.0'
0:00:00.235060000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:854:_priv_gst_registry_chunks_load_plugin: desc.license='LGPL'
0:00:00.235070875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:855:_priv_gst_registry_chunks_load_plugin: desc.source='gst-plugins-bad'
0:00:00.235082125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:856:_priv_gst_registry_chunks_load_plugin: desc.package='GStreamer Bad Plug-ins source release'
0:00:00.235093250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:857:_priv_gst_registry_chunks_load_plugin: desc.origin='Unknown package origin'
0:00:00.235104375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:858:_priv_gst_registry_chunks_load_plugin: desc.datetime=2018-03-19
0:00:00.235119000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:466:gst_registry_add_plugin:<registry0> adding plugin 0x3d1c53f0 for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstvcdsrc.so"
0:00:00.235136125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:479:gst_registry_add_plugin:<registry0> emitting plugin-added for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstvcdsrc.so"
0:00:00.235149000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:879:_priv_gst_registry_chunks_load_plugin: Added plugin 'vcdsrc' plugin with 1 features from binary registry
0:00:00.235162500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'vcdsrc' feature 'vcdsrc' typename : 'GstElementFactory'
0:00:00.235190375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb472c848
0:00:00.235207625 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.235220375 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.235234125 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.235247125 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.235260750 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.235272875 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.235286875 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.235299375 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.235312875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=1
0:00:00.235324750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb472c920
0:00:00.235350875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.235364750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:628:gst_registry_chunks_load_feature: Reading 1 UriTypes at address 0xffffb472c930
0:00:00.235378875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:643:gst_registry_chunks_load_feature: Reading 1 Interfaces at address 0xffffb472c938
0:00:00.235407750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d1c6900 (vcdsrc)
0:00:00.235425375 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<vcdsrc> set parent (ref and sink)
0:00:00.235439375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for vcdsrc
0:00:00.235452125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature vcdsrc, plugin 0x3d1c53f0 vcdsrc
0:00:00.235466375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrybinary.c:606:priv_gst_registry_binary_read_cache: reading binary registry 366918(59946)/405909
0:00:00.235479500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:829:_priv_gst_registry_chunks_load_plugin: Reading/casting for GstRegistryChunkPluginElement at address 0xffffb472c948
0:00:00.235508375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:850:_priv_gst_registry_chunks_load_plugin: read strings for name='debugutilsbad'
0:00:00.235522625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:851:_priv_gst_registry_chunks_load_plugin: desc.description='Collection of elements that may or may not be useful for debugging'
0:00:00.235534625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:852:_priv_gst_registry_chunks_load_plugin: filename='/data/halley/gst-sdk/lib/gstreamer-1.0/libgstdebugutilsbad.so'
0:00:00.235546250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:853:_priv_gst_registry_chunks_load_plugin: desc.version='1.14.0'
0:00:00.235557375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:854:_priv_gst_registry_chunks_load_plugin: desc.license='LGPL'
0:00:00.235568375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:855:_priv_gst_registry_chunks_load_plugin: desc.source='gst-plugins-bad'
0:00:00.235579625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:856:_priv_gst_registry_chunks_load_plugin: desc.package='GStreamer Bad Plug-ins source release'
0:00:00.235590875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:857:_priv_gst_registry_chunks_load_plugin: desc.origin='Unknown package origin'
0:00:00.235602000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:858:_priv_gst_registry_chunks_load_plugin: desc.datetime=2018-03-19
0:00:00.235616625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:466:gst_registry_add_plugin:<registry0> adding plugin 0x3d1c5520 for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstdebugutilsbad.so"
0:00:00.235633625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:479:gst_registry_add_plugin:<registry0> emitting plugin-added for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstdebugutilsbad.so"
0:00:00.235646750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:879:_priv_gst_registry_chunks_load_plugin: Added plugin 'debugutilsbad' plugin with 8 features from binary registry
0:00:00.235660500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'debugutilsbad' feature 'checksumsink' typename : 'GstElementFactory'
0:00:00.235688750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb472ca78
0:00:00.235706125 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.235718750 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.235732625 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.235755500 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.235770750 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.235783000 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.235797375 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.235809875 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.235823375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=1
0:00:00.235835750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb472cb50
0:00:00.235848750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.235865875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d1c69e0 (checksumsink)
0:00:00.235883250 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<checksumsink> set parent (ref and sink)
0:00:00.235896875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for checksumsink
0:00:00.235909375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature checksumsink, plugin 0x3d1c5520 debugutilsbad
0:00:00.235923875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'debugutilsbad' feature 'fpsdisplaysink' typename : 'GstElementFactory'
0:00:00.235952750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb472cb88
0:00:00.235970750 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.235983250 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.235997500 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.236010125 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.236023625 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.236035875 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.236050625 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.236063000 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.236076875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=1
0:00:00.236088625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb472ccf0
0:00:00.236101250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.236112750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:643:gst_registry_chunks_load_feature: Reading 1 Interfaces at address 0xffffb472cd01
0:00:00.236141250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d1c6ac0 (fpsdisplaysink)
0:00:00.236159000 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<fpsdisplaysink> set parent (ref and sink)
0:00:00.236172625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for fpsdisplaysink
0:00:00.236185500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature fpsdisplaysink, plugin 0x3d1c5520 debugutilsbad
0:00:00.236199375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'debugutilsbad' feature 'chopmydata' typename : 'GstElementFactory'
0:00:00.236227375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb472cd30
0:00:00.236245000 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.236257750 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.236271375 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.236283625 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.236297000 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.236309125 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.236322625 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.236335125 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.236348500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.236360500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb472cdd8
0:00:00.236373125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.236384750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb472cde8
0:00:00.236397250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.236413125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d1c6ba0 (chopmydata)
0:00:00.236430250 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<chopmydata> set parent (ref and sink)
0:00:00.236444125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for chopmydata
0:00:00.236456875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature chopmydata, plugin 0x3d1c5520 debugutilsbad
0:00:00.236470750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'debugutilsbad' feature 'compare' typename : 'GstElementFactory'
0:00:00.236498625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb472ce18
0:00:00.236526125 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.236539750 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.236553500 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.236566000 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.236579625 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.236592125 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.236606250 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.236618750 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.236632375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=3
0:00:00.236644500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb472cf00
0:00:00.236657250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.236668875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb472cf10
0:00:00.236681250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.236692750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb472cf28
0:00:00.236705750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template check
0:00:00.236722125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d1c6c80 (compare)
0:00:00.236738500 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<compare> set parent (ref and sink)
0:00:00.236752125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for compare
0:00:00.236764875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature compare, plugin 0x3d1c5520 debugutilsbad
0:00:00.236778500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'debugutilsbad' feature 'debugspy' typename : 'GstElementFactory'
0:00:00.236815875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb472cf58
0:00:00.236873250 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.236889125 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.236903250 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.236916000 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.236941125 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.236954625 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.236969250 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.236981625 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.236994750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.237007125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb472d050
0:00:00.237019750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.237031500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb472d060
0:00:00.237059750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.237081750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d1c6d60 (debugspy)
0:00:00.237098875 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<debugspy> set parent (ref and sink)
0:00:00.237113000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for debugspy
0:00:00.237126125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature debugspy, plugin 0x3d1c5520 debugutilsbad
0:00:00.237140750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'debugutilsbad' feature 'watchdog' typename : 'GstElementFactory'
0:00:00.237170375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb472d090
0:00:00.237188125 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.237200875 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.237214625 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.237227125 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.237240875 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.237253375 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.237268000 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.237280500 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.237293750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.237306125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb472d160
0:00:00.237318750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.237341000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb472d170
0:00:00.237354875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.237371500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d1c6e40 (watchdog)
0:00:00.237388250 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<watchdog> set parent (ref and sink)
0:00:00.237402375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for watchdog
0:00:00.237415250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature watchdog, plugin 0x3d1c5520 debugutilsbad
0:00:00.237430625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'debugutilsbad' feature 'errorignore' typename : 'GstElementFactory'
0:00:00.237461250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb472d1a0
0:00:00.237479000 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.237491750 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.237506000 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.237518500 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.237532625 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.237544750 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.237559250 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.237571375 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.237584500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.237597000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb472d2c0
0:00:00.237609625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.237621375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb472d2d0
0:00:00.237633750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.237650000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d1c9050 (errorignore)
0:00:00.237671375 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<errorignore> set parent (ref and sink)
0:00:00.237685875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for errorignore
0:00:00.237698875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature errorignore, plugin 0x3d1c5520 debugutilsbad
0:00:00.237724625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'debugutilsbad' feature 'fakevideosink' typename : 'GstElementFactory'
0:00:00.237757000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb472d308
0:00:00.237774500 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.237787125 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.237801125 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.237813625 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.237827375 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.237839750 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.237854125 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.237866625 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.237880250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=1
0:00:00.237892625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb472d3f8
0:00:00.237913250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.237925500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:643:gst_registry_chunks_load_feature: Reading 1 Interfaces at address 0xffffb472d72a
0:00:00.237944750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d1c9130 (fakevideosink)
0:00:00.237962625 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<fakevideosink> set parent (ref and sink)
0:00:00.237977250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for fakevideosink
0:00:00.237990375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature fakevideosink, plugin 0x3d1c5520 debugutilsbad
0:00:00.238005375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrybinary.c:606:priv_gst_registry_binary_read_cache: reading binary registry 370488(5a738)/405909
0:00:00.238019500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:829:_priv_gst_registry_chunks_load_plugin: Reading/casting for GstRegistryChunkPluginElement at address 0xffffb472d738
0:00:00.238050000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:850:_priv_gst_registry_chunks_load_plugin: read strings for name='audiomixmatrix'
0:00:00.238064625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:851:_priv_gst_registry_chunks_load_plugin: desc.description='Audio matrix mix'
0:00:00.238076500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:852:_priv_gst_registry_chunks_load_plugin: filename='/data/halley/gst-sdk/lib/gstreamer-1.0/libgstaudiomixmatrix.so'
0:00:00.238088500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:853:_priv_gst_registry_chunks_load_plugin: desc.version='1.14.0'
0:00:00.238099750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:854:_priv_gst_registry_chunks_load_plugin: desc.license='LGPL'
0:00:00.238121500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:855:_priv_gst_registry_chunks_load_plugin: desc.source='gst-plugins-bad'
0:00:00.238134250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:856:_priv_gst_registry_chunks_load_plugin: desc.package='GStreamer Bad Plug-ins source release'
0:00:00.238145625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:857:_priv_gst_registry_chunks_load_plugin: desc.origin='Unknown package origin'
0:00:00.238156875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:858:_priv_gst_registry_chunks_load_plugin: desc.datetime=2018-03-19
0:00:00.238172000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:466:gst_registry_add_plugin:<registry0> adding plugin 0x3d1c5650 for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstaudiomixmatrix.so"
0:00:00.238190000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:479:gst_registry_add_plugin:<registry0> emitting plugin-added for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstaudiomixmatrix.so"
0:00:00.238203500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:879:_priv_gst_registry_chunks_load_plugin: Added plugin 'audiomixmatrix' plugin with 1 features from binary registry
0:00:00.238218000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'audiomixmatrix' feature 'audiomixmatrix' typename : 'GstElementFactory'
0:00:00.238247375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb472d838
0:00:00.238265250 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.238277875 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.238291875 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.238304250 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.238318500 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.238330625 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.238346125 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.238359125 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.238373000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.238385625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb472d970
0:00:00.238400125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.238412250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb472d9f8
0:00:00.238425750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.238441875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d1c9210 (audiomixmatrix)
0:00:00.238459375 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<audiomixmatrix> set parent (ref and sink)
0:00:00.238484125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for audiomixmatrix
0:00:00.238497750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature audiomixmatrix, plugin 0x3d1c5650 audiomixmatrix
0:00:00.238512125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrybinary.c:606:priv_gst_registry_binary_read_cache: reading binary registry 371324(5aa7c)/405909
0:00:00.238525375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:829:_priv_gst_registry_chunks_load_plugin: Reading/casting for GstRegistryChunkPluginElement at address 0xffffb472da80
0:00:00.238555125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:850:_priv_gst_registry_chunks_load_plugin: read strings for name='audiofxbad'
0:00:00.238569375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:851:_priv_gst_registry_chunks_load_plugin: desc.description='Audio filters from gst-plugins-bad'
0:00:00.238581750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:852:_priv_gst_registry_chunks_load_plugin: filename='/data/halley/gst-sdk/lib/gstreamer-1.0/libgstaudiofxbad.so'
0:00:00.238593250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:853:_priv_gst_registry_chunks_load_plugin: desc.version='1.14.0'
0:00:00.238604750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:854:_priv_gst_registry_chunks_load_plugin: desc.license='LGPL'
0:00:00.238615750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:855:_priv_gst_registry_chunks_load_plugin: desc.source='gst-plugins-bad'
0:00:00.238627125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:856:_priv_gst_registry_chunks_load_plugin: desc.package='GStreamer Bad Plug-ins'
0:00:00.238638625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:857:_priv_gst_registry_chunks_load_plugin: desc.origin='Unknown package origin'
0:00:00.238650000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:858:_priv_gst_registry_chunks_load_plugin: desc.datetime=2018-03-19
0:00:00.238664875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:466:gst_registry_add_plugin:<registry0> adding plugin 0x3d1c5780 for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstaudiofxbad.so"
0:00:00.238683250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:479:gst_registry_add_plugin:<registry0> emitting plugin-added for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstaudiofxbad.so"
0:00:00.238696500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:879:_priv_gst_registry_chunks_load_plugin: Added plugin 'audiofxbad' plugin with 1 features from binary registry
0:00:00.238711000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'audiofxbad' feature 'audiochannelmix' typename : 'GstElementFactory'
0:00:00.238740250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb472db80
0:00:00.238758000 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.238770750 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.238784875 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.238797500 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.238811125 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.238833875 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.238849500 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.238861750 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.238874750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.238887000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb472dc70
0:00:00.238901250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.238913125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb472dce8
0:00:00.238928625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.238945375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d1c92f0 (audiochannelmix)
0:00:00.238963000 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<audiochannelmix> set parent (ref and sink)
0:00:00.238977000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for audiochannelmix
0:00:00.238989875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature audiochannelmix, plugin 0x3d1c5780 audiofxbad
0:00:00.239004375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrybinary.c:606:priv_gst_registry_binary_read_cache: reading binary registry 372065(5ad61)/405909
0:00:00.239017500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:829:_priv_gst_registry_chunks_load_plugin: Reading/casting for GstRegistryChunkPluginElement at address 0xffffb472dd68
0:00:00.239046625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:850:_priv_gst_registry_chunks_load_plugin: read strings for name='ivfparse'
0:00:00.239061250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:851:_priv_gst_registry_chunks_load_plugin: desc.description='IVF parser'
0:00:00.239072875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:852:_priv_gst_registry_chunks_load_plugin: filename='/data/halley/gst-sdk/lib/gstreamer-1.0/libgstivfparse.so'
0:00:00.239084250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:853:_priv_gst_registry_chunks_load_plugin: desc.version='1.14.0'
0:00:00.239095125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:854:_priv_gst_registry_chunks_load_plugin: desc.license='LGPL'
0:00:00.239105875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:855:_priv_gst_registry_chunks_load_plugin: desc.source='gst-plugins-bad'
0:00:00.239117125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:856:_priv_gst_registry_chunks_load_plugin: desc.package='GStreamer Bad Plug-ins source release'
0:00:00.239128375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:857:_priv_gst_registry_chunks_load_plugin: desc.origin='Unknown package origin'
0:00:00.239139750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:858:_priv_gst_registry_chunks_load_plugin: desc.datetime=2018-03-19
0:00:00.239154250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:466:gst_registry_add_plugin:<registry0> adding plugin 0x3d1c58b0 for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstivfparse.so"
0:00:00.239178500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:479:gst_registry_add_plugin:<registry0> emitting plugin-added for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstivfparse.so"
0:00:00.239202500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:879:_priv_gst_registry_chunks_load_plugin: Added plugin 'ivfparse' plugin with 1 features from binary registry
0:00:00.239218625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'ivfparse' feature 'ivfparse' typename : 'GstElementFactory'
0:00:00.239247125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb472de50
0:00:00.239264750 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.239277250 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.239291250 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.239303875 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.239317750 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.239329875 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.239343750 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.239357000 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.239370125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.239382375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb472df28
0:00:00.239394875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.239406500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb472df38
0:00:00.239419500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.239435375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d1c93d0 (ivfparse)
0:00:00.239453125 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<ivfparse> set parent (ref and sink)
0:00:00.239467625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for ivfparse
0:00:00.239480625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature ivfparse, plugin 0x3d1c58b0 ivfparse
0:00:00.239494625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrybinary.c:606:priv_gst_registry_binary_read_cache: reading binary registry 372561(5af51)/405909
0:00:00.239507625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:829:_priv_gst_registry_chunks_load_plugin: Reading/casting for GstRegistryChunkPluginElement at address 0xffffb472df58
0:00:00.239537125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:850:_priv_gst_registry_chunks_load_plugin: read strings for name='siren'
0:00:00.239551875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:851:_priv_gst_registry_chunks_load_plugin: desc.description='Siren encoder/decoder/payloader/depayloader plugins'
0:00:00.239574250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:852:_priv_gst_registry_chunks_load_plugin: filename='/data/halley/gst-sdk/lib/gstreamer-1.0/libgstsiren.so'
0:00:00.239587250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:853:_priv_gst_registry_chunks_load_plugin: desc.version='1.14.0'
0:00:00.239598750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:854:_priv_gst_registry_chunks_load_plugin: desc.license='LGPL'
0:00:00.239609625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:855:_priv_gst_registry_chunks_load_plugin: desc.source='gst-plugins-bad'
0:00:00.239621000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:856:_priv_gst_registry_chunks_load_plugin: desc.package='GStreamer Bad Plug-ins source release'
0:00:00.239632250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:857:_priv_gst_registry_chunks_load_plugin: desc.origin='Unknown package origin'
0:00:00.239643500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:858:_priv_gst_registry_chunks_load_plugin: desc.datetime=2018-03-19
0:00:00.239658250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:466:gst_registry_add_plugin:<registry0> adding plugin 0x3d1c59e0 for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstsiren.so"
0:00:00.239676125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:479:gst_registry_add_plugin:<registry0> emitting plugin-added for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstsiren.so"
0:00:00.239689500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:879:_priv_gst_registry_chunks_load_plugin: Added plugin 'siren' plugin with 2 features from binary registry
0:00:00.239704375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'siren' feature 'sirendec' typename : 'GstElementFactory'
0:00:00.239741000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb472e060
0:00:00.239759375 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.239772250 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.239786500 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.239799375 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.239813875 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.239826750 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.239841500 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.239854000 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.239867625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.239879750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb472e180
0:00:00.239893750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.239905500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb472e1d0
0:00:00.239929250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.239946875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d1c94b0 (sirendec)
0:00:00.239964500 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<sirendec> set parent (ref and sink)
0:00:00.239979000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for sirendec
0:00:00.239991875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature sirendec, plugin 0x3d1c59e0 siren
0:00:00.240005875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'siren' feature 'sirenenc' typename : 'GstElementFactory'
0:00:00.240034750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb472e220
0:00:00.240052250 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.240064875 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.240078875 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.240091375 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.240105500 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.240118125 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.240132500 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.240145125 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.240158875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.240171000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb472e330
0:00:00.240184000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.240195625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb472e360
0:00:00.240208875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.240220625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:643:gst_registry_chunks_load_feature: Reading 1 Interfaces at address 0xffffb472e3b1
0:00:00.240240625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d1c9590 (sirenenc)
0:00:00.240257750 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<sirenenc> set parent (ref and sink)
0:00:00.240271750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for sirenenc
0:00:00.240284375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature sirenenc, plugin 0x3d1c59e0 siren
0:00:00.240298125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrybinary.c:606:priv_gst_registry_binary_read_cache: reading binary registry 373691(5b3bb)/405909
0:00:00.240322125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:829:_priv_gst_registry_chunks_load_plugin: Reading/casting for GstRegistryChunkPluginElement at address 0xffffb472e3c0
0:00:00.240354250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:850:_priv_gst_registry_chunks_load_plugin: read strings for name='y4menc'
0:00:00.240369000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:851:_priv_gst_registry_chunks_load_plugin: desc.description='Encodes a YUV frame into the yuv4mpeg format (mjpegtools)'
0:00:00.240381000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:852:_priv_gst_registry_chunks_load_plugin: filename='/data/halley/gst-sdk/lib/gstreamer-1.0/libgsty4menc.so'
0:00:00.240392625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:853:_priv_gst_registry_chunks_load_plugin: desc.version='1.14.0'
0:00:00.240403875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:854:_priv_gst_registry_chunks_load_plugin: desc.license='LGPL'
0:00:00.240415000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:855:_priv_gst_registry_chunks_load_plugin: desc.source='gst-plugins-good'
0:00:00.240426500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:856:_priv_gst_registry_chunks_load_plugin: desc.package='GStreamer Good Plug-ins source release'
0:00:00.240438125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:857:_priv_gst_registry_chunks_load_plugin: desc.origin='Unknown package origin'
0:00:00.240449625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:858:_priv_gst_registry_chunks_load_plugin: desc.datetime=2018-03-19
0:00:00.240465000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:466:gst_registry_add_plugin:<registry0> adding plugin 0x3d1c5b10 for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgsty4menc.so"
0:00:00.240483000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:479:gst_registry_add_plugin:<registry0> emitting plugin-added for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgsty4menc.so"
0:00:00.240496250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:879:_priv_gst_registry_chunks_load_plugin: Added plugin 'y4menc' plugin with 1 features from binary registry
0:00:00.240510750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'y4menc' feature 'y4menc' typename : 'GstElementFactory'
0:00:00.240540625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb472e4d0
0:00:00.240558375 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.240571250 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.240585375 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.240598000 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.240611750 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.240623875 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.240638375 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.240650500 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.240664000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.240686500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb472e5e0
0:00:00.240704750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.240717750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb472e618
0:00:00.240732500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.240744375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:643:gst_registry_chunks_load_feature: Reading 1 Interfaces at address 0xffffb472e6ca
0:00:00.240762750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d1c9670 (y4menc)
0:00:00.240781000 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<y4menc> set parent (ref and sink)
0:00:00.240795000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for y4menc
0:00:00.240807750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature y4menc, plugin 0x3d1c5b10 y4menc
0:00:00.240822000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrybinary.c:606:priv_gst_registry_binary_read_cache: reading binary registry 374484(5b6d4)/405909
0:00:00.240835750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:829:_priv_gst_registry_chunks_load_plugin: Reading/casting for GstRegistryChunkPluginElement at address 0xffffb472e6d8
0:00:00.240879125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:850:_priv_gst_registry_chunks_load_plugin: read strings for name='videorate'
0:00:00.240894250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:851:_priv_gst_registry_chunks_load_plugin: desc.description='Adjusts video frames'
0:00:00.240906000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:852:_priv_gst_registry_chunks_load_plugin: filename='/data/halley/gst-sdk/lib/gstreamer-1.0/libgstvideorate.so'
0:00:00.240917625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:853:_priv_gst_registry_chunks_load_plugin: desc.version='1.14.0'
0:00:00.240928750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:854:_priv_gst_registry_chunks_load_plugin: desc.license='LGPL'
0:00:00.240939625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:855:_priv_gst_registry_chunks_load_plugin: desc.source='gst-plugins-base'
0:00:00.240951000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:856:_priv_gst_registry_chunks_load_plugin: desc.package='GStreamer Base Plug-ins source release'
0:00:00.240962750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:857:_priv_gst_registry_chunks_load_plugin: desc.origin='Unknown package origin'
0:00:00.240974375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:858:_priv_gst_registry_chunks_load_plugin: desc.datetime=2018-03-19
0:00:00.240989125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:466:gst_registry_add_plugin:<registry0> adding plugin 0x3d1c5c40 for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstvideorate.so"
0:00:00.241006875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:479:gst_registry_add_plugin:<registry0> emitting plugin-added for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstvideorate.so"
0:00:00.241020250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:879:_priv_gst_registry_chunks_load_plugin: Added plugin 'videorate' plugin with 1 features from binary registry
0:00:00.241074500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'videorate' feature 'videorate' typename : 'GstElementFactory'
0:00:00.241109750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb472e7d0
0:00:00.241127500 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.241140250 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.241154500 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.241167000 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.241180625 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.241192750 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.241207500 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.241220250 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.241233875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.241246250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb472e8e8
0:00:00.241260000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.241271875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb472e940
0:00:00.241285250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.241301625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d1cb810 (videorate)
0:00:00.241319500 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<videorate> set parent (ref and sink)
0:00:00.241333375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for videorate
0:00:00.241346125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature videorate, plugin 0x3d1c5c40 videorate
0:00:00.241359750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrybinary.c:606:priv_gst_registry_binary_read_cache: reading binary registry 375186(5b992)/405909
0:00:00.241373000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:829:_priv_gst_registry_chunks_load_plugin: Reading/casting for GstRegistryChunkPluginElement at address 0xffffb472e998
0:00:00.241403250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:850:_priv_gst_registry_chunks_load_plugin: read strings for name='rawparse'
0:00:00.241417750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:851:_priv_gst_registry_chunks_load_plugin: desc.description='Parses byte streams into raw frames'
0:00:00.241429750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:852:_priv_gst_registry_chunks_load_plugin: filename='/data/halley/gst-sdk/lib/gstreamer-1.0/libgstrawparse.so'
0:00:00.241441250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:853:_priv_gst_registry_chunks_load_plugin: desc.version='1.14.0'
0:00:00.241462875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:854:_priv_gst_registry_chunks_load_plugin: desc.license='LGPL'
0:00:00.241475250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:855:_priv_gst_registry_chunks_load_plugin: desc.source='gst-plugins-base'
0:00:00.241486625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:856:_priv_gst_registry_chunks_load_plugin: desc.package='GStreamer Base Plug-ins source release'
0:00:00.241498250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:857:_priv_gst_registry_chunks_load_plugin: desc.origin='Unknown package origin'
0:00:00.241509500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:858:_priv_gst_registry_chunks_load_plugin: desc.datetime=2018-03-19
0:00:00.241524375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:466:gst_registry_add_plugin:<registry0> adding plugin 0x3d1c5d70 for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstrawparse.so"
0:00:00.241542250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:479:gst_registry_add_plugin:<registry0> emitting plugin-added for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstrawparse.so"
0:00:00.241555750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:879:_priv_gst_registry_chunks_load_plugin: Added plugin 'rawparse' plugin with 4 features from binary registry
0:00:00.241570125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'rawparse' feature 'unalignedaudioparse' typename : 'GstElementFactory'
0:00:00.241600125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb472eaa8
0:00:00.241618125 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.241631000 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.241645000 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.241657750 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.241671750 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.241684250 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.241698750 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.241711375 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.241724875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.241737125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb472eb98
0:00:00.241753875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.241765750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb472ed18
0:00:00.241781875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.241793375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:643:gst_registry_chunks_load_feature: Reading 1 Interfaces at address 0xffffb472ee8a
0:00:00.241823250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d1cb8f0 (unalignedaudioparse)
0:00:00.241842375 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<unalignedaudioparse> set parent (ref and sink)
0:00:00.241857000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for unalignedaudioparse
0:00:00.241870000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature unalignedaudioparse, plugin 0x3d1c5d70 rawparse
0:00:00.241884500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'rawparse' feature 'unalignedvideoparse' typename : 'GstElementFactory'
0:00:00.241914375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb472eec0
0:00:00.241932000 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.241944750 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.241958750 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.241971125 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.241985000 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.241997125 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.242011125 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.242023250 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.242036375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.242048125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb472efb0
0:00:00.242074125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.242087875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb472f2e8
0:00:00.242108500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.242120375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:643:gst_registry_chunks_load_feature: Reading 1 Interfaces at address 0xffffb472f614
0:00:00.242139625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d1cb9d0 (unalignedvideoparse)
0:00:00.242161500 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<unalignedvideoparse> set parent (ref and sink)
0:00:00.242176250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for unalignedvideoparse
0:00:00.242189250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature unalignedvideoparse, plugin 0x3d1c5d70 rawparse
0:00:00.242204125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'rawparse' feature 'rawaudioparse' typename : 'GstElementFactory'
0:00:00.242245125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb472f648
0:00:00.242263250 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.242276125 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.242290125 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.242302750 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.242317000 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.242329250 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.242343875 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.242357000 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.242371250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.242383875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb472f758
0:00:00.242407375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.242419750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb472fad8
0:00:00.242437250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.242455000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d1cbab0 (rawaudioparse)
0:00:00.242472500 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<rawaudioparse> set parent (ref and sink)
0:00:00.242487000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for rawaudioparse
0:00:00.242500125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature rawaudioparse, plugin 0x3d1c5d70 rawparse
0:00:00.242514750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'rawparse' feature 'rawvideoparse' typename : 'GstElementFactory'
0:00:00.242550125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb472fd08
0:00:00.242568625 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.242581375 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.242595000 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.242607375 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.242621250 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.242644000 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.242660250 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.242673125 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.242686875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.242699500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb472fe18
0:00:00.242737000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.242750625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb4730470
0:00:00.242768500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.242785000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d1cbb90 (rawvideoparse)
0:00:00.242802500 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<rawvideoparse> set parent (ref and sink)
0:00:00.242816375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for rawvideoparse
0:00:00.242829375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature rawvideoparse, plugin 0x3d1c5d70 rawparse
0:00:00.242844375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrybinary.c:606:priv_gst_registry_binary_read_cache: reading binary registry 382876(5d79c)/405909
0:00:00.242858000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:829:_priv_gst_registry_chunks_load_plugin: Reading/casting for GstRegistryChunkPluginElement at address 0xffffb47307a0
0:00:00.242888125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:850:_priv_gst_registry_chunks_load_plugin: read strings for name='bluez'
0:00:00.242903250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:851:_priv_gst_registry_chunks_load_plugin: desc.description='Bluez-based bluetooth support'
0:00:00.242915500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:852:_priv_gst_registry_chunks_load_plugin: filename='/data/halley/gst-sdk/lib/gstreamer-1.0/libgstbluez.so'
0:00:00.242927375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:853:_priv_gst_registry_chunks_load_plugin: desc.version='1.14.0'
0:00:00.242938500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:854:_priv_gst_registry_chunks_load_plugin: desc.license='LGPL'
0:00:00.242949500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:855:_priv_gst_registry_chunks_load_plugin: desc.source='gst-plugins-bad'
0:00:00.242960750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:856:_priv_gst_registry_chunks_load_plugin: desc.package='GStreamer Bad Plug-ins source release'
0:00:00.242972000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:857:_priv_gst_registry_chunks_load_plugin: desc.origin='Unknown package origin'
0:00:00.242983375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:858:_priv_gst_registry_chunks_load_plugin: desc.datetime=2018-03-19
0:00:00.242998625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:466:gst_registry_add_plugin:<registry0> adding plugin 0x3d1c5ea0 for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstbluez.so"
0:00:00.243028000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:479:gst_registry_add_plugin:<registry0> emitting plugin-added for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstbluez.so"
0:00:00.243041875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:879:_priv_gst_registry_chunks_load_plugin: Added plugin 'bluez' plugin with 3 features from binary registry
0:00:00.243056250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'bluez' feature 'a2dpsink' typename : 'GstElementFactory'
0:00:00.243085125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb4730898
0:00:00.243102125 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.243115000 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.243129000 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.243141500 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.243155250 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.243167375 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.243181375 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.243194625 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.243208125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=1
0:00:00.243220375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb4730978
0:00:00.243241375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.243255250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:643:gst_registry_chunks_load_feature: Reading 1 Interfaces at address 0xffffb4730a8e
0:00:00.243274000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d1cbc70 (a2dpsink)
0:00:00.243291500 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<a2dpsink> set parent (ref and sink)
0:00:00.243305750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for a2dpsink
0:00:00.243318500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature a2dpsink, plugin 0x3d1c5ea0 bluez
0:00:00.243332750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'bluez' feature 'avdtpsink' typename : 'GstElementFactory'
0:00:00.243361375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb4730ab8
0:00:00.243378625 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.243391375 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.243405375 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.243432625 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.243448000 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.243460250 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.243474375 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.243487625 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.243500875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=1
0:00:00.243513125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb4730b98
0:00:00.243529750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.243546250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d1cbd50 (avdtpsink)
0:00:00.243563750 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<avdtpsink> set parent (ref and sink)
0:00:00.243577875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for avdtpsink
0:00:00.243590875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature avdtpsink, plugin 0x3d1c5ea0 bluez
0:00:00.243604750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'bluez' feature 'avdtpsrc' typename : 'GstElementFactory'
0:00:00.243632875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb4730d10
0:00:00.243650750 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.243663375 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.243677125 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.243689625 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.243703500 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.243715750 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.243729875 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.243742750 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.243756375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=1
0:00:00.243768500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb4730e10
0:00:00.243784250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.243801125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d1cbe30 (avdtpsrc)
0:00:00.243829625 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<avdtpsrc> set parent (ref and sink)
0:00:00.243844875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for avdtpsrc
0:00:00.243858125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature avdtpsrc, plugin 0x3d1c5ea0 bluez
0:00:00.243872000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrybinary.c:606:priv_gst_registry_binary_read_cache: reading binary registry 384881(5df71)/405909
0:00:00.243885250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:829:_priv_gst_registry_chunks_load_plugin: Reading/casting for GstRegistryChunkPluginElement at address 0xffffb4730f78
0:00:00.243914000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:850:_priv_gst_registry_chunks_load_plugin: read strings for name='deinterlace'
0:00:00.243928375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:851:_priv_gst_registry_chunks_load_plugin: desc.description='Deinterlacer'
0:00:00.243940000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:852:_priv_gst_registry_chunks_load_plugin: filename='/data/halley/gst-sdk/lib/gstreamer-1.0/libgstdeinterlace.so'
0:00:00.243951625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:853:_priv_gst_registry_chunks_load_plugin: desc.version='1.14.0'
0:00:00.243962875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:854:_priv_gst_registry_chunks_load_plugin: desc.license='LGPL'
0:00:00.243974125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:855:_priv_gst_registry_chunks_load_plugin: desc.source='gst-plugins-good'
0:00:00.243985750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:856:_priv_gst_registry_chunks_load_plugin: desc.package='GStreamer Good Plug-ins source release'
0:00:00.243997250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:857:_priv_gst_registry_chunks_load_plugin: desc.origin='Unknown package origin'
0:00:00.244008750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:858:_priv_gst_registry_chunks_load_plugin: desc.datetime=2018-03-19
0:00:00.244023625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:466:gst_registry_add_plugin:<registry0> adding plugin 0x3d1cd010 for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstdeinterlace.so"
0:00:00.244041375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:479:gst_registry_add_plugin:<registry0> emitting plugin-added for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstdeinterlace.so"
0:00:00.244054625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:879:_priv_gst_registry_chunks_load_plugin: Added plugin 'deinterlace' plugin with 1 features from binary registry
0:00:00.244069250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'deinterlace' feature 'deinterlace' typename : 'GstElementFactory'
0:00:00.244099125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb4731070
0:00:00.244117250 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.244130125 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.244144125 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.244156750 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.244170875 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.244194250 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.244210375 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.244223000 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.244237375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.244249625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb47311a8
0:00:00.244274375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.244286250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb47315e0
0:00:00.244305875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.244322625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d1cf870 (deinterlace)
0:00:00.244340500 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<deinterlace> set parent (ref and sink)
0:00:00.244354750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for deinterlace
0:00:00.244367750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature deinterlace, plugin 0x3d1cd010 deinterlace
0:00:00.244382625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrybinary.c:606:priv_gst_registry_binary_read_cache: reading binary registry 387606(5ea16)/405909
0:00:00.244396500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:829:_priv_gst_registry_chunks_load_plugin: Reading/casting for GstRegistryChunkPluginElement at address 0xffffb4731a18
0:00:00.244425625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:850:_priv_gst_registry_chunks_load_plugin: read strings for name='videosignal'
0:00:00.244440125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:851:_priv_gst_registry_chunks_load_plugin: desc.description='Various video signal analysers'
0:00:00.244452625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:852:_priv_gst_registry_chunks_load_plugin: filename='/data/halley/gst-sdk/lib/gstreamer-1.0/libgstvideosignal.so'
0:00:00.244464250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:853:_priv_gst_registry_chunks_load_plugin: desc.version='1.14.0'
0:00:00.244475625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:854:_priv_gst_registry_chunks_load_plugin: desc.license='LGPL'
0:00:00.244486750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:855:_priv_gst_registry_chunks_load_plugin: desc.source='gst-plugins-bad'
0:00:00.244498375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:856:_priv_gst_registry_chunks_load_plugin: desc.package='GStreamer Bad Plug-ins source release'
0:00:00.244509500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:857:_priv_gst_registry_chunks_load_plugin: desc.origin='Unknown package origin'
0:00:00.244520625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:858:_priv_gst_registry_chunks_load_plugin: desc.datetime=2018-03-19
0:00:00.244535375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:466:gst_registry_add_plugin:<registry0> adding plugin 0x3d1cd140 for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstvideosignal.so"
0:00:00.244568000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:479:gst_registry_add_plugin:<registry0> emitting plugin-added for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstvideosignal.so"
0:00:00.244582250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:879:_priv_gst_registry_chunks_load_plugin: Added plugin 'videosignal' plugin with 3 features from binary registry
0:00:00.244596875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'videosignal' feature 'videoanalyse' typename : 'GstElementFactory'
0:00:00.244625625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb4731b20
0:00:00.244642750 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.244655875 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.244669875 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.244682375 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.244696125 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.244708375 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.244722000 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.244735125 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.244748875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.244761000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb4731bf0
0:00:00.244775500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.244787625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb4731ca8
0:00:00.244801375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.244818125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d1cf950 (videoanalyse)
0:00:00.244841750 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<videoanalyse> set parent (ref and sink)
0:00:00.244856000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for videoanalyse
0:00:00.244868750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature videoanalyse, plugin 0x3d1cd140 videosignal
0:00:00.244884250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'videosignal' feature 'simplevideomarkdetect' typename : 'GstElementFactory'
0:00:00.244913000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb4731d88
0:00:00.244930375 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.244943000 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.244967625 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.244981250 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.244995250 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.245007375 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.245021500 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.245034500 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.245063625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.245079500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb4731e68
0:00:00.245094750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.245106875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb4731f38
0:00:00.245120875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.245138625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d1cfa30 (simplevideomarkdetect)
0:00:00.245156375 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<simplevideomarkdetect> set parent (ref and sink)
0:00:00.245170875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for simplevideomarkdetect
0:00:00.245184125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature simplevideomarkdetect, plugin 0x3d1cd140 videosignal
0:00:00.245198125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'videosignal' feature 'simplevideomark' typename : 'GstElementFactory'
0:00:00.245230375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb4732028
0:00:00.245248375 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.245261125 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.245274875 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.245287250 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.245301000 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.245313125 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.245327250 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.245340125 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.245353875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.245377500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb4732108
0:00:00.245393125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.245404625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb47321d8
0:00:00.245418500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.245435375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d1cfb10 (simplevideomark)
0:00:00.245452625 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<simplevideomark> set parent (ref and sink)
0:00:00.245466875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for simplevideomark
0:00:00.245479875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature simplevideomark, plugin 0x3d1cd140 videosignal
0:00:00.245494625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrybinary.c:606:priv_gst_registry_binary_read_cache: reading binary registry 389794(5f2a2)/405909
0:00:00.245508750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:829:_priv_gst_registry_chunks_load_plugin: Reading/casting for GstRegistryChunkPluginElement at address 0xffffb47322a8
0:00:00.245539000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:850:_priv_gst_registry_chunks_load_plugin: read strings for name='alaw'
0:00:00.245553375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:851:_priv_gst_registry_chunks_load_plugin: desc.description='ALaw audio conversion routines'
0:00:00.245565250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:852:_priv_gst_registry_chunks_load_plugin: filename='/data/halley/gst-sdk/lib/gstreamer-1.0/libgstalaw.so'
0:00:00.245576875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:853:_priv_gst_registry_chunks_load_plugin: desc.version='1.14.0'
0:00:00.245588000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:854:_priv_gst_registry_chunks_load_plugin: desc.license='LGPL'
0:00:00.245598875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:855:_priv_gst_registry_chunks_load_plugin: desc.source='gst-plugins-good'
0:00:00.245610500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:856:_priv_gst_registry_chunks_load_plugin: desc.package='GStreamer Good Plug-ins source release'
0:00:00.245621750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:857:_priv_gst_registry_chunks_load_plugin: desc.origin='Unknown package origin'
0:00:00.245633250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:858:_priv_gst_registry_chunks_load_plugin: desc.datetime=2018-03-19
0:00:00.245650000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:466:gst_registry_add_plugin:<registry0> adding plugin 0x3d1cd270 for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstalaw.so"
0:00:00.245668125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:479:gst_registry_add_plugin:<registry0> emitting plugin-added for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstalaw.so"
0:00:00.245681500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:879:_priv_gst_registry_chunks_load_plugin: Added plugin 'alaw' plugin with 2 features from binary registry
0:00:00.245696000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'alaw' feature 'alawenc' typename : 'GstElementFactory'
0:00:00.245736250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb47323a0
0:00:00.245754625 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.245767500 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.245781625 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.245794125 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.245807875 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.245820000 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.245834125 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.245847000 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.245860875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.245873500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb47324a0
0:00:00.245887375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.245900625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb47324f0
0:00:00.245915250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.245927625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:643:gst_registry_chunks_load_feature: Reading 1 Interfaces at address 0xffffb473256f
0:00:00.245946750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d1cfbf0 (alawenc)
0:00:00.245964375 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<alawenc> set parent (ref and sink)
0:00:00.245978625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for alawenc
0:00:00.245991625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature alawenc, plugin 0x3d1cd270 alaw
0:00:00.246005875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'alaw' feature 'alawdec' typename : 'GstElementFactory'
0:00:00.246034875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb4732598
0:00:00.246052375 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.246065125 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.246079250 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.246091875 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.246116750 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.246130000 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.246144125 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.246156375 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.246169875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.246181875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb4732698
0:00:00.246202750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.246216750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb4732718
0:00:00.246230000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.246247125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d1cfcd0 (alawdec)
0:00:00.246264875 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<alawdec> set parent (ref and sink)
0:00:00.246279625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for alawdec
0:00:00.246292750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature alawdec, plugin 0x3d1cd270 alaw
0:00:00.246307000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrybinary.c:606:priv_gst_registry_binary_read_cache: reading binary registry 391014(5f766)/405909
0:00:00.246320750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:829:_priv_gst_registry_chunks_load_plugin: Reading/casting for GstRegistryChunkPluginElement at address 0xffffb4732768
0:00:00.246350250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:850:_priv_gst_registry_chunks_load_plugin: read strings for name='segmentclip'
0:00:00.246364875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:851:_priv_gst_registry_chunks_load_plugin: desc.description='Segment clip elements'
0:00:00.246376750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:852:_priv_gst_registry_chunks_load_plugin: filename='/data/halley/gst-sdk/lib/gstreamer-1.0/libgstsegmentclip.so'
0:00:00.246388875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:853:_priv_gst_registry_chunks_load_plugin: desc.version='1.14.0'
0:00:00.246400750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:854:_priv_gst_registry_chunks_load_plugin: desc.license='LGPL'
0:00:00.246412125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:855:_priv_gst_registry_chunks_load_plugin: desc.source='gst-plugins-bad'
0:00:00.246424000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:856:_priv_gst_registry_chunks_load_plugin: desc.package='GStreamer Bad Plug-ins source release'
0:00:00.246435625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:857:_priv_gst_registry_chunks_load_plugin: desc.origin='Unknown package origin'
0:00:00.246447125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:858:_priv_gst_registry_chunks_load_plugin: desc.datetime=2018-03-19
0:00:00.246462000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:466:gst_registry_add_plugin:<registry0> adding plugin 0x3d1cd3a0 for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstsegmentclip.so"
0:00:00.246490750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:479:gst_registry_add_plugin:<registry0> emitting plugin-added for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstsegmentclip.so"
0:00:00.246505125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:879:_priv_gst_registry_chunks_load_plugin: Added plugin 'segmentclip' plugin with 2 features from binary registry
0:00:00.246519625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'segmentclip' feature 'audiosegmentclip' typename : 'GstElementFactory'
0:00:00.246549625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb4732868
0:00:00.246567500 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.246580000 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.246594250 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.246606875 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.246620500 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.246632625 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.246646625 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.246658750 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.246672125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.246684500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb4732978
0:00:00.246702125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.246713625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb4732ac0
0:00:00.246736500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.246755125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d1cfdb0 (audiosegmentclip)
0:00:00.246772250 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<audiosegmentclip> set parent (ref and sink)
0:00:00.246786250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for audiosegmentclip
0:00:00.246799125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature audiosegmentclip, plugin 0x3d1cd3a0 segmentclip
0:00:00.246814375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'segmentclip' feature 'videosegmentclip' typename : 'GstElementFactory'
0:00:00.246844500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb4732c28
0:00:00.246862500 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.246885750 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.246901250 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.246914125 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.246928000 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.246940625 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.246954750 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.246967125 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.246980875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.246993250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb4732d38
0:00:00.247007875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.247020000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb4732d80
0:00:00.247033375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.247051000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d1cfe90 (videosegmentclip)
0:00:00.247069500 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<videosegmentclip> set parent (ref and sink)
0:00:00.247084125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for videosegmentclip
0:00:00.247097125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature videosegmentclip, plugin 0x3d1cd3a0 segmentclip
0:00:00.247112250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrybinary.c:606:priv_gst_registry_binary_read_cache: reading binary registry 392643(5fdc3)/405909
0:00:00.247126500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:829:_priv_gst_registry_chunks_load_plugin: Reading/casting for GstRegistryChunkPluginElement at address 0xffffb4732dc8
0:00:00.247162625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:850:_priv_gst_registry_chunks_load_plugin: read strings for name='waylandsink'
0:00:00.247177625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:851:_priv_gst_registry_chunks_load_plugin: desc.description='Wayland Video Sink'
0:00:00.247189250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:852:_priv_gst_registry_chunks_load_plugin: filename='/data/halley/gst-sdk/lib/gstreamer-1.0/libgstwaylandsink.so'
0:00:00.247201375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:853:_priv_gst_registry_chunks_load_plugin: desc.version='1.14.0'
0:00:00.247212500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:854:_priv_gst_registry_chunks_load_plugin: desc.license='LGPL'
0:00:00.247223625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:855:_priv_gst_registry_chunks_load_plugin: desc.source='gst-plugins-bad'
0:00:00.247235250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:856:_priv_gst_registry_chunks_load_plugin: desc.package='GStreamer Bad Plug-ins source release'
0:00:00.247264500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:857:_priv_gst_registry_chunks_load_plugin: desc.origin='Unknown package origin'
0:00:00.247277500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:858:_priv_gst_registry_chunks_load_plugin: desc.datetime=2018-03-19
0:00:00.247293625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:466:gst_registry_add_plugin:<registry0> adding plugin 0x3d1cd4d0 for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstwaylandsink.so"
0:00:00.247313000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:479:gst_registry_add_plugin:<registry0> emitting plugin-added for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstwaylandsink.so"
0:00:00.247327000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:879:_priv_gst_registry_chunks_load_plugin: Added plugin 'waylandsink' plugin with 1 features from binary registry
0:00:00.247342000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'waylandsink' feature 'waylandsink' typename : 'GstElementFactory'
0:00:00.247376250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb4732ec0
0:00:00.247396000 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.247410500 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.247426750 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.247439875 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.247454500 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.247467125 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.247481625 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.247494500 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.247509375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=1
0:00:00.247521750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb4732fe8
0:00:00.247541750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.247554250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:643:gst_registry_chunks_load_feature: Reading 2 Interfaces at address 0xffffb473324b
0:00:00.247578625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d1d2080 (waylandsink)
0:00:00.247597625 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<waylandsink> set parent (ref and sink)
0:00:00.247612125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for waylandsink
0:00:00.247626250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature waylandsink, plugin 0x3d1cd4d0 waylandsink
0:00:00.247641000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrybinary.c:606:priv_gst_registry_binary_read_cache: reading binary registry 393835(6026b)/405909
0:00:00.247674875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:829:_priv_gst_registry_chunks_load_plugin: Reading/casting for GstRegistryChunkPluginElement at address 0xffffb4733270
0:00:00.247717000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:850:_priv_gst_registry_chunks_load_plugin: read strings for name='video4linux2'
0:00:00.247732125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:851:_priv_gst_registry_chunks_load_plugin: desc.description='elements for Video 4 Linux'
0:00:00.247744250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:852:_priv_gst_registry_chunks_load_plugin: filename='/data/halley/gst-sdk/lib/gstreamer-1.0/libgstvideo4linux2.so'
0:00:00.247756125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:853:_priv_gst_registry_chunks_load_plugin: desc.version='1.14.0'
0:00:00.247767375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:854:_priv_gst_registry_chunks_load_plugin: desc.license='LGPL'
0:00:00.247778500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:855:_priv_gst_registry_chunks_load_plugin: desc.source='gst-plugins-good'
0:00:00.247790000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:856:_priv_gst_registry_chunks_load_plugin: desc.package='GStreamer Good Plug-ins source release'
0:00:00.247801375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:857:_priv_gst_registry_chunks_load_plugin: desc.origin='Unknown package origin'
0:00:00.247812750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:858:_priv_gst_registry_chunks_load_plugin: desc.datetime=2018-03-19
0:00:00.247828375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:466:gst_registry_add_plugin:<registry0> adding plugin 0x3d1cd600 for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstvideo4linux2.so"
0:00:00.247847625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:479:gst_registry_add_plugin:<registry0> emitting plugin-added for filename "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstvideo4linux2.so"
0:00:00.247861500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:879:_priv_gst_registry_chunks_load_plugin: Added plugin 'video4linux2' plugin with 20 features from binary registry
0:00:00.247876125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'video4linux2' feature 'v4l2video8convert' typename : 'GstElementFactory'
0:00:00.247912000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb4733378
0:00:00.247931625 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.247945750 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.247960625 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.247973500 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.247988375 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.248000875 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.248015250 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.248028625 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.248042875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.248072625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb4733478
0:00:00.248090750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.248103625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb4733530
0:00:00.248118125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.248137750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d1d2160 (v4l2video8convert)
0:00:00.248156000 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<v4l2video8convert> set parent (ref and sink)
0:00:00.248170375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for v4l2video8convert
0:00:00.248183875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature v4l2video8convert, plugin 0x3d1cd600 video4linux2
0:00:00.248199500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'video4linux2' feature 'v4l2video9jpegdec' typename : 'GstElementFactory'
0:00:00.248249375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb47335f8
0:00:00.248269500 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.248283000 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.248297250 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.248310000 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.248324125 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.248336625 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.248350875 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.248363750 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.248377750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.248390375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb47336f0
0:00:00.248405875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.248417750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb4733798
0:00:00.248432500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.248450000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d1d2240 (v4l2video9jpegdec)
0:00:00.248468000 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<v4l2video9jpegdec> set parent (ref and sink)
0:00:00.248510875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for v4l2video9jpegdec
0:00:00.248526000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature v4l2video9jpegdec, plugin 0x3d1cd600 video4linux2
0:00:00.248541250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'video4linux2' feature 'v4l2h264enc' typename : 'GstElementFactory'
0:00:00.248572375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb47337d0
0:00:00.248591750 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.248605000 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.248619625 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.248632500 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.248646500 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.248659125 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.248673875 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.248686500 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.248700000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.248712375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb47338b8
0:00:00.248729000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.248741250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb4733910
0:00:00.248757750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.248770125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:643:gst_registry_chunks_load_feature: Reading 1 Interfaces at address 0xffffb473399c
0:00:00.248793750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d1d2320 (v4l2h264enc)
0:00:00.248811000 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<v4l2h264enc> set parent (ref and sink)
0:00:00.248825250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for v4l2h264enc
0:00:00.248838375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature v4l2h264enc, plugin 0x3d1cd600 video4linux2
0:00:00.248852500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'video4linux2' feature 'v4l2vc1dec' typename : 'GstElementFactory'
0:00:00.248882250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb47339c8
0:00:00.248912875 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.248927125 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.248941250 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.248953750 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.248967625 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.248980500 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.248994625 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.249008500 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.249022875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.249035250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb4733ac0
0:00:00.249493125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.249544000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb4733b50
0:00:00.249586750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.249644625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d1d2400 (v4l2vc1dec)
0:00:00.249695875 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<v4l2vc1dec> set parent (ref and sink)
0:00:00.249737375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for v4l2vc1dec
0:00:00.249776375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature v4l2vc1dec, plugin 0x3d1cd600 video4linux2
0:00:00.249818125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'video4linux2' feature 'v4l2vp8dec' typename : 'GstElementFactory'
0:00:00.249915500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb4733ba0
0:00:00.249967250 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.250005875 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.250047750 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.250083125 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.250122500 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.250157375 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.250196250 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.250230750 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.250343875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.250384125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb4733c98
0:00:00.250424875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.250457750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb4733d28
0:00:00.250496000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.250556250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d1d24e0 (v4l2vp8dec)
0:00:00.250607875 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<v4l2vp8dec> set parent (ref and sink)
0:00:00.250648000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for v4l2vp8dec
0:00:00.250683625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature v4l2vp8dec, plugin 0x3d1cd600 video4linux2
0:00:00.250722000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'video4linux2' feature 'v4l2vp6dec' typename : 'GstElementFactory'
0:00:00.250808375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb4733d60
0:00:00.250862000 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.250898375 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.250937750 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.250971500 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.251009000 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.251042500 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.251080000 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.251114500 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.251150750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.251183500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb4733e58
0:00:00.251219875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.251251375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb4733ee8
0:00:00.251287125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.251334250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d1d25c0 (v4l2vp6dec)
0:00:00.251415625 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<v4l2vp6dec> set parent (ref and sink)
0:00:00.251457125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for v4l2vp6dec
0:00:00.251492625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature v4l2vp6dec, plugin 0x3d1cd600 video4linux2
0:00:00.251531375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'video4linux2' feature 'v4l2rvdec' typename : 'GstElementFactory'
0:00:00.251611625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb4733f28
0:00:00.251658125 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.251692500 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.251730625 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.251765250 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.251803000 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.251836000 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.251874125 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.251909750 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.251946625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.251980500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb4734020
0:00:00.252016250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.252047750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb47340b0
0:00:00.252082750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.252128500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d1d26a0 (v4l2rvdec)
0:00:00.252175625 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<v4l2rvdec> set parent (ref and sink)
0:00:00.252213750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for v4l2rvdec
0:00:00.252248250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature v4l2rvdec, plugin 0x3d1cd600 video4linux2
0:00:00.252285750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'video4linux2' feature 'v4l2h265dec' typename : 'GstElementFactory'
0:00:00.252363000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb47340f0
0:00:00.252442000 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.252506625 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.252547625 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.252581750 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.252619125 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.252652000 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.252690375 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.252723500 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.252758875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.252790875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb47341e8
0:00:00.252826625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.252857750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb4734278
0:00:00.252893375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.252938625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d1d5020 (v4l2h265dec)
0:00:00.252984375 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<v4l2h265dec> set parent (ref and sink)
0:00:00.253021250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for v4l2h265dec
0:00:00.253100125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature v4l2h265dec, plugin 0x3d1cd600 video4linux2
0:00:00.253148250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'video4linux2' feature 'v4l2h264dec' typename : 'GstElementFactory'
0:00:00.253233625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb47342f0
0:00:00.253282250 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.253316000 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.253353625 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.253387875 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.253424375 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.253456750 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.253493000 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.253525250 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.253588625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.253623000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb47343e8
0:00:00.253658625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.253689625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb4734478
0:00:00.253724625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.253770000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d1d5100 (v4l2h264dec)
0:00:00.253817000 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<v4l2h264dec> set parent (ref and sink)
0:00:00.253855000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for v4l2h264dec
0:00:00.253890125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature v4l2h264dec, plugin 0x3d1cd600 video4linux2
0:00:00.253930375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'video4linux2' feature 'v4l2h263dec' typename : 'GstElementFactory'
0:00:00.254009125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb47344f0
0:00:00.254056000 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.254090000 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.254128375 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.254163250 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.254201125 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.254233875 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.254271000 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.254304125 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.254339875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.254373250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb47345e8
0:00:00.254442250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.254479875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb4734678
0:00:00.254515375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.254559875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d1d51e0 (v4l2h263dec)
0:00:00.254635250 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<v4l2h263dec> set parent (ref and sink)
0:00:00.254674875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for v4l2h263dec
0:00:00.254709375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature v4l2h263dec, plugin 0x3d1cd600 video4linux2
0:00:00.254747000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'video4linux2' feature 'v4l2spkdec' typename : 'GstElementFactory'
0:00:00.254826250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb47346c8
0:00:00.254872250 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.254906250 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.254945750 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.254979750 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.255015750 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.255048000 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.255084125 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.255116500 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.255151500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.255183375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb47347c0
0:00:00.255218875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.255250000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb4734850
0:00:00.255285625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.255328750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d1d52c0 (v4l2spkdec)
0:00:00.255376625 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<v4l2spkdec> set parent (ref and sink)
0:00:00.255413750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for v4l2spkdec
0:00:00.255447750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature v4l2spkdec, plugin 0x3d1cd600 video4linux2
0:00:00.255487125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'video4linux2' feature 'v4l2divxdec' typename : 'GstElementFactory'
0:00:00.255564750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb47348a8
0:00:00.255611000 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.255670500 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.255710875 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.255744000 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.255780000 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.255812375 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.255849000 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.255881750 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.255916875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.255949250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb47349a0
0:00:00.255985000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.256015875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb4734a30
0:00:00.256066500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.256115125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d1d53a0 (v4l2divxdec)
0:00:00.256160375 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<v4l2divxdec> set parent (ref and sink)
0:00:00.256197375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for v4l2divxdec
0:00:00.256231750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature v4l2divxdec, plugin 0x3d1cd600 video4linux2
0:00:00.256270625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'video4linux2' feature 'v4l2avsdec' typename : 'GstElementFactory'
0:00:00.256349875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb4734a80
0:00:00.256396000 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.256429500 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.256466250 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.256499250 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.256536250 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.256568750 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.256606375 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.256639125 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.256701500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.256736250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb4734b78
0:00:00.256772125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.256802750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb4734c08
0:00:00.256836875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.256880500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d1d5480 (v4l2avsdec)
0:00:00.256928500 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<v4l2avsdec> set parent (ref and sink)
0:00:00.256966125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for v4l2avsdec
0:00:00.257000125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature v4l2avsdec, plugin 0x3d1cd600 video4linux2
0:00:00.257039625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'video4linux2' feature 'v4l2mpeg2dec' typename : 'GstElementFactory'
0:00:00.257161750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb4734c48
0:00:00.257208000 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.257241750 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.257278875 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.257311875 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.257347750 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.257380250 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.257417625 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.257452000 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.257488750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.257522250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb4734d40
0:00:00.257558125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.257589125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb4734dd0
0:00:00.257623750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.257667875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d1d5560 (v4l2mpeg2dec)
0:00:00.257742125 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<v4l2mpeg2dec> set parent (ref and sink)
0:00:00.257781500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for v4l2mpeg2dec
0:00:00.257816375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature v4l2mpeg2dec, plugin 0x3d1cd600 video4linux2
0:00:00.257855500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'video4linux2' feature 'v4l2mpeg4dec' typename : 'GstElementFactory'
0:00:00.257932250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb4734e20
0:00:00.257977625 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.258011375 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.258048250 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.258082000 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.258117875 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.258149875 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.258187500 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.258221875 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.258258375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.258291125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb4734f18
0:00:00.258327125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.258359375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb4734fa8
0:00:00.258395250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.258440625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d1d5640 (v4l2mpeg4dec)
0:00:00.258486375 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<v4l2mpeg4dec> set parent (ref and sink)
0:00:00.258524500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for v4l2mpeg4dec
0:00:00.258559125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature v4l2mpeg4dec, plugin 0x3d1cd600 video4linux2
0:00:00.258597125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'video4linux2' feature 'v4l2jpegdec' typename : 'GstElementFactory'
0:00:00.258710875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb4735010
0:00:00.258758375 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.258818875 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.258859500 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.258892625 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.258930375 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.258963000 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.259000125 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.259032750 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.259067750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=2
0:00:00.259101250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb4735108
0:00:00.259136500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.259167750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb4735198
0:00:00.259202250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.259246750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d1da000 (v4l2jpegdec)
0:00:00.259292375 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<v4l2jpegdec> set parent (ref and sink)
0:00:00.259329875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for v4l2jpegdec
0:00:00.259364625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature v4l2jpegdec, plugin 0x3d1cd600 video4linux2
0:00:00.259402625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'video4linux2' feature 'v4l2deviceprovider' typename : 'GstDeviceProviderFactory'
0:00:00.259511125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:686:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkPluginFeature at address 0xffffb47351e0
0:00:00.259559750 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.259593625 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.259631625 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.259665000 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.259702875 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.259735125 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.259773750 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.259806750 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.259883000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d1db000 (v4l2deviceprovider)
0:00:00.259931375 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<v4l2deviceprovider> set parent (ref and sink)
0:00:00.259969625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for v4l2deviceprovider
0:00:00.260004000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature v4l2deviceprovider, plugin 0x3d1cd600 video4linux2
0:00:00.260042125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'video4linux2' feature 'v4l2radio' typename : 'GstElementFactory'
0:00:00.260120625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb4735308
0:00:00.260166500 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.260200625 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.260237750 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.260270875 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.260306625 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.260339250 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.260376375 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.260409500 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.260445000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=0
0:00:00.260477500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:628:gst_registry_chunks_load_feature: Reading 1 UriTypes at address 0xffffb47353ec
0:00:00.260513125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:643:gst_registry_chunks_load_feature: Reading 2 Interfaces at address 0xffffb47353fa
0:00:00.260565000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d1da0e0 (v4l2radio)
0:00:00.260609625 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<v4l2radio> set parent (ref and sink)
0:00:00.260645750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for v4l2radio
0:00:00.260679125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature v4l2radio, plugin 0x3d1cd600 video4linux2
0:00:00.260715500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'video4linux2' feature 'v4l2sink' typename : 'GstElementFactory'
0:00:00.260791375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb4735430
0:00:00.260836875 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.260870125 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.260933875 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.260970000 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.261006000 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.261038375 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.261836250 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.261857125 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.261877875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=1
0:00:00.261896375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb4735518
0:00:00.261933000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template sink
0:00:00.261951000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:643:gst_registry_chunks_load_feature: Reading 3 Interfaces at address 0xffffb4735a63
0:00:00.261983375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d1da1c0 (v4l2sink)
0:00:00.262009125 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<v4l2sink> set parent (ref and sink)
0:00:00.262030500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for v4l2sink
0:00:00.262050375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature v4l2sink, plugin 0x3d1cd600 video4linux2
0:00:00.262071375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:572:gst_registry_chunks_load_feature: Plugin 'video4linux2' feature 'v4l2src' typename : 'GstElementFactory'
0:00:00.262117625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:599:gst_registry_chunks_load_feature: Reading/casting for GstRegistryChunkElementFactory at address 0xffffb4735ab0
0:00:00.262144875 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'long-name'
0:00:00.262164125 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.262185125 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'klass'
0:00:00.262203875 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.262224250 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'description'
0:00:00.262242500 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.262263875 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'author'
0:00:00.262282875 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.262304000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:615:gst_registry_chunks_load_feature: Element factory : npadtemplates=1
0:00:00.262322750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:515:gst_registry_chunks_load_pad_template: Reading/casting for GstRegistryChunkPadTemplate at address 0xffffb4735bd0
0:00:00.262373375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:528:gst_registry_chunks_load_pad_template: Added pad_template src
0:00:00.262392875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:628:gst_registry_chunks_load_feature: Reading 1 UriTypes at address 0xffffb473611a
0:00:00.262423000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:643:gst_registry_chunks_load_feature: Reading 4 Interfaces at address 0xffffb4736129
0:00:00.262452625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:582:gst_registry_add_feature:<registry0> adding feature 0x3d1da2a0 (v4l2src)
0:00:00.262478125 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<v4l2src> set parent (ref and sink)
0:00:00.262498750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:600:gst_registry_add_feature:<registry0> emitting feature-added for v4l2src
0:00:00.262517875 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:730:gst_registry_chunks_load_feature: Added feature v4l2src, plugin 0x3d1cd600 video4linux2
0:00:00.262542625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:775:gst_registry_chunks_load_plugin_dep:<plugin148> Unpacking GstRegistryChunkDep from 0xffffb4736168
0:00:00.262567250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistrychunks.c:793:gst_registry_chunks_load_plugin_dep:<plugin148> Loaded external plugin dependency from registry: env_hash: 00000000, stat_hash: 000015c8
0:00:00.262592375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:797:gst_registry_chunks_load_plugin_dep:<plugin148> path: /dev
0:00:00.262613500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:797:gst_registry_chunks_load_plugin_dep:<plugin148> path: /dev/v4l2
0:00:00.262634125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistrychunks.c:799:gst_registry_chunks_load_plugin_dep:<plugin148> name: video
0:00:00.262669250 8744 0x3d0a0600 INFO GST_REGISTRY gstregistrybinary.c:621:priv_gst_registry_binary_read_cache: loaded /root/.cache/gstreamer-1.0/registry.aarch64.bin in 0.253411 seconds
0:00:00.262875000 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:1755:ensure_current_registry: Updating registry cache
0:00:00.262897375 8744 0x3d0a0600 INFO GST_REGISTRY gstregistry.c:1583:scan_and_update_registry: Validating plugins from registry cache: /root/.cache/gstreamer-1.0/registry.aarch64.bin
0:00:00.262918500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:1593:scan_and_update_registry: scanning paths added via --gst-plugin-path
0:00:00.262935250 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:1609:scan_and_update_registry: GST_PLUGIN_PATH set to /data/halley/gst-sdk/lib/gstreamer-1.0
0:00:00.262961750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:1367:gst_registry_scan_path_internal:<registry0> scanning path /data/halley/gst-sdk/lib/gstreamer-1.0
0:00:00.263278250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1287:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstrtp.so looks like a possible module
0:00:00.263317000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1325:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstrtp.so cached
0:00:00.263341250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1328:gst_registry_scan_path_level:<registry0> marking plugin 0x3d0c5190 as registered as /data/halley/gst-sdk/lib/gstreamer-1.0/libgstrtp.so
0:00:00.263384375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1287:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstogg.so looks like a possible module
0:00:00.263412375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1325:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstogg.so cached
0:00:00.263455125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1328:gst_registry_scan_path_level:<registry0> marking plugin 0x3d0c52c0 as registered as /data/halley/gst-sdk/lib/gstreamer-1.0/libgstogg.so
0:00:00.263495375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1287:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstfieldanalysis.so looks like a possible module
0:00:00.263523125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1325:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstfieldanalysis.so cached
0:00:00.263546250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1328:gst_registry_scan_path_level:<registry0> marking plugin 0x3d0c53f0 as registered as /data/halley/gst-sdk/lib/gstreamer-1.0/libgstfieldanalysis.so
0:00:00.263583625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1287:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstinterleave.so looks like a possible module
0:00:00.263610625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1325:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstinterleave.so cached
0:00:00.263633000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1328:gst_registry_scan_path_level:<registry0> marking plugin 0x3d0c5520 as registered as /data/halley/gst-sdk/lib/gstreamer-1.0/libgstinterleave.so
0:00:00.263670375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1287:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstaudioresample.so looks like a possible module
0:00:00.263697250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1325:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstaudioresample.so cached
0:00:00.263719750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1328:gst_registry_scan_path_level:<registry0> marking plugin 0x3d0c5650 as registered as /data/halley/gst-sdk/lib/gstreamer-1.0/libgstaudioresample.so
0:00:00.263756750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1287:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstyadif.so looks like a possible module
0:00:00.263782875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1325:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstyadif.so cached
0:00:00.263805250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1328:gst_registry_scan_path_level:<registry0> marking plugin 0x3d0c5780 as registered as /data/halley/gst-sdk/lib/gstreamer-1.0/libgstyadif.so
0:00:00.263842250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1287:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstflxdec.so looks like a possible module
0:00:00.263869375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1325:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstflxdec.so cached
0:00:00.263891875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1328:gst_registry_scan_path_level:<registry0> marking plugin 0x3d0c58b0 as registered as /data/halley/gst-sdk/lib/gstreamer-1.0/libgstflxdec.so
0:00:00.263929125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1287:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstsmpte.so looks like a possible module
0:00:00.263955750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1325:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstsmpte.so cached
0:00:00.263978500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1328:gst_registry_scan_path_level:<registry0> marking plugin 0x3d0c59e0 as registered as /data/halley/gst-sdk/lib/gstreamer-1.0/libgstsmpte.so
0:00:00.264031750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1287:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstalsa.so looks like a possible module
0:00:00.264060000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1325:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstalsa.so cached
0:00:00.264083250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1328:gst_registry_scan_path_level:<registry0> marking plugin 0x3d0c5b10 as registered as /data/halley/gst-sdk/lib/gstreamer-1.0/libgstalsa.so
0:00:00.264120625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1287:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstequalizer.so looks like a possible module
0:00:00.264147625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1325:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstequalizer.so cached
0:00:00.264169875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1328:gst_registry_scan_path_level:<registry0> marking plugin 0x3d0c5c40 as registered as /data/halley/gst-sdk/lib/gstreamer-1.0/libgstequalizer.so
0:00:00.264206500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1287:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstmultipart.so looks like a possible module
0:00:00.264233125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1325:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstmultipart.so cached
0:00:00.264255250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1328:gst_registry_scan_path_level:<registry0> marking plugin 0x3d0c5d70 as registered as /data/halley/gst-sdk/lib/gstreamer-1.0/libgstmultipart.so
0:00:00.264292750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1287:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstjp2kdecimator.so looks like a possible module
0:00:00.264319625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1325:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstjp2kdecimator.so cached
0:00:00.264341875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1328:gst_registry_scan_path_level:<registry0> marking plugin 0x3d0c5ea0 as registered as /data/halley/gst-sdk/lib/gstreamer-1.0/libgstjp2kdecimator.so
0:00:00.264378500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1287:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstvideomixer.so looks like a possible module
0:00:00.264405750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1325:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstvideomixer.so cached
0:00:00.264427750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1328:gst_registry_scan_path_level:<registry0> marking plugin 0x3d106010 as registered as /data/halley/gst-sdk/lib/gstreamer-1.0/libgstvideomixer.so
0:00:00.264463875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1287:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstavi.so looks like a possible module
0:00:00.264490250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1325:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstavi.so cached
0:00:00.264512375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1328:gst_registry_scan_path_level:<registry0> marking plugin 0x3d106140 as registered as /data/halley/gst-sdk/lib/gstreamer-1.0/libgstavi.so
0:00:00.264548250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1287:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstencoding.so looks like a possible module
0:00:00.264591375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1325:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstencoding.so cached
0:00:00.264614500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1328:gst_registry_scan_path_level:<registry0> marking plugin 0x3d106270 as registered as /data/halley/gst-sdk/lib/gstreamer-1.0/libgstencoding.so
0:00:00.264659375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1287:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstaccurip.so looks like a possible module
0:00:00.264685750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1325:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstaccurip.so cached
0:00:00.264708000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1328:gst_registry_scan_path_level:<registry0> marking plugin 0x3d1063a0 as registered as /data/halley/gst-sdk/lib/gstreamer-1.0/libgstaccurip.so
0:00:00.264744875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1287:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstaudiolatency.so looks like a possible module
0:00:00.264771625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1325:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstaudiolatency.so cached
0:00:00.264793750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1328:gst_registry_scan_path_level:<registry0> marking plugin 0x3d1064d0 as registered as /data/halley/gst-sdk/lib/gstreamer-1.0/libgstaudiolatency.so
0:00:00.264830250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1287:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstcompositor.so looks like a possible module
0:00:00.264857375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1325:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstcompositor.so cached
0:00:00.264879250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1328:gst_registry_scan_path_level:<registry0> marking plugin 0x3d106600 as registered as /data/halley/gst-sdk/lib/gstreamer-1.0/libgstcompositor.so
0:00:00.264915375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1287:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstadpcmdec.so looks like a possible module
0:00:00.264942375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1325:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstadpcmdec.so cached
0:00:00.264964375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1328:gst_registry_scan_path_level:<registry0> marking plugin 0x3d106730 as registered as /data/halley/gst-sdk/lib/gstreamer-1.0/libgstadpcmdec.so
0:00:00.265000875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1287:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstvideobox.so looks like a possible module
0:00:00.265027500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1325:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstvideobox.so cached
0:00:00.265080750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1328:gst_registry_scan_path_level:<registry0> marking plugin 0x3d106860 as registered as /data/halley/gst-sdk/lib/gstreamer-1.0/libgstvideobox.so
0:00:00.265123250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1287:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstgio.so looks like a possible module
0:00:00.265151375 8744 0x3d0a0600 LOG GST_PLUGIN_LOADING gstplugin.c:1712:gst_plugin_ext_dep_get_stat_hash:<plugin21> start
0:00:00.265172750 8744 0x3d0a0600 LOG GST_PLUGIN_LOADING gstplugin.c:1550:gst_plugin_ext_dep_extract_env_vars_paths:<plugin21> Extracted 0 paths from environment
0:00:00.265235625 8744 0x3d0a0600 LOG GST_PLUGIN_LOADING gstplugin.c:1745:gst_plugin_ext_dep_get_stat_hash:<plugin21> path: '/usr/lib/gio/modules'
0:00:00.270594375 8744 0x3d0a0600 LOG GST_PLUGIN_LOADING gstplugin.c:1687:gst_plugin_ext_dep_scan_path_with_filenames:<plugin21> stat: /usr/lib/gio/modules (error: No such file or directory)
0:00:00.270639375 8744 0x3d0a0600 LOG GST_PLUGIN_LOADING gstplugin.c:1760:gst_plugin_ext_dep_get_stat_hash:<plugin21> done, scan_hash: ffffffff
0:00:00.270664000 8744 0x3d0a0600 LOG GST_PLUGIN_LOADING gstplugin.c:1712:gst_plugin_ext_dep_get_stat_hash:<plugin21> start
0:00:00.270683875 8744 0x3d0a0600 LOG GST_PLUGIN_LOADING gstplugin.c:1550:gst_plugin_ext_dep_extract_env_vars_paths:<plugin21> Extracted 0 paths from environment
0:00:00.270708375 8744 0x3d0a0600 LOG GST_PLUGIN_LOADING gstplugin.c:1745:gst_plugin_ext_dep_get_stat_hash:<plugin21> path: '/usr/share/gvfs/mounts'
0:00:00.270756750 8744 0x3d0a0600 LOG GST_PLUGIN_LOADING gstplugin.c:1687:gst_plugin_ext_dep_scan_path_with_filenames:<plugin21> stat: /usr/share/gvfs/mounts (error: No such file or directory)
0:00:00.270785875 8744 0x3d0a0600 LOG GST_PLUGIN_LOADING gstplugin.c:1760:gst_plugin_ext_dep_get_stat_hash:<plugin21> done, scan_hash: ffffffff
0:00:00.270809875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1325:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstgio.so cached
0:00:00.270833750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1328:gst_registry_scan_path_level:<registry0> marking plugin 0x3d106990 as registered as /data/halley/gst-sdk/lib/gstreamer-1.0/libgstgio.so
0:00:00.270882875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1287:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstsmooth.so looks like a possible module
0:00:00.270912125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1325:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstsmooth.so cached
0:00:00.270935375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1328:gst_registry_scan_path_level:<registry0> marking plugin 0x3d106ac0 as registered as /data/halley/gst-sdk/lib/gstreamer-1.0/libgstsmooth.so
0:00:00.270975250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1287:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstjpegformat.so looks like a possible module
0:00:00.271003000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1325:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstjpegformat.so cached
0:00:00.271026000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1328:gst_registry_scan_path_level:<registry0> marking plugin 0x3d106bf0 as registered as /data/halley/gst-sdk/lib/gstreamer-1.0/libgstjpegformat.so
0:00:00.271065875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1287:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstaudiobuffersplit.so looks like a possible module
0:00:00.271094250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1325:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstaudiobuffersplit.so cached
0:00:00.271117250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1328:gst_registry_scan_path_level:<registry0> marking plugin 0x3d106d20 as registered as /data/halley/gst-sdk/lib/gstreamer-1.0/libgstaudiobuffersplit.so
0:00:00.271166125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1287:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstbayer.so looks like a possible module
0:00:00.271193250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1325:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstbayer.so cached
0:00:00.271241625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1328:gst_registry_scan_path_level:<registry0> marking plugin 0x3d106e50 as registered as /data/halley/gst-sdk/lib/gstreamer-1.0/libgstbayer.so
0:00:00.271290875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1287:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstdvdspu.so looks like a possible module
0:00:00.271318500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1325:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstdvdspu.so cached
0:00:00.271341125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1328:gst_registry_scan_path_level:<registry0> marking plugin 0x3d115020 as registered as /data/halley/gst-sdk/lib/gstreamer-1.0/libgstdvdspu.so
0:00:00.271379375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1287:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstsubparse.so looks like a possible module
0:00:00.271407250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1325:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstsubparse.so cached
0:00:00.271430250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1328:gst_registry_scan_path_level:<registry0> marking plugin 0x3d115150 as registered as /data/halley/gst-sdk/lib/gstreamer-1.0/libgstsubparse.so
0:00:00.271468250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1287:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstshm.so looks like a possible module
0:00:00.271494500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1325:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstshm.so cached
0:00:00.271516625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1328:gst_registry_scan_path_level:<registry0> marking plugin 0x3d115280 as registered as /data/halley/gst-sdk/lib/gstreamer-1.0/libgstshm.so
0:00:00.271554750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1287:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstcoloreffects.so looks like a possible module
0:00:00.271581500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1325:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstcoloreffects.so cached
0:00:00.271604250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1328:gst_registry_scan_path_level:<registry0> marking plugin 0x3d1153b0 as registered as /data/halley/gst-sdk/lib/gstreamer-1.0/libgstcoloreffects.so
0:00:00.271642000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1287:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstpcapparse.so looks like a possible module
0:00:00.271668375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1325:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstpcapparse.so cached
0:00:00.271691000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1328:gst_registry_scan_path_level:<registry0> marking plugin 0x3d1154e0 as registered as /data/halley/gst-sdk/lib/gstreamer-1.0/libgstpcapparse.so
0:00:00.271728875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1287:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstsdpelem.so looks like a possible module
0:00:00.271755625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1325:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstsdpelem.so cached
0:00:00.271778000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1328:gst_registry_scan_path_level:<registry0> marking plugin 0x3d115610 as registered as /data/halley/gst-sdk/lib/gstreamer-1.0/libgstsdpelem.so
0:00:00.271831875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1287:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstmulaw.so looks like a possible module
0:00:00.271859250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1325:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstmulaw.so cached
0:00:00.271882000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1328:gst_registry_scan_path_level:<registry0> marking plugin 0x3d115740 as registered as /data/halley/gst-sdk/lib/gstreamer-1.0/libgstmulaw.so
0:00:00.271920500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1287:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstimxcompositor.so looks like a possible module
0:00:00.271947750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1325:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstimxcompositor.so cached
0:00:00.271970000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1328:gst_registry_scan_path_level:<registry0> marking plugin 0x3d115870 as registered as /data/halley/gst-sdk/lib/gstreamer-1.0/libgstimxcompositor.so
0:00:00.272007500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1287:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstimagefreeze.so looks like a possible module
0:00:00.272034375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1325:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstimagefreeze.so cached
0:00:00.272056500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1328:gst_registry_scan_path_level:<registry0> marking plugin 0x3d1159a0 as registered as /data/halley/gst-sdk/lib/gstreamer-1.0/libgstimagefreeze.so
0:00:00.272094750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1287:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstossaudio.so looks like a possible module
0:00:00.272121125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1325:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstossaudio.so cached
0:00:00.272143500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1328:gst_registry_scan_path_level:<registry0> marking plugin 0x3d115ad0 as registered as /data/halley/gst-sdk/lib/gstreamer-1.0/libgstossaudio.so
0:00:00.272181375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1287:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstmpegtsdemux.so looks like a possible module
0:00:00.272207500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1325:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstmpegtsdemux.so cached
0:00:00.272230000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1328:gst_registry_scan_path_level:<registry0> marking plugin 0x3d115c00 as registered as /data/halley/gst-sdk/lib/gstreamer-1.0/libgstmpegtsdemux.so
0:00:00.272267625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1287:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstid3tag.so looks like a possible module
0:00:00.272293750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1325:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstid3tag.so cached
0:00:00.272316000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1328:gst_registry_scan_path_level:<registry0> marking plugin 0x3d115d30 as registered as /data/halley/gst-sdk/lib/gstreamer-1.0/libgstid3tag.so
0:00:00.272352500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1287:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstvideocrop.so looks like a possible module
0:00:00.272401875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1325:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstvideocrop.so cached
0:00:00.272425500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1328:gst_registry_scan_path_level:<registry0> marking plugin 0x3d115e60 as registered as /data/halley/gst-sdk/lib/gstreamer-1.0/libgstvideocrop.so
0:00:00.272464125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1287:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstfreeverb.so looks like a possible module
0:00:00.272490625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1325:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstfreeverb.so cached
0:00:00.272513000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1328:gst_registry_scan_path_level:<registry0> marking plugin 0x3d11e040 as registered as /data/halley/gst-sdk/lib/gstreamer-1.0/libgstfreeverb.so
0:00:00.272551125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1287:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgsty4mdec.so looks like a possible module
0:00:00.272577750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1325:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgsty4mdec.so cached
0:00:00.272599875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1328:gst_registry_scan_path_level:<registry0> marking plugin 0x3d11e170 as registered as /data/halley/gst-sdk/lib/gstreamer-1.0/libgsty4mdec.so
0:00:00.272637875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1287:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstnavigationtest.so looks like a possible module
0:00:00.272664750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1325:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstnavigationtest.so cached
0:00:00.272687000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1328:gst_registry_scan_path_level:<registry0> marking plugin 0x3d11e2a0 as registered as /data/halley/gst-sdk/lib/gstreamer-1.0/libgstnavigationtest.so
0:00:00.272724750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1287:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstadpcmenc.so looks like a possible module
0:00:00.272751125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1325:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstadpcmenc.so cached
0:00:00.272773125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1328:gst_registry_scan_path_level:<registry0> marking plugin 0x3d11e3d0 as registered as /data/halley/gst-sdk/lib/gstreamer-1.0/libgstadpcmenc.so
0:00:00.272811125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1287:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstvideoparsersbad.so looks like a possible module
0:00:00.272837500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1325:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstvideoparsersbad.so cached
0:00:00.272860000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1328:gst_registry_scan_path_level:<registry0> marking plugin 0x3d11e500 as registered as /data/halley/gst-sdk/lib/gstreamer-1.0/libgstvideoparsersbad.so
0:00:00.272897250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1287:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstvideofilter.so looks like a possible module
0:00:00.272923750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1325:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstvideofilter.so cached
0:00:00.272962125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1328:gst_registry_scan_path_level:<registry0> marking plugin 0x3d11e630 as registered as /data/halley/gst-sdk/lib/gstreamer-1.0/libgstvideofilter.so
0:00:00.273001375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1287:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstpbtypes.so looks like a possible module
0:00:00.273028000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1325:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstpbtypes.so cached
0:00:00.273199000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1328:gst_registry_scan_path_level:<registry0> marking plugin 0x3d11e760 as registered as /data/halley/gst-sdk/lib/gstreamer-1.0/libgstpbtypes.so
0:00:00.273348375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1287:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstvideoframe_audiolevel.so looks like a possible module
0:00:00.273414250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1325:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstvideoframe_audiolevel.so cached
0:00:00.273466750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1328:gst_registry_scan_path_level:<registry0> marking plugin 0x3d11e890 as registered as /data/halley/gst-sdk/lib/gstreamer-1.0/libgstvideoframe_audiolevel.so
0:00:00.273557750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1287:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstmpegtsmux.so looks like a possible module
0:00:00.273616375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1325:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstmpegtsmux.so cached
0:00:00.273668000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1328:gst_registry_scan_path_level:<registry0> marking plugin 0x3d11e9c0 as registered as /data/halley/gst-sdk/lib/gstreamer-1.0/libgstmpegtsmux.so
0:00:00.273767250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1287:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstsmoothstreaming.so looks like a possible module
0:00:00.273824375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1325:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstsmoothstreaming.so cached
0:00:00.273874750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1328:gst_registry_scan_path_level:<registry0> marking plugin 0x3d11eaf0 as registered as /data/halley/gst-sdk/lib/gstreamer-1.0/libgstsmoothstreaming.so
0:00:00.273961750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1287:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstautoconvert.so looks like a possible module
0:00:00.274019125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1325:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstautoconvert.so cached
0:00:00.274071000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1328:gst_registry_scan_path_level:<registry0> marking plugin 0x3d11ec20 as registered as /data/halley/gst-sdk/lib/gstreamer-1.0/libgstautoconvert.so
0:00:00.274157125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1287:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstautodetect.so looks like a possible module
0:00:00.274214000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1325:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstautodetect.so cached
0:00:00.274264625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1328:gst_registry_scan_path_level:<registry0> marking plugin 0x3d11ed50 as registered as /data/halley/gst-sdk/lib/gstreamer-1.0/libgstautodetect.so
0:00:00.274404000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1287:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstfestival.so looks like a possible module
0:00:00.274461750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1325:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstfestival.so cached
0:00:00.274512875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1328:gst_registry_scan_path_level:<registry0> marking plugin 0x3d11ee80 as registered as /data/halley/gst-sdk/lib/gstreamer-1.0/libgstfestival.so
0:00:00.274598625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1287:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstmidi.so looks like a possible module
0:00:00.274655125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1325:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstmidi.so cached
0:00:00.274705875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1328:gst_registry_scan_path_level:<registry0> marking plugin 0x3d132020 as registered as /data/halley/gst-sdk/lib/gstreamer-1.0/libgstmidi.so
0:00:00.274791125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1287:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstfaceoverlay.so looks like a possible module
0:00:00.274849000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1325:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstfaceoverlay.so cached
0:00:00.274900625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1328:gst_registry_scan_path_level:<registry0> marking plugin 0x3d132150 as registered as /data/halley/gst-sdk/lib/gstreamer-1.0/libgstfaceoverlay.so
0:00:00.274986250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1287:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstpng.so looks like a possible module
0:00:00.275043375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1325:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstpng.so cached
0:00:00.275094125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1328:gst_registry_scan_path_level:<registry0> marking plugin 0x3d132280 as registered as /data/halley/gst-sdk/lib/gstreamer-1.0/libgstpng.so
0:00:00.275176375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1287:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstrtponvif.so looks like a possible module
0:00:00.275234875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1325:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstrtponvif.so cached
0:00:00.275285750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1328:gst_registry_scan_path_level:<registry0> marking plugin 0x3d1323b0 as registered as /data/halley/gst-sdk/lib/gstreamer-1.0/libgstrtponvif.so
0:00:00.275370750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1287:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstkms.so looks like a possible module
0:00:00.275426875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1325:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstkms.so cached
0:00:00.275477250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1328:gst_registry_scan_path_level:<registry0> marking plugin 0x3d1324e0 as registered as /data/halley/gst-sdk/lib/gstreamer-1.0/libgstkms.so
0:00:00.275562125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1287:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgsttypefindfunctions.so looks like a possible module
0:00:00.275651125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1325:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgsttypefindfunctions.so cached
0:00:00.275703375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1328:gst_registry_scan_path_level:<registry0> marking plugin 0x3d132610 as registered as /data/halley/gst-sdk/lib/gstreamer-1.0/libgsttypefindfunctions.so
0:00:00.275792125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1287:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstdtmf.so looks like a possible module
0:00:00.275849125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1325:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstdtmf.so cached
0:00:00.275899250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1328:gst_registry_scan_path_level:<registry0> marking plugin 0x3d132740 as registered as /data/halley/gst-sdk/lib/gstreamer-1.0/libgstdtmf.so
0:00:00.275983125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1287:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstdebug.so looks like a possible module
0:00:00.276039750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1325:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstdebug.so cached
0:00:00.276090875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1328:gst_registry_scan_path_level:<registry0> marking plugin 0x3d132870 as registered as /data/halley/gst-sdk/lib/gstreamer-1.0/libgstdebug.so
0:00:00.276175125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1287:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstgoom2k1.so looks like a possible module
0:00:00.276232000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1325:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstgoom2k1.so cached
0:00:00.276283250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1328:gst_registry_scan_path_level:<registry0> marking plugin 0x3d1329a0 as registered as /data/halley/gst-sdk/lib/gstreamer-1.0/libgstgoom2k1.so
0:00:00.276366500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1287:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstwavenc.so looks like a possible module
0:00:00.276422750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1325:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstwavenc.so cached
0:00:00.276473125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1328:gst_registry_scan_path_level:<registry0> marking plugin 0x3d132ad0 as registered as /data/halley/gst-sdk/lib/gstreamer-1.0/libgstwavenc.so
0:00:00.276556625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1287:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstgoom.so looks like a possible module
0:00:00.276613625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1325:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstgoom.so cached
0:00:00.276664750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1328:gst_registry_scan_path_level:<registry0> marking plugin 0x3d132c00 as registered as /data/halley/gst-sdk/lib/gstreamer-1.0/libgstgoom.so
0:00:00.276752000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1287:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstivtc.so looks like a possible module
0:00:00.276809125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1325:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstivtc.so cached
0:00:00.276892000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1328:gst_registry_scan_path_level:<registry0> marking plugin 0x3d132d30 as registered as /data/halley/gst-sdk/lib/gstreamer-1.0/libgstivtc.so
0:00:00.276979500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1287:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstaudiorate.so looks like a possible module
0:00:00.277037125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1325:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstaudiorate.so cached
0:00:00.277162500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1328:gst_registry_scan_path_level:<registry0> marking plugin 0x3d132e60 as registered as /data/halley/gst-sdk/lib/gstreamer-1.0/libgstaudiorate.so
0:00:00.277253000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1287:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstlegacyrawparse.so looks like a possible module
0:00:00.277311875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1325:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstlegacyrawparse.so cached
0:00:00.277363500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1328:gst_registry_scan_path_level:<registry0> marking plugin 0x3d160050 as registered as /data/halley/gst-sdk/lib/gstreamer-1.0/libgstlegacyrawparse.so
0:00:00.277450125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1287:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgsteffectv.so looks like a possible module
0:00:00.277506750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1325:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgsteffectv.so cached
0:00:00.277557375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1328:gst_registry_scan_path_level:<registry0> marking plugin 0x3d160180 as registered as /data/halley/gst-sdk/lib/gstreamer-1.0/libgsteffectv.so
0:00:00.277643625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1287:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstvideoscale.so looks like a possible module
0:00:00.277774875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1325:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstvideoscale.so cached
0:00:00.277809000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1328:gst_registry_scan_path_level:<registry0> marking plugin 0x3d1602b0 as registered as /data/halley/gst-sdk/lib/gstreamer-1.0/libgstvideoscale.so
0:00:00.277866750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1287:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstalphacolor.so looks like a possible module
0:00:00.277904750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1325:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstalphacolor.so cached
0:00:00.277939125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1328:gst_registry_scan_path_level:<registry0> marking plugin 0x3d1603e0 as registered as /data/halley/gst-sdk/lib/gstreamer-1.0/libgstalphacolor.so
0:00:00.277996750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1287:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstvideo4linux2.so looks like a possible module
0:00:00.278036875 8744 0x3d0a0600 LOG GST_PLUGIN_LOADING gstplugin.c:1712:gst_plugin_ext_dep_get_stat_hash:<plugin148> start
0:00:00.278066750 8744 0x3d0a0600 LOG GST_PLUGIN_LOADING gstplugin.c:1550:gst_plugin_ext_dep_extract_env_vars_paths:<plugin148> Extracted 0 paths from environment
0:00:00.278124750 8744 0x3d0a0600 LOG GST_PLUGIN_LOADING gstplugin.c:1745:gst_plugin_ext_dep_get_stat_hash:<plugin148> path: '/dev'
0:00:00.278159500 8744 0x3d0a0600 LOG GST_PLUGIN_LOADING gstplugin.c:1745:gst_plugin_ext_dep_get_stat_hash:<plugin148> path: '/dev/v4l2'
0:00:00.278446875 8744 0x3d0a0600 LOG GST_PLUGIN_LOADING gstplugin.c:1589:gst_plugin_ext_dep_direntry_matches: usb-ffs does not match video, flags=0x0008
0:00:00.278486750 8744 0x3d0a0600 LOG GST_PLUGIN_LOADING gstplugin.c:1589:gst_plugin_ext_dep_direntry_matches: properties.watch does not match video, flags=0x0008
0:00:00.278522625 8744 0x3d0a0600 LOG GST_PLUGIN_LOADING gstplugin.c:1589:gst_plugin_ext_dep_direntry_matches: __loglevel__ does not match video, flags=0x0008
0:00:00.278557625 8744 0x3d0a0600 LOG GST_PLUGIN_LOADING gstplugin.c:1589:gst_plugin_ext_dep_direntry_matches: rtc does not match video, flags=0x0008
0:00:00.278590875 8744 0x3d0a0600 LOG GST_PLUGIN_LOADING gstplugin.c:1589:gst_plugin_ext_dep_direntry_matches: galcore does not match video, flags=0x0008
0:00:00.278623625 8744 0x3d0a0600 LOG GST_PLUGIN_LOADING gstplugin.c:1589:gst_plugin_ext_dep_direntry_matches: v4l does not match video, flags=0x0008
0:00:00.278656000 8744 0x3d0a0600 LOG GST_PLUGIN_LOADING gstplugin.c:1589:gst_plugin_ext_dep_direntry_matches: disk does not match video, flags=0x0008
0:00:00.278688875 8744 0x3d0a0600 LOG GST_PLUGIN_LOADING gstplugin.c:1589:gst_plugin_ext_dep_direntry_matches: block does not match video, flags=0x0008
0:00:00.278721375 8744 0x3d0a0600 LOG GST_PLUGIN_LOADING gstplugin.c:1589:gst_plugin_ext_dep_direntry_matches: char does not match video, flags=0x0008
0:00:00.278754000 8744 0x3d0a0600 LOG GST_PLUGIN_LOADING gstplugin.c:1589:gst_plugin_ext_dep_direntry_matches: initctl does not match video, flags=0x0008
0:00:00.278786500 8744 0x3d0a0600 LOG GST_PLUGIN_LOADING gstplugin.c:1589:gst_plugin_ext_dep_direntry_matches: socket does not match video, flags=0x0008
0:00:00.278819000 8744 0x3d0a0600 LOG GST_PLUGIN_LOADING gstplugin.c:1589:gst_plugin_ext_dep_direntry_matches: stderr does not match video, flags=0x0008
0:00:00.278851500 8744 0x3d0a0600 LOG GST_PLUGIN_LOADING gstplugin.c:1589:gst_plugin_ext_dep_direntry_matches: stdout does not match video, flags=0x0008
0:00:00.278883875 8744 0x3d0a0600 LOG GST_PLUGIN_LOADING gstplugin.c:1589:gst_plugin_ext_dep_direntry_matches: stdin does not match video, flags=0x0008
0:00:00.278916625 8744 0x3d0a0600 LOG GST_PLUGIN_LOADING gstplugin.c:1589:gst_plugin_ext_dep_direntry_matches: fd does not match video, flags=0x0008
0:00:00.278949375 8744 0x3d0a0600 LOG GST_PLUGIN_LOADING gstplugin.c:1589:gst_plugin_ext_dep_direntry_matches: pts does not match video, flags=0x0008
0:00:00.278982000 8744 0x3d0a0600 LOG GST_PLUGIN_LOADING gstplugin.c:1589:gst_plugin_ext_dep_direntry_matches: shm does not match video, flags=0x0008
0:00:00.279014250 8744 0x3d0a0600 LOG GST_PLUGIN_LOADING gstplugin.c:1589:gst_plugin_ext_dep_direntry_matches: ubi_ctrl does not match video, flags=0x0008
0:00:00.279046750 8744 0x3d0a0600 LOG GST_PLUGIN_LOADING gstplugin.c:1589:gst_plugin_ext_dep_direntry_matches: bus does not match video, flags=0x0008
0:00:00.279079250 8744 0x3d0a0600 LOG GST_PLUGIN_LOADING gstplugin.c:1589:gst_plugin_ext_dep_direntry_matches: memory_bandwidth does not match video, flags=0x0008
0:00:00.279112875 8744 0x3d0a0600 LOG GST_PLUGIN_LOADING gstplugin.c:1589:gst_plugin_ext_dep_direntry_matches: network_throughput does not match video, flags=0x0008
0:00:00.279146750 8744 0x3d0a0600 LOG GST_PLUGIN_LOADING gstplugin.c:1589:gst_plugin_ext_dep_direntry_matches: network_latency does not match video, flags=0x0008
0:00:00.279180500 8744 0x3d0a0600 LOG GST_PLUGIN_LOADING gstplugin.c:1589:gst_plugin_ext_dep_direntry_matches: cpu_dma_latency does not match video, flags=0x0008
0:00:00.279234500 8744 0x3d0a0600 LOG GST_PLUGIN_LOADING gstplugin.c:1589:gst_plugin_ext_dep_direntry_matches: mxc_hifi4 does not match video, flags=0x0008
0:00:00.279269625 8744 0x3d0a0600 LOG GST_PLUGIN_LOADING gstplugin.c:1589:gst_plugin_ext_dep_direntry_matches: mxc_asrc does not match video, flags=0x0008
0:00:00.279302875 8744 0x3d0a0600 LOG GST_PLUGIN_LOADING gstplugin.c:1589:gst_plugin_ext_dep_direntry_matches: snd does not match video, flags=0x0008
0:00:00.279335625 8744 0x3d0a0600 LOG GST_PLUGIN_LOADING gstplugin.c:1589:gst_plugin_ext_dep_direntry_matches: iio:device0 does not match video, flags=0x0008
0:00:00.279368250 8744 0x3d0a0600 LOG GST_PLUGIN_LOADING gstplugin.c:1589:gst_plugin_ext_dep_direntry_matches: mmcblk1p3 does not match video, flags=0x0008
0:00:00.279401250 8744 0x3d0a0600 LOG GST_PLUGIN_LOADING gstplugin.c:1589:gst_plugin_ext_dep_direntry_matches: mmcblk1p2 does not match video, flags=0x0008
0:00:00.279434500 8744 0x3d0a0600 LOG GST_PLUGIN_LOADING gstplugin.c:1589:gst_plugin_ext_dep_direntry_matches: mmcblk1p1 does not match video, flags=0x0008
0:00:00.279467625 8744 0x3d0a0600 LOG GST_PLUGIN_LOADING gstplugin.c:1589:gst_plugin_ext_dep_direntry_matches: mmcblk1 does not match video, flags=0x0008
0:00:00.279519000 8744 0x3d0a0600 LOG GST_PLUGIN_LOADING gstplugin.c:1637:gst_plugin_ext_dep_scan_dir_and_match_names:<plugin148> stat: /dev/video13 (result: 429)
0:00:00.279569875 8744 0x3d0a0600 LOG GST_PLUGIN_LOADING gstplugin.c:1637:gst_plugin_ext_dep_scan_dir_and_match_names:<plugin148> stat: /dev/video12 (result: 429)
0:00:00.279603125 8744 0x3d0a0600 LOG GST_PLUGIN_LOADING gstplugin.c:1589:gst_plugin_ext_dep_direntry_matches: mxc_sim does not match video, flags=0x0008
0:00:00.279636500 8744 0x3d0a0600 LOG GST_PLUGIN_LOADING gstplugin.c:1589:gst_plugin_ext_dep_direntry_matches: mmcblk0boot0 does not match video, flags=0x0008
0:00:00.279670125 8744 0x3d0a0600 LOG GST_PLUGIN_LOADING gstplugin.c:1589:gst_plugin_ext_dep_direntry_matches: mmcblk0boot1 does not match video, flags=0x0008
0:00:00.279703625 8744 0x3d0a0600 LOG GST_PLUGIN_LOADING gstplugin.c:1589:gst_plugin_ext_dep_direntry_matches: mmcblk0rpmb does not match video, flags=0x0008
0:00:00.279736750 8744 0x3d0a0600 LOG GST_PLUGIN_LOADING gstplugin.c:1589:gst_plugin_ext_dep_direntry_matches: mmcblk0 does not match video, flags=0x0008
0:00:00.279769250 8744 0x3d0a0600 LOG GST_PLUGIN_LOADING gstplugin.c:1589:gst_plugin_ext_dep_direntry_matches: isoc does not match video, flags=0x0008
0:00:00.279801375 8744 0x3d0a0600 LOG GST_PLUGIN_LOADING gstplugin.c:1589:gst_plugin_ext_dep_direntry_matches: async does not match video, flags=0x0008
0:00:00.279833500 8744 0x3d0a0600 LOG GST_PLUGIN_LOADING gstplugin.c:1589:gst_plugin_ext_dep_direntry_matches: ctrl does not match video, flags=0x0008
0:00:00.279865875 8744 0x3d0a0600 LOG GST_PLUGIN_LOADING gstplugin.c:1589:gst_plugin_ext_dep_direntry_matches: sync does not match video, flags=0x0008
0:00:00.279898125 8744 0x3d0a0600 LOG GST_PLUGIN_LOADING gstplugin.c:1589:gst_plugin_ext_dep_direntry_matches: vhci does not match video, flags=0x0008
0:00:00.279930625 8744 0x3d0a0600 LOG GST_PLUGIN_LOADING gstplugin.c:1589:gst_plugin_ext_dep_direntry_matches: mapper does not match video, flags=0x0008
0:00:00.279962750 8744 0x3d0a0600 LOG GST_PLUGIN_LOADING gstplugin.c:1589:gst_plugin_ext_dep_direntry_matches: watchdog0 does not match video, flags=0x0008
0:00:00.279995875 8744 0x3d0a0600 LOG GST_PLUGIN_LOADING gstplugin.c:1589:gst_plugin_ext_dep_direntry_matches: watchdog does not match video, flags=0x0008
0:00:00.280045500 8744 0x3d0a0600 LOG GST_PLUGIN_LOADING gstplugin.c:1637:gst_plugin_ext_dep_scan_dir_and_match_names:<plugin148> stat: /dev/video10 (result: 429)
0:00:00.280095750 8744 0x3d0a0600 LOG GST_PLUGIN_LOADING gstplugin.c:1637:gst_plugin_ext_dep_scan_dir_and_match_names:<plugin148> stat: /dev/video9 (result: 429)
0:00:00.280200500 8744 0x3d0a0600 LOG GST_PLUGIN_LOADING gstplugin.c:1637:gst_plugin_ext_dep_scan_dir_and_match_names:<plugin148> stat: /dev/video8 (result: 429)
0:00:00.280251500 8744 0x3d0a0600 LOG GST_PLUGIN_LOADING gstplugin.c:1637:gst_plugin_ext_dep_scan_dir_and_match_names:<plugin148> stat: /dev/video7 (result: 429)
0:00:00.280301625 8744 0x3d0a0600 LOG GST_PLUGIN_LOADING gstplugin.c:1637:gst_plugin_ext_dep_scan_dir_and_match_names:<plugin148> stat: /dev/video6 (result: 429)
0:00:00.280351500 8744 0x3d0a0600 LOG GST_PLUGIN_LOADING gstplugin.c:1637:gst_plugin_ext_dep_scan_dir_and_match_names:<plugin148> stat: /dev/video5 (result: 429)
0:00:00.280401625 8744 0x3d0a0600 LOG GST_PLUGIN_LOADING gstplugin.c:1637:gst_plugin_ext_dep_scan_dir_and_match_names:<plugin148> stat: /dev/video4 (result: 429)
0:00:00.280451125 8744 0x3d0a0600 LOG GST_PLUGIN_LOADING gstplugin.c:1637:gst_plugin_ext_dep_scan_dir_and_match_names:<plugin148> stat: /dev/video3 (result: 429)
0:00:00.280500875 8744 0x3d0a0600 LOG GST_PLUGIN_LOADING gstplugin.c:1637:gst_plugin_ext_dep_scan_dir_and_match_names:<plugin148> stat: /dev/video2 (result: 429)
0:00:00.280549875 8744 0x3d0a0600 LOG GST_PLUGIN_LOADING gstplugin.c:1637:gst_plugin_ext_dep_scan_dir_and_match_names:<plugin148> stat: /dev/video1 (result: 429)
0:00:00.280598500 8744 0x3d0a0600 LOG GST_PLUGIN_LOADING gstplugin.c:1637:gst_plugin_ext_dep_scan_dir_and_match_names:<plugin148> stat: /dev/video0 (result: 429)
0:00:00.280670875 8744 0x3d0a0600 LOG GST_PLUGIN_LOADING gstplugin.c:1589:gst_plugin_ext_dep_direntry_matches: i2c-8 does not match video, flags=0x0008
0:00:00.280706125 8744 0x3d0a0600 LOG GST_PLUGIN_LOADING gstplugin.c:1589:gst_plugin_ext_dep_direntry_matches: i2c-7 does not match video, flags=0x0008
0:00:00.280740000 8744 0x3d0a0600 LOG GST_PLUGIN_LOADING gstplugin.c:1589:gst_plugin_ext_dep_direntry_matches: i2c-6 does not match video, flags=0x0008
0:00:00.280773250 8744 0x3d0a0600 LOG GST_PLUGIN_LOADING gstplugin.c:1589:gst_plugin_ext_dep_direntry_matches: i2c-5 does not match video, flags=0x0008
0:00:00.280805750 8744 0x3d0a0600 LOG GST_PLUGIN_LOADING gstplugin.c:1589:gst_plugin_ext_dep_direntry_matches: i2c-4 does not match video, flags=0x0008
0:00:00.280838500 8744 0x3d0a0600 LOG GST_PLUGIN_LOADING gstplugin.c:1589:gst_plugin_ext_dep_direntry_matches: i2c-3 does not match video, flags=0x0008
0:00:00.280870750 8744 0x3d0a0600 LOG GST_PLUGIN_LOADING gstplugin.c:1589:gst_plugin_ext_dep_direntry_matches: i2c-2 does not match video, flags=0x0008
0:00:00.280903250 8744 0x3d0a0600 LOG GST_PLUGIN_LOADING gstplugin.c:1589:gst_plugin_ext_dep_direntry_matches: i2c-1 does not match video, flags=0x0008
0:00:00.280935750 8744 0x3d0a0600 LOG GST_PLUGIN_LOADING gstplugin.c:1589:gst_plugin_ext_dep_direntry_matches: i2c-0 does not match video, flags=0x0008
0:00:00.280968500 8744 0x3d0a0600 LOG GST_PLUGIN_LOADING gstplugin.c:1589:gst_plugin_ext_dep_direntry_matches: rtc0 does not match video, flags=0x0008
0:00:00.281000750 8744 0x3d0a0600 LOG GST_PLUGIN_LOADING gstplugin.c:1589:gst_plugin_ext_dep_direntry_matches: input does not match video, flags=0x0008
0:00:00.281032875 8744 0x3d0a0600 LOG GST_PLUGIN_LOADING gstplugin.c:1589:gst_plugin_ext_dep_direntry_matches: pps0 does not match video, flags=0x0008
0:00:00.281102875 8744 0x3d0a0600 LOG GST_PLUGIN_LOADING gstplugin.c:1589:gst_plugin_ext_dep_direntry_matches: ptp0 does not match video, flags=0x0008
0:00:00.281136750 8744 0x3d0a0600 LOG GST_PLUGIN_LOADING gstplugin.c:1589:gst_plugin_ext_dep_direntry_matches: net does not match video, flags=0x0008
0:00:00.281169375 8744 0x3d0a0600 LOG GST_PLUGIN_LOADING gstplugin.c:1589:gst_plugin_ext_dep_direntry_matches: mtdblock0 does not match video, flags=0x0008
0:00:00.281223375 8744 0x3d0a0600 LOG GST_PLUGIN_LOADING gstplugin.c:1589:gst_plugin_ext_dep_direntry_matches: mtd0ro does not match video, flags=0x0008
0:00:00.281257500 8744 0x3d0a0600 LOG GST_PLUGIN_LOADING gstplugin.c:1589:gst_plugin_ext_dep_direntry_matches: mtd0 does not match video, flags=0x0008
0:00:00.281290125 8744 0x3d0a0600 LOG GST_PLUGIN_LOADING gstplugin.c:1589:gst_plugin_ext_dep_direntry_matches: FreescaleGyroscope does not match video, flags=0x0008
0:00:00.281323875 8744 0x3d0a0600 LOG GST_PLUGIN_LOADING gstplugin.c:1589:gst_plugin_ext_dep_direntry_matches: FreescaleMagnetometer does not match video, flags=0x0008
0:00:00.281357000 8744 0x3d0a0600 LOG GST_PLUGIN_LOADING gstplugin.c:1589:gst_plugin_ext_dep_direntry_matches: FreescaleAccelerometer does not match video, flags=0x0008
0:00:00.281391000 8744 0x3d0a0600 LOG GST_PLUGIN_LOADING gstplugin.c:1589:gst_plugin_ext_dep_direntry_matches: loop7 does not match video, flags=0x0008
0:00:00.281424750 8744 0x3d0a0600 LOG GST_PLUGIN_LOADING gstplugin.c:1589:gst_plugin_ext_dep_direntry_matches: loop6 does not match video, flags=0x0008
0:00:00.281457625 8744 0x3d0a0600 LOG GST_PLUGIN_LOADING gstplugin.c:1589:gst_plugin_ext_dep_direntry_matches: loop5 does not match video, flags=0x0008
0:00:00.281490125 8744 0x3d0a0600 LOG GST_PLUGIN_LOADING gstplugin.c:1589:gst_plugin_ext_dep_direntry_matches: loop4 does not match video, flags=0x0008
0:00:00.281522375 8744 0x3d0a0600 LOG GST_PLUGIN_LOADING gstplugin.c:1589:gst_plugin_ext_dep_direntry_matches: loop3 does not match video, flags=0x0008
0:00:00.281555000 8744 0x3d0a0600 LOG GST_PLUGIN_LOADING gstplugin.c:1589:gst_plugin_ext_dep_direntry_matches: loop2 does not match video, flags=0x0008
0:00:00.281587375 8744 0x3d0a0600 LOG GST_PLUGIN_LOADING gstplugin.c:1589:gst_plugin_ext_dep_direntry_matches: loop1 does not match video, flags=0x0008
0:00:00.281619750 8744 0x3d0a0600 LOG GST_PLUGIN_LOADING gstplugin.c:1589:gst_plugin_ext_dep_direntry_matches: loop0 does not match video, flags=0x0008
0:00:00.281652000 8744 0x3d0a0600 LOG GST_PLUGIN_LOADING gstplugin.c:1589:gst_plugin_ext_dep_direntry_matches: loop-control does not match video, flags=0x0008
0:00:00.281684500 8744 0x3d0a0600 LOG GST_PLUGIN_LOADING gstplugin.c:1589:gst_plugin_ext_dep_direntry_matches: dri does not match video, flags=0x0008
0:00:00.281717000 8744 0x3d0a0600 LOG GST_PLUGIN_LOADING gstplugin.c:1589:gst_plugin_ext_dep_direntry_matches: fb0 does not match video, flags=0x0008
0:00:00.281749500 8744 0x3d0a0600 LOG GST_PLUGIN_LOADING gstplugin.c:1589:gst_plugin_ext_dep_direntry_matches: hwrng does not match video, flags=0x0008
0:00:00.281782500 8744 0x3d0a0600 LOG GST_PLUGIN_LOADING gstplugin.c:1589:gst_plugin_ext_dep_direntry_matches: ttyLP3 does not match video, flags=0x0008
0:00:00.281815250 8744 0x3d0a0600 LOG GST_PLUGIN_LOADING gstplugin.c:1589:gst_plugin_ext_dep_direntry_matches: ttyLP1 does not match video, flags=0x0008
0:00:00.281848000 8744 0x3d0a0600 LOG GST_PLUGIN_LOADING gstplugin.c:1589:gst_plugin_ext_dep_direntry_matches: ttyLP0 does not match video, flags=0x0008
0:00:00.281880875 8744 0x3d0a0600 LOG GST_PLUGIN_LOADING gstplugin.c:1589:gst_plugin_ext_dep_direntry_matches: ttyS3 does not match video, flags=0x0008
0:00:00.281913250 8744 0x3d0a0600 LOG GST_PLUGIN_LOADING gstplugin.c:1589:gst_plugin_ext_dep_direntry_matches: ttyS2 does not match video, flags=0x0008
0:00:00.281945625 8744 0x3d0a0600 LOG GST_PLUGIN_LOADING gstplugin.c:1589:gst_plugin_ext_dep_direntry_matches: ttyS1 does not match video, flags=0x0008
0:00:00.281977875 8744 0x3d0a0600 LOG GST_PLUGIN_LOADING gstplugin.c:1589:gst_plugin_ext_dep_direntry_matches: ttyS0 does not match video, flags=0x0008
0:00:00.282010125 8744 0x3d0a0600 LOG GST_PLUGIN_LOADING gstplugin.c:1589:gst_plugin_ext_dep_direntry_matches: ptmx does not match video, flags=0x0008
0:00:00.282062375 8744 0x3d0a0600 LOG GST_PLUGIN_LOADING gstplugin.c:1589:gst_plugin_ext_dep_direntry_matches: ttypf does not match video, flags=0x0008
0:00:00.282096500 8744 0x3d0a0600 LOG GST_PLUGIN_LOADING gstplugin.c:1589:gst_plugin_ext_dep_direntry_matches: ttype does not match video, flags=0x0008
0:00:00.282129750 8744 0x3d0a0600 LOG GST_PLUGIN_LOADING gstplugin.c:1589:gst_plugin_ext_dep_direntry_matches: ttypd does not match video, flags=0x0008
0:00:00.282161875 8744 0x3d0a0600 LOG GST_PLUGIN_LOADING gstplugin.c:1589:gst_plugin_ext_dep_direntry_matches: ttypc does not match video, flags=0x0008
0:00:00.282194500 8744 0x3d0a0600 LOG GST_PLUGIN_LOADING gstplugin.c:1589:gst_plugin_ext_dep_direntry_matches: ttypb does not match video, flags=0x0008
0:00:00.282226875 8744 0x3d0a0600 LOG GST_PLUGIN_LOADING gstplugin.c:1589:gst_plugin_ext_dep_direntry_matches: ttypa does not match video, flags=0x0008
0:00:00.282259250 8744 0x3d0a0600 LOG GST_PLUGIN_LOADING gstplugin.c:1589:gst_plugin_ext_dep_direntry_matches: ttyp9 does not match video, flags=0x0008
0:00:00.282292000 8744 0x3d0a0600 LOG GST_PLUGIN_LOADING gstplugin.c:1589:gst_plugin_ext_dep_direntry_matches: ttyp8 does not match video, flags=0x0008
0:00:00.282324500 8744 0x3d0a0600 LOG GST_PLUGIN_LOADING gstplugin.c:1589:gst_plugin_ext_dep_direntry_matches: ttyp7 does not match video, flags=0x0008
0:00:00.282357625 8744 0x3d0a0600 LOG GST_PLUGIN_LOADING gstplugin.c:1589:gst_plugin_ext_dep_direntry_matches: ttyp6 does not match video, flags=0x0008
0:00:00.282390250 8744 0x3d0a0600 LOG GST_PLUGIN_LOADING gstplugin.c:1589:gst_plugin_ext_dep_direntry_matches: ttyp5 does not match video, flags=0x0008
0:00:00.282423000 8744 0x3d0a0600 LOG GST_PLUGIN_LOADING gstplugin.c:1589:gst_plugin_ext_dep_direntry_matches: ttyp4 does not match video, flags=0x0008
0:00:00.282455000 8744 0x3d0a0600 LOG GST_PLUGIN_LOADING gstplugin.c:1589:gst_plugin_ext_dep_direntry_matches: ttyp3 does not match video, flags=0x0008
0:00:00.282487000 8744 0x3d0a0600 LOG GST_PLUGIN_LOADING gstplugin.c:1589:gst_plugin_ext_dep_direntry_matches: ttyp2 does not match video, flags=0x0008
0:00:00.282521250 8744 0x3d0a0600 LOG GST_PLUGIN_LOADING gstplugin.c:1589:gst_plugin_ext_dep_direntry_matches: ttyp1 does not match video, flags=0x0008
0:00:00.282553750 8744 0x3d0a0600 LOG GST_PLUGIN_LOADING gstplugin.c:1589:gst_plugin_ext_dep_direntry_matches: ttyp0 does not match video, flags=0x0008
0:00:00.282585750 8744 0x3d0a0600 LOG GST_PLUGIN_LOADING gstplugin.c:1589:gst_plugin_ext_dep_direntry_matches: ptypf does not match video, flags=0x0008
0:00:00.282618375 8744 0x3d0a0600 LOG GST_PLUGIN_LOADING gstplugin.c:1589:gst_plugin_ext_dep_direntry_matches: ptype does not match video, flags=0x0008
0:00:00.282650750 8744 0x3d0a0600 LOG GST_PLUGIN_LOADING gstplugin.c:1589:gst_plugin_ext_dep_direntry_matches: ptypd does not match video, flags=0x0008
0:00:00.282683375 8744 0x3d0a0600 LOG GST_PLUGIN_LOADING gstplugin.c:1589:gst_plugin_ext_dep_direntry_matches: ptypc does not match video, flags=0x0008
0:00:00.282715750 8744 0x3d0a0600 LOG GST_PLUGIN_LOADING gstplugin.c:1589:gst_plugin_ext_dep_direntry_matches: ptypb does not match video, flags=0x0008
0:00:00.282747625 8744 0x3d0a0600 LOG GST_PLUGIN_LOADING gstplugin.c:1589:gst_plugin_ext_dep_direntry_matches: ptypa does not match video, flags=0x0008
0:00:00.282779875 8744 0x3d0a0600 LOG GST_PLUGIN_LOADING gstplugin.c:1589:gst_plugin_ext_dep_direntry_matches: ptyp9 does not match video, flags=0x0008
0:00:00.282812250 8744 0x3d0a0600 LOG GST_PLUGIN_LOADING gstplugin.c:1589:gst_plugin_ext_dep_direntry_matches: ptyp8 does not match video, flags=0x0008
0:00:00.282844375 8744 0x3d0a0600 LOG GST_PLUGIN_LOADING gstplugin.c:1589:gst_plugin_ext_dep_direntry_matches: ptyp7 does not match video, flags=0x0008
0:00:00.282897125 8744 0x3d0a0600 LOG GST_PLUGIN_LOADING gstplugin.c:1589:gst_plugin_ext_dep_direntry_matches: ptyp6 does not match video, flags=0x0008
0:00:00.282930875 8744 0x3d0a0600 LOG GST_PLUGIN_LOADING gstplugin.c:1589:gst_plugin_ext_dep_direntry_matches: ptyp5 does not match video, flags=0x0008
0:00:00.282963125 8744 0x3d0a0600 LOG GST_PLUGIN_LOADING gstplugin.c:1589:gst_plugin_ext_dep_direntry_matches: ptyp4 does not match video, flags=0x0008
0:00:00.282995875 8744 0x3d0a0600 LOG GST_PLUGIN_LOADING gstplugin.c:1589:gst_plugin_ext_dep_direntry_matches: ptyp3 does not match video, flags=0x0008
0:00:00.283028125 8744 0x3d0a0600 LOG GST_PLUGIN_LOADING gstplugin.c:1589:gst_plugin_ext_dep_direntry_matches: ptyp2 does not match video, flags=0x0008
0:00:00.283060375 8744 0x3d0a0600 LOG GST_PLUGIN_LOADING gstplugin.c:1589:gst_plugin_ext_dep_direntry_matches: ptyp1 does not match video, flags=0x0008
0:00:00.283092500 8744 0x3d0a0600 LOG GST_PLUGIN_LOADING gstplugin.c:1589:gst_plugin_ext_dep_direntry_matches: ptyp0 does not match video, flags=0x0008
0:00:00.283124375 8744 0x3d0a0600 LOG GST_PLUGIN_LOADING gstplugin.c:1589:gst_plugin_ext_dep_direntry_matches: autofs does not match video, flags=0x0008
0:00:00.283156625 8744 0x3d0a0600 LOG GST_PLUGIN_LOADING gstplugin.c:1589:gst_plugin_ext_dep_direntry_matches: kvm does not match video, flags=0x0008
0:00:00.283188875 8744 0x3d0a0600 LOG GST_PLUGIN_LOADING gstplugin.c:1589:gst_plugin_ext_dep_direntry_matches: tty63 does not match video, flags=0x0008
0:00:00.283221125 8744 0x3d0a0600 LOG GST_PLUGIN_LOADING gstplugin.c:1589:gst_plugin_ext_dep_direntry_matches: tty62 does not match video, flags=0x0008
0:00:00.283253250 8744 0x3d0a0600 LOG GST_PLUGIN_LOADING gstplugin.c:1589:gst_plugin_ext_dep_direntry_matches: tty61 does not match video, flags=0x0008
0:00:00.283285500 8744 0x3d0a0600 LOG GST_PLUGIN_LOADING gstplugin.c:1589:gst_plugin_ext_dep_direntry_matches: tty60 does not match video, flags=0x0008
0:00:00.283317625 8744 0x3d0a0600 LOG GST_PLUGIN_LOADING gstplugin.c:1589:gst_plugin_ext_dep_direntry_matches: tty59 does not match video, flags=0x0008
0:00:00.283349750 8744 0x3d0a0600 LOG GST_PLUGIN_LOADING gstplugin.c:1589:gst_plugin_ext_dep_direntry_matches: tty58 does not match video, flags=0x0008
0:00:00.283381875 8744 0x3d0a0600 LOG GST_PLUGIN_LOADING gstplugin.c:1589:gst_plugin_ext_dep_direntry_matches: tty57 does not match video, flags=0x0008
0:00:00.283414125 8744 0x3d0a0600 LOG GST_PLUGIN_LOADING gstplugin.c:1589:gst_plugin_ext_dep_direntry_matches: tty56 does not match video, flags=0x0008
0:00:00.283446125 8744 0x3d0a0600 LOG GST_PLUGIN_LOADING gstplugin.c:1589:gst_plugin_ext_dep_direntry_matches: tty55 does not match video, flags=0x0008
0:00:00.283478125 8744 0x3d0a0600 LOG GST_PLUGIN_LOADING gstplugin.c:1589:gst_plugin_ext_dep_direntry_matches: tty54 does not match video, flags=0x0008
0:00:00.283510750 8744 0x3d0a0600 LOG GST_PLUGIN_LOADING gstplugin.c:1589:gst_plugin_ext_dep_direntry_matches: tty53 does not match video, flags=0x0008
0:00:00.283542750 8744 0x3d0a0600 LOG GST_PLUGIN_LOADING gstplugin.c:1589:gst_plugin_ext_dep_direntry_matches: tty52 does not match video, flags=0x0008
0:00:00.283575000 8744 0x3d0a0600 LOG GST_PLUGIN_LOADING gstplugin.c:1589:gst_plugin_ext_dep_direntry_matches: tty51 does not match video, flags=0x0008
0:00:00.283607375 8744 0x3d0a0600 LOG GST_PLUGIN_LOADING gstplugin.c:1589:gst_plugin_ext_dep_direntry_matches: tty50 does not match video, flags=0x0008
0:00:00.283639750 8744 0x3d0a0600 LOG GST_PLUGIN_LOADING gstplugin.c:1589:gst_plugin_ext_dep_direntry_matches: tty49 does not match video, flags=0x0008
0:00:00.283672250 8744 0x3d0a0600 LOG GST_PLUGIN_LOADING gstplugin.c:1589:gst_plugin_ext_dep_direntry_matches: tty48 does not match video, flags=0x0008
0:00:00.283704625 8744 0x3d0a0600 LOG GST_PLUGIN_LOADING gstplugin.c:1589:gst_plugin_ext_dep_direntry_matches: tty47 does not match video, flags=0x0008
0:00:00.283758125 8744 0x3d0a0600 LOG GST_PLUGIN_LOADING gstplugin.c:1589:gst_plugin_ext_dep_direntry_matches: tty46 does not match video, flags=0x0008
0:00:00.283791625 8744 0x3d0a0600 LOG GST_PLUGIN_LOADING gstplugin.c:1589:gst_plugin_ext_dep_direntry_matches: tty45 does not match video, flags=0x0008
0:00:00.283824375 8744 0x3d0a0600 LOG GST_PLUGIN_LOADING gstplugin.c:1589:gst_plugin_ext_dep_direntry_matches: tty44 does not match video, flags=0x0008
0:00:00.283856250 8744 0x3d0a0600 LOG GST_PLUGIN_LOADING gstplugin.c:1589:gst_plugin_ext_dep_direntry_matches: tty43 does not match video, flags=0x0008
0:00:00.283888375 8744 0x3d0a0600 LOG GST_PLUGIN_LOADING gstplugin.c:1589:gst_plugin_ext_dep_direntry_matches: tty42 does not match video, flags=0x0008
0:00:00.283920500 8744 0x3d0a0600 LOG GST_PLUGIN_LOADING gstplugin.c:1589:gst_plugin_ext_dep_direntry_matches: tty41 does not match video, flags=0x0008
0:00:00.283953000 8744 0x3d0a0600 LOG GST_PLUGIN_LOADING gstplugin.c:1589:gst_plugin_ext_dep_direntry_matches: tty40 does not match video, flags=0x0008
0:00:00.283985500 8744 0x3d0a0600 LOG GST_PLUGIN_LOADING gstplugin.c:1589:gst_plugin_ext_dep_direntry_matches: tty39 does not match video, flags=0x0008
0:00:00.284017125 8744 0x3d0a0600 LOG GST_PLUGIN_LOADING gstplugin.c:1589:gst_plugin_ext_dep_direntry_matches: tty38 does not match video, flags=0x0008
0:00:00.284049125 8744 0x3d0a0600 LOG GST_PLUGIN_LOADING gstplugin.c:1589:gst_plugin_ext_dep_direntry_matches: tty37 does not match video, flags=0x0008
0:00:00.284081500 8744 0x3d0a0600 LOG GST_PLUGIN_LOADING gstplugin.c:1589:gst_plugin_ext_dep_direntry_matches: tty36 does not match video, flags=0x0008
0:00:00.284113750 8744 0x3d0a0600 LOG GST_PLUGIN_LOADING gstplugin.c:1589:gst_plugin_ext_dep_direntry_matches: tty35 does not match video, flags=0x0008
0:00:00.284146250 8744 0x3d0a0600 LOG GST_PLUGIN_LOADING gstplugin.c:1589:gst_plugin_ext_dep_direntry_matches: tty34 does not match video, flags=0x0008
0:00:00.284178500 8744 0x3d0a0600 LOG GST_PLUGIN_LOADING gstplugin.c:1589:gst_plugin_ext_dep_direntry_matches: tty33 does not match video, flags=0x0008
0:00:00.284210875 8744 0x3d0a0600 LOG GST_PLUGIN_LOADING gstplugin.c:1589:gst_plugin_ext_dep_direntry_matches: tty32 does not match video, flags=0x0008
0:00:00.284243500 8744 0x3d0a0600 LOG GST_PLUGIN_LOADING gstplugin.c:1589:gst_plugin_ext_dep_direntry_matches: tty31 does not match video, flags=0x0008
0:00:00.284275750 8744 0x3d0a0600 LOG GST_PLUGIN_LOADING gstplugin.c:1589:gst_plugin_ext_dep_direntry_matches: tty30 does not match video, flags=0x0008
0:00:00.284308375 8744 0x3d0a0600 LOG GST_PLUGIN_LOADING gstplugin.c:1589:gst_plugin_ext_dep_direntry_matches: tty29 does not match video, flags=0x0008
0:00:00.284340875 8744 0x3d0a0600 LOG GST_PLUGIN_LOADING gstplugin.c:1589:gst_plugin_ext_dep_direntry_matches: tty28 does not match video, flags=0x0008
0:00:00.284373500 8744 0x3d0a0600 LOG GST_PLUGIN_LOADING gstplugin.c:1589:gst_plugin_ext_dep_direntry_matches: tty27 does not match video, flags=0x0008
0:00:00.284405625 8744 0x3d0a0600 LOG GST_PLUGIN_LOADING gstplugin.c:1589:gst_plugin_ext_dep_direntry_matches: tty26 does not match video, flags=0x0008
0:00:00.284438000 8744 0x3d0a0600 LOG GST_PLUGIN_LOADING gstplugin.c:1589:gst_plugin_ext_dep_direntry_matches: tty25 does not match video, flags=0x0008
0:00:00.284470750 8744 0x3d0a0600 LOG GST_PLUGIN_LOADING gstplugin.c:1589:gst_plugin_ext_dep_direntry_matches: tty24 does not match video, flags=0x0008
0:00:00.284503250 8744 0x3d0a0600 LOG GST_PLUGIN_LOADING gstplugin.c:1589:gst_plugin_ext_dep_direntry_matches: tty23 does not match video, flags=0x0008
0:00:00.284535375 8744 0x3d0a0600 LOG GST_PLUGIN_LOADING gstplugin.c:1589:gst_plugin_ext_dep_direntry_matches: tty22 does not match video, flags=0x0008
0:00:00.284598500 8744 0x3d0a0600 LOG GST_PLUGIN_LOADING gstplugin.c:1589:gst_plugin_ext_dep_direntry_matches: tty21 does not match video, flags=0x0008
0:00:00.284632250 8744 0x3d0a0600 LOG GST_PLUGIN_LOADING gstplugin.c:1589:gst_plugin_ext_dep_direntry_matches: tty20 does not match video, flags=0x0008
0:00:00.284664500 8744 0x3d0a0600 LOG GST_PLUGIN_LOADING gstplugin.c:1589:gst_plugin_ext_dep_direntry_matches: tty19 does not match video, flags=0x0008
0:00:00.284696250 8744 0x3d0a0600 LOG GST_PLUGIN_LOADING gstplugin.c:1589:gst_plugin_ext_dep_direntry_matches: tty18 does not match video, flags=0x0008
0:00:00.284728750 8744 0x3d0a0600 LOG GST_PLUGIN_LOADING gstplugin.c:1589:gst_plugin_ext_dep_direntry_matches: tty17 does not match video, flags=0x0008
0:00:00.284760750 8744 0x3d0a0600 LOG GST_PLUGIN_LOADING gstplugin.c:1589:gst_plugin_ext_dep_direntry_matches: tty16 does not match video, flags=0x0008
0:00:00.284793125 8744 0x3d0a0600 LOG GST_PLUGIN_LOADING gstplugin.c:1589:gst_plugin_ext_dep_direntry_matches: tty15 does not match video, flags=0x0008
0:00:00.284825250 8744 0x3d0a0600 LOG GST_PLUGIN_LOADING gstplugin.c:1589:gst_plugin_ext_dep_direntry_matches: tty14 does not match video, flags=0x0008
0:00:00.284857250 8744 0x3d0a0600 LOG GST_PLUGIN_LOADING gstplugin.c:1589:gst_plugin_ext_dep_direntry_matches: tty13 does not match video, flags=0x0008
0:00:00.284889500 8744 0x3d0a0600 LOG GST_PLUGIN_LOADING gstplugin.c:1589:gst_plugin_ext_dep_direntry_matches: tty12 does not match video, flags=0x0008
0:00:00.284921250 8744 0x3d0a0600 LOG GST_PLUGIN_LOADING gstplugin.c:1589:gst_plugin_ext_dep_direntry_matches: tty11 does not match video, flags=0x0008
0:00:00.284953250 8744 0x3d0a0600 LOG GST_PLUGIN_LOADING gstplugin.c:1589:gst_plugin_ext_dep_direntry_matches: tty10 does not match video, flags=0x0008
0:00:00.284985750 8744 0x3d0a0600 LOG GST_PLUGIN_LOADING gstplugin.c:1589:gst_plugin_ext_dep_direntry_matches: tty9 does not match video, flags=0x0008
0:00:00.285017750 8744 0x3d0a0600 LOG GST_PLUGIN_LOADING gstplugin.c:1589:gst_plugin_ext_dep_direntry_matches: tty8 does not match video, flags=0x0008
0:00:00.285069875 8744 0x3d0a0600 LOG GST_PLUGIN_LOADING gstplugin.c:1589:gst_plugin_ext_dep_direntry_matches: tty7 does not match video, flags=0x0008
0:00:00.285113875 8744 0x3d0a0600 LOG GST_PLUGIN_LOADING gstplugin.c:1589:gst_plugin_ext_dep_direntry_matches: tty6 does not match video, flags=0x0008
0:00:00.285147375 8744 0x3d0a0600 LOG GST_PLUGIN_LOADING gstplugin.c:1589:gst_plugin_ext_dep_direntry_matches: tty5 does not match video, flags=0x0008
0:00:00.285179375 8744 0x3d0a0600 LOG GST_PLUGIN_LOADING gstplugin.c:1589:gst_plugin_ext_dep_direntry_matches: tty4 does not match video, flags=0x0008
0:00:00.285211625 8744 0x3d0a0600 LOG GST_PLUGIN_LOADING gstplugin.c:1589:gst_plugin_ext_dep_direntry_matches: tty3 does not match video, flags=0x0008
0:00:00.285243625 8744 0x3d0a0600 LOG GST_PLUGIN_LOADING gstplugin.c:1589:gst_plugin_ext_dep_direntry_matches: tty2 does not match video, flags=0x0008
0:00:00.285275625 8744 0x3d0a0600 LOG GST_PLUGIN_LOADING gstplugin.c:1589:gst_plugin_ext_dep_direntry_matches: tty1 does not match video, flags=0x0008
0:00:00.285308125 8744 0x3d0a0600 LOG GST_PLUGIN_LOADING gstplugin.c:1589:gst_plugin_ext_dep_direntry_matches: vcsa1 does not match video, flags=0x0008
0:00:00.285340625 8744 0x3d0a0600 LOG GST_PLUGIN_LOADING gstplugin.c:1589:gst_plugin_ext_dep_direntry_matches: vcs1 does not match video, flags=0x0008
0:00:00.285373000 8744 0x3d0a0600 LOG GST_PLUGIN_LOADING gstplugin.c:1589:gst_plugin_ext_dep_direntry_matches: vcsa does not match video, flags=0x0008
0:00:00.285405250 8744 0x3d0a0600 LOG GST_PLUGIN_LOADING gstplugin.c:1589:gst_plugin_ext_dep_direntry_matches: vcs does not match video, flags=0x0008
0:00:00.285458500 8744 0x3d0a0600 LOG GST_PLUGIN_LOADING gstplugin.c:1589:gst_plugin_ext_dep_direntry_matches: tty0 does not match video, flags=0x0008
0:00:00.285492750 8744 0x3d0a0600 LOG GST_PLUGIN_LOADING gstplugin.c:1589:gst_plugin_ext_dep_direntry_matches: console does not match video, flags=0x0008
0:00:00.285525375 8744 0x3d0a0600 LOG GST_PLUGIN_LOADING gstplugin.c:1589:gst_plugin_ext_dep_direntry_matches: tty does not match video, flags=0x0008
0:00:00.285557625 8744 0x3d0a0600 LOG GST_PLUGIN_LOADING gstplugin.c:1589:gst_plugin_ext_dep_direntry_matches: kmsg does not match video, flags=0x0008
0:00:00.285590250 8744 0x3d0a0600 LOG GST_PLUGIN_LOADING gstplugin.c:1589:gst_plugin_ext_dep_direntry_matches: urandom does not match video, flags=0x0008
0:00:00.285622875 8744 0x3d0a0600 LOG GST_PLUGIN_LOADING gstplugin.c:1589:gst_plugin_ext_dep_direntry_matches: random does not match video, flags=0x0008
0:00:00.285654875 8744 0x3d0a0600 LOG GST_PLUGIN_LOADING gstplugin.c:1589:gst_plugin_ext_dep_direntry_matches: full does not match video, flags=0x0008
0:00:00.285687125 8744 0x3d0a0600 LOG GST_PLUGIN_LOADING gstplugin.c:1589:gst_plugin_ext_dep_direntry_matches: zero does not match video, flags=0x0008
0:00:00.285719250 8744 0x3d0a0600 LOG GST_PLUGIN_LOADING gstplugin.c:1589:gst_plugin_ext_dep_direntry_matches: port does not match video, flags=0x0008
0:00:00.285751500 8744 0x3d0a0600 LOG GST_PLUGIN_LOADING gstplugin.c:1589:gst_plugin_ext_dep_direntry_matches: null does not match video, flags=0x0008
0:00:00.285783750 8744 0x3d0a0600 LOG GST_PLUGIN_LOADING gstplugin.c:1589:gst_plugin_ext_dep_direntry_matches: mem does not match video, flags=0x0008
0:00:00.285816000 8744 0x3d0a0600 LOG GST_PLUGIN_LOADING gstplugin.c:1589:gst_plugin_ext_dep_direntry_matches: ion does not match video, flags=0x0008
0:00:00.285848250 8744 0x3d0a0600 LOG GST_PLUGIN_LOADING gstplugin.c:1589:gst_plugin_ext_dep_direntry_matches: vga_arbiter does not match video, flags=0x0008
0:00:00.285881125 8744 0x3d0a0600 LOG GST_PLUGIN_LOADING gstplugin.c:1589:gst_plugin_ext_dep_direntry_matches: gpiochip7 does not match video, flags=0x0008
0:00:00.285913750 8744 0x3d0a0600 LOG GST_PLUGIN_LOADING gstplugin.c:1589:gst_plugin_ext_dep_direntry_matches: gpiochip6 does not match video, flags=0x0008
0:00:00.285946500 8744 0x3d0a0600 LOG GST_PLUGIN_LOADING gstplugin.c:1589:gst_plugin_ext_dep_direntry_matches: gpiochip5 does not match video, flags=0x0008
0:00:00.285979500 8744 0x3d0a0600 LOG GST_PLUGIN_LOADING gstplugin.c:1589:gst_plugin_ext_dep_direntry_matches: gpiochip4 does not match video, flags=0x0008
0:00:00.286012250 8744 0x3d0a0600 LOG GST_PLUGIN_LOADING gstplugin.c:1589:gst_plugin_ext_dep_direntry_matches: gpiochip3 does not match video, flags=0x0008
0:00:00.286045125 8744 0x3d0a0600 LOG GST_PLUGIN_LOADING gstplugin.c:1589:gst_plugin_ext_dep_direntry_matches: gpiochip2 does not match video, flags=0x0008
0:00:00.286077750 8744 0x3d0a0600 LOG GST_PLUGIN_LOADING gstplugin.c:1589:gst_plugin_ext_dep_direntry_matches: gpiochip1 does not match video, flags=0x0008
0:00:00.286110500 8744 0x3d0a0600 LOG GST_PLUGIN_LOADING gstplugin.c:1589:gst_plugin_ext_dep_direntry_matches: gpiochip0 does not match video, flags=0x0008
0:00:00.286367625 8744 0x3d0a0600 DEBUG GST_PLUGIN_LOADING gstplugin.c:1610:gst_plugin_ext_dep_scan_dir_and_match_names:<plugin148> g_dir_open(/dev/v4l2) failed: Error opening directory '/dev/v4l2': No such file or directory
0:00:00.286419000 8744 0x3d0a0600 LOG GST_PLUGIN_LOADING gstplugin.c:1760:gst_plugin_ext_dep_get_stat_hash:<plugin148> done, scan_hash: 000015c8
0:00:00.286455375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1325:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstvideo4linux2.so cached
0:00:00.286512125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1328:gst_registry_scan_path_level:<registry0> marking plugin 0x3d1cd600 as registered as /data/halley/gst-sdk/lib/gstreamer-1.0/libgstvideo4linux2.so
0:00:00.286573625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1287:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstplayback.so looks like a possible module
0:00:00.286613250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1325:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstplayback.so cached
0:00:00.286647000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1328:gst_registry_scan_path_level:<registry0> marking plugin 0x3d160510 as registered as /data/halley/gst-sdk/lib/gstreamer-1.0/libgstplayback.so
0:00:00.286704750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1287:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstflv.so looks like a possible module
0:00:00.286743500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1325:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstflv.so cached
0:00:00.286776625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1328:gst_registry_scan_path_level:<registry0> marking plugin 0x3d160640 as registered as /data/halley/gst-sdk/lib/gstreamer-1.0/libgstflv.so
0:00:00.286834250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1287:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstaudioconvert.so looks like a possible module
0:00:00.286873625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1325:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstaudioconvert.so cached
0:00:00.286906500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1328:gst_registry_scan_path_level:<registry0> marking plugin 0x3d160770 as registered as /data/halley/gst-sdk/lib/gstreamer-1.0/libgstaudioconvert.so
0:00:00.286963875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1287:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstapetag.so looks like a possible module
0:00:00.287001625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1325:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstapetag.so cached
0:00:00.287034875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1328:gst_registry_scan_path_level:<registry0> marking plugin 0x3d1608a0 as registered as /data/halley/gst-sdk/lib/gstreamer-1.0/libgstapetag.so
0:00:00.287092500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1287:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstaiurdemux.so looks like a possible module
0:00:00.287130500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1325:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstaiurdemux.so cached
0:00:00.287164000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1328:gst_registry_scan_path_level:<registry0> marking plugin 0x3d1609d0 as registered as /data/halley/gst-sdk/lib/gstreamer-1.0/libgstaiurdemux.so
0:00:00.287221875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1287:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstrtpmanager.so looks like a possible module
0:00:00.287260250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1325:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstrtpmanager.so cached
0:00:00.287294000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1328:gst_registry_scan_path_level:<registry0> marking plugin 0x3d160b00 as registered as /data/halley/gst-sdk/lib/gstreamer-1.0/libgstrtpmanager.so
0:00:00.287372625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1287:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstmxf.so looks like a possible module
0:00:00.287412125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1325:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstmxf.so cached
0:00:00.287445625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1328:gst_registry_scan_path_level:<registry0> marking plugin 0x3d160c30 as registered as /data/halley/gst-sdk/lib/gstreamer-1.0/libgstmxf.so
0:00:00.287503125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1287:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstmatroska.so looks like a possible module
0:00:00.287541125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1325:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstmatroska.so cached
0:00:00.287574250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1328:gst_registry_scan_path_level:<registry0> marking plugin 0x3d160d60 as registered as /data/halley/gst-sdk/lib/gstreamer-1.0/libgstmatroska.so
0:00:00.287631250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1287:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstcoreelements.so looks like a possible module
0:00:00.287669500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1325:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstcoreelements.so cached
0:00:00.287703375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1328:gst_registry_scan_path_level:<registry0> marking plugin 0x3d160e90 as registered as /data/halley/gst-sdk/lib/gstreamer-1.0/libgstcoreelements.so
0:00:00.287759875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1287:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstdvb.so looks like a possible module
0:00:00.287797625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1325:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstdvb.so cached
0:00:00.287831125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1328:gst_registry_scan_path_level:<registry0> marking plugin 0x3d172060 as registered as /data/halley/gst-sdk/lib/gstreamer-1.0/libgstdvb.so
0:00:00.287889750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1287:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstaudiovisualizers.so looks like a possible module
0:00:00.287928250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1325:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstaudiovisualizers.so cached
0:00:00.287962375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1328:gst_registry_scan_path_level:<registry0> marking plugin 0x3d172190 as registered as /data/halley/gst-sdk/lib/gstreamer-1.0/libgstaudiovisualizers.so
0:00:00.288020375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1287:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstfbdevsink.so looks like a possible module
0:00:00.288058125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1325:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstfbdevsink.so cached
0:00:00.288091750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1328:gst_registry_scan_path_level:<registry0> marking plugin 0x3d1722c0 as registered as /data/halley/gst-sdk/lib/gstreamer-1.0/libgstfbdevsink.so
0:00:00.288148875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1287:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstspeed.so looks like a possible module
0:00:00.288207875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1325:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstspeed.so cached
0:00:00.288242250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1328:gst_registry_scan_path_level:<registry0> marking plugin 0x3d1723f0 as registered as /data/halley/gst-sdk/lib/gstreamer-1.0/libgstspeed.so
0:00:00.288300250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1287:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstrtsp.so looks like a possible module
0:00:00.288338375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1325:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstrtsp.so cached
0:00:00.288372125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1328:gst_registry_scan_path_level:<registry0> marking plugin 0x3d172520 as registered as /data/halley/gst-sdk/lib/gstreamer-1.0/libgstrtsp.so
0:00:00.288429625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1287:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstdvbsuboverlay.so looks like a possible module
0:00:00.288468125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1325:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstdvbsuboverlay.so cached
0:00:00.288502000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1328:gst_registry_scan_path_level:<registry0> marking plugin 0x3d172650 as registered as /data/halley/gst-sdk/lib/gstreamer-1.0/libgstdvbsuboverlay.so
0:00:00.288559125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1287:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstrfbsrc.so looks like a possible module
0:00:00.288596750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1325:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstrfbsrc.so cached
0:00:00.288629875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1328:gst_registry_scan_path_level:<registry0> marking plugin 0x3d172780 as registered as /data/halley/gst-sdk/lib/gstreamer-1.0/libgstrfbsrc.so
0:00:00.288687000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1287:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstbeepdec.so looks like a possible module
0:00:00.288724750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1325:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstbeepdec.so cached
0:00:00.288757875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1328:gst_registry_scan_path_level:<registry0> marking plugin 0x3d1728b0 as registered as /data/halley/gst-sdk/lib/gstreamer-1.0/libgstbeepdec.so
0:00:00.288814750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1287:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstvolume.so looks like a possible module
0:00:00.288852375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1325:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstvolume.so cached
0:00:00.288885250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1328:gst_registry_scan_path_level:<registry0> marking plugin 0x3d1729e0 as registered as /data/halley/gst-sdk/lib/gstreamer-1.0/libgstvolume.so
0:00:00.288941750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1287:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstmpegpsdemux.so looks like a possible module
0:00:00.288980000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1325:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstmpegpsdemux.so cached
0:00:00.289013875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1328:gst_registry_scan_path_level:<registry0> marking plugin 0x3d172b10 as registered as /data/halley/gst-sdk/lib/gstreamer-1.0/libgstmpegpsdemux.so
0:00:00.289128375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1287:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstaudiofx.so looks like a possible module
0:00:00.289172375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1325:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstaudiofx.so cached
0:00:00.289206125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1328:gst_registry_scan_path_level:<registry0> marking plugin 0x3d172c40 as registered as /data/halley/gst-sdk/lib/gstreamer-1.0/libgstaudiofx.so
0:00:00.289263750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1287:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstauparse.so looks like a possible module
0:00:00.289302125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1325:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstauparse.so cached
0:00:00.289335500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1328:gst_registry_scan_path_level:<registry0> marking plugin 0x3d172d70 as registered as /data/halley/gst-sdk/lib/gstreamer-1.0/libgstauparse.so
0:00:00.289393375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1287:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstshapewipe.so looks like a possible module
0:00:00.289432000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1325:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstshapewipe.so cached
0:00:00.289465750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1328:gst_registry_scan_path_level:<registry0> marking plugin 0x3d172ea0 as registered as /data/halley/gst-sdk/lib/gstreamer-1.0/libgstshapewipe.so
0:00:00.289523000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1287:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstspectrum.so looks like a possible module
0:00:00.289561750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1325:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstspectrum.so cached
0:00:00.289595250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1328:gst_registry_scan_path_level:<registry0> marking plugin 0x3d189050 as registered as /data/halley/gst-sdk/lib/gstreamer-1.0/libgstspectrum.so
0:00:00.289652250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1287:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstaudiotestsrc.so looks like a possible module
0:00:00.289772375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1325:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstaudiotestsrc.so cached
0:00:00.289797875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1328:gst_registry_scan_path_level:<registry0> marking plugin 0x3d189180 as registered as /data/halley/gst-sdk/lib/gstreamer-1.0/libgstaudiotestsrc.so
0:00:00.289840750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1287:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstremovesilence.so looks like a possible module
0:00:00.289870500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1325:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstremovesilence.so cached
0:00:00.289895750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1328:gst_registry_scan_path_level:<registry0> marking plugin 0x3d1892b0 as registered as /data/halley/gst-sdk/lib/gstreamer-1.0/libgstremovesilence.so
0:00:00.289955375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1287:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstcamerabin.so looks like a possible module
0:00:00.289985125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1325:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstcamerabin.so cached
0:00:00.290010625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1328:gst_registry_scan_path_level:<registry0> marking plugin 0x3d1893e0 as registered as /data/halley/gst-sdk/lib/gstreamer-1.0/libgstcamerabin.so
0:00:00.290053375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1287:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstdecklink.so looks like a possible module
0:00:00.290082625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1325:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstdecklink.so cached
0:00:00.290108000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1328:gst_registry_scan_path_level:<registry0> marking plugin 0x3d189510 as registered as /data/halley/gst-sdk/lib/gstreamer-1.0/libgstdecklink.so
0:00:00.290151000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1287:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstaudioparsers.so looks like a possible module
0:00:00.290179875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1325:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstaudioparsers.so cached
0:00:00.290205125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1328:gst_registry_scan_path_level:<registry0> marking plugin 0x3d189640 as registered as /data/halley/gst-sdk/lib/gstreamer-1.0/libgstaudioparsers.so
0:00:00.290248375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1287:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstalpha.so looks like a possible module
0:00:00.290277000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1325:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstalpha.so cached
0:00:00.290302500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1328:gst_registry_scan_path_level:<registry0> marking plugin 0x3d189770 as registered as /data/halley/gst-sdk/lib/gstreamer-1.0/libgstalpha.so
0:00:00.290346125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1287:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstproxy.so looks like a possible module
0:00:00.290375125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1325:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstproxy.so cached
0:00:00.290401000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1328:gst_registry_scan_path_level:<registry0> marking plugin 0x3d1898a0 as registered as /data/halley/gst-sdk/lib/gstreamer-1.0/libgstproxy.so
0:00:00.290444500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1287:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstrtspclientsink.so looks like a possible module
0:00:00.290473125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1325:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstrtspclientsink.so cached
0:00:00.290498250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1328:gst_registry_scan_path_level:<registry0> marking plugin 0x3d1899d0 as registered as /data/halley/gst-sdk/lib/gstreamer-1.0/libgstrtspclientsink.so
0:00:00.290541625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1287:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstreplaygain.so looks like a possible module
0:00:00.290586000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1325:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstreplaygain.so cached
0:00:00.290611500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1328:gst_registry_scan_path_level:<registry0> marking plugin 0x3d189b00 as registered as /data/halley/gst-sdk/lib/gstreamer-1.0/libgstreplaygain.so
0:00:00.290654750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1287:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstinterlace.so looks like a possible module
0:00:00.290684000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1325:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstinterlace.so cached
0:00:00.290709125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1328:gst_registry_scan_path_level:<registry0> marking plugin 0x3d189c30 as registered as /data/halley/gst-sdk/lib/gstreamer-1.0/libgstinterlace.so
0:00:00.290752375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1287:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstwavparse.so looks like a possible module
0:00:00.290781500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1325:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstwavparse.so cached
0:00:00.290806625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1328:gst_registry_scan_path_level:<registry0> marking plugin 0x3d189d60 as registered as /data/halley/gst-sdk/lib/gstreamer-1.0/libgstwavparse.so
0:00:00.290849875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1287:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgststereo.so looks like a possible module
0:00:00.290878750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1325:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgststereo.so cached
0:00:00.290903625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1328:gst_registry_scan_path_level:<registry0> marking plugin 0x3d189e90 as registered as /data/halley/gst-sdk/lib/gstreamer-1.0/libgststereo.so
0:00:00.290946750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1287:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstaudiomixer.so looks like a possible module
0:00:00.290975500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1325:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstaudiomixer.so cached
0:00:00.291001125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1328:gst_registry_scan_path_level:<registry0> marking plugin 0x3d19f060 as registered as /data/halley/gst-sdk/lib/gstreamer-1.0/libgstaudiomixer.so
0:00:00.291044000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1287:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstinter.so looks like a possible module
0:00:00.291072500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1325:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstinter.so cached
0:00:00.291097750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1328:gst_registry_scan_path_level:<registry0> marking plugin 0x3d19f190 as registered as /data/halley/gst-sdk/lib/gstreamer-1.0/libgstinter.so
0:00:00.291141125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1287:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstapp.so looks like a possible module
0:00:00.291169000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1325:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstapp.so cached
0:00:00.291194000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1328:gst_registry_scan_path_level:<registry0> marking plugin 0x3d19f2c0 as registered as /data/halley/gst-sdk/lib/gstreamer-1.0/libgstapp.so
0:00:00.291253125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1287:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgsttimecode.so looks like a possible module
0:00:00.291282750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1325:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgsttimecode.so cached
0:00:00.291308250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1328:gst_registry_scan_path_level:<registry0> marking plugin 0x3d19f3f0 as registered as /data/halley/gst-sdk/lib/gstreamer-1.0/libgsttimecode.so
0:00:00.291351750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1287:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstfrei0r.so looks like a possible module
0:00:00.291395750 8744 0x3d0a0600 LOG GST_PLUGIN_LOADING gstplugin.c:1712:gst_plugin_ext_dep_get_stat_hash:<plugin108> start
0:00:00.291427875 8744 0x3d0a0600 LOG GST_PLUGIN_LOADING gstplugin.c:1507:gst_plugin_ext_dep_extract_env_vars_paths:<plugin108> expanding FREI0R_PATH = '(NULL)' (path suffix: (NULL))
0:00:00.291461625 8744 0x3d0a0600 LOG GST_PLUGIN_LOADING gstplugin.c:1507:gst_plugin_ext_dep_extract_env_vars_paths:<plugin108> expanding HOME = '(NULL)' (path suffix: .frei0r-1/lib)
0:00:00.291492250 8744 0x3d0a0600 LOG GST_PLUGIN_LOADING gstplugin.c:1550:gst_plugin_ext_dep_extract_env_vars_paths:<plugin108> Extracted 0 paths from environment
0:00:00.291518875 8744 0x3d0a0600 LOG GST_PLUGIN_LOADING gstplugin.c:1745:gst_plugin_ext_dep_get_stat_hash:<plugin108> path: '/usr/lib/frei0r-1'
0:00:00.291544250 8744 0x3d0a0600 LOG GST_PLUGIN_LOADING gstplugin.c:1748:gst_plugin_ext_dep_get_stat_hash:<plugin108> path: '/usr/lib/frei0r-1' (duplicate, ignoring)
0:00:00.291569375 8744 0x3d0a0600 LOG GST_PLUGIN_LOADING gstplugin.c:1745:gst_plugin_ext_dep_get_stat_hash:<plugin108> path: '/usr/local/lib/frei0r-1'
0:00:00.291594625 8744 0x3d0a0600 LOG GST_PLUGIN_LOADING gstplugin.c:1745:gst_plugin_ext_dep_get_stat_hash:<plugin108> path: '/usr/lib32/frei0r-1'
0:00:00.291619625 8744 0x3d0a0600 LOG GST_PLUGIN_LOADING gstplugin.c:1745:gst_plugin_ext_dep_get_stat_hash:<plugin108> path: '/usr/local/lib32/frei0r-1'
0:00:00.291645250 8744 0x3d0a0600 LOG GST_PLUGIN_LOADING gstplugin.c:1745:gst_plugin_ext_dep_get_stat_hash:<plugin108> path: '/usr/lib64/frei0r-1'
0:00:00.291670375 8744 0x3d0a0600 LOG GST_PLUGIN_LOADING gstplugin.c:1745:gst_plugin_ext_dep_get_stat_hash:<plugin108> path: '/usr/local/lib64/frei0r-1'
0:00:00.291739625 8744 0x3d0a0600 DEBUG GST_PLUGIN_LOADING gstplugin.c:1610:gst_plugin_ext_dep_scan_dir_and_match_names:<plugin108> g_dir_open(/usr/lib/frei0r-1) failed: Error opening directory '/usr/lib/frei0r-1': No such file or directory
0:00:00.291795250 8744 0x3d0a0600 DEBUG GST_PLUGIN_LOADING gstplugin.c:1610:gst_plugin_ext_dep_scan_dir_and_match_names:<plugin108> g_dir_open(/usr/local/lib/frei0r-1) failed: Error opening directory '/usr/local/lib/frei0r-1': No such file or directory
0:00:00.291850500 8744 0x3d0a0600 DEBUG GST_PLUGIN_LOADING gstplugin.c:1610:gst_plugin_ext_dep_scan_dir_and_match_names:<plugin108> g_dir_open(/usr/lib32/frei0r-1) failed: Error opening directory '/usr/lib32/frei0r-1': No such file or directory
0:00:00.291904500 8744 0x3d0a0600 DEBUG GST_PLUGIN_LOADING gstplugin.c:1610:gst_plugin_ext_dep_scan_dir_and_match_names:<plugin108> g_dir_open(/usr/local/lib32/frei0r-1) failed: Error opening directory '/usr/local/lib32/frei0r-1': No such file or directory
0:00:00.291960625 8744 0x3d0a0600 DEBUG GST_PLUGIN_LOADING gstplugin.c:1610:gst_plugin_ext_dep_scan_dir_and_match_names:<plugin108> g_dir_open(/usr/lib64/frei0r-1) failed: Error opening directory '/usr/lib64/frei0r-1': No such file or directory
0:00:00.292031375 8744 0x3d0a0600 DEBUG GST_PLUGIN_LOADING gstplugin.c:1610:gst_plugin_ext_dep_scan_dir_and_match_names:<plugin108> g_dir_open(/usr/local/lib64/frei0r-1) failed: Error opening directory '/usr/local/lib64/frei0r-1': No such file or directory
0:00:00.292062250 8744 0x3d0a0600 LOG GST_PLUGIN_LOADING gstplugin.c:1760:gst_plugin_ext_dep_get_stat_hash:<plugin108> done, scan_hash: fffffffa
0:00:00.292088625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1325:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstfrei0r.so cached
0:00:00.292114375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1328:gst_registry_scan_path_level:<registry0> marking plugin 0x3d19f520 as registered as /data/halley/gst-sdk/lib/gstreamer-1.0/libgstfrei0r.so
0:00:00.292159875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1259:gst_registry_scan_path_level:<registry0> recursing into directory /data/halley/gst-sdk/lib/gstreamer-1.0/include
0:00:00.292249375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1259:gst_registry_scan_path_level:<registry0> recursing into directory /data/halley/gst-sdk/lib/gstreamer-1.0/include/gst
0:00:00.292329375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1259:gst_registry_scan_path_level:<registry0> recursing into directory /data/halley/gst-sdk/lib/gstreamer-1.0/include/gst/gl
0:00:00.292439625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1287:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstsubenc.so looks like a possible module
0:00:00.292470500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1325:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstsubenc.so cached
0:00:00.292496250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1328:gst_registry_scan_path_level:<registry0> marking plugin 0x3d19f650 as registered as /data/halley/gst-sdk/lib/gstreamer-1.0/libgstsubenc.so
0:00:00.292540500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1287:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstisomp4.so looks like a possible module
0:00:00.292569625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1325:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstisomp4.so cached
0:00:00.292595250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1328:gst_registry_scan_path_level:<registry0> marking plugin 0x3d19f780 as registered as /data/halley/gst-sdk/lib/gstreamer-1.0/libgstisomp4.so
0:00:00.292639000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1287:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstvideotestsrc.so looks like a possible module
0:00:00.292668500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1325:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstvideotestsrc.so cached
0:00:00.292693500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1328:gst_registry_scan_path_level:<registry0> marking plugin 0x3d19f8b0 as registered as /data/halley/gst-sdk/lib/gstreamer-1.0/libgstvideotestsrc.so
0:00:00.292737000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1287:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstasfmux.so looks like a possible module
0:00:00.292765875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1325:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstasfmux.so cached
0:00:00.292791000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1328:gst_registry_scan_path_level:<registry0> marking plugin 0x3d19f9e0 as registered as /data/halley/gst-sdk/lib/gstreamer-1.0/libgstasfmux.so
0:00:00.292850750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1287:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstvideoconvert.so looks like a possible module
0:00:00.292880250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1325:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstvideoconvert.so cached
0:00:00.292906500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1328:gst_registry_scan_path_level:<registry0> marking plugin 0x3d19fb10 as registered as /data/halley/gst-sdk/lib/gstreamer-1.0/libgstvideoconvert.so
0:00:00.292950125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1287:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstadder.so looks like a possible module
0:00:00.292978750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1325:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstadder.so cached
0:00:00.293004375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1328:gst_registry_scan_path_level:<registry0> marking plugin 0x3d19fc40 as registered as /data/halley/gst-sdk/lib/gstreamer-1.0/libgstadder.so
0:00:00.293173750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1287:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstmultifile.so looks like a possible module
0:00:00.293209125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1325:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstmultifile.so cached
0:00:00.293235125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1328:gst_registry_scan_path_level:<registry0> marking plugin 0x3d19fd70 as registered as /data/halley/gst-sdk/lib/gstreamer-1.0/libgstmultifile.so
0:00:00.293278750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1287:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstpnm.so looks like a possible module
0:00:00.293307375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1325:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstpnm.so cached
0:00:00.293332125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1328:gst_registry_scan_path_level:<registry0> marking plugin 0x3d19fea0 as registered as /data/halley/gst-sdk/lib/gstreamer-1.0/libgstpnm.so
0:00:00.293375250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1287:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstvideofiltersbad.so looks like a possible module
0:00:00.293404250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1325:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstvideofiltersbad.so cached
0:00:00.293429500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1328:gst_registry_scan_path_level:<registry0> marking plugin 0x3d1b1040 as registered as /data/halley/gst-sdk/lib/gstreamer-1.0/libgstvideofiltersbad.so
0:00:00.293472625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1287:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgsttcp.so looks like a possible module
0:00:00.293501125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1325:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgsttcp.so cached
0:00:00.293526375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1328:gst_registry_scan_path_level:<registry0> marking plugin 0x3d1b1170 as registered as /data/halley/gst-sdk/lib/gstreamer-1.0/libgsttcp.so
0:00:00.293569875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1287:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstaiff.so looks like a possible module
0:00:00.293598500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1325:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstaiff.so cached
0:00:00.293640375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1328:gst_registry_scan_path_level:<registry0> marking plugin 0x3d1b12a0 as registered as /data/halley/gst-sdk/lib/gstreamer-1.0/libgstaiff.so
0:00:00.293685250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1287:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstvmnc.so looks like a possible module
0:00:00.293714125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1325:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstvmnc.so cached
0:00:00.293739375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1328:gst_registry_scan_path_level:<registry0> marking plugin 0x3d1b13d0 as registered as /data/halley/gst-sdk/lib/gstreamer-1.0/libgstvmnc.so
0:00:00.293782875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1287:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstwaylandsink.so looks like a possible module
0:00:00.293812000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1325:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstwaylandsink.so cached
0:00:00.293837375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1328:gst_registry_scan_path_level:<registry0> marking plugin 0x3d1cd4d0 as registered as /data/halley/gst-sdk/lib/gstreamer-1.0/libgstwaylandsink.so
0:00:00.293881500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1287:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstgeometrictransform.so looks like a possible module
0:00:00.293910500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1325:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstgeometrictransform.so cached
0:00:00.293935250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1328:gst_registry_scan_path_level:<registry0> marking plugin 0x3d1b1500 as registered as /data/halley/gst-sdk/lib/gstreamer-1.0/libgstgeometrictransform.so
0:00:00.293978875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1287:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstmpegpsmux.so looks like a possible module
0:00:00.294007875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1325:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstmpegpsmux.so cached
0:00:00.294033250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1328:gst_registry_scan_path_level:<registry0> marking plugin 0x3d1b1630 as registered as /data/halley/gst-sdk/lib/gstreamer-1.0/libgstmpegpsmux.so
0:00:00.294076750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1287:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstgaudieffects.so looks like a possible module
0:00:00.294105750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1325:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstgaudieffects.so cached
0:00:00.294131375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1328:gst_registry_scan_path_level:<registry0> marking plugin 0x3d1b1760 as registered as /data/halley/gst-sdk/lib/gstreamer-1.0/libgstgaudieffects.so
0:00:00.294174375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1287:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstimxvideoconvert.so looks like a possible module
0:00:00.294203250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1325:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstimxvideoconvert.so cached
0:00:00.294250875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1328:gst_registry_scan_path_level:<registry0> marking plugin 0x3d1b1890 as registered as /data/halley/gst-sdk/lib/gstreamer-1.0/libgstimxvideoconvert.so
0:00:00.294295250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1287:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstid3demux.so looks like a possible module
0:00:00.294324375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1325:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstid3demux.so cached
0:00:00.294349625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1328:gst_registry_scan_path_level:<registry0> marking plugin 0x3d1b19c0 as registered as /data/halley/gst-sdk/lib/gstreamer-1.0/libgstid3demux.so
0:00:00.294392625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1287:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstcutter.so looks like a possible module
0:00:00.294421625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1325:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstcutter.so cached
0:00:00.294446750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1328:gst_registry_scan_path_level:<registry0> marking plugin 0x3d1b1af0 as registered as /data/halley/gst-sdk/lib/gstreamer-1.0/libgstcutter.so
0:00:00.294489250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1287:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstlevel.so looks like a possible module
0:00:00.294517625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1325:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstlevel.so cached
0:00:00.294543000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1328:gst_registry_scan_path_level:<registry0> marking plugin 0x3d1b1c20 as registered as /data/halley/gst-sdk/lib/gstreamer-1.0/libgstlevel.so
0:00:00.294586750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1287:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstnetsim.so looks like a possible module
0:00:00.294615000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1325:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstnetsim.so cached
0:00:00.294640375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1328:gst_registry_scan_path_level:<registry0> marking plugin 0x3d1b1d50 as registered as /data/halley/gst-sdk/lib/gstreamer-1.0/libgstnetsim.so
0:00:00.294683750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1287:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstgdp.so looks like a possible module
0:00:00.294711750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1325:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstgdp.so cached
0:00:00.294736750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1328:gst_registry_scan_path_level:<registry0> marking plugin 0x3d1b1e80 as registered as /data/halley/gst-sdk/lib/gstreamer-1.0/libgstgdp.so
0:00:00.294781000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1287:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgsticydemux.so looks like a possible module
0:00:00.294810375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1325:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgsticydemux.so cached
0:00:00.294836000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1328:gst_registry_scan_path_level:<registry0> marking plugin 0x3d1c5060 as registered as /data/halley/gst-sdk/lib/gstreamer-1.0/libgsticydemux.so
0:00:00.294880000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1287:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstbz2.so looks like a possible module
0:00:00.294924750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1325:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstbz2.so cached
0:00:00.294950250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1328:gst_registry_scan_path_level:<registry0> marking plugin 0x3d1c5190 as registered as /data/halley/gst-sdk/lib/gstreamer-1.0/libgstbz2.so
0:00:00.294993750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1287:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstipcpipeline.so looks like a possible module
0:00:00.295023125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1325:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstipcpipeline.so cached
0:00:00.295048500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1328:gst_registry_scan_path_level:<registry0> marking plugin 0x3d1c52c0 as registered as /data/halley/gst-sdk/lib/gstreamer-1.0/libgstipcpipeline.so
0:00:00.295091750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1287:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstvcdsrc.so looks like a possible module
0:00:00.295120500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1325:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstvcdsrc.so cached
0:00:00.295145125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1328:gst_registry_scan_path_level:<registry0> marking plugin 0x3d1c53f0 as registered as /data/halley/gst-sdk/lib/gstreamer-1.0/libgstvcdsrc.so
0:00:00.295188000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1287:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstdebugutilsbad.so looks like a possible module
0:00:00.295217250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1325:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstdebugutilsbad.so cached
0:00:00.295242375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1328:gst_registry_scan_path_level:<registry0> marking plugin 0x3d1c5520 as registered as /data/halley/gst-sdk/lib/gstreamer-1.0/libgstdebugutilsbad.so
0:00:00.295285875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1287:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstaudiomixmatrix.so looks like a possible module
0:00:00.295314625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1325:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstaudiomixmatrix.so cached
0:00:00.295340250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1328:gst_registry_scan_path_level:<registry0> marking plugin 0x3d1c5650 as registered as /data/halley/gst-sdk/lib/gstreamer-1.0/libgstaudiomixmatrix.so
0:00:00.295383750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1287:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstaudiofxbad.so looks like a possible module
0:00:00.295412625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1325:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstaudiofxbad.so cached
0:00:00.295438125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1328:gst_registry_scan_path_level:<registry0> marking plugin 0x3d1c5780 as registered as /data/halley/gst-sdk/lib/gstreamer-1.0/libgstaudiofxbad.so
0:00:00.295481250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1287:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstivfparse.so looks like a possible module
0:00:00.295510250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1325:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstivfparse.so cached
0:00:00.295550750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1328:gst_registry_scan_path_level:<registry0> marking plugin 0x3d1c58b0 as registered as /data/halley/gst-sdk/lib/gstreamer-1.0/libgstivfparse.so
0:00:00.295595250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1287:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstsiren.so looks like a possible module
0:00:00.295623500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1325:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstsiren.so cached
0:00:00.295648875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1328:gst_registry_scan_path_level:<registry0> marking plugin 0x3d1c59e0 as registered as /data/halley/gst-sdk/lib/gstreamer-1.0/libgstsiren.so
0:00:00.295691875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1287:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgsty4menc.so looks like a possible module
0:00:00.295720375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1325:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgsty4menc.so cached
0:00:00.295745500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1328:gst_registry_scan_path_level:<registry0> marking plugin 0x3d1c5b10 as registered as /data/halley/gst-sdk/lib/gstreamer-1.0/libgsty4menc.so
0:00:00.295788875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1287:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstvideorate.so looks like a possible module
0:00:00.295817750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1325:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstvideorate.so cached
0:00:00.295843125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1328:gst_registry_scan_path_level:<registry0> marking plugin 0x3d1c5c40 as registered as /data/halley/gst-sdk/lib/gstreamer-1.0/libgstvideorate.so
0:00:00.295886000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1287:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstrawparse.so looks like a possible module
0:00:00.295915375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1325:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstrawparse.so cached
0:00:00.295940750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1328:gst_registry_scan_path_level:<registry0> marking plugin 0x3d1c5d70 as registered as /data/halley/gst-sdk/lib/gstreamer-1.0/libgstrawparse.so
0:00:00.295983625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1287:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstbluez.so looks like a possible module
0:00:00.296012000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1325:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstbluez.so cached
0:00:00.296037375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1328:gst_registry_scan_path_level:<registry0> marking plugin 0x3d1c5ea0 as registered as /data/halley/gst-sdk/lib/gstreamer-1.0/libgstbluez.so
0:00:00.296081375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1287:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstdeinterlace.so looks like a possible module
0:00:00.296110375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1325:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstdeinterlace.so cached
0:00:00.296135500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1328:gst_registry_scan_path_level:<registry0> marking plugin 0x3d1cd010 as registered as /data/halley/gst-sdk/lib/gstreamer-1.0/libgstdeinterlace.so
0:00:00.296194875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1287:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstvideosignal.so looks like a possible module
0:00:00.296224250 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1325:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstvideosignal.so cached
0:00:00.296249375 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1328:gst_registry_scan_path_level:<registry0> marking plugin 0x3d1cd140 as registered as /data/halley/gst-sdk/lib/gstreamer-1.0/libgstvideosignal.so
0:00:00.296292875 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1287:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstalaw.so looks like a possible module
0:00:00.296321750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1325:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstalaw.so cached
0:00:00.296346625 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1328:gst_registry_scan_path_level:<registry0> marking plugin 0x3d1cd270 as registered as /data/halley/gst-sdk/lib/gstreamer-1.0/libgstalaw.so
0:00:00.296389750 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1287:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstsegmentclip.so looks like a possible module
0:00:00.296418500 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1325:gst_registry_scan_path_level:<registry0> file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstsegmentclip.so cached
0:00:00.296444125 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1328:gst_registry_scan_path_level:<registry0> marking plugin 0x3d1cd3a0 as registered as /data/halley/gst-sdk/lib/gstreamer-1.0/libgstsegmentclip.so
0:00:00.296566750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:1371:gst_registry_scan_path_internal:<registry0> registry changed in path /data/halley/gst-sdk/lib/gstreamer-1.0: 0
0:00:00.296594500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:1628:scan_and_update_registry: GST_PLUGIN_SYSTEM_PATH not set
0:00:00.296627750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:1635:scan_and_update_registry: scanning home plugins /root/.local/share/gstreamer-1.0/plugins
0:00:00.296653750 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:1367:gst_registry_scan_path_internal:<registry0> scanning path /root/.local/share/gstreamer-1.0/plugins
0:00:00.296702375 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:1371:gst_registry_scan_path_internal:<registry0> registry changed in path /root/.local/share/gstreamer-1.0/plugins: 0
0:00:00.296728625 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:1663:scan_and_update_registry: scanning main plugins /usr/lib/gstreamer-1.0
0:00:00.296754500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:1367:gst_registry_scan_path_internal:<registry0> scanning path /usr/lib/gstreamer-1.0
0:00:00.296799500 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:1371:gst_registry_scan_path_internal:<registry0> registry changed in path /usr/lib/gstreamer-1.0: 0
0:00:00.296830125 8744 0x3d0a0600 DEBUG GST_REGISTRY gstregistry.c:1530:gst_registry_remove_cache_plugins:<registry0> removing cached plugins
0:00:00.296894000 8744 0x3d0a0600 INFO GST_REGISTRY gstregistry.c:1685:scan_and_update_registry: Registry cache has not changed
0:00:00.296913500 8744 0x3d0a0600 INFO GST_REGISTRY gstregistry.c:1762:ensure_current_registry: registry reading and updating done, result = 1
0:00:00.296935000 8744 0x3d0a0600 LOG GST_REGISTRY gstregistry.c:1838:gst_update_registry: registry update succeeded
0:00:00.296969750 8744 0x3d0a0600 INFO GST_INIT gst.c:807:init_post: GLib runtime version: 2.38.2
0:00:00.296996500 8744 0x3d0a0600 INFO GST_INIT gst.c:809:init_post: GLib headers version: 2.54.3
0:00:00.297020875 8744 0x3d0a0600 INFO GST_INIT gst.c:810:init_post: initialized GStreamer successfully
0:00:00.297038750 8744 0x3d0a0600 DEBUG default gsttracerutils.h:703:_priv_gst_tracing_init: Tracing hooks are disabled
0:00:00.297138500 8744 0x3d0a0600 LOG GST_ELEMENT_FACTORY gstelementfactory.c:438:gst_element_factory_make: gstelementfactory: make "pipeline" "my_pipeline"
0:00:00.297177500 8744 0x3d0a0600 LOG GST_ELEMENT_FACTORY gstelementfactory.c:444:gst_element_factory_make:<pipeline> found factory 0x3d0c6120
0:00:00.297200875 8744 0x3d0a0600 DEBUG GST_PLUGIN_LOADING gstpluginfeature.c:107:gst_plugin_feature_load: loading plugin for feature 0x3d0c6120; 'pipeline'
0:00:00.297224875 8744 0x3d0a0600 INFO GST_ELEMENT_FACTORY gstelementfactory.c:359:gst_element_factory_create: creating element "pipeline" named "my_pipeline"
0:00:00.297363250 8744 0x3d0a0600 DEBUG GST_BUS gstbus.c:232:gst_bus_init:<GstBus at 0x3d1db120> created
0:00:00.297447625 8744 0x3d0a0600 DEBUG bin gstbin.c:502:gst_bin_init:<GstBin at 0x3d1de1d0> using bus <bus0> to listen to children
0:00:00.297491125 8744 0x3d0a0600 DEBUG GST_BUS gstbus.c:232:gst_bus_init:<GstBus at 0x3d1db1f0> created
0:00:00.297534625 8744 0x3d0a0600 DEBUG GST_POLL gstpoll.c:681:gst_poll_new: 0x3d154a30: new controllable : 1
0:00:00.297606750 8744 0x3d0a0600 DEBUG GST_POLL gstpoll.c:848:gst_poll_add_fd_unlocked: 0x3d154a30: fd (fd:4, idx:0)
0:00:00.297636875 8744 0x3d0a0600 DEBUG GST_POLL gstpoll.c:1015:gst_poll_fd_ctl_read_unlocked: 0x3d154a30: fd (fd:4, idx:0), active : 1
0:00:00.297675250 8744 0x3d0a0600 DEBUG GST_BUS gstbus.c:286:gst_bus_new:<bus1> created new bus
0:00:00.297705250 8744 0x3d0a0600 DEBUG GST_PARENTAGE gstelement.c:3346:gst_element_set_bus_func:<GstPipeline at 0x3d1de1d0> setting bus to 0x3d1db1f0
0:00:00.297736375 8744 0x3d0a0600 DEBUG pipeline gstpipeline.c:237:gst_pipeline_init:<GstPipeline at 0x3d1de1d0> set bus <bus1> on pipeline
0:00:00.297774625 8744 0x3d0a0600 DEBUG GST_ELEMENT_FACTORY gstelementfactory.c:389:gst_element_factory_create: created element "pipeline"
0:00:00.297801625 8744 0x3d0a0600 LOG GST_ELEMENT_FACTORY gstelementfactory.c:438:gst_element_factory_make: gstelementfactory: make "appsrc" "my_appsrc"
0:00:00.297833375 8744 0x3d0a0600 LOG GST_ELEMENT_FACTORY gstelementfactory.c:444:gst_element_factory_make:<appsrc> found factory 0x3d141c10
0:00:00.297914000 8744 0x3d0a0600 DEBUG GST_PLUGIN_LOADING gstpluginfeature.c:107:gst_plugin_feature_load: loading plugin for feature 0x3d141c10; 'appsrc'
0:00:00.297939250 8744 0x3d0a0600 DEBUG GST_PLUGIN_LOADING gstpluginfeature.c:111:gst_plugin_feature_load: loading plugin app
0:00:00.297960125 8744 0x3d0a0600 DEBUG GST_PLUGIN_LOADING gstplugin.c:1321:gst_plugin_load_by_name: looking up plugin app in default registry
0:00:00.298073625 8744 0x3d0a0600 DEBUG GST_PLUGIN_LOADING gstplugin.c:1324:gst_plugin_load_by_name: loading plugin app from file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstapp.so
0:00:00.298127125 8744 0x3d0a0600 DEBUG GST_PLUGIN_LOADING gstplugin.c:760:_priv_gst_plugin_load_file_for_registry: attempt to load plugin "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstapp.so"
0:00:00.299217125 8744 0x3d0a0600 LOG GST_PLUGIN_LOADING gstplugin.c:876:_priv_gst_plugin_load_file_for_registry: Plugin 0x3d19f2c0 for file "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstapp.so" prepared, calling entry function...
0:00:00.299261625 8744 0x3d0a0600 LOG GST_PLUGIN_LOADING gstplugin.c:883:_priv_gst_plugin_load_file_for_registry: Plugin 0x3d19f2c0 for file "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstapp.so" prepared, registering...
0:00:00.299316375 8744 0x3d0a0600 LOG GST_PLUGIN_LOADING gstplugin.c:506:gst_plugin_register_func: plugin "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstapp.so" looks good
0:00:00.299465125 8744 0x3d0a0600 DEBUG GST_ELEMENT_FACTORY gstelementfactory.c:224:gst_element_register:<registry0> update existing feature 0x3d141c10 (appsrc)
0:00:00.299538500 8744 0x3d0a0600 DEBUG GST_ELEMENT_FACTORY gstelementfactory.c:224:gst_element_register:<registry0> update existing feature 0x3d141cf0 (appsink)
0:00:00.299567000 8744 0x3d0a0600 LOG GST_PLUGIN_LOADING gstplugin.c:533:gst_plugin_register_func: plugin "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstapp.so" initialised
0:00:00.299591125 8744 0x3d0a0600 INFO GST_PLUGIN_LOADING gstplugin.c:901:_priv_gst_plugin_load_file_for_registry: plugin "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstapp.so" loaded
0:00:00.299614125 8744 0x3d0a0600 DEBUG GST_PLUGIN_LOADING gstpluginfeature.c:116:gst_plugin_feature_load: loaded plugin app
0:00:00.299637250 8744 0x3d0a0600 INFO GST_ELEMENT_FACTORY gstelementfactory.c:359:gst_element_factory_create: creating element "appsrc" named "my_appsrc"
0:00:00.299674500 8744 0x3d0a0600 DEBUG GST_ELEMENT_PADS gstelement.c:302:gst_element_base_class_init: type GstBaseSrc : factory (nil)
0:00:00.299708750 8744 0x3d0a0600 LOG GST_DEBUG gstinfo.c:1595:gst_debug_reset_threshold: category basesrc matches pattern 0x3d0a0430 - gets set to level 6
0:00:00.299822500 8744 0x3d0a0600 DEBUG GST_ELEMENT_PADS gstelement.c:302:gst_element_base_class_init: type GstAppSrc : factory 0x3d141c10
0:00:00.299856375 8744 0x3d0a0600 LOG GST_DEBUG gstinfo.c:1595:gst_debug_reset_threshold: category appsrc matches pattern 0x3d0a0430 - gets set to level 6
0:00:00.300293000 8744 0x3d0a0600 DEBUG basesrc gstbasesrc.c:444:gst_base_src_init:<GstBaseSrc at 0x3d1e29d0> creating src pad
0:00:00.300384000 8744 0x3d0a0600 DEBUG basesrc gstbasesrc.c:447:gst_base_src_init:<GstBaseSrc at 0x3d1e29d0> setting functions on src pad
0:00:00.300418750 8744 0x3d0a0600 DEBUG GST_PADS gstpad.c:1771:gst_pad_set_activatemode_function_full:<'':src> activatemodefunc set to gst_base_src_activate_mode
0:00:00.300453875 8744 0x3d0a0600 DEBUG GST_PADS gstpad.c:1912:gst_pad_set_event_function_full:<'':src> eventfunc for set to gst_base_src_event
0:00:00.300487125 8744 0x3d0a0600 DEBUG GST_PADS gstpad.c:1992:gst_pad_set_query_function_full:<'':src> queryfunc set to gst_base_src_query
0:00:00.300520625 8744 0x3d0a0600 DEBUG GST_PADS gstpad.c:1879:gst_pad_set_getrange_function_full:<'':src> getrangefunc set to gst_base_src_getrange
0:00:00.300549375 8744 0x3d0a0600 DEBUG basesrc gstbasesrc.c:455:gst_base_src_init:<GstBaseSrc at 0x3d1e29d0> adding src pad
0:00:00.300578750 8744 0x3d0a0600 INFO GST_ELEMENT_PADS gstelement.c:670:gst_element_add_pad:<GstBaseSrc at 0x3d1e29d0> adding pad 'src'
0:00:00.300608625 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<'':src> set parent (ref and sink)
0:00:00.300650750 8744 0x3d0a0600 DEBUG basesrc gstbasesrc.c:471:gst_base_src_init:<GstBaseSrc at 0x3d1e29d0> init done
0:00:00.300711125 8744 0x3d0a0600 DEBUG GST_ELEMENT_FACTORY gstelementfactory.c:389:gst_element_factory_create: created element "appsrc"
0:00:00.300735875 8744 0x3d0a0600 LOG GST_ELEMENT_FACTORY gstelementfactory.c:438:gst_element_factory_make: gstelementfactory: make "h264parse" "my_h264parse"
0:00:00.300769250 8744 0x3d0a0600 LOG GST_ELEMENT_FACTORY gstelementfactory.c:444:gst_element_factory_make:<h264parse> found factory 0x3d11dec0
0:00:00.300791625 8744 0x3d0a0600 DEBUG GST_PLUGIN_LOADING gstpluginfeature.c:107:gst_plugin_feature_load: loading plugin for feature 0x3d11dec0; 'h264parse'
0:00:00.300834625 8744 0x3d0a0600 DEBUG GST_PLUGIN_LOADING gstpluginfeature.c:111:gst_plugin_feature_load: loading plugin videoparsersbad
0:00:00.300857375 8744 0x3d0a0600 DEBUG GST_PLUGIN_LOADING gstplugin.c:1321:gst_plugin_load_by_name: looking up plugin videoparsersbad in default registry
0:00:00.300991750 8744 0x3d0a0600 DEBUG GST_PLUGIN_LOADING gstplugin.c:1324:gst_plugin_load_by_name: loading plugin videoparsersbad from file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstvideoparsersbad.so
0:00:00.301022500 8744 0x3d0a0600 DEBUG GST_PLUGIN_LOADING gstplugin.c:760:_priv_gst_plugin_load_file_for_registry: attempt to load plugin "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstvideoparsersbad.so"
0:00:00.304684000 8744 0x3d0a0600 LOG GST_PLUGIN_LOADING gstplugin.c:876:_priv_gst_plugin_load_file_for_registry: Plugin 0x3d11e500 for file "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstvideoparsersbad.so" prepared, calling entry function...
0:00:00.304800750 8744 0x3d0a0600 LOG GST_PLUGIN_LOADING gstplugin.c:883:_priv_gst_plugin_load_file_for_registry: Plugin 0x3d11e500 for file "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstvideoparsersbad.so" prepared, registering...
0:00:00.304849375 8744 0x3d0a0600 LOG GST_PLUGIN_LOADING gstplugin.c:506:gst_plugin_register_func: plugin "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstvideoparsersbad.so" looks good
0:00:00.305012750 8744 0x3d0a0600 DEBUG GST_ELEMENT_FACTORY gstelementfactory.c:224:gst_element_register:<registry0> update existing feature 0x3d11dde0 (h263parse)
0:00:00.305141750 8744 0x3d0a0600 DEBUG GST_ELEMENT_FACTORY gstelementfactory.c:224:gst_element_register:<registry0> update existing feature 0x3d11dec0 (h264parse)
0:00:00.305189000 8744 0x3d0a0600 DEBUG GST_ELEMENT_FACTORY gstelementfactory.c:224:gst_element_register:<registry0> update existing feature 0x3d124850 (diracparse)
0:00:00.305229250 8744 0x3d0a0600 DEBUG GST_ELEMENT_FACTORY gstelementfactory.c:224:gst_element_register:<registry0> update existing feature 0x3d124930 (mpegvideoparse)
0:00:00.305270375 8744 0x3d0a0600 DEBUG GST_ELEMENT_FACTORY gstelementfactory.c:224:gst_element_register:<registry0> update existing feature 0x3d124a10 (mpeg4videoparse)
0:00:00.305312500 8744 0x3d0a0600 DEBUG GST_ELEMENT_FACTORY gstelementfactory.c:224:gst_element_register:<registry0> update existing feature 0x3d124af0 (pngparse)
0:00:00.305371000 8744 0x3d0a0600 DEBUG GST_ELEMENT_FACTORY gstelementfactory.c:224:gst_element_register:<registry0> update existing feature 0x3d124bd0 (h265parse)
0:00:00.305413125 8744 0x3d0a0600 DEBUG GST_ELEMENT_FACTORY gstelementfactory.c:224:gst_element_register:<registry0> update existing feature 0x3d124cb0 (vc1parse)
0:00:00.305439375 8744 0x3d0a0600 LOG GST_PLUGIN_LOADING gstplugin.c:533:gst_plugin_register_func: plugin "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstvideoparsersbad.so" initialised
0:00:00.305463125 8744 0x3d0a0600 INFO GST_PLUGIN_LOADING gstplugin.c:901:_priv_gst_plugin_load_file_for_registry: plugin "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstvideoparsersbad.so" loaded
0:00:00.305487125 8744 0x3d0a0600 DEBUG GST_PLUGIN_LOADING gstpluginfeature.c:116:gst_plugin_feature_load: loaded plugin videoparsersbad
0:00:00.305511375 8744 0x3d0a0600 INFO GST_ELEMENT_FACTORY gstelementfactory.c:359:gst_element_factory_create: creating element "h264parse" named "my_h264parse"
0:00:00.305551750 8744 0x3d0a0600 DEBUG GST_ELEMENT_PADS gstelement.c:302:gst_element_base_class_init: type GstBaseParse : factory (nil)
0:00:00.305609750 8744 0x3d0a0600 LOG GST_DEBUG gstinfo.c:1595:gst_debug_reset_threshold: category baseparse matches pattern 0x3d0a0430 - gets set to level 6
0:00:00.305659500 8744 0x3d0a0600 DEBUG GST_ELEMENT_PADS gstelement.c:302:gst_element_base_class_init: type GstH264Parse : factory 0x3d11dec0
0:00:00.305686125 8744 0x3d0a0600 LOG GST_DEBUG gstinfo.c:1595:gst_debug_reset_threshold: category h264parse matches pattern 0x3d0a0430 - gets set to level 6
0:00:00.305800125 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'parsed'
0:00:00.305828500 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'boolean'
0:00:00.305861500 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'stream-format'
0:00:00.305883375 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.305917125 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'alignment'
0:00:00.305939625 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.306139250 8744 0x3d0a0600 DEBUG baseparse gstbaseparse.c:572:gst_base_parse_init:<GstBaseParse at 0x3d209a60> gst_base_parse_init
0:00:00.306214875 8744 0x3d0a0600 DEBUG GST_PADS gstpad.c:1912:gst_pad_set_event_function_full:<'':sink> eventfunc for set to gst_base_parse_sink_event
0:00:00.306248375 8744 0x3d0a0600 DEBUG GST_PADS gstpad.c:1992:gst_pad_set_query_function_full:<'':sink> queryfunc set to gst_base_parse_sink_query
0:00:00.306284500 8744 0x3d0a0600 DEBUG GST_PADS gstpad.c:1806:gst_pad_set_chain_function_full:<'':sink> chainfunc set to gst_base_parse_chain
0:00:00.306317125 8744 0x3d0a0600 DEBUG GST_PADS gstpad.c:1736:gst_pad_set_activate_function_full:<'':sink> activatefunc set to gst_base_parse_sink_activate
0:00:00.306347625 8744 0x3d0a0600 DEBUG GST_PADS gstpad.c:1771:gst_pad_set_activatemode_function_full:<'':sink> activatemodefunc set to gst_base_parse_sink_activate_mode
0:00:00.306378250 8744 0x3d0a0600 INFO GST_ELEMENT_PADS gstelement.c:670:gst_element_add_pad:<GstBaseParse at 0x3d209a60> adding pad 'sink'
0:00:00.306407750 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<'':sink> set parent (ref and sink)
0:00:00.306439250 8744 0x3d0a0600 DEBUG baseparse gstbaseparse.c:593:gst_base_parse_init:<GstBaseParse at 0x3d209a60> sinkpad created
0:00:00.306491250 8744 0x3d0a0600 DEBUG GST_PADS gstpad.c:1912:gst_pad_set_event_function_full:<'':src> eventfunc for set to gst_base_parse_src_event
0:00:00.306522000 8744 0x3d0a0600 DEBUG GST_PADS gstpad.c:1992:gst_pad_set_query_function_full:<'':src> queryfunc set to gst_base_parse_src_query
0:00:00.306556625 8744 0x3d0a0600 INFO GST_ELEMENT_PADS gstelement.c:670:gst_element_add_pad:<GstBaseParse at 0x3d209a60> adding pad 'src'
0:00:00.306584875 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<'':src> set parent (ref and sink)
0:00:00.306613625 8744 0x3d0a0600 DEBUG baseparse gstbaseparse.c:605:gst_base_parse_init:<GstBaseParse at 0x3d209a60> src created
0:00:00.306651250 8744 0x3d0a0600 LOG GST_DEBUG gstinfo.c:1595:gst_debug_reset_threshold: category adapter matches pattern 0x3d0a0430 - gets set to level 6
0:00:00.306728625 8744 0x3d0a0600 DEBUG baseparse gstbaseparse.c:617:gst_base_parse_init:<GstBaseParse at 0x3d209a60> init ok
0:00:00.306764875 8744 0x3d0a0600 INFO baseparse gstbaseparse.c:3978:gst_base_parse_set_pts_interpolation:<GstH264Parse at 0x3d209a60> PTS interpolation: no
0:00:00.306806750 8744 0x3d0a0600 DEBUG GST_ELEMENT_FACTORY gstelementfactory.c:389:gst_element_factory_create: created element "h264parse"
0:00:00.306831625 8744 0x3d0a0600 LOG GST_ELEMENT_FACTORY gstelementfactory.c:438:gst_element_factory_make: gstelementfactory: make "v4l2h264dec" "my_vdec"
0:00:00.306864125 8744 0x3d0a0600 LOG GST_ELEMENT_FACTORY gstelementfactory.c:444:gst_element_factory_make:<v4l2h264dec> found factory 0x3d1d5100
0:00:00.306903750 8744 0x3d0a0600 DEBUG GST_PLUGIN_LOADING gstpluginfeature.c:107:gst_plugin_feature_load: loading plugin for feature 0x3d1d5100; 'v4l2h264dec'
0:00:00.306927250 8744 0x3d0a0600 DEBUG GST_PLUGIN_LOADING gstpluginfeature.c:111:gst_plugin_feature_load: loading plugin video4linux2
0:00:00.306947250 8744 0x3d0a0600 DEBUG GST_PLUGIN_LOADING gstplugin.c:1321:gst_plugin_load_by_name: looking up plugin video4linux2 in default registry
0:00:00.307218000 8744 0x3d0a0600 DEBUG GST_PLUGIN_LOADING gstplugin.c:1324:gst_plugin_load_by_name: loading plugin video4linux2 from file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstvideo4linux2.so
0:00:00.307253125 8744 0x3d0a0600 DEBUG GST_PLUGIN_LOADING gstplugin.c:760:_priv_gst_plugin_load_file_for_registry: attempt to load plugin "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstvideo4linux2.so"
0:00:00.318139000 8744 0x3d0a0600 LOG GST_PLUGIN_LOADING gstplugin.c:876:_priv_gst_plugin_load_file_for_registry: Plugin 0x3d1cd600 for file "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstvideo4linux2.so" prepared, calling entry function...
0:00:00.318280000 8744 0x3d0a0600 LOG GST_PLUGIN_LOADING gstplugin.c:883:_priv_gst_plugin_load_file_for_registry: Plugin 0x3d1cd600 for file "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstvideo4linux2.so" prepared, registering...
0:00:00.318326500 8744 0x3d0a0600 LOG GST_PLUGIN_LOADING gstplugin.c:506:gst_plugin_register_func: plugin "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstvideo4linux2.so" looks good
0:00:00.318374000 8744 0x3d0a0600 LOG GST_DEBUG gstinfo.c:1595:gst_debug_reset_threshold: category v4l2 matches pattern 0x3d0a0430 - gets set to level 6
0:00:00.318452000 8744 0x3d0a0600 LOG GST_PLUGIN_LOADING gstplugin.c:1859:gst_plugin_add_dependency:<plugin148> dependency already registered
0:00:00.318524750 8744 0x3d0a0600 LOG GST_DEBUG gstinfo.c:1595:gst_debug_reset_threshold: category pushsrc matches pattern 0x3d0a0430 - gets set to level 6
0:00:00.318702875 8744 0x3d0a0600 DEBUG GST_ELEMENT_FACTORY gstelementfactory.c:224:gst_element_register:<registry0> update existing feature 0x3d1da2a0 (v4l2src)
0:00:00.318791125 8744 0x3d0a0600 DEBUG GST_ELEMENT_FACTORY gstelementfactory.c:224:gst_element_register:<registry0> update existing feature 0x3d1da1c0 (v4l2sink)
0:00:00.318839000 8744 0x3d0a0600 DEBUG GST_ELEMENT_FACTORY gstelementfactory.c:224:gst_element_register:<registry0> update existing feature 0x3d1da0e0 (v4l2radio)
0:00:00.318894000 8744 0x3d0a0600 DEBUG GST_DEVICE_PROVIDER_FACTORY gstdeviceproviderfactory.c:191:gst_device_provider_register:<registry0> update existing feature 0x3d1db000 (v4l2deviceprovider)
0:00:00.340139625 8744 0x3d0a0600 DEBUG v4l2 gstv4l2.c:148:gst_v4l2_probe_and_register: Probing 'vpu B0' located at '/dev/video12'
0:00:00.340283750 8744 0x3d0a0600 DEBUG v4l2 gstv4l2.c:72:gst_v4l2_probe_template_caps: Getting /dev/video12 format enumerations
0:00:00.340375625 8744 0x3d0a0600 DEBUG v4l2 gstv4l2.c:72:gst_v4l2_probe_template_caps: Getting /dev/video12 format enumerations
0:00:00.340431125 8744 0x3d0a0600 LOG v4l2 gstv4l2.c:86:gst_v4l2_probe_template_caps: index: 0
0:00:00.340475125 8744 0x3d0a0600 LOG v4l2 gstv4l2.c:87:gst_v4l2_probe_template_caps: type: 10
0:00:00.340516750 8744 0x3d0a0600 LOG v4l2 gstv4l2.c:88:gst_v4l2_probe_template_caps: flags: 00000001
0:00:00.340558625 8744 0x3d0a0600 LOG v4l2 gstv4l2.c:89:gst_v4l2_probe_template_caps: description: 'H.264'
0:00:00.340600125 8744 0x3d0a0600 LOG v4l2 gstv4l2.c:91:gst_v4l2_probe_template_caps: pixelformat: H264
0:00:00.340748625 8744 0x3d0a0600 LOG v4l2 gstv4l2.c:86:gst_v4l2_probe_template_caps: index: 1
0:00:00.340793500 8744 0x3d0a0600 LOG v4l2 gstv4l2.c:87:gst_v4l2_probe_template_caps: type: 10
0:00:00.340915000 8744 0x3d0a0600 LOG v4l2 gstv4l2.c:88:gst_v4l2_probe_template_caps: flags: 00000001
0:00:00.340959875 8744 0x3d0a0600 LOG v4l2 gstv4l2.c:89:gst_v4l2_probe_template_caps: description: 'VC-1 (SMPTE 412M Annex G)'
0:00:00.341001875 8744 0x3d0a0600 LOG v4l2 gstv4l2.c:91:gst_v4l2_probe_template_caps: pixelformat: VC1G
0:00:00.341124250 8744 0x3d0a0600 LOG v4l2 gstv4l2.c:86:gst_v4l2_probe_template_caps: index: 2
0:00:00.341177000 8744 0x3d0a0600 LOG v4l2 gstv4l2.c:87:gst_v4l2_probe_template_caps: type: 10
0:00:00.341218250 8744 0x3d0a0600 LOG v4l2 gstv4l2.c:88:gst_v4l2_probe_template_caps: flags: 00000001
0:00:00.341258500 8744 0x3d0a0600 LOG v4l2 gstv4l2.c:89:gst_v4l2_probe_template_caps: description: 'VC-1 (SMPTE 412M Annex L)'
0:00:00.341299375 8744 0x3d0a0600 LOG v4l2 gstv4l2.c:91:gst_v4l2_probe_template_caps: pixelformat: VC1L
0:00:00.341365875 8744 0x3d0a0600 LOG v4l2 gstv4l2.c:86:gst_v4l2_probe_template_caps: index: 3
0:00:00.341408875 8744 0x3d0a0600 LOG v4l2 gstv4l2.c:87:gst_v4l2_probe_template_caps: type: 10
0:00:00.341449750 8744 0x3d0a0600 LOG v4l2 gstv4l2.c:88:gst_v4l2_probe_template_caps: flags: 00000001
0:00:00.341490875 8744 0x3d0a0600 LOG v4l2 gstv4l2.c:89:gst_v4l2_probe_template_caps: description: 'MPEG-2 ES'
0:00:00.341531125 8744 0x3d0a0600 LOG v4l2 gstv4l2.c:91:gst_v4l2_probe_template_caps: pixelformat: MPG2
0:00:00.341595000 8744 0x3d0a0600 LOG v4l2 gstv4l2.c:86:gst_v4l2_probe_template_caps: index: 4
0:00:00.341637250 8744 0x3d0a0600 LOG v4l2 gstv4l2.c:87:gst_v4l2_probe_template_caps: type: 10
0:00:00.341678250 8744 0x3d0a0600 LOG v4l2 gstv4l2.c:88:gst_v4l2_probe_template_caps: flags: 00000001
0:00:00.341718750 8744 0x3d0a0600 LOG v4l2 gstv4l2.c:89:gst_v4l2_probe_template_caps: description: 'AVS Encoded Stream'
0:00:00.341760250 8744 0x3d0a0600 LOG v4l2 gstv4l2.c:91:gst_v4l2_probe_template_caps: pixelformat: AVS0
0:00:00.341821250 8744 0x3d0a0600 LOG v4l2 gstv4l2.c:86:gst_v4l2_probe_template_caps: index: 5
0:00:00.341863000 8744 0x3d0a0600 LOG v4l2 gstv4l2.c:87:gst_v4l2_probe_template_caps: type: 10
0:00:00.341903000 8744 0x3d0a0600 LOG v4l2 gstv4l2.c:88:gst_v4l2_probe_template_caps: flags: 00000001
0:00:00.341943125 8744 0x3d0a0600 LOG v4l2 gstv4l2.c:89:gst_v4l2_probe_template_caps: description: 'MPEG-4 part 2 ES'
0:00:00.341984125 8744 0x3d0a0600 LOG v4l2 gstv4l2.c:91:gst_v4l2_probe_template_caps: pixelformat: MPG4
0:00:00.342050125 8744 0x3d0a0600 LOG v4l2 gstv4l2.c:86:gst_v4l2_probe_template_caps: index: 6
0:00:00.342092625 8744 0x3d0a0600 LOG v4l2 gstv4l2.c:87:gst_v4l2_probe_template_caps: type: 10
0:00:00.342133375 8744 0x3d0a0600 LOG v4l2 gstv4l2.c:88:gst_v4l2_probe_template_caps: flags: 00000001
0:00:00.342174000 8744 0x3d0a0600 LOG v4l2 gstv4l2.c:89:gst_v4l2_probe_template_caps: description: 'DIVX Encoded Stream'
0:00:00.342215375 8744 0x3d0a0600 LOG v4l2 gstv4l2.c:91:gst_v4l2_probe_template_caps: pixelformat: DIVX
0:00:00.342279500 8744 0x3d0a0600 LOG v4l2 gstv4l2.c:86:gst_v4l2_probe_template_caps: index: 7
0:00:00.342322000 8744 0x3d0a0600 LOG v4l2 gstv4l2.c:87:gst_v4l2_probe_template_caps: type: 10
0:00:00.342362500 8744 0x3d0a0600 LOG v4l2 gstv4l2.c:88:gst_v4l2_probe_template_caps: flags: 00000001
0:00:00.342435500 8744 0x3d0a0600 LOG v4l2 gstv4l2.c:89:gst_v4l2_probe_template_caps: description: 'JFIF JPEG'
0:00:00.342477750 8744 0x3d0a0600 LOG v4l2 gstv4l2.c:91:gst_v4l2_probe_template_caps: pixelformat: JPEG
0:00:00.342537375 8744 0x3d0a0600 LOG v4l2 gstv4l2.c:86:gst_v4l2_probe_template_caps: index: 8
0:00:00.342579250 8744 0x3d0a0600 LOG v4l2 gstv4l2.c:87:gst_v4l2_probe_template_caps: type: 10
0:00:00.342619375 8744 0x3d0a0600 LOG v4l2 gstv4l2.c:88:gst_v4l2_probe_template_caps: flags: 00000001
0:00:00.342660125 8744 0x3d0a0600 LOG v4l2 gstv4l2.c:89:gst_v4l2_probe_template_caps: description: 'RV Encoded Stream'
0:00:00.342701125 8744 0x3d0a0600 LOG v4l2 gstv4l2.c:91:gst_v4l2_probe_template_caps: pixelformat: RV00
0:00:00.342763250 8744 0x3d0a0600 LOG v4l2 gstv4l2.c:86:gst_v4l2_probe_template_caps: index: 9
0:00:00.342804750 8744 0x3d0a0600 LOG v4l2 gstv4l2.c:87:gst_v4l2_probe_template_caps: type: 10
0:00:00.342845125 8744 0x3d0a0600 LOG v4l2 gstv4l2.c:88:gst_v4l2_probe_template_caps: flags: 00000001
0:00:00.342886000 8744 0x3d0a0600 LOG v4l2 gstv4l2.c:89:gst_v4l2_probe_template_caps: description: 'VP6 Encoded Stream'
0:00:00.342926500 8744 0x3d0a0600 LOG v4l2 gstv4l2.c:91:gst_v4l2_probe_template_caps: pixelformat: VP60
0:00:00.342983875 8744 0x3d0a0600 LOG v4l2 gstv4l2.c:86:gst_v4l2_probe_template_caps: index: 10
0:00:00.343026125 8744 0x3d0a0600 LOG v4l2 gstv4l2.c:87:gst_v4l2_probe_template_caps: type: 10
0:00:00.343066250 8744 0x3d0a0600 LOG v4l2 gstv4l2.c:88:gst_v4l2_probe_template_caps: flags: 00000001
0:00:00.343106875 8744 0x3d0a0600 LOG v4l2 gstv4l2.c:89:gst_v4l2_probe_template_caps: description: 'SPK Encoded Stream'
0:00:00.343147750 8744 0x3d0a0600 LOG v4l2 gstv4l2.c:91:gst_v4l2_probe_template_caps: pixelformat: SPK0
0:00:00.343211250 8744 0x3d0a0600 LOG v4l2 gstv4l2.c:86:gst_v4l2_probe_template_caps: index: 11
0:00:00.343253125 8744 0x3d0a0600 LOG v4l2 gstv4l2.c:87:gst_v4l2_probe_template_caps: type: 10
0:00:00.343293250 8744 0x3d0a0600 LOG v4l2 gstv4l2.c:88:gst_v4l2_probe_template_caps: flags: 00000001
0:00:00.343333625 8744 0x3d0a0600 LOG v4l2 gstv4l2.c:89:gst_v4l2_probe_template_caps: description: 'H.263'
0:00:00.343372750 8744 0x3d0a0600 LOG v4l2 gstv4l2.c:91:gst_v4l2_probe_template_caps: pixelformat: H263
0:00:00.343436500 8744 0x3d0a0600 LOG v4l2 gstv4l2.c:86:gst_v4l2_probe_template_caps: index: 12
0:00:00.343479125 8744 0x3d0a0600 LOG v4l2 gstv4l2.c:87:gst_v4l2_probe_template_caps: type: 10
0:00:00.343520000 8744 0x3d0a0600 LOG v4l2 gstv4l2.c:88:gst_v4l2_probe_template_caps: flags: 00000001
0:00:00.343560500 8744 0x3d0a0600 LOG v4l2 gstv4l2.c:89:gst_v4l2_probe_template_caps: description: 'VP8'
0:00:00.343600250 8744 0x3d0a0600 LOG v4l2 gstv4l2.c:91:gst_v4l2_probe_template_caps: pixelformat: VP80
0:00:00.343659625 8744 0x3d0a0600 LOG v4l2 gstv4l2.c:86:gst_v4l2_probe_template_caps: index: 13
0:00:00.343701500 8744 0x3d0a0600 LOG v4l2 gstv4l2.c:87:gst_v4l2_probe_template_caps: type: 10
0:00:00.343741125 8744 0x3d0a0600 LOG v4l2 gstv4l2.c:88:gst_v4l2_probe_template_caps: flags: 00000001
0:00:00.343780625 8744 0x3d0a0600 LOG v4l2 gstv4l2.c:89:gst_v4l2_probe_template_caps: description: 'H.264 MVC'
0:00:00.343851875 8744 0x3d0a0600 LOG v4l2 gstv4l2.c:91:gst_v4l2_probe_template_caps: pixelformat: M264
0:00:00.343902625 8744 0x3d0a0600 DEBUG v4l2 gstv4l2object.c:1589:gst_v4l2_object_v4l2fourcc_to_bare_struct: Unsupported fourcc 0x3436324d M264
0:00:00.343961000 8744 0x3d0a0600 LOG v4l2 gstv4l2.c:86:gst_v4l2_probe_template_caps: index: 14
0:00:00.344001375 8744 0x3d0a0600 LOG v4l2 gstv4l2.c:87:gst_v4l2_probe_template_caps: type: 10
0:00:00.344117375 8744 0x3d0a0600 LOG v4l2 gstv4l2.c:88:gst_v4l2_probe_template_caps: flags: 00000001
0:00:00.344144125 8744 0x3d0a0600 LOG v4l2 gstv4l2.c:89:gst_v4l2_probe_template_caps: description: 'H265 HEVC Encoded Stream'
0:00:00.344171000 8744 0x3d0a0600 LOG v4l2 gstv4l2.c:91:gst_v4l2_probe_template_caps: pixelformat: HEVC
0:00:00.344215000 8744 0x3d0a0600 LOG v4l2 gstv4l2.c:86:gst_v4l2_probe_template_caps: index: 15
0:00:00.344243000 8744 0x3d0a0600 LOG v4l2 gstv4l2.c:87:gst_v4l2_probe_template_caps: type: 10
0:00:00.344269250 8744 0x3d0a0600 LOG v4l2 gstv4l2.c:88:gst_v4l2_probe_template_caps: flags: 00000001
0:00:00.344295750 8744 0x3d0a0600 LOG v4l2 gstv4l2.c:89:gst_v4l2_probe_template_caps: description: 'Logo'
0:00:00.344321750 8744 0x3d0a0600 LOG v4l2 gstv4l2.c:91:gst_v4l2_probe_template_caps: pixelformat: LOGO
0:00:00.344353000 8744 0x3d0a0600 DEBUG v4l2 gstv4l2object.c:1589:gst_v4l2_object_v4l2fourcc_to_bare_struct: Unsupported fourcc 0x4f474f4c LOGO
0:00:00.344501750 8744 0x3d0a0600 DEBUG v4l2 gstv4l2.c:72:gst_v4l2_probe_template_caps: Getting /dev/video12 format enumerations
0:00:00.344537750 8744 0x3d0a0600 DEBUG v4l2 gstv4l2.c:72:gst_v4l2_probe_template_caps: Getting /dev/video12 format enumerations
0:00:00.344572000 8744 0x3d0a0600 LOG v4l2 gstv4l2.c:86:gst_v4l2_probe_template_caps: index: 0
0:00:00.344599625 8744 0x3d0a0600 LOG v4l2 gstv4l2.c:87:gst_v4l2_probe_template_caps: type: 9
0:00:00.344626250 8744 0x3d0a0600 LOG v4l2 gstv4l2.c:88:gst_v4l2_probe_template_caps: flags: 00000000
0:00:00.344653125 8744 0x3d0a0600 LOG v4l2 gstv4l2.c:89:gst_v4l2_probe_template_caps: description: 'Y/CbCr 4:2:0'
0:00:00.344679500 8744 0x3d0a0600 LOG v4l2 gstv4l2.c:91:gst_v4l2_probe_template_caps: pixelformat: NV12
0:00:00.344768375 8744 0x3d0a0600 LOG v4l2 gstv4l2.c:86:gst_v4l2_probe_template_caps: index: 1
0:00:00.344798000 8744 0x3d0a0600 LOG v4l2 gstv4l2.c:87:gst_v4l2_probe_template_caps: type: 9
0:00:00.344825875 8744 0x3d0a0600 LOG v4l2 gstv4l2.c:88:gst_v4l2_probe_template_caps: flags: 00000000
0:00:00.344853250 8744 0x3d0a0600 LOG v4l2 gstv4l2.c:89:gst_v4l2_probe_template_caps: description: '4:2:0 2 Planes Y/CbCr'
0:00:00.344881125 8744 0x3d0a0600 LOG v4l2 gstv4l2.c:91:gst_v4l2_probe_template_caps: pixelformat: NT12
0:00:00.344913000 8744 0x3d0a0600 DEBUG v4l2 gstv4l2object.c:1589:gst_v4l2_object_v4l2fourcc_to_bare_struct: Unsupported fourcc 0x3231544e NT12
0:00:00.345083750 8744 0x3d0a0600 DEBUG v4l2 gstv4l2object.c:1589:gst_v4l2_object_v4l2fourcc_to_bare_struct: Unsupported fourcc 0x3436324d M264
0:00:00.345391625 8744 0x3d0a0600 DEBUG v4l2 gstv4l2object.c:1589:gst_v4l2_object_v4l2fourcc_to_bare_struct: Unsupported fourcc 0x31424752 RGB1
0:00:00.345432750 8744 0x3d0a0600 DEBUG v4l2 gstv4l2object.c:1589:gst_v4l2_object_v4l2fourcc_to_bare_struct: Unsupported fourcc 0x35315241 AR15
0:00:00.345505000 8744 0x3d0a0600 DEBUG v4l2 gstv4l2object.c:1589:gst_v4l2_object_v4l2fourcc_to_bare_struct: Unsupported fourcc 0xb5315241 AR1.
0:00:00.345564500 8744 0x3d0a0600 DEBUG v4l2 gstv4l2object.c:1589:gst_v4l2_object_v4l2fourcc_to_bare_struct: Unsupported fourcc 0x52424752 RGBR
0:00:00.345600500 8744 0x3d0a0600 DEBUG v4l2 gstv4l2object.c:1589:gst_v4l2_object_v4l2fourcc_to_bare_struct: Unsupported fourcc 0x48524742 BGRH
0:00:00.345693000 8744 0x3d0a0600 DEBUG v4l2 gstv4l2object.c:1589:gst_v4l2_object_v4l2fourcc_to_bare_struct: Unsupported fourcc 0x34343452 R444
0:00:00.345810375 8744 0x3d0a0600 DEBUG v4l2 gstv4l2object.c:1589:gst_v4l2_object_v4l2fourcc_to_bare_struct: Unsupported fourcc 0x20343059 Y04
0:00:00.345848000 8744 0x3d0a0600 DEBUG v4l2 gstv4l2object.c:1589:gst_v4l2_object_v4l2fourcc_to_bare_struct: Unsupported fourcc 0x20363059 Y06
0:00:00.345883625 8744 0x3d0a0600 DEBUG v4l2 gstv4l2object.c:1589:gst_v4l2_object_v4l2fourcc_to_bare_struct: Unsupported fourcc 0x20303159 Y10
0:00:00.345918125 8744 0x3d0a0600 DEBUG v4l2 gstv4l2object.c:1589:gst_v4l2_object_v4l2fourcc_to_bare_struct: Unsupported fourcc 0x20323159 Y12
0:00:00.345975500 8744 0x3d0a0600 DEBUG v4l2 gstv4l2object.c:1589:gst_v4l2_object_v4l2fourcc_to_bare_struct: Unsupported fourcc 0x42303159 Y10B
0:00:00.346012000 8744 0x3d0a0600 DEBUG v4l2 gstv4l2object.c:1589:gst_v4l2_object_v4l2fourcc_to_bare_struct: Unsupported fourcc 0x384c4150 PAL8
0:00:00.346047000 8744 0x3d0a0600 DEBUG v4l2 gstv4l2object.c:1589:gst_v4l2_object_v4l2fourcc_to_bare_struct: Unsupported fourcc 0x20385655 UV8
0:00:00.346103625 8744 0x3d0a0600 DEBUG v4l2 gstv4l2object.c:1589:gst_v4l2_object_v4l2fourcc_to_bare_struct: Unsupported fourcc 0x31324d59 YM21
0:00:00.346150875 8744 0x3d0a0600 DEBUG v4l2 gstv4l2object.c:1589:gst_v4l2_object_v4l2fourcc_to_bare_struct: Unsupported fourcc 0x56555959 YYUV
0:00:00.346206750 8744 0x3d0a0600 DEBUG v4l2 gstv4l2object.c:1589:gst_v4l2_object_v4l2fourcc_to_bare_struct: Unsupported fourcc 0x59555956 VYUY
0:00:00.346262375 8744 0x3d0a0600 DEBUG v4l2 gstv4l2object.c:1589:gst_v4l2_object_v4l2fourcc_to_bare_struct: Unsupported fourcc 0x50313459 Y41P
0:00:00.346298250 8744 0x3d0a0600 DEBUG v4l2 gstv4l2object.c:1589:gst_v4l2_object_v4l2fourcc_to_bare_struct: Unsupported fourcc 0x34343459 Y444
0:00:00.346333625 8744 0x3d0a0600 DEBUG v4l2 gstv4l2object.c:1589:gst_v4l2_object_v4l2fourcc_to_bare_struct: Unsupported fourcc 0x4f565559 YUVO
0:00:00.346368000 8744 0x3d0a0600 DEBUG v4l2 gstv4l2object.c:1589:gst_v4l2_object_v4l2fourcc_to_bare_struct: Unsupported fourcc 0x50565559 YUVP
0:00:00.346402250 8744 0x3d0a0600 DEBUG v4l2 gstv4l2object.c:1589:gst_v4l2_object_v4l2fourcc_to_bare_struct: Unsupported fourcc 0x34565559 YUV4
0:00:00.346474000 8744 0x3d0a0600 DEBUG v4l2 gstv4l2object.c:1589:gst_v4l2_object_v4l2fourcc_to_bare_struct: Unsupported fourcc 0x34324948 HI24
0:00:00.346510625 8744 0x3d0a0600 DEBUG v4l2 gstv4l2object.c:1589:gst_v4l2_object_v4l2fourcc_to_bare_struct: Unsupported fourcc 0x32314d48 HM12
0:00:00.346546000 8744 0x3d0a0600 DEBUG v4l2 gstv4l2object.c:1589:gst_v4l2_object_v4l2fourcc_to_bare_struct: Unsupported fourcc 0x3032344d M420
0:00:00.346609250 8744 0x3d0a0600 DEBUG v4l2 gstv4l2object.c:1589:gst_v4l2_object_v4l2fourcc_to_bare_struct: Unsupported fourcc 0x32314d56 VM12
0:00:00.346718250 8744 0x3d0a0600 DEBUG v4l2 gstv4l2object.c:1589:gst_v4l2_object_v4l2fourcc_to_bare_struct: Unsupported fourcc 0x3234564e NV42
0:00:00.349111750 8744 0x3d0a0600 DEBUG GST_ELEMENT_FACTORY gstelementfactory.c:224:gst_element_register:<registry0> update existing feature 0x3d1da000 (v4l2jpegdec)
0:00:00.349213625 8744 0x3d0a0600 DEBUG GST_ELEMENT_FACTORY gstelementfactory.c:224:gst_element_register:<registry0> update existing feature 0x3d1d5640 (v4l2mpeg4dec)
0:00:00.349278000 8744 0x3d0a0600 DEBUG GST_ELEMENT_FACTORY gstelementfactory.c:224:gst_element_register:<registry0> update existing feature 0x3d1d5560 (v4l2mpeg2dec)
0:00:00.349340750 8744 0x3d0a0600 DEBUG GST_ELEMENT_FACTORY gstelementfactory.c:224:gst_element_register:<registry0> update existing feature 0x3d1d5480 (v4l2avsdec)
0:00:00.349403250 8744 0x3d0a0600 DEBUG GST_ELEMENT_FACTORY gstelementfactory.c:224:gst_element_register:<registry0> update existing feature 0x3d1d53a0 (v4l2divxdec)
0:00:00.349466125 8744 0x3d0a0600 DEBUG GST_ELEMENT_FACTORY gstelementfactory.c:224:gst_element_register:<registry0> update existing feature 0x3d1d52c0 (v4l2spkdec)
0:00:00.349527250 8744 0x3d0a0600 DEBUG GST_ELEMENT_FACTORY gstelementfactory.c:224:gst_element_register:<registry0> update existing feature 0x3d1d51e0 (v4l2h263dec)
0:00:00.349589875 8744 0x3d0a0600 DEBUG GST_ELEMENT_FACTORY gstelementfactory.c:224:gst_element_register:<registry0> update existing feature 0x3d1d5100 (v4l2h264dec)
0:00:00.349655375 8744 0x3d0a0600 DEBUG GST_ELEMENT_FACTORY gstelementfactory.c:224:gst_element_register:<registry0> update existing feature 0x3d1d5020 (v4l2h265dec)
0:00:00.349717750 8744 0x3d0a0600 DEBUG GST_ELEMENT_FACTORY gstelementfactory.c:224:gst_element_register:<registry0> update existing feature 0x3d1d26a0 (v4l2rvdec)
0:00:00.349947625 8744 0x3d0a0600 DEBUG GST_ELEMENT_FACTORY gstelementfactory.c:224:gst_element_register:<registry0> update existing feature 0x3d1d25c0 (v4l2vp6dec)
0:00:00.350012125 8744 0x3d0a0600 DEBUG GST_ELEMENT_FACTORY gstelementfactory.c:224:gst_element_register:<registry0> update existing feature 0x3d1d24e0 (v4l2vp8dec)
0:00:00.350075500 8744 0x3d0a0600 DEBUG GST_ELEMENT_FACTORY gstelementfactory.c:224:gst_element_register:<registry0> update existing feature 0x3d1d2400 (v4l2vc1dec)
0:00:00.355350375 8744 0x3d0a0600 DEBUG v4l2 gstv4l2.c:148:gst_v4l2_probe_and_register: Probing 'vpu encoder' located at '/dev/video13'
0:00:00.355434375 8744 0x3d0a0600 DEBUG v4l2 gstv4l2.c:72:gst_v4l2_probe_template_caps: Getting /dev/video13 format enumerations
0:00:00.355472000 8744 0x3d0a0600 DEBUG v4l2 gstv4l2.c:72:gst_v4l2_probe_template_caps: Getting /dev/video13 format enumerations
0:00:00.355513500 8744 0x3d0a0600 LOG v4l2 gstv4l2.c:86:gst_v4l2_probe_template_caps: index: 0
0:00:00.355536000 8744 0x3d0a0600 LOG v4l2 gstv4l2.c:87:gst_v4l2_probe_template_caps: type: 10
0:00:00.355556625 8744 0x3d0a0600 LOG v4l2 gstv4l2.c:88:gst_v4l2_probe_template_caps: flags: 00000000
0:00:00.355577750 8744 0x3d0a0600 LOG v4l2 gstv4l2.c:89:gst_v4l2_probe_template_caps: description: 'Y/CbCr 4:2:0'
0:00:00.355598375 8744 0x3d0a0600 LOG v4l2 gstv4l2.c:91:gst_v4l2_probe_template_caps: pixelformat: NV12
0:00:00.355672875 8744 0x3d0a0600 DEBUG v4l2 gstv4l2.c:72:gst_v4l2_probe_template_caps: Getting /dev/video13 format enumerations
0:00:00.355698125 8744 0x3d0a0600 DEBUG v4l2 gstv4l2.c:72:gst_v4l2_probe_template_caps: Getting /dev/video13 format enumerations
0:00:00.355724250 8744 0x3d0a0600 LOG v4l2 gstv4l2.c:86:gst_v4l2_probe_template_caps: index: 0
0:00:00.355745000 8744 0x3d0a0600 LOG v4l2 gstv4l2.c:87:gst_v4l2_probe_template_caps: type: 9
0:00:00.355765750 8744 0x3d0a0600 LOG v4l2 gstv4l2.c:88:gst_v4l2_probe_template_caps: flags: 00000001
0:00:00.355786250 8744 0x3d0a0600 LOG v4l2 gstv4l2.c:89:gst_v4l2_probe_template_caps: description: 'H.264'
0:00:00.355851125 8744 0x3d0a0600 LOG v4l2 gstv4l2.c:91:gst_v4l2_probe_template_caps: pixelformat: H264
0:00:00.355959875 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'stream-format'
0:00:00.355989250 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.356017000 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'alignment'
0:00:00.356038750 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.356212625 8744 0x3d0a0600 DEBUG GST_ELEMENT_FACTORY gstelementfactory.c:224:gst_element_register:<registry0> update existing feature 0x3d1d2320 (v4l2h264enc)
0:00:00.356249125 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'mpegversion'
0:00:00.356271750 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'int'
0:00:00.356301000 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'systemstream'
0:00:00.356322375 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'boolean'
0:00:00.356377000 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'variant'
0:00:00.356399625 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.356454375 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'profile'
0:00:00.356477500 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.356536875 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'profile'
0:00:00.356559500 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.357626875 8744 0x3d0a0600 DEBUG v4l2 gstv4l2.c:148:gst_v4l2_probe_and_register: Probing 'mxc-jpeg decoder' located at '/dev/video9'
0:00:00.357660625 8744 0x3d0a0600 DEBUG v4l2 gstv4l2.c:72:gst_v4l2_probe_template_caps: Getting /dev/video9 format enumerations
0:00:00.357689125 8744 0x3d0a0600 LOG v4l2 gstv4l2.c:86:gst_v4l2_probe_template_caps: index: 0
0:00:00.357710500 8744 0x3d0a0600 LOG v4l2 gstv4l2.c:87:gst_v4l2_probe_template_caps: type: 2
0:00:00.357730875 8744 0x3d0a0600 LOG v4l2 gstv4l2.c:88:gst_v4l2_probe_template_caps: flags: 00000001
0:00:00.357751375 8744 0x3d0a0600 LOG v4l2 gstv4l2.c:89:gst_v4l2_probe_template_caps: description: 'JFIF JPEG'
0:00:00.357771875 8744 0x3d0a0600 LOG v4l2 gstv4l2.c:91:gst_v4l2_probe_template_caps: pixelformat: JPEG
0:00:00.357805000 8744 0x3d0a0600 DEBUG v4l2 gstv4l2.c:72:gst_v4l2_probe_template_caps: Getting /dev/video9 format enumerations
0:00:00.357831625 8744 0x3d0a0600 DEBUG v4l2 gstv4l2.c:72:gst_v4l2_probe_template_caps: Getting /dev/video9 format enumerations
0:00:00.357857000 8744 0x3d0a0600 LOG v4l2 gstv4l2.c:86:gst_v4l2_probe_template_caps: index: 0
0:00:00.357877500 8744 0x3d0a0600 LOG v4l2 gstv4l2.c:87:gst_v4l2_probe_template_caps: type: 1
0:00:00.357897250 8744 0x3d0a0600 LOG v4l2 gstv4l2.c:88:gst_v4l2_probe_template_caps: flags: 00000000
0:00:00.357917500 8744 0x3d0a0600 LOG v4l2 gstv4l2.c:89:gst_v4l2_probe_template_caps: description: '24-bit RGB 8-8-8'
0:00:00.357975375 8744 0x3d0a0600 LOG v4l2 gstv4l2.c:91:gst_v4l2_probe_template_caps: pixelformat: RGB3
0:00:00.358020750 8744 0x3d0a0600 LOG v4l2 gstv4l2.c:86:gst_v4l2_probe_template_caps: index: 1
0:00:00.358042875 8744 0x3d0a0600 LOG v4l2 gstv4l2.c:87:gst_v4l2_probe_template_caps: type: 1
0:00:00.358063125 8744 0x3d0a0600 LOG v4l2 gstv4l2.c:88:gst_v4l2_probe_template_caps: flags: 00000000
0:00:00.358083500 8744 0x3d0a0600 LOG v4l2 gstv4l2.c:89:gst_v4l2_probe_template_caps: description: '32-bit ARGB 8-8-8-8'
0:00:00.358104250 8744 0x3d0a0600 LOG v4l2 gstv4l2.c:91:gst_v4l2_probe_template_caps: pixelformat: BA24
0:00:00.358141125 8744 0x3d0a0600 LOG v4l2 gstv4l2.c:86:gst_v4l2_probe_template_caps: index: 2
0:00:00.358162500 8744 0x3d0a0600 LOG v4l2 gstv4l2.c:87:gst_v4l2_probe_template_caps: type: 1
0:00:00.358182750 8744 0x3d0a0600 LOG v4l2 gstv4l2.c:88:gst_v4l2_probe_template_caps: flags: 00000000
0:00:00.358203000 8744 0x3d0a0600 LOG v4l2 gstv4l2.c:89:gst_v4l2_probe_template_caps: description: 'Y/CbCr 4:2:0'
0:00:00.358222875 8744 0x3d0a0600 LOG v4l2 gstv4l2.c:91:gst_v4l2_probe_template_caps: pixelformat: NV12
0:00:00.358259750 8744 0x3d0a0600 LOG v4l2 gstv4l2.c:86:gst_v4l2_probe_template_caps: index: 3
0:00:00.358281250 8744 0x3d0a0600 LOG v4l2 gstv4l2.c:87:gst_v4l2_probe_template_caps: type: 1
0:00:00.358301750 8744 0x3d0a0600 LOG v4l2 gstv4l2.c:88:gst_v4l2_probe_template_caps: flags: 00000000
0:00:00.358322000 8744 0x3d0a0600 LOG v4l2 gstv4l2.c:89:gst_v4l2_probe_template_caps: description: 'YUYV 4:2:2'
0:00:00.358342000 8744 0x3d0a0600 LOG v4l2 gstv4l2.c:91:gst_v4l2_probe_template_caps: pixelformat: YUYV
0:00:00.358378625 8744 0x3d0a0600 LOG v4l2 gstv4l2.c:86:gst_v4l2_probe_template_caps: index: 4
0:00:00.358400375 8744 0x3d0a0600 LOG v4l2 gstv4l2.c:87:gst_v4l2_probe_template_caps: type: 1
0:00:00.358420375 8744 0x3d0a0600 LOG v4l2 gstv4l2.c:88:gst_v4l2_probe_template_caps: flags: 00000000
0:00:00.358440625 8744 0x3d0a0600 LOG v4l2 gstv4l2.c:89:gst_v4l2_probe_template_caps: description: '32-bit A/XYUV 8-8-8-8'
0:00:00.358461125 8744 0x3d0a0600 LOG v4l2 gstv4l2.c:91:gst_v4l2_probe_template_caps: pixelformat: YUV4
0:00:00.358486250 8744 0x3d0a0600 DEBUG v4l2 gstv4l2object.c:1589:gst_v4l2_object_v4l2fourcc_to_bare_struct: Unsupported fourcc 0x34565559 YUV4
0:00:00.358515750 8744 0x3d0a0600 LOG v4l2 gstv4l2.c:86:gst_v4l2_probe_template_caps: index: 5
0:00:00.358536000 8744 0x3d0a0600 LOG v4l2 gstv4l2.c:87:gst_v4l2_probe_template_caps: type: 1
0:00:00.358555750 8744 0x3d0a0600 LOG v4l2 gstv4l2.c:88:gst_v4l2_probe_template_caps: flags: 00000000
0:00:00.358575625 8744 0x3d0a0600 LOG v4l2 gstv4l2.c:89:gst_v4l2_probe_template_caps: description: '8-bit Greyscale'
0:00:00.358595625 8744 0x3d0a0600 LOG v4l2 gstv4l2.c:91:gst_v4l2_probe_template_caps: pixelformat: GREY
0:00:00.358692750 8744 0x3d0a0600 DEBUG v4l2 gstv4l2.c:72:gst_v4l2_probe_template_caps: Getting /dev/video9 format enumerations
0:00:00.358828875 8744 0x3d0a0600 DEBUG GST_ELEMENT_FACTORY gstelementfactory.c:224:gst_element_register:<registry0> update existing feature 0x3d1d2240 (v4l2video9jpegdec)
0:00:00.359476750 8744 0x3d0a0600 DEBUG v4l2 gstv4l2.c:148:gst_v4l2_probe_and_register: Probing 'mxc-jpeg decoder' located at '/dev/video10'
0:00:00.359522500 8744 0x3d0a0600 DEBUG v4l2 gstv4l2.c:72:gst_v4l2_probe_template_caps: Getting /dev/video10 format enumerations
0:00:00.359549375 8744 0x3d0a0600 LOG v4l2 gstv4l2.c:86:gst_v4l2_probe_template_caps: index: 0
0:00:00.359571000 8744 0x3d0a0600 LOG v4l2 gstv4l2.c:87:gst_v4l2_probe_template_caps: type: 2
0:00:00.359591375 8744 0x3d0a0600 LOG v4l2 gstv4l2.c:88:gst_v4l2_probe_template_caps: flags: 00000000
0:00:00.359611875 8744 0x3d0a0600 LOG v4l2 gstv4l2.c:89:gst_v4l2_probe_template_caps: description: '24-bit RGB 8-8-8'
0:00:00.359632625 8744 0x3d0a0600 LOG v4l2 gstv4l2.c:91:gst_v4l2_probe_template_caps: pixelformat: RGB3
0:00:00.359671000 8744 0x3d0a0600 LOG v4l2 gstv4l2.c:86:gst_v4l2_probe_template_caps: index: 1
0:00:00.359692750 8744 0x3d0a0600 LOG v4l2 gstv4l2.c:87:gst_v4l2_probe_template_caps: type: 2
0:00:00.359713500 8744 0x3d0a0600 LOG v4l2 gstv4l2.c:88:gst_v4l2_probe_template_caps: flags: 00000000
0:00:00.359734000 8744 0x3d0a0600 LOG v4l2 gstv4l2.c:89:gst_v4l2_probe_template_caps: description: '32-bit ARGB 8-8-8-8'
0:00:00.359754625 8744 0x3d0a0600 LOG v4l2 gstv4l2.c:91:gst_v4l2_probe_template_caps: pixelformat: BA24
0:00:00.359791875 8744 0x3d0a0600 LOG v4l2 gstv4l2.c:86:gst_v4l2_probe_template_caps: index: 2
0:00:00.359813000 8744 0x3d0a0600 LOG v4l2 gstv4l2.c:87:gst_v4l2_probe_template_caps: type: 2
0:00:00.359833375 8744 0x3d0a0600 LOG v4l2 gstv4l2.c:88:gst_v4l2_probe_template_caps: flags: 00000000
0:00:00.359853250 8744 0x3d0a0600 LOG v4l2 gstv4l2.c:89:gst_v4l2_probe_template_caps: description: 'Y/CbCr 4:2:0'
0:00:00.359873125 8744 0x3d0a0600 LOG v4l2 gstv4l2.c:91:gst_v4l2_probe_template_caps: pixelformat: NV12
0:00:00.359910500 8744 0x3d0a0600 LOG v4l2 gstv4l2.c:86:gst_v4l2_probe_template_caps: index: 3
0:00:00.359931625 8744 0x3d0a0600 LOG v4l2 gstv4l2.c:87:gst_v4l2_probe_template_caps: type: 2
0:00:00.359952000 8744 0x3d0a0600 LOG v4l2 gstv4l2.c:88:gst_v4l2_probe_template_caps: flags: 00000000
0:00:00.359972375 8744 0x3d0a0600 LOG v4l2 gstv4l2.c:89:gst_v4l2_probe_template_caps: description: 'YUYV 4:2:2'
0:00:00.359992250 8744 0x3d0a0600 LOG v4l2 gstv4l2.c:91:gst_v4l2_probe_template_caps: pixelformat: YUYV
0:00:00.360028125 8744 0x3d0a0600 LOG v4l2 gstv4l2.c:86:gst_v4l2_probe_template_caps: index: 4
0:00:00.360049875 8744 0x3d0a0600 LOG v4l2 gstv4l2.c:87:gst_v4l2_probe_template_caps: type: 2
0:00:00.360070125 8744 0x3d0a0600 LOG v4l2 gstv4l2.c:88:gst_v4l2_probe_template_caps: flags: 00000000
0:00:00.360090125 8744 0x3d0a0600 LOG v4l2 gstv4l2.c:89:gst_v4l2_probe_template_caps: description: '32-bit A/XYUV 8-8-8-8'
0:00:00.360110750 8744 0x3d0a0600 LOG v4l2 gstv4l2.c:91:gst_v4l2_probe_template_caps: pixelformat: YUV4
0:00:00.360134500 8744 0x3d0a0600 DEBUG v4l2 gstv4l2object.c:1589:gst_v4l2_object_v4l2fourcc_to_bare_struct: Unsupported fourcc 0x34565559 YUV4
0:00:00.360163625 8744 0x3d0a0600 LOG v4l2 gstv4l2.c:86:gst_v4l2_probe_template_caps: index: 5
0:00:00.360183875 8744 0x3d0a0600 LOG v4l2 gstv4l2.c:87:gst_v4l2_probe_template_caps: type: 2
0:00:00.360204000 8744 0x3d0a0600 LOG v4l2 gstv4l2.c:88:gst_v4l2_probe_template_caps: flags: 00000000
0:00:00.360223875 8744 0x3d0a0600 LOG v4l2 gstv4l2.c:89:gst_v4l2_probe_template_caps: description: '8-bit Greyscale'
0:00:00.360259750 8744 0x3d0a0600 LOG v4l2 gstv4l2.c:91:gst_v4l2_probe_template_caps: pixelformat: GREY
0:00:00.360351250 8744 0x3d0a0600 DEBUG v4l2 gstv4l2.c:72:gst_v4l2_probe_template_caps: Getting /dev/video10 format enumerations
0:00:00.360379000 8744 0x3d0a0600 DEBUG v4l2 gstv4l2.c:72:gst_v4l2_probe_template_caps: Getting /dev/video10 format enumerations
0:00:00.360405125 8744 0x3d0a0600 LOG v4l2 gstv4l2.c:86:gst_v4l2_probe_template_caps: index: 0
0:00:00.360426125 8744 0x3d0a0600 LOG v4l2 gstv4l2.c:87:gst_v4l2_probe_template_caps: type: 1
0:00:00.360446250 8744 0x3d0a0600 LOG v4l2 gstv4l2.c:88:gst_v4l2_probe_template_caps: flags: 00000001
0:00:00.360466625 8744 0x3d0a0600 LOG v4l2 gstv4l2.c:89:gst_v4l2_probe_template_caps: description: 'JFIF JPEG'
0:00:00.360486750 8744 0x3d0a0600 LOG v4l2 gstv4l2.c:91:gst_v4l2_probe_template_caps: pixelformat: JPEG
0:00:00.360516250 8744 0x3d0a0600 DEBUG v4l2 gstv4l2.c:72:gst_v4l2_probe_template_caps: Getting /dev/video10 format enumerations
0:00:00.367225625 8744 0x3d0a0600 DEBUG v4l2 gstv4l2.c:122:gst_v4l2_probe_and_register: Failed to open /dev/video0: Invalid argument
0:00:00.373693375 8744 0x3d0a0600 DEBUG v4l2 gstv4l2.c:122:gst_v4l2_probe_and_register: Failed to open /dev/video1: Invalid argument
0:00:00.379917375 8744 0x3d0a0600 DEBUG v4l2 gstv4l2.c:122:gst_v4l2_probe_and_register: Failed to open /dev/video2: Invalid argument
0:00:00.386020125 8744 0x3d0a0600 DEBUG v4l2 gstv4l2.c:122:gst_v4l2_probe_and_register: Failed to open /dev/video3: Invalid argument
0:00:00.392102125 8744 0x3d0a0600 DEBUG v4l2 gstv4l2.c:122:gst_v4l2_probe_and_register: Failed to open /dev/video4: Invalid argument
0:00:00.398253250 8744 0x3d0a0600 DEBUG v4l2 gstv4l2.c:122:gst_v4l2_probe_and_register: Failed to open /dev/video5: Invalid argument
0:00:00.404493750 8744 0x3d0a0600 DEBUG v4l2 gstv4l2.c:122:gst_v4l2_probe_and_register: Failed to open /dev/video6: Invalid argument
0:00:00.410763750 8744 0x3d0a0600 DEBUG v4l2 gstv4l2.c:122:gst_v4l2_probe_and_register: Failed to open /dev/video7: Invalid argument
0:00:00.416655875 8744 0x3d0a0600 DEBUG v4l2 gstv4l2.c:148:gst_v4l2_probe_and_register: Probing 'mxc-isi' located at '/dev/video8'
0:00:00.416742250 8744 0x3d0a0600 DEBUG v4l2 gstv4l2.c:72:gst_v4l2_probe_template_caps: Getting /dev/video8 format enumerations
0:00:00.416790500 8744 0x3d0a0600 DEBUG v4l2 gstv4l2.c:72:gst_v4l2_probe_template_caps: Getting /dev/video8 format enumerations
0:00:00.416827125 8744 0x3d0a0600 LOG v4l2 gstv4l2.c:86:gst_v4l2_probe_template_caps: index: 0
0:00:00.416856375 8744 0x3d0a0600 LOG v4l2 gstv4l2.c:87:gst_v4l2_probe_template_caps: type: 10
0:00:00.416884000 8744 0x3d0a0600 LOG v4l2 gstv4l2.c:88:gst_v4l2_probe_template_caps: flags: 00000000
0:00:00.416911750 8744 0x3d0a0600 LOG v4l2 gstv4l2.c:89:gst_v4l2_probe_template_caps: description: '32-bit BGRX 8-8-8-8'
0:00:00.416940750 8744 0x3d0a0600 LOG v4l2 gstv4l2.c:91:gst_v4l2_probe_template_caps: pixelformat: XR24
0:00:00.417033500 8744 0x3d0a0600 LOG v4l2 gstv4l2.c:86:gst_v4l2_probe_template_caps: index: 1
0:00:00.417105375 8744 0x3d0a0600 LOG v4l2 gstv4l2.c:87:gst_v4l2_probe_template_caps: type: 10
0:00:00.417133875 8744 0x3d0a0600 LOG v4l2 gstv4l2.c:88:gst_v4l2_probe_template_caps: flags: 00000000
0:00:00.417160750 8744 0x3d0a0600 LOG v4l2 gstv4l2.c:89:gst_v4l2_probe_template_caps: description: '16-bit RGB 5-6-5'
0:00:00.417251750 8744 0x3d0a0600 LOG v4l2 gstv4l2.c:91:gst_v4l2_probe_template_caps: pixelformat: RGBP
0:00:00.417307000 8744 0x3d0a0600 LOG v4l2 gstv4l2.c:86:gst_v4l2_probe_template_caps: index: 2
0:00:00.417336375 8744 0x3d0a0600 LOG v4l2 gstv4l2.c:87:gst_v4l2_probe_template_caps: type: 10
0:00:00.417364125 8744 0x3d0a0600 LOG v4l2 gstv4l2.c:88:gst_v4l2_probe_template_caps: flags: 00000000
0:00:00.417391125 8744 0x3d0a0600 LOG v4l2 gstv4l2.c:89:gst_v4l2_probe_template_caps: description: '32-bit A/XYUV 8-8-8-8'
0:00:00.417418750 8744 0x3d0a0600 LOG v4l2 gstv4l2.c:91:gst_v4l2_probe_template_caps: pixelformat: YUV4
0:00:00.417452250 8744 0x3d0a0600 DEBUG v4l2 gstv4l2object.c:1589:gst_v4l2_object_v4l2fourcc_to_bare_struct: Unsupported fourcc 0x34565559 YUV4
0:00:00.417492500 8744 0x3d0a0600 LOG v4l2 gstv4l2.c:86:gst_v4l2_probe_template_caps: index: 3
0:00:00.417520125 8744 0x3d0a0600 LOG v4l2 gstv4l2.c:87:gst_v4l2_probe_template_caps: type: 10
0:00:00.417547250 8744 0x3d0a0600 LOG v4l2 gstv4l2.c:88:gst_v4l2_probe_template_caps: flags: 00000000
0:00:00.417574250 8744 0x3d0a0600 LOG v4l2 gstv4l2.c:89:gst_v4l2_probe_template_caps: description: 'YUYV 4:2:2'
0:00:00.417601125 8744 0x3d0a0600 LOG v4l2 gstv4l2.c:91:gst_v4l2_probe_template_caps: pixelformat: YUYV
0:00:00.417720125 8744 0x3d0a0600 DEBUG v4l2 gstv4l2.c:72:gst_v4l2_probe_template_caps: Getting /dev/video8 format enumerations
0:00:00.417756875 8744 0x3d0a0600 DEBUG v4l2 gstv4l2.c:72:gst_v4l2_probe_template_caps: Getting /dev/video8 format enumerations
0:00:00.417791375 8744 0x3d0a0600 LOG v4l2 gstv4l2.c:86:gst_v4l2_probe_template_caps: index: 0
0:00:00.417819125 8744 0x3d0a0600 LOG v4l2 gstv4l2.c:87:gst_v4l2_probe_template_caps: type: 9
0:00:00.417846250 8744 0x3d0a0600 LOG v4l2 gstv4l2.c:88:gst_v4l2_probe_template_caps: flags: 00000000
0:00:00.417873375 8744 0x3d0a0600 LOG v4l2 gstv4l2.c:89:gst_v4l2_probe_template_caps: description: '16-bit RGB 5-6-5'
0:00:00.417900875 8744 0x3d0a0600 LOG v4l2 gstv4l2.c:91:gst_v4l2_probe_template_caps: pixelformat: RGBP
0:00:00.417950375 8744 0x3d0a0600 LOG v4l2 gstv4l2.c:86:gst_v4l2_probe_template_caps: index: 1
0:00:00.417979625 8744 0x3d0a0600 LOG v4l2 gstv4l2.c:87:gst_v4l2_probe_template_caps: type: 9
0:00:00.418006500 8744 0x3d0a0600 LOG v4l2 gstv4l2.c:88:gst_v4l2_probe_template_caps: flags: 00000000
0:00:00.418033500 8744 0x3d0a0600 LOG v4l2 gstv4l2.c:89:gst_v4l2_probe_template_caps: description: '24-bit RGB 8-8-8'
0:00:00.418063125 8744 0x3d0a0600 LOG v4l2 gstv4l2.c:91:gst_v4l2_probe_template_caps: pixelformat: RGB3
0:00:00.418112750 8744 0x3d0a0600 LOG v4l2 gstv4l2.c:86:gst_v4l2_probe_template_caps: index: 2
0:00:00.418140750 8744 0x3d0a0600 LOG v4l2 gstv4l2.c:87:gst_v4l2_probe_template_caps: type: 9
0:00:00.418167250 8744 0x3d0a0600 LOG v4l2 gstv4l2.c:88:gst_v4l2_probe_template_caps: flags: 00000000
0:00:00.418194250 8744 0x3d0a0600 LOG v4l2 gstv4l2.c:89:gst_v4l2_probe_template_caps: description: '24-bit BGR 8-8-8'
0:00:00.418221750 8744 0x3d0a0600 LOG v4l2 gstv4l2.c:91:gst_v4l2_probe_template_caps: pixelformat: BGR3
0:00:00.418270375 8744 0x3d0a0600 LOG v4l2 gstv4l2.c:86:gst_v4l2_probe_template_caps: index: 3
0:00:00.418322125 8744 0x3d0a0600 LOG v4l2 gstv4l2.c:87:gst_v4l2_probe_template_caps: type: 9
0:00:00.418350625 8744 0x3d0a0600 LOG v4l2 gstv4l2.c:88:gst_v4l2_probe_template_caps: flags: 00000000
0:00:00.418378125 8744 0x3d0a0600 LOG v4l2 gstv4l2.c:89:gst_v4l2_probe_template_caps: description: 'YUYV 4:2:2'
0:00:00.418405000 8744 0x3d0a0600 LOG v4l2 gstv4l2.c:91:gst_v4l2_probe_template_caps: pixelformat: YUYV
0:00:00.418453375 8744 0x3d0a0600 LOG v4l2 gstv4l2.c:86:gst_v4l2_probe_template_caps: index: 4
0:00:00.418482125 8744 0x3d0a0600 LOG v4l2 gstv4l2.c:87:gst_v4l2_probe_template_caps: type: 9
0:00:00.418509125 8744 0x3d0a0600 LOG v4l2 gstv4l2.c:88:gst_v4l2_probe_template_caps: flags: 00000000
0:00:00.418536250 8744 0x3d0a0600 LOG v4l2 gstv4l2.c:89:gst_v4l2_probe_template_caps: description: '32-bit A/XYUV 8-8-8-8'
0:00:00.418563625 8744 0x3d0a0600 LOG v4l2 gstv4l2.c:91:gst_v4l2_probe_template_caps: pixelformat: YUV4
0:00:00.418597375 8744 0x3d0a0600 DEBUG v4l2 gstv4l2object.c:1589:gst_v4l2_object_v4l2fourcc_to_bare_struct: Unsupported fourcc 0x34565559 YUV4
0:00:00.418635750 8744 0x3d0a0600 LOG v4l2 gstv4l2.c:86:gst_v4l2_probe_template_caps: index: 5
0:00:00.418662625 8744 0x3d0a0600 LOG v4l2 gstv4l2.c:87:gst_v4l2_probe_template_caps: type: 9
0:00:00.418688875 8744 0x3d0a0600 LOG v4l2 gstv4l2.c:88:gst_v4l2_probe_template_caps: flags: 00000000
0:00:00.418715375 8744 0x3d0a0600 LOG v4l2 gstv4l2.c:89:gst_v4l2_probe_template_caps: description: 'Y/CbCr 4:2:0'
0:00:00.418741625 8744 0x3d0a0600 LOG v4l2 gstv4l2.c:91:gst_v4l2_probe_template_caps: pixelformat: NV12
0:00:00.418791250 8744 0x3d0a0600 LOG v4l2 gstv4l2.c:86:gst_v4l2_probe_template_caps: index: 6
0:00:00.418820000 8744 0x3d0a0600 LOG v4l2 gstv4l2.c:87:gst_v4l2_probe_template_caps: type: 9
0:00:00.418847250 8744 0x3d0a0600 LOG v4l2 gstv4l2.c:88:gst_v4l2_probe_template_caps: flags: 00000000
0:00:00.418874250 8744 0x3d0a0600 LOG v4l2 gstv4l2.c:89:gst_v4l2_probe_template_caps: description: 'Planar YUV 4:4:4 (N-C)'
0:00:00.418901250 8744 0x3d0a0600 LOG v4l2 gstv4l2.c:91:gst_v4l2_probe_template_caps: pixelformat: YM24
0:00:00.418933125 8744 0x3d0a0600 DEBUG v4l2 gstv4l2object.c:1589:gst_v4l2_object_v4l2fourcc_to_bare_struct: Unsupported fourcc 0x34324d59 YM24
0:00:00.418970750 8744 0x3d0a0600 LOG v4l2 gstv4l2.c:86:gst_v4l2_probe_template_caps: index: 7
0:00:00.418997750 8744 0x3d0a0600 LOG v4l2 gstv4l2.c:87:gst_v4l2_probe_template_caps: type: 9
0:00:00.419024000 8744 0x3d0a0600 LOG v4l2 gstv4l2.c:88:gst_v4l2_probe_template_caps: flags: 00000000
0:00:00.419050500 8744 0x3d0a0600 LOG v4l2 gstv4l2.c:89:gst_v4l2_probe_template_caps: description: '32-bit BGRX 8-8-8-8'
0:00:00.419077625 8744 0x3d0a0600 LOG v4l2 gstv4l2.c:91:gst_v4l2_probe_template_caps: pixelformat: XR24
0:00:00.419125625 8744 0x3d0a0600 LOG v4l2 gstv4l2.c:86:gst_v4l2_probe_template_caps: index: 8
0:00:00.419154250 8744 0x3d0a0600 LOG v4l2 gstv4l2.c:87:gst_v4l2_probe_template_caps: type: 9
0:00:00.419181125 8744 0x3d0a0600 LOG v4l2 gstv4l2.c:88:gst_v4l2_probe_template_caps: flags: 00000000
0:00:00.419208125 8744 0x3d0a0600 LOG v4l2 gstv4l2.c:89:gst_v4l2_probe_template_caps: description: '32-bit BGRA 8-8-8-8'
0:00:00.419235625 8744 0x3d0a0600 LOG v4l2 gstv4l2.c:91:gst_v4l2_probe_template_caps: pixelformat: AR24
0:00:00.419763500 8744 0x3d0a0600 DEBUG GST_ELEMENT_FACTORY gstelementfactory.c:224:gst_element_register:<registry0> update existing feature 0x3d1d2160 (v4l2video8convert)
0:00:00.425104125 8744 0x3d0a0600 LOG GST_PLUGIN_LOADING gstplugin.c:533:gst_plugin_register_func: plugin "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstvideo4linux2.so" initialised
0:00:00.425141375 8744 0x3d0a0600 INFO GST_PLUGIN_LOADING gstplugin.c:901:_priv_gst_plugin_load_file_for_registry: plugin "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstvideo4linux2.so" loaded
0:00:00.425167500 8744 0x3d0a0600 DEBUG GST_PLUGIN_LOADING gstpluginfeature.c:116:gst_plugin_feature_load: loaded plugin video4linux2
0:00:00.425193375 8744 0x3d0a0600 INFO GST_ELEMENT_FACTORY gstelementfactory.c:359:gst_element_factory_create: creating element "v4l2h264dec" named "my_vdec"
0:00:00.425237000 8744 0x3d0a0600 DEBUG GST_ELEMENT_PADS gstelement.c:302:gst_element_base_class_init: type GstVideoDecoder : factory (nil)
0:00:00.425270125 8744 0x3d0a0600 LOG GST_DEBUG gstinfo.c:1595:gst_debug_reset_threshold: category videodecoder matches pattern 0x3d0a0430 - gets set to level 6
0:00:00.425328750 8744 0x3d0a0600 DEBUG GST_ELEMENT_PADS gstelement.c:302:gst_element_base_class_init: type GstV4l2VideoDec : factory (nil)
0:00:00.425357250 8744 0x3d0a0600 LOG GST_DEBUG gstinfo.c:1595:gst_debug_reset_threshold: category v4l2videodec matches pattern 0x3d0a0430 - gets set to level 6
0:00:00.425495750 8744 0x3d0a0600 DEBUG GST_ELEMENT_PADS gstelement.c:302:gst_element_base_class_init: type v4l2h264dec : factory 0x3d1d5100
0:00:00.425671250 8744 0x3d0a0600 DEBUG videodecoder gstvideodecoder.c:537:gst_video_decoder_init:<GstVideoDecoder at 0x3d2171a0> gst_video_decoder_init
0:00:00.425740500 8744 0x3d0a0600 DEBUG GST_PADS gstpad.c:1806:gst_pad_set_chain_function_full:<'':sink> chainfunc set to gst_video_decoder_chain
0:00:00.425773375 8744 0x3d0a0600 DEBUG GST_PADS gstpad.c:1912:gst_pad_set_event_function_full:<'':sink> eventfunc for set to gst_video_decoder_sink_event
0:00:00.425804125 8744 0x3d0a0600 DEBUG GST_PADS gstpad.c:1992:gst_pad_set_query_function_full:<'':sink> queryfunc set to gst_video_decoder_sink_query
0:00:00.425835250 8744 0x3d0a0600 INFO GST_ELEMENT_PADS gstelement.c:670:gst_element_add_pad:<GstVideoDecoder at 0x3d2171a0> adding pad 'sink'
0:00:00.425864500 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<'':sink> set parent (ref and sink)
0:00:00.425923500 8744 0x3d0a0600 DEBUG GST_PADS gstpad.c:1912:gst_pad_set_event_function_full:<'':src> eventfunc for set to gst_video_decoder_src_event
0:00:00.425954500 8744 0x3d0a0600 DEBUG GST_PADS gstpad.c:1992:gst_pad_set_query_function_full:<'':src> queryfunc set to gst_video_decoder_src_query
0:00:00.425984000 8744 0x3d0a0600 INFO GST_ELEMENT_PADS gstelement.c:670:gst_element_add_pad:<GstVideoDecoder at 0x3d2171a0> adding pad 'src'
0:00:00.426011250 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<'':src> set parent (ref and sink)
0:00:00.426071375 8744 0x3d0a0600 DEBUG videodecoder gstvideodecoder.c:2010:gst_video_decoder_reset:<GstVideoDecoder at 0x3d2171a0> reset full 1
0:00:00.426107000 8744 0x3d0a0600 DEBUG GST_POLL gstpoll.c:681:gst_poll_new: 0x3d21fde0: new controllable : 1
0:00:00.426171750 8744 0x3d0a0600 DEBUG GST_POLL gstpoll.c:848:gst_poll_add_fd_unlocked: 0x3d21fde0: fd (fd:6, idx:0)
0:00:00.426200875 8744 0x3d0a0600 DEBUG GST_POLL gstpoll.c:1015:gst_poll_fd_ctl_read_unlocked: 0x3d21fde0: fd (fd:6, idx:0), active : 1
0:00:00.426229750 8744 0x3d0a0600 DEBUG GST_POLL gstpoll.c:681:gst_poll_new: 0x3d21fed0: new controllable : 1
0:00:00.426296875 8744 0x3d0a0600 DEBUG GST_POLL gstpoll.c:848:gst_poll_add_fd_unlocked: 0x3d21fed0: fd (fd:8, idx:0)
0:00:00.426350125 8744 0x3d0a0600 DEBUG GST_POLL gstpoll.c:1015:gst_poll_fd_ctl_read_unlocked: 0x3d21fed0: fd (fd:8, idx:0), active : 1
0:00:00.426389625 8744 0x3d0a0600 DEBUG GST_ELEMENT_FACTORY gstelementfactory.c:389:gst_element_factory_create: created element "v4l2h264dec"
0:00:00.426414125 8744 0x3d0a0600 LOG GST_ELEMENT_FACTORY gstelementfactory.c:438:gst_element_factory_make: gstelementfactory: make "waylandsink" "my_sink"
0:00:00.426448500 8744 0x3d0a0600 LOG GST_ELEMENT_FACTORY gstelementfactory.c:444:gst_element_factory_make:<waylandsink> found factory 0x3d1d2080
0:00:00.426471500 8744 0x3d0a0600 DEBUG GST_PLUGIN_LOADING gstpluginfeature.c:107:gst_plugin_feature_load: loading plugin for feature 0x3d1d2080; 'waylandsink'
0:00:00.426494875 8744 0x3d0a0600 DEBUG GST_PLUGIN_LOADING gstpluginfeature.c:111:gst_plugin_feature_load: loading plugin waylandsink
0:00:00.426515250 8744 0x3d0a0600 DEBUG GST_PLUGIN_LOADING gstplugin.c:1321:gst_plugin_load_by_name: looking up plugin waylandsink in default registry
0:00:00.426642875 8744 0x3d0a0600 DEBUG GST_PLUGIN_LOADING gstplugin.c:1324:gst_plugin_load_by_name: loading plugin waylandsink from file /data/halley/gst-sdk/lib/gstreamer-1.0/libgstwaylandsink.so
0:00:00.426677500 8744 0x3d0a0600 DEBUG GST_PLUGIN_LOADING gstplugin.c:760:_priv_gst_plugin_load_file_for_registry: attempt to load plugin "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstwaylandsink.so"
0:00:00.430448250 8744 0x3d0a0600 LOG GST_PLUGIN_LOADING gstplugin.c:876:_priv_gst_plugin_load_file_for_registry: Plugin 0x3d1cd4d0 for file "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstwaylandsink.so" prepared, calling entry function...
0:00:00.430505375 8744 0x3d0a0600 LOG GST_PLUGIN_LOADING gstplugin.c:883:_priv_gst_plugin_load_file_for_registry: Plugin 0x3d1cd4d0 for file "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstwaylandsink.so" prepared, registering...
0:00:00.430544250 8744 0x3d0a0600 LOG GST_PLUGIN_LOADING gstplugin.c:506:gst_plugin_register_func: plugin "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstwaylandsink.so" looks good
0:00:00.430587875 8744 0x3d0a0600 LOG GST_DEBUG gstinfo.c:1595:gst_debug_reset_threshold: category waylandsink matches pattern 0x3d0a0430 - gets set to level 6
0:00:00.430684875 8744 0x3d0a0600 LOG GST_DEBUG gstinfo.c:1595:gst_debug_reset_threshold: category fdmemory matches pattern 0x3d0a0430 - gets set to level 6
0:00:00.430786000 8744 0x3d0a0600 DEBUG GST_MEMORY gstallocator.c:211:gst_allocator_register: registering allocator 0x3d0a89c0 with name "wl_shm"
0:00:00.430983875 8744 0x3d0a0600 LOG GST_DEBUG gstinfo.c:1595:gst_debug_reset_threshold: category videooverlay matches pattern 0x3d0a0430 - gets set to level 6
0:00:00.431066125 8744 0x3d0a0600 DEBUG GST_ELEMENT_FACTORY gstelementfactory.c:224:gst_element_register:<registry0> update existing feature 0x3d1d2080 (waylandsink)
0:00:00.431098000 8744 0x3d0a0600 LOG GST_PLUGIN_LOADING gstplugin.c:533:gst_plugin_register_func: plugin "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstwaylandsink.so" initialised
0:00:00.431123000 8744 0x3d0a0600 INFO GST_PLUGIN_LOADING gstplugin.c:901:_priv_gst_plugin_load_file_for_registry: plugin "/data/halley/gst-sdk/lib/gstreamer-1.0/libgstwaylandsink.so" loaded
0:00:00.431147500 8744 0x3d0a0600 DEBUG GST_PLUGIN_LOADING gstpluginfeature.c:116:gst_plugin_feature_load: loaded plugin waylandsink
0:00:00.431171000 8744 0x3d0a0600 INFO GST_ELEMENT_FACTORY gstelementfactory.c:359:gst_element_factory_create: creating element "waylandsink" named "my_sink"
0:00:00.431205125 8744 0x3d0a0600 DEBUG GST_ELEMENT_PADS gstelement.c:302:gst_element_base_class_init: type GstBaseSink : factory (nil)
0:00:00.431233625 8744 0x3d0a0600 LOG GST_DEBUG gstinfo.c:1595:gst_debug_reset_threshold: category basesink matches pattern 0x3d0a0430 - gets set to level 6
0:00:00.431404500 8744 0x3d0a0600 DEBUG GST_ELEMENT_PADS gstelement.c:302:gst_element_base_class_init: type GstVideoSink : factory (nil)
0:00:00.431448875 8744 0x3d0a0600 DEBUG GST_ELEMENT_PADS gstelement.c:302:gst_element_base_class_init: type GstWaylandSink : factory 0x3d1d2080
0:00:00.431497375 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'format'
0:00:00.431525000 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.431590875 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'width'
0:00:00.431613875 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'int'
0:00:00.431648875 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'height'
0:00:00.431670375 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'int'
0:00:00.431695500 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'framerate'
0:00:00.431717000 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'fraction'
0:00:00.431773750 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'format'
0:00:00.431797375 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'string'
0:00:00.431846250 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'width'
0:00:00.431868375 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'int'
0:00:00.431894125 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'height'
0:00:00.431915250 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'int'
0:00:00.431940250 8744 0x3d0a0600 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'framerate'
0:00:00.431962000 8744 0x3d0a0600 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'fraction'
0:00:00.432197750 8744 0x3d0a0600 DEBUG GST_PADS gstpad.c:1736:gst_pad_set_activate_function_full:<'':sink> activatefunc set to gst_base_sink_pad_activate
0:00:00.432231125 8744 0x3d0a0600 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.432261125 8744 0x3d0a0600 DEBUG GST_PADS gstpad.c:1992:gst_pad_set_query_function_full:<'':sink> queryfunc set to gst_base_sink_sink_query
0:00:00.432290500 8744 0x3d0a0600 DEBUG GST_PADS gstpad.c:1912:gst_pad_set_event_function_full:<'':sink> eventfunc for set to gst_base_sink_event
0:00:00.432318875 8744 0x3d0a0600 DEBUG GST_PADS gstpad.c:1806:gst_pad_set_chain_function_full:<'':sink> chainfunc set to gst_base_sink_chain
0:00:00.432352250 8744 0x3d0a0600 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.432384750 8744 0x3d0a0600 INFO GST_ELEMENT_PADS gstelement.c:670:gst_element_add_pad:<GstBaseSink at 0x3d2279f0> adding pad 'sink'
0:00:00.432414125 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<'':sink> set parent (ref and sink)
0:00:00.432466875 8744 0x3d0a0600 DEBUG GST_ELEMENT_FACTORY gstelementfactory.c:389:gst_element_factory_create: created element "waylandsink"
0:00:00.432607375 8744 0x3d0a0600 DEBUG GST_PERFORMANCE gstcaps.c:179:_gst_caps_copy:video/x-h264, stream-format=(string)byte-stream, alignment=(string)au, framerate=(fraction)0/1 doing copy 0x3d21fc50 -> 0x3d21fd40
0:00:00.432646625 8744 0x3d0a0600 DEBUG appsrc gstappsrc.c:1344:gst_app_src_set_caps:<my_appsrc> setting caps to video/x-h264, stream-format=(string)byte-stream, alignment=(string)au, framerate=(fraction)0/1
0:00:00.432721125 8744 0x3d0a0600 DEBUG GST_PARENTAGE gstbin.c:1532:gst_bin_add: adding element my_appsrc to bin my_pipeline
0:00:00.432756000 8744 0x3d0a0600 DEBUG bin gstbin.c:1153:gst_bin_add_func:<my_pipeline> element :my_appsrc
0:00:00.432783500 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<my_appsrc> set parent (ref and sink)
0:00:00.432808500 8744 0x3d0a0600 DEBUG GST_PARENTAGE gstbin.c:1192:gst_bin_add_func:<my_pipeline> element "my_appsrc" was source
0:00:00.432836625 8744 0x3d0a0600 DEBUG GST_PARENTAGE gstelement.c:3346:gst_element_set_bus_func:<my_appsrc> setting bus to 0x3d1db120
0:00:00.432865750 8744 0x3d0a0600 DEBUG GST_CLOCK gstelement.c:489:gst_element_set_base_time:<my_appsrc> set base_time=0:00:00.000000000, old 0:00:00.000000000
0:00:00.432906625 8744 0x3d0a0600 DEBUG GST_CLOCK gstelement.c:551:gst_element_set_start_time:<my_appsrc> set start_time=0:00:00.000000000, old 0:00:00.000000000
0:00:00.432944500 8744 0x3d0a0600 DEBUG GST_CLOCK gstelement.c:429:gst_element_set_clock:<my_appsrc> setting clock (nil)
0:00:00.432976375 8744 0x3d0a0600 DEBUG bin gstbin.c:1270:gst_bin_add_func:<my_pipeline> added SUCCESS element
0:00:00.433022875 8744 0x3d0a0600 DEBUG GST_PARENTAGE gstbin.c:1352:gst_bin_add_func:<my_pipeline> added element "my_appsrc"
0:00:00.433147500 8744 0x3d0a0600 LOG bin gstbin.c:1456:gst_bin_deep_element_added_func:<my_pipeline> no parent, reached top-level
0:00:00.433180125 8744 0x3d0a0600 DEBUG GST_PARENTAGE gstbin.c:1532:gst_bin_add: adding element my_h264parse to bin my_pipeline
0:00:00.433211000 8744 0x3d0a0600 DEBUG bin gstbin.c:1153:gst_bin_add_func:<my_pipeline> element :my_h264parse
0:00:00.433238000 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<my_h264parse> set parent (ref and sink)
0:00:00.433263625 8744 0x3d0a0600 DEBUG GST_PARENTAGE gstelement.c:3346:gst_element_set_bus_func:<my_h264parse> setting bus to 0x3d1db120
0:00:00.433290750 8744 0x3d0a0600 DEBUG GST_CLOCK gstelement.c:489:gst_element_set_base_time:<my_h264parse> set base_time=0:00:00.000000000, old 0:00:00.000000000
0:00:00.433329375 8744 0x3d0a0600 DEBUG GST_CLOCK gstelement.c:551:gst_element_set_start_time:<my_h264parse> set start_time=0:00:00.000000000, old 0:00:00.000000000
0:00:00.433366250 8744 0x3d0a0600 DEBUG GST_CLOCK gstelement.c:429:gst_element_set_clock:<my_h264parse> setting clock (nil)
0:00:00.433392625 8744 0x3d0a0600 DEBUG bin gstbin.c:1270:gst_bin_add_func:<my_pipeline> added SUCCESS element
0:00:00.433426875 8744 0x3d0a0600 DEBUG GST_PARENTAGE gstbin.c:1352:gst_bin_add_func:<my_pipeline> added element "my_h264parse"
0:00:00.433465375 8744 0x3d0a0600 LOG bin gstbin.c:1456:gst_bin_deep_element_added_func:<my_pipeline> no parent, reached top-level
0:00:00.433490000 8744 0x3d0a0600 DEBUG GST_PARENTAGE gstbin.c:1532:gst_bin_add: adding element my_vdec to bin my_pipeline
0:00:00.433519500 8744 0x3d0a0600 DEBUG bin gstbin.c:1153:gst_bin_add_func:<my_pipeline> element :my_vdec
0:00:00.433545875 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<my_vdec> set parent (ref and sink)
0:00:00.433571125 8744 0x3d0a0600 DEBUG GST_PARENTAGE gstelement.c:3346:gst_element_set_bus_func:<my_vdec> setting bus to 0x3d1db120
0:00:00.433625000 8744 0x3d0a0600 DEBUG GST_CLOCK gstelement.c:489:gst_element_set_base_time:<my_vdec> set base_time=0:00:00.000000000, old 0:00:00.000000000
0:00:00.433663500 8744 0x3d0a0600 DEBUG GST_CLOCK gstelement.c:551:gst_element_set_start_time:<my_vdec> set start_time=0:00:00.000000000, old 0:00:00.000000000
0:00:00.433700500 8744 0x3d0a0600 DEBUG GST_CLOCK gstelement.c:429:gst_element_set_clock:<my_vdec> setting clock (nil)
0:00:00.433727125 8744 0x3d0a0600 DEBUG bin gstbin.c:1270:gst_bin_add_func:<my_pipeline> added SUCCESS element
0:00:00.433760000 8744 0x3d0a0600 DEBUG GST_PARENTAGE gstbin.c:1352:gst_bin_add_func:<my_pipeline> added element "my_vdec"
0:00:00.433797500 8744 0x3d0a0600 LOG bin gstbin.c:1456:gst_bin_deep_element_added_func:<my_pipeline> no parent, reached top-level
0:00:00.433821375 8744 0x3d0a0600 DEBUG GST_PARENTAGE gstbin.c:1532:gst_bin_add: adding element my_sink to bin my_pipeline
0:00:00.433851000 8744 0x3d0a0600 DEBUG bin gstbin.c:1153:gst_bin_add_func:<my_pipeline> element :my_sink
0:00:00.433877875 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstobject.c:675:gst_object_set_parent:<my_sink> set parent (ref and sink)
0:00:00.433902000 8744 0x3d0a0600 DEBUG GST_PARENTAGE gstbin.c:1187:gst_bin_add_func:<my_pipeline> element "my_sink" was sink
0:00:00.433928625 8744 0x3d0a0600 DEBUG GST_PARENTAGE gstelement.c:3346:gst_element_set_bus_func:<my_sink> setting bus to 0x3d1db120
0:00:00.433954500 8744 0x3d0a0600 DEBUG GST_CLOCK gstelement.c:489:gst_element_set_base_time:<my_sink> set base_time=0:00:00.000000000, old 0:00:00.000000000
0:00:00.433992250 8744 0x3d0a0600 DEBUG GST_CLOCK gstelement.c:551:gst_element_set_start_time:<my_sink> set start_time=0:00:00.000000000, old 0:00:00.000000000
0:00:00.434029375 8744 0x3d0a0600 DEBUG GST_CLOCK gstelement.c:429:gst_element_set_clock:<my_sink> setting clock (nil)
0:00:00.434055000 8744 0x3d0a0600 DEBUG bin gstbin.c:1270:gst_bin_add_func:<my_pipeline> added SUCCESS element
0:00:00.434084875 8744 0x3d0a0600 DEBUG GST_PARENTAGE gstbin.c:1352:gst_bin_add_func:<my_pipeline> added element "my_sink"
0:00:00.434121875 8744 0x3d0a0600 LOG bin gstbin.c:1456:gst_bin_deep_element_added_func:<my_pipeline> no parent, reached top-level
0:00:00.434151875 8744 0x3d0a0600 INFO GST_ELEMENT_PADS gstutils.c:1774:gst_element_link_pads_full: trying to link element my_appsrc:(any) to element my_h264parse:(any)
0:00:00.434181500 8744 0x3d0a0600 DEBUG GST_ELEMENT_PADS gstutils.c:1881:gst_element_link_pads_full: looping through allowed src and dest pads
0:00:00.434200875 8744 0x3d0a0600 DEBUG GST_ELEMENT_PADS gstutils.c:1884:gst_element_link_pads_full: trying src pad my_appsrc:src
0:00:00.434225125 8744 0x3d0a0600 DEBUG GST_ELEMENT_PADS gstutils.c:1105:gst_element_get_compatible_pad: finding pad in my_h264parse compatible with my_appsrc:src
0:00:00.434255250 8744 0x3d0a0600 LOG GST_ELEMENT_PADS gstutils.c:1132:gst_element_get_compatible_pad: examining pad my_h264parse:sink
0:00:00.434280125 8744 0x3d0a0600 INFO GST_PADS gstutils.c:1035:gst_pad_check_link: trying to link my_appsrc:src and my_h264parse:sink
0:00:00.434314750 8744 0x3d0a0600 DEBUG GST_CAPS gstutils.c:3040:gst_pad_query_caps:<my_appsrc:src> get pad caps with filter (NULL)
0:00:00.434346375 8744 0x3d0a0600 DEBUG query gstquery.c:675:gst_query_new_custom: creating new query 0x3d21fca0 caps
0:00:00.434378500 8744 0x3d0a0600 DEBUG GST_PADS gstpad.c:4006:gst_pad_query:<my_appsrc:src> doing query 0x3d21fca0 (caps)
0:00:00.434419250 8744 0x3d0a0600 DEBUG appsrc gstappsrc.c:688:gst_app_src_internal_get_caps:<my_appsrc> caps: (NULL)
0:00:00.434466875 8744 0x3d0a0600 DEBUG basesrc gstbasesrc.c:1310:gst_base_src_default_query:<my_appsrc> query caps returns 0
0:00:00.434498625 8744 0x3d0a0600 DEBUG GST_PADS gstpad.c:4029:gst_pad_query:<my_appsrc:src> sent query 0x3d21fca0 (caps), result 0
0:00:00.434530125 8744 0x3d0a0600 DEBUG GST_PADS gstpad.c:4074:gst_pad_query:<my_appsrc:src> query failed
0:00:00.434559125 8744 0x3d0a0600 DEBUG GST_CAPS gstutils.c:3040:gst_pad_query_caps:<my_h264parse:sink> get pad caps with filter (NULL)
0:00:00.434584000 8744 0x3d0a0600 DEBUG query gstquery.c:675:gst_query_new_custom: creating new query 0x3d1e15e0 caps
0:00:00.434614500 8744 0x3d0a0600 DEBUG GST_PADS gstpad.c:4006:gst_pad_query:<my_h264parse:sink> doing query 0x3d1e15e0 (caps)
0:00:00.434645625 8744 0x3d0a0600 DEBUG baseparse gstbaseparse.c:1546:gst_base_parse_sink_query:<my_h264parse> caps query
0:00:00.434678125 8744 0x3d0a0600 DEBUG GST_CAPS gstutils.c:3086:gst_pad_peer_query_caps:<my_h264parse:src> get pad peer caps with filter (NULL)
0:00:00.434703500 8744 0x3d0a0600 DEBUG query gstquery.c:675:gst_query_new_custom: creating new query 0x3d1e1540 caps
0:00:00.434734375 8744 0x3d0a0600 DEBUG GST_PADS gstpad.c:4133:gst_pad_peer_query:<my_h264parse:src> peer query 0x3d1e1540 (caps)
0:00:00.434765375 8744 0x3d0a0600 INFO GST_PADS gstpad.c:4189:gst_pad_peer_query:<my_h264parse:src> pad has no peer
0:00:00.434788750 8744 0x3d0a0600 DEBUG GST_PERFORMANCE gstcaps.c:179:_gst_caps_copy:ANY doing copy 0x3d21fca0 -> 0x3d21fe80
0:00:00.434818125 8744 0x3d0a0600 DEBUG GST_PERFORMANCE gstcaps.c:179:_gst_caps_copy:ANY doing copy 0x3d21fca0 -> 0x3d21fe80
0:00:00.434847375 8744 0x3d0a0600 DEBUG GST_PERFORMANCE gstcaps.c:179:_gst_caps_copy:video/x-h264 doing copy 0x3d154b20 -> 0x3d1e1540
0:00:00.434872500 8744 0x3d0a0600 DEBUG GST_PERFORMANCE gstminiobject.c:317:gst_mini_object_make_writable: copy GstCaps miniobject 0x3d154b20 -> 0x3d1e1540
0:00:00.434909625 8744 0x3d0a0600 LOG baseparse gstbaseparse.c:1501:gst_base_parse_sink_query_default:<my_h264parse> sink getcaps returning caps video/x-h264
0:00:00.434947500 8744 0x3d0a0600 LOG baseparse gstbaseparse.c:1554:gst_base_parse_sink_query:<my_h264parse> caps query result: 1 caps query: 0x3d1e15e0, GstQueryCaps, filter=(GstCaps)"NULL", caps=(GstCaps)video/x-h264;
0:00:00.435002750 8744 0x3d0a0600 DEBUG GST_PADS gstpad.c:4029:gst_pad_query:<my_h264parse:sink> sent query 0x3d1e15e0 (caps), result 1
0:00:00.435034750 8744 0x3d0a0600 DEBUG GST_CAPS gstutils.c:3047:gst_pad_query_caps:<my_h264parse:sink> query returned video/x-h264
0:00:00.435061375 8744 0x3d0a0600 DEBUG GST_ELEMENT_PADS gstutils.c:1164:gst_element_get_compatible_pad: found existing unlinked compatible pad my_h264parse:sink
0:00:00.435086500 8744 0x3d0a0600 INFO GST_PADS gstutils.c:1588:prepare_link_maybe_ghosting: my_appsrc and my_h264parse in same bin, no need for ghost pads
0:00:00.435123750 8744 0x3d0a0600 LOG GST_MESSAGE gstmessage.c:301:gst_message_new_custom: source sink: creating new message 0x3d216a40 structure-change
0:00:00.435157875 8744 0x3d0a0600 DEBUG GST_BUS gstbus.c:318:gst_bus_post:<bus0> [msg 0x3d216a40] posting on bus structure-change message: 0x3d216a40, time 99:99:99.999999999, seq-num 1, element 'sink', GstMessageStructureChange, type=(GstStructureChangeType)GST_STRUCTURE_CHANGE_TYPE_PAD_LINK, owner=(GstElement)"\(GstAppSrc\)\ my_appsrc", busy=(boolean)true;
0:00:00.435294000 8744 0x3d0a0600 DEBUG bin gstbin.c:3715:gst_bin_handle_message_func:<my_pipeline> [msg 0x3d216a40] handling child sink message of type structure-change
0:00:00.435334500 8744 0x3d0a0600 DEBUG bin gstbin.c:885:find_message:<my_pipeline> no message found matching types 00001000
0:00:00.435377500 8744 0x3d0a0600 DEBUG bin gstbin.c:892:find_message:<my_pipeline> structure-change
0:00:00.435403750 8744 0x3d0a0600 DEBUG bin gstbin.c:932:bin_replace_message:<my_pipeline> got new message 0x3d216a40, structure-change from sink
0:00:00.435434125 8744 0x3d0a0600 DEBUG GST_BUS gstbus.c:353:gst_bus_post:<bus0> [msg 0x3d216a40] dropped
0:00:00.435456625 8744 0x3d0a0600 INFO GST_PADS gstpad.c:2378:gst_pad_link_prepare: trying to link my_appsrc:src and my_h264parse:sink
0:00:00.435491250 8744 0x3d0a0600 DEBUG GST_CAPS gstutils.c:3040:gst_pad_query_caps:<my_appsrc:src> get pad caps with filter (NULL)
0:00:00.435515625 8744 0x3d0a0600 DEBUG query gstquery.c:675:gst_query_new_custom: creating new query 0x3d1e1590 caps
0:00:00.435545000 8744 0x3d0a0600 DEBUG GST_PADS gstpad.c:4006:gst_pad_query:<my_appsrc:src> doing query 0x3d1e1590 (caps)
0:00:00.435573375 8744 0x3d0a0600 DEBUG appsrc gstappsrc.c:688:gst_app_src_internal_get_caps:<my_appsrc> caps: (NULL)
0:00:00.435598000 8744 0x3d0a0600 DEBUG basesrc gstbasesrc.c:1310:gst_base_src_default_query:<my_appsrc> query caps returns 0
0:00:00.435626125 8744 0x3d0a0600 DEBUG GST_PADS gstpad.c:4029:gst_pad_query:<my_appsrc:src> sent query 0x3d1e1590 (caps), result 0
0:00:00.435655250 8744 0x3d0a0600 DEBUG GST_PADS gstpad.c:4074:gst_pad_query:<my_appsrc:src> query failed
0:00:00.435681250 8744 0x3d0a0600 DEBUG GST_CAPS gstutils.c:3040:gst_pad_query_caps:<my_h264parse:sink> get pad caps with filter (NULL)
0:00:00.435705250 8744 0x3d0a0600 DEBUG query gstquery.c:675:gst_query_new_custom: creating new query 0x3d21fca0 caps
0:00:00.435733750 8744 0x3d0a0600 DEBUG GST_PADS gstpad.c:4006:gst_pad_query:<my_h264parse:sink> doing query 0x3d21fca0 (caps)
0:00:00.435761250 8744 0x3d0a0600 DEBUG baseparse gstbaseparse.c:1546:gst_base_parse_sink_query:<my_h264parse> caps query
0:00:00.435788125 8744 0x3d0a0600 DEBUG GST_CAPS gstutils.c:3086:gst_pad_peer_query_caps:<my_h264parse:src> get pad peer caps with filter (NULL)
0:00:00.435811875 8744 0x3d0a0600 DEBUG query gstquery.c:675:gst_query_new_custom: creating new query 0x3d1e1540 caps
0:00:00.435840875 8744 0x3d0a0600 DEBUG GST_PADS gstpad.c:4133:gst_pad_peer_query:<my_h264parse:src> peer query 0x3d1e1540 (caps)
0:00:00.435869375 8744 0x3d0a0600 INFO GST_PADS gstpad.c:4189:gst_pad_peer_query:<my_h264parse:src> pad has no peer
0:00:00.435890500 8744 0x3d0a0600 DEBUG GST_PERFORMANCE gstcaps.c:179:_gst_caps_copy:ANY doing copy 0x3d21fe80 -> 0x3d1e1540
0:00:00.435915750 8744 0x3d0a0600 DEBUG GST_PERFORMANCE gstcaps.c:179:_gst_caps_copy:ANY doing copy 0x3d21fe80 -> 0x3d1e1590
0:00:00.435941875 8744 0x3d0a0600 DEBUG GST_PERFORMANCE gstcaps.c:179:_gst_caps_copy:video/x-h264 doing copy 0x3d154b20 -> 0x3d1e1590
0:00:00.435980875 8744 0x3d0a0600 DEBUG GST_PERFORMANCE gstminiobject.c:317:gst_mini_object_make_writable: copy GstCaps miniobject 0x3d154b20 -> 0x3d1e1590
0:00:00.436013625 8744 0x3d0a0600 LOG baseparse gstbaseparse.c:1501:gst_base_parse_sink_query_default:<my_h264parse> sink getcaps returning caps video/x-h264
0:00:00.436042375 8744 0x3d0a0600 LOG baseparse gstbaseparse.c:1554:gst_base_parse_sink_query:<my_h264parse> caps query result: 1 caps query: 0x3d21fca0, GstQueryCaps, filter=(GstCaps)"NULL", caps=(GstCaps)video/x-h264;
0:00:00.436092375 8744 0x3d0a0600 DEBUG GST_PADS gstpad.c:4029:gst_pad_query:<my_h264parse:sink> sent query 0x3d21fca0 (caps), result 1
0:00:00.436123000 8744 0x3d0a0600 DEBUG GST_CAPS gstutils.c:3047:gst_pad_query_caps:<my_h264parse:sink> query returned video/x-h264
0:00:00.436170500 8744 0x3d0a0600 DEBUG GST_CAPS gstpad.c:2278:gst_pad_link_check_compatible_unlocked:<my_appsrc:src> src caps ANY
0:00:00.436198250 8744 0x3d0a0600 DEBUG GST_CAPS gstpad.c:2280:gst_pad_link_check_compatible_unlocked:<my_h264parse:sink> sink caps video/x-h264
0:00:00.436221625 8744 0x3d0a0600 DEBUG GST_CAPS gstpad.c:2298:gst_pad_link_check_compatible_unlocked: caps are compatible
0:00:00.436246625 8744 0x3d0a0600 INFO GST_PADS gstpad.c:2586:gst_pad_link_full: linked my_appsrc:src and my_h264parse:sink, successful
0:00:00.436273875 8744 0x3d0a0600 INFO GST_EVENT gstevent.c:1517:gst_event_new_reconfigure: creating reconfigure event
0:00:00.436293875 8744 0x3d0a0600 DEBUG GST_EVENT gstevent.c:306:gst_event_new_custom: creating new event 0x3d1e2150 reconfigure 61441
0:00:00.436327875 8744 0x3d0a0600 DEBUG GST_EVENT gstpad.c:5638:gst_pad_send_event_unchecked:<my_appsrc:src> have event type reconfigure event: 0x3d1e2150, time 99:99:99.999999999, seq-num 2, (NULL)
0:00:00.436373250 8744 0x3d0a0600 INFO GST_EVENT gstpad.c:5744:gst_pad_send_event_unchecked:<my_appsrc:src> Received event on flushing pad. Discarding
0:00:00.436393000 8744 0x3d0a0600 LOG GST_EVENT gstevent.c:223:_gst_event_free: freeing event 0x3d1e2150 type reconfigure
0:00:00.436423000 8744 0x3d0a0600 LOG GST_MESSAGE gstmessage.c:301:gst_message_new_custom: source sink: creating new message 0x3d216ac0 structure-change
0:00:00.436454625 8744 0x3d0a0600 DEBUG GST_BUS gstbus.c:318:gst_bus_post:<bus0> [msg 0x3d216ac0] posting on bus structure-change message: 0x3d216ac0, time 99:99:99.999999999, seq-num 3, element 'sink', GstMessageStructureChange, type=(GstStructureChangeType)GST_STRUCTURE_CHANGE_TYPE_PAD_LINK, owner=(GstElement)"\(GstAppSrc\)\ my_appsrc", busy=(boolean)false;
0:00:00.436535625 8744 0x3d0a0600 DEBUG bin gstbin.c:3715:gst_bin_handle_message_func:<my_pipeline> [msg 0x3d216ac0] handling child sink message of type structure-change
0:00:00.436563750 8744 0x3d0a0600 LOG bin gstbin.c:863:message_check: looking at message 0x3d216a40: 1
0:00:00.436594375 8744 0x3d0a0600 DEBUG bin gstbin.c:961:bin_remove_messages:<my_h264parse:sink> deleting message 0x3d216a40 of type structure-change (types 0x00001000)
0:00:00.436647375 8744 0x3d0a0600 LOG GST_MESSAGE gstmessage.c:208:_gst_message_free: finalize message 0x3d216a40, structure-change from sink
0:00:00.436677750 8744 0x3d0a0600 LOG GST_MESSAGE gstmessage.c:208:_gst_message_free: finalize message 0x3d216ac0, structure-change from sink
0:00:00.436710875 8744 0x3d0a0600 DEBUG GST_BUS gstbus.c:353:gst_bus_post:<bus0> [msg 0x3d216ac0] dropped
0:00:00.436734750 8744 0x3d0a0600 DEBUG GST_ELEMENT_PADS gstutils.c:1904:gst_element_link_pads_full: linked pad my_appsrc:src to pad my_h264parse:sink
0:00:00.436761875 8744 0x3d0a0600 INFO GST_ELEMENT_PADS gstutils.c:1774:gst_element_link_pads_full: trying to link element my_h264parse:(any) to element my_vdec:(any)
0:00:00.436788250 8744 0x3d0a0600 DEBUG GST_ELEMENT_PADS gstutils.c:1881:gst_element_link_pads_full: looping through allowed src and dest pads
0:00:00.436806875 8744 0x3d0a0600 DEBUG GST_ELEMENT_PADS gstutils.c:1884:gst_element_link_pads_full: trying src pad my_h264parse:sink
0:00:00.436830250 8744 0x3d0a0600 DEBUG GST_ELEMENT_PADS gstutils.c:1884:gst_element_link_pads_full: trying src pad my_h264parse:src
0:00:00.436853000 8744 0x3d0a0600 DEBUG GST_ELEMENT_PADS gstutils.c:1105:gst_element_get_compatible_pad: finding pad in my_vdec compatible with my_h264parse:src
0:00:00.436880500 8744 0x3d0a0600 LOG GST_ELEMENT_PADS gstutils.c:1132:gst_element_get_compatible_pad: examining pad my_vdec:sink
0:00:00.436920625 8744 0x3d0a0600 INFO GST_PADS gstutils.c:1035:gst_pad_check_link: trying to link my_h264parse:src and my_vdec:sink
0:00:00.436954750 8744 0x3d0a0600 DEBUG GST_CAPS gstutils.c:3040:gst_pad_query_caps:<my_h264parse:src> get pad caps with filter (NULL)
0:00:00.436980000 8744 0x3d0a0600 DEBUG query gstquery.c:675:gst_query_new_custom: creating new query 0x3d1e1540 caps
0:00:00.437010000 8744 0x3d0a0600 DEBUG GST_PADS gstpad.c:4006:gst_pad_query:<my_h264parse:src> doing query 0x3d1e1540 (caps)
0:00:00.437039500 8744 0x3d0a0600 DEBUG baseparse gstbaseparse.c:1570:gst_base_parse_src_query:<my_h264parse> caps query: caps query: 0x3d1e1540, GstQueryCaps, filter=(GstCaps)"NULL", caps=(GstCaps)"NULL";
0:00:00.437127875 8744 0x3d0a0600 DEBUG GST_CAPS gstpad.c:3183:gst_pad_query_caps_default:<my_h264parse:src> query caps caps query: 0x3d1e1540, GstQueryCaps, filter=(GstCaps)"NULL", caps=(GstCaps)"NULL";
0:00:00.437172500 8744 0x3d0a0600 DEBUG GST_CAPS gstpad.c:3200:gst_pad_query_caps_default:<my_h264parse:src> fixed pad caps: trying pad caps
0:00:00.437198750 8744 0x3d0a0600 DEBUG GST_CAPS gstpad.c:3206:gst_pad_query_caps_default:<my_h264parse:src> trying pad template caps
0:00:00.437223625 8744 0x3d0a0600 DEBUG GST_CAPS gstpad.c:3236:gst_pad_query_caps_default:<my_h264parse:src> using caps 0x3d154ad0 video/x-h264, parsed=(boolean)true, stream-format=(string){ avc, avc3, byte-stream }, alignment=(string){ au, nal }
0:00:00.437273750 8744 0x3d0a0600 DEBUG GST_PADS gstpad.c:3438:gst_pad_query_default:<my_h264parse:src> not forwarding 0x3d1e1540 (caps) query
0:00:00.437303750 8744 0x3d0a0600 LOG baseparse gstbaseparse.c:1578:gst_base_parse_src_query:<my_h264parse> caps query result: 1 caps query: 0x3d1e1540, GstQueryCaps, filter=(GstCaps)"NULL", caps=(GstCaps)"video/x-h264\,\ parsed\=\(boolean\)true\,\ stream-format\=\(string\)\{\ avc\,\ avc3\,\ byte-stream\ \}\,\ alignment\=\(string\)\{\ au\,\ nal\ \}";
0:00:00.437369375 8744 0x3d0a0600 DEBUG GST_PADS gstpad.c:4029:gst_pad_query:<my_h264parse:src> sent query 0x3d1e1540 (caps), result 1
0:00:00.437402250 8744 0x3d0a0600 DEBUG GST_CAPS gstutils.c:3047:gst_pad_query_caps:<my_h264parse:src> query returned video/x-h264, parsed=(boolean)true, stream-format=(string){ avc, avc3, byte-stream }, alignment=(string){ au, nal }
0:00:00.437444000 8744 0x3d0a0600 DEBUG GST_CAPS gstutils.c:3040:gst_pad_query_caps:<my_vdec:sink> get pad caps with filter (NULL)
0:00:00.437469000 8744 0x3d0a0600 DEBUG query gstquery.c:675:gst_query_new_custom: creating new query 0x3d1e1540 caps
0:00:00.437498625 8744 0x3d0a0600 DEBUG GST_PADS gstpad.c:4006:gst_pad_query:<my_vdec:sink> doing query 0x3d1e1540 (caps)
0:00:00.437530000 8744 0x3d0a0600 DEBUG videodecoder gstvideodecoder.c:1884:gst_video_decoder_sink_query:<my_vdec> received query 43523, caps
0:00:00.437559125 8744 0x3d0a0600 LOG videodecoder gstvideodecoder.c:1792:gst_video_decoder_sink_query_default:<my_vdec> handling query: caps query: 0x3d1e1540, GstQueryCaps, filter=(GstCaps)"NULL", caps=(GstCaps)"NULL";
0:00:00.437609000 8744 0x3d0a0600 DEBUG GST_CAPS gstutils.c:3086:gst_pad_peer_query_caps:<my_vdec:src> get pad peer caps with filter (NULL)
0:00:00.437633875 8744 0x3d0a0600 DEBUG query gstquery.c:675:gst_query_new_custom: creating new query 0x3d1e15e0 caps
0:00:00.437663750 8744 0x3d0a0600 DEBUG GST_PADS gstpad.c:4133:gst_pad_peer_query:<my_vdec:src> peer query 0x3d1e15e0 (caps)
0:00:00.437694250 8744 0x3d0a0600 INFO GST_PADS gstpad.c:4189:gst_pad_peer_query:<my_vdec:src> pad has no peer
0:00:00.437724000 8744 0x3d0a0600 LOG default gstvideoutilsprivate.c:128:__gst_video_element_proxy_getcaps:<my_vdec> template caps video/x-h264, stream-format=(string)byte-stream, alignment=(string)au
0:00:00.437776500 8744 0x3d0a0600 LOG default gstvideoutilsprivate.c:129:__gst_video_element_proxy_getcaps:<my_vdec> allowed caps video/x-raw, format=(string)NV12, width=(int)[ 1, 32768 ], height=(int)[ 1, 32768 ], framerate=(fraction)[ 0/1, 2147483647/1 ]
0:00:00.437899875 8744 0x3d0a0600 LOG default gstvideoutilsprivate.c:147:__gst_video_element_proxy_getcaps:<my_vdec> proxy caps video/x-h264, width=(int)[ 1, 32768 ], height=(int)[ 1, 32768 ], framerate=(fraction)[ 0/1, 2147483647/1 ], stream-format=(string)byte-stream, alignment=(string)au
0:00:00.437966500 8744 0x3d0a0600 DEBUG v4l2videodec gstv4l2videodec.c:925:gst_v4l2_video_dec_sink_getcaps:<my_vdec> Returning sink caps video/x-h264, width=(int)[ 1, 32768 ], height=(int)[ 1, 32768 ], framerate=(fraction)[ 0/1, 2147483647/1 ], stream-format=(string)byte-stream, alignment=(string)au
0:00:00.438029375 8744 0x3d0a0600 LOG videodecoder gstvideodecoder.c:1777:gst_video_decoder_sink_getcaps:<my_vdec> Returning caps video/x-h264, width=(int)[ 1, 32768 ], height=(int)[ 1, 32768 ], framerate=(fraction)[ 0/1, 2147483647/1 ], stream-format=(string)byte-stream, alignment=(string)au
0:00:00.438094000 8744 0x3d0a0600 DEBUG GST_PADS gstpad.c:4029:gst_pad_query:<my_vdec:sink> sent query 0x3d1e1540 (caps), result 1
0:00:00.438126625 8744 0x3d0a0600 DEBUG GST_CAPS gstutils.c:3047:gst_pad_query_caps:<my_vdec:sink> query returned video/x-h264, width=(int)[ 1, 32768 ], height=(int)[ 1, 32768 ], framerate=(fraction)[ 0/1, 2147483647/1 ], stream-format=(string)byte-stream, alignment=(string)au
0:00:00.438200750 8744 0x3d0a0600 DEBUG GST_ELEMENT_PADS gstutils.c:1164:gst_element_get_compatible_pad: found existing unlinked compatible pad my_vdec:sink
0:00:00.438228750 8744 0x3d0a0600 INFO GST_PADS gstutils.c:1588:prepare_link_maybe_ghosting: my_h264parse and my_vdec in same bin, no need for ghost pads
0:00:00.438267375 8744 0x3d0a0600 LOG GST_MESSAGE gstmessage.c:301:gst_message_new_custom: source sink: creating new message 0x3d216ac0 structure-change
0:00:00.438303500 8744 0x3d0a0600 DEBUG GST_BUS gstbus.c:318:gst_bus_post:<bus0> [msg 0x3d216ac0] posting on bus structure-change message: 0x3d216ac0, time 99:99:99.999999999, seq-num 4, element 'sink', GstMessageStructureChange, type=(GstStructureChangeType)GST_STRUCTURE_CHANGE_TYPE_PAD_LINK, owner=(GstElement)"\(GstH264Parse\)\ my_h264parse", busy=(boolean)true;
0:00:00.438399375 8744 0x3d0a0600 DEBUG bin gstbin.c:3715:gst_bin_handle_message_func:<my_pipeline> [msg 0x3d216ac0] handling child sink message of type structure-change
0:00:00.438436125 8744 0x3d0a0600 DEBUG bin gstbin.c:885:find_message:<my_pipeline> no message found matching types 00001000
0:00:00.438463250 8744 0x3d0a0600 DEBUG bin gstbin.c:892:find_message:<my_pipeline> structure-change
0:00:00.438489375 8744 0x3d0a0600 DEBUG bin gstbin.c:932:bin_replace_message:<my_pipeline> got new message 0x3d216ac0, structure-change from sink
0:00:00.438519500 8744 0x3d0a0600 DEBUG GST_BUS gstbus.c:353:gst_bus_post:<bus0> [msg 0x3d216ac0] dropped
0:00:00.438542250 8744 0x3d0a0600 INFO GST_PADS gstpad.c:2378:gst_pad_link_prepare: trying to link my_h264parse:src and my_vdec:sink
0:00:00.438577125 8744 0x3d0a0600 DEBUG GST_CAPS gstutils.c:3040:gst_pad_query_caps:<my_h264parse:src> get pad caps with filter (NULL)
0:00:00.438602875 8744 0x3d0a0600 DEBUG query gstquery.c:675:gst_query_new_custom: creating new query 0x3d21fca0 caps
0:00:00.438632625 8744 0x3d0a0600 DEBUG GST_PADS gstpad.c:4006:gst_pad_query:<my_h264parse:src> doing query 0x3d21fca0 (caps)
0:00:00.438662250 8744 0x3d0a0600 DEBUG baseparse gstbaseparse.c:1570:gst_base_parse_src_query:<my_h264parse> caps query: caps query: 0x3d21fca0, GstQueryCaps, filter=(GstCaps)"NULL", caps=(GstCaps)"NULL";
0:00:00.438747875 8744 0x3d0a0600 DEBUG GST_CAPS gstpad.c:3183:gst_pad_query_caps_default:<my_h264parse:src> query caps caps query: 0x3d21fca0, GstQueryCaps, filter=(GstCaps)"NULL", caps=(GstCaps)"NULL";
0:00:00.438794875 8744 0x3d0a0600 DEBUG GST_CAPS gstpad.c:3200:gst_pad_query_caps_default:<my_h264parse:src> fixed pad caps: trying pad caps
0:00:00.438821750 8744 0x3d0a0600 DEBUG GST_CAPS gstpad.c:3206:gst_pad_query_caps_default:<my_h264parse:src> trying pad template caps
0:00:00.438847125 8744 0x3d0a0600 DEBUG GST_CAPS gstpad.c:3236:gst_pad_query_caps_default:<my_h264parse:src> using caps 0x3d154ad0 video/x-h264, parsed=(boolean)true, stream-format=(string){ avc, avc3, byte-stream }, alignment=(string){ au, nal }
0:00:00.438895875 8744 0x3d0a0600 DEBUG GST_PADS gstpad.c:3438:gst_pad_query_default:<my_h264parse:src> not forwarding 0x3d21fca0 (caps) query
0:00:00.438926625 8744 0x3d0a0600 LOG baseparse gstbaseparse.c:1578:gst_base_parse_src_query:<my_h264parse> caps query result: 1 caps query: 0x3d21fca0, GstQueryCaps, filter=(GstCaps)"NULL", caps=(GstCaps)"video/x-h264\,\ parsed\=\(boolean\)true\,\ stream-format\=\(string\)\{\ avc\,\ avc3\,\ byte-stream\ \}\,\ alignment\=\(string\)\{\ au\,\ nal\ \}";
0:00:00.438995250 8744 0x3d0a0600 DEBUG GST_PADS gstpad.c:4029:gst_pad_query:<my_h264parse:src> sent query 0x3d21fca0 (caps), result 1
0:00:00.439027500 8744 0x3d0a0600 DEBUG GST_CAPS gstutils.c:3047:gst_pad_query_caps:<my_h264parse:src> query returned video/x-h264, parsed=(boolean)true, stream-format=(string){ avc, avc3, byte-stream }, alignment=(string){ au, nal }
0:00:00.439071375 8744 0x3d0a0600 DEBUG GST_CAPS gstutils.c:3040:gst_pad_query_caps:<my_vdec:sink> get pad caps with filter (NULL)
0:00:00.439097750 8744 0x3d0a0600 DEBUG query gstquery.c:675:gst_query_new_custom: creating new query 0x3d1e15e0 caps
0:00:00.439128250 8744 0x3d0a0600 DEBUG GST_PADS gstpad.c:4006:gst_pad_query:<my_vdec:sink> doing query 0x3d1e15e0 (caps)
0:00:00.439158625 8744 0x3d0a0600 DEBUG videodecoder gstvideodecoder.c:1884:gst_video_decoder_sink_query:<my_vdec> received query 43523, caps
0:00:00.439186625 8744 0x3d0a0600 LOG videodecoder gstvideodecoder.c:1792:gst_video_decoder_sink_query_default:<my_vdec> handling query: caps query: 0x3d1e15e0, GstQueryCaps, filter=(GstCaps)"NULL", caps=(GstCaps)"NULL";
0:00:00.439238500 8744 0x3d0a0600 DEBUG GST_CAPS gstutils.c:3086:gst_pad_peer_query_caps:<my_vdec:src> get pad peer caps with filter (NULL)
0:00:00.439264125 8744 0x3d0a0600 DEBUG query gstquery.c:675:gst_query_new_custom: creating new query 0x3d21fca0 caps
0:00:00.439294625 8744 0x3d0a0600 DEBUG GST_PADS gstpad.c:4133:gst_pad_peer_query:<my_vdec:src> peer query 0x3d21fca0 (caps)
0:00:00.439324875 8744 0x3d0a0600 INFO GST_PADS gstpad.c:4189:gst_pad_peer_query:<my_vdec:src> pad has no peer
0:00:00.439356000 8744 0x3d0a0600 LOG default gstvideoutilsprivate.c:128:__gst_video_element_proxy_getcaps:<my_vdec> template caps video/x-h264, stream-format=(string)byte-stream, alignment=(string)au
0:00:00.439392375 8744 0x3d0a0600 LOG default gstvideoutilsprivate.c:129:__gst_video_element_proxy_getcaps:<my_vdec> allowed caps video/x-raw, format=(string)NV12, width=(int)[ 1, 32768 ], height=(int)[ 1, 32768 ], framerate=(fraction)[ 0/1, 2147483647/1 ]
0:00:00.439509875 8744 0x3d0a0600 LOG default gstvideoutilsprivate.c:147:__gst_video_element_proxy_getcaps:<my_vdec> proxy caps video/x-h264, width=(int)[ 1, 32768 ], height=(int)[ 1, 32768 ], framerate=(fraction)[ 0/1, 2147483647/1 ], stream-format=(string)byte-stream, alignment=(string)au
0:00:00.439606875 8744 0x3d0a0600 DEBUG v4l2videodec gstv4l2videodec.c:925:gst_v4l2_video_dec_sink_getcaps:<my_vdec> Returning sink caps video/x-h264, width=(int)[ 1, 32768 ], height=(int)[ 1, 32768 ], framerate=(fraction)[ 0/1, 2147483647/1 ], stream-format=(string)byte-stream, alignment=(string)au
0:00:00.439670750 8744 0x3d0a0600 LOG videodecoder gstvideodecoder.c:1777:gst_video_decoder_sink_getcaps:<my_vdec> Returning caps video/x-h264, width=(int)[ 1, 32768 ], height=(int)[ 1, 32768 ], framerate=(fraction)[ 0/1, 2147483647/1 ], stream-format=(string)byte-stream, alignment=(string)au
0:00:00.439736375 8744 0x3d0a0600 DEBUG GST_PADS gstpad.c:4029:gst_pad_query:<my_vdec:sink> sent query 0x3d1e15e0 (caps), result 1
0:00:00.439769750 8744 0x3d0a0600 DEBUG GST_CAPS gstutils.c:3047:gst_pad_query_caps:<my_vdec:sink> query returned video/x-h264, width=(int)[ 1, 32768 ], height=(int)[ 1, 32768 ], framerate=(fraction)[ 0/1, 2147483647/1 ], stream-format=(string)byte-stream, alignment=(string)au
0:00:00.439835625 8744 0x3d0a0600 DEBUG GST_CAPS gstpad.c:2278:gst_pad_link_check_compatible_unlocked:<my_h264parse:src> src caps video/x-h264, parsed=(boolean)true, stream-format=(string){ avc, avc3, byte-stream }, alignment=(string){ au, nal }
0:00:00.439876875 8744 0x3d0a0600 DEBUG GST_CAPS gstpad.c:2280:gst_pad_link_check_compatible_unlocked:<my_vdec:sink> sink caps video/x-h264, width=(int)[ 1, 32768 ], height=(int)[ 1, 32768 ], framerate=(fraction)[ 0/1, 2147483647/1 ], stream-format=(string)byte-stream, alignment=(string)au
0:00:00.439950875 8744 0x3d0a0600 DEBUG GST_CAPS gstpad.c:2298:gst_pad_link_check_compatible_unlocked: caps are compatible
0:00:00.439981625 8744 0x3d0a0600 INFO GST_PADS gstpad.c:2586:gst_pad_link_full: linked my_h264parse:src and my_vdec:sink, successful
0:00:00.440011000 8744 0x3d0a0600 INFO GST_EVENT gstevent.c:1517:gst_event_new_reconfigure: creating reconfigure event
0:00:00.440032125 8744 0x3d0a0600 DEBUG GST_EVENT gstevent.c:306:gst_event_new_custom: creating new event 0x3d1e2150 reconfigure 61441
0:00:00.440067750 8744 0x3d0a0600 DEBUG GST_EVENT gstpad.c:5638:gst_pad_send_event_unchecked:<my_h264parse:src> have event type reconfigure event: 0x3d1e2150, time 99:99:99.999999999, seq-num 5, (NULL)
0:00:00.440113375 8744 0x3d0a0600 INFO GST_EVENT gstpad.c:5744:gst_pad_send_event_unchecked:<my_h264parse:src> Received event on flushing pad. Discarding
0:00:00.440133250 8744 0x3d0a0600 LOG GST_EVENT gstevent.c:223:_gst_event_free: freeing event 0x3d1e2150 type reconfigure
0:00:00.440170000 8744 0x3d0a0600 LOG GST_MESSAGE gstmessage.c:301:gst_message_new_custom: source sink: creating new message 0x3d216a40 structure-change
0:00:00.440204625 8744 0x3d0a0600 DEBUG GST_BUS gstbus.c:318:gst_bus_post:<bus0> [msg 0x3d216a40] posting on bus structure-change message: 0x3d216a40, time 99:99:99.999999999, seq-num 6, element 'sink', GstMessageStructureChange, type=(GstStructureChangeType)GST_STRUCTURE_CHANGE_TYPE_PAD_LINK, owner=(GstElement)"\(GstH264Parse\)\ my_h264parse", busy=(boolean)false;
0:00:00.440304250 8744 0x3d0a0600 DEBUG bin gstbin.c:3715:gst_bin_handle_message_func:<my_pipeline> [msg 0x3d216a40] handling child sink message of type structure-change
0:00:00.440335125 8744 0x3d0a0600 LOG bin gstbin.c:863:message_check: looking at message 0x3d216ac0: 1
0:00:00.440365125 8744 0x3d0a0600 DEBUG bin gstbin.c:961:bin_remove_messages:<my_vdec:sink> deleting message 0x3d216ac0 of type structure-change (types 0x00001000)
0:00:00.440394125 8744 0x3d0a0600 LOG GST_MESSAGE gstmessage.c:208:_gst_message_free: finalize message 0x3d216ac0, structure-change from sink
0:00:00.440424625 8744 0x3d0a0600 LOG GST_MESSAGE gstmessage.c:208:_gst_message_free: finalize message 0x3d216a40, structure-change from sink
0:00:00.440489000 8744 0x3d0a0600 DEBUG GST_BUS gstbus.c:353:gst_bus_post:<bus0> [msg 0x3d216a40] dropped
0:00:00.440514750 8744 0x3d0a0600 DEBUG GST_ELEMENT_PADS gstutils.c:1904:gst_element_link_pads_full: linked pad my_h264parse:src to pad my_vdec:sink
0:00:00.440544125 8744 0x3d0a0600 INFO GST_ELEMENT_PADS gstutils.c:1774:gst_element_link_pads_full: trying to link element my_vdec:(any) to element my_sink:(any)
0:00:00.440573000 8744 0x3d0a0600 DEBUG GST_ELEMENT_PADS gstutils.c:1881:gst_element_link_pads_full: looping through allowed src and dest pads
0:00:00.440591625 8744 0x3d0a0600 DEBUG GST_ELEMENT_PADS gstutils.c:1884:gst_element_link_pads_full: trying src pad my_vdec:sink
0:00:00.440614250 8744 0x3d0a0600 DEBUG GST_ELEMENT_PADS gstutils.c:1884:gst_element_link_pads_full: trying src pad my_vdec:src
0:00:00.440637000 8744 0x3d0a0600 DEBUG GST_ELEMENT_PADS gstutils.c:1105:gst_element_get_compatible_pad: finding pad in my_sink compatible with my_vdec:src
0:00:00.440670250 8744 0x3d0a0600 LOG GST_ELEMENT_PADS gstutils.c:1132:gst_element_get_compatible_pad: examining pad my_sink:sink
0:00:00.440695750 8744 0x3d0a0600 INFO GST_PADS gstutils.c:1035:gst_pad_check_link: trying to link my_vdec:src and my_sink:sink
0:00:00.440729000 8744 0x3d0a0600 DEBUG GST_CAPS gstutils.c:3040:gst_pad_query_caps:<my_vdec:src> get pad caps with filter (NULL)
0:00:00.440754250 8744 0x3d0a0600 DEBUG query gstquery.c:675:gst_query_new_custom: creating new query 0x3d1e1590 caps
0:00:00.440783250 8744 0x3d0a0600 DEBUG GST_PADS gstpad.c:4006:gst_pad_query:<my_vdec:src> doing query 0x3d1e1590 (caps)
0:00:00.440813625 8744 0x3d0a0600 DEBUG videodecoder gstvideodecoder.c:1733:gst_video_decoder_src_query:<my_vdec> received query 43523, caps
0:00:00.440847000 8744 0x3d0a0600 DEBUG v4l2videodec gstv4l2videodec.c:901:gst_v4l2_video_dec_src_query:<my_vdec> Returning src caps video/x-raw, format=(string)NV12, width=(int)[ 1, 32768 ], height=(int)[ 1, 32768 ], framerate=(fraction)[ 0/1, 2147483647/1 ]
0:00:00.440913875 8744 0x3d0a0600 DEBUG GST_PADS gstpad.c:4029:gst_pad_query:<my_vdec:src> sent query 0x3d1e1590 (caps), result 1
0:00:00.440946500 8744 0x3d0a0600 DEBUG GST_CAPS gstutils.c:3047:gst_pad_query_caps:<my_vdec:src> query returned video/x-raw, format=(string)NV12, width=(int)[ 1, 32768 ], height=(int)[ 1, 32768 ], framerate=(fraction)[ 0/1, 2147483647/1 ]
0:00:00.441008125 8744 0x3d0a0600 DEBUG GST_CAPS gstutils.c:3040:gst_pad_query_caps:<my_sink:sink> get pad caps with filter (NULL)
0:00:00.441032750 8744 0x3d0a0600 DEBUG query gstquery.c:675:gst_query_new_custom: creating new query 0x3d21fca0 caps
0:00:00.441127375 8744 0x3d0a0600 DEBUG GST_PADS gstpad.c:4006:gst_pad_query:<my_sink:sink> doing query 0x3d21fca0 (caps)
0:00:00.441265000 8744 0x3d0a0600 DEBUG GST_PERFORMANCE gstcaps.c:179:_gst_caps_copy:video/x-raw, format=(string){ BGRx, BGRA, RGBx, xBGR, xRGB, RGBA, ABGR, ARGB, RGB, BGR, RGB16, BGR16, YUY2, YVYU, UYVY, AYUV, NV12, NV21, NV16, YUV9, YVU9, Y41B, I420, YV12, Y42B, v308 }, width=(int)[ 1, 2147483647 ], height=(int)[ 1, 2147483647 ], framerate=(fraction)[ 0/1, 2147483647/1 ]; video/x-raw(memory:DMABuf), format=(string){ BGRx, BGRA, RGBx, xBGR, xRGB, RGBA, ABGR, ARGB, RGB, BGR, RGB16, BGR16, YUY2, YVYU, UYVY, AYUV, NV12, NV21, NV16, YUV9, YVU9, Y41B, I420, YV12, Y42B, v308 }, width=(int)[ 1, 2147483647 ], height=(int)[ 1, 2147483647 ], framerate=(fraction)[ 0/1, 2147483647/1 ] doing copy 0x3d21fe30 -> 0x3d1e1590
0:00:00.441347625 8744 0x3d0a0600 DEBUG GST_PERFORMANCE gstminiobject.c:317:gst_mini_object_make_writable: copy GstCaps miniobject 0x3d21fe30 -> 0x3d1e1590
0:00:00.441385375 8744 0x3d0a0600 DEBUG GST_PADS gstpad.c:4029:gst_pad_query:<my_sink:sink> sent query 0x3d21fca0 (caps), result 1
0:00:00.441439875 8744 0x3d0a0600 DEBUG GST_CAPS gstutils.c:3047:gst_pad_query_caps:<my_sink:sink> query returned video/x-raw, format=(string){ BGRx, BGRA, RGBx, xBGR, xRGB, RGBA, ABGR, ARGB, RGB, BGR, RGB16, BGR16, YUY2, YVYU, UYVY, AYUV, NV12, NV21, NV16, YUV9, YVU9, Y41B, I420, YV12, Y42B, v308 }, width=(int)[ 1, 2147483647 ], height=(int)[ 1, 2147483647 ], framerate=(fraction)[ 0/1, 2147483647/1 ]; video/x-raw(memory:DMABuf), format=(string){ BGRx, BGRA, RGBx, xBGR, xRGB, RGBA, ABGR, ARGB, RGB, BGR, RGB16, BGR16, YUY2, YVYU, UYVY, AYUV, NV12, NV21, NV16, YUV9, YVU9, Y41B, I420, YV12, Y42B, v308 }, width=(int)[ 1, 2147483647 ], height=(int)[ 1, 2147483647 ], framerate=(fraction)[ 0/1, 2147483647/1 ]
0:00:00.441592750 8744 0x3d0a0600 DEBUG GST_ELEMENT_PADS gstutils.c:1164:gst_element_get_compatible_pad: found existing unlinked compatible pad my_sink:sink
0:00:00.441622750 8744 0x3d0a0600 INFO GST_PADS gstutils.c:1588:prepare_link_maybe_ghosting: my_vdec and my_sink in same bin, no need for ghost pads
0:00:00.441658000 8744 0x3d0a0600 LOG GST_MESSAGE gstmessage.c:301:gst_message_new_custom: source sink: creating new message 0x3d216a40 structure-change
0:00:00.441692250 8744 0x3d0a0600 DEBUG GST_BUS gstbus.c:318:gst_bus_post:<bus0> [msg 0x3d216a40] posting on bus structure-change message: 0x3d216a40, time 99:99:99.999999999, seq-num 7, element 'sink', GstMessageStructureChange, type=(GstStructureChangeType)GST_STRUCTURE_CHANGE_TYPE_PAD_LINK, owner=(GstElement)"\(v4l2h264dec\)\ my_vdec", busy=(boolean)true;
0:00:00.441779875 8744 0x3d0a0600 DEBUG bin gstbin.c:3715:gst_bin_handle_message_func:<my_pipeline> [msg 0x3d216a40] handling child sink message of type structure-change
0:00:00.441813750 8744 0x3d0a0600 DEBUG bin gstbin.c:885:find_message:<my_pipeline> no message found matching types 00001000
0:00:00.441840875 8744 0x3d0a0600 DEBUG bin gstbin.c:892:find_message:<my_pipeline> structure-change
0:00:00.441867125 8744 0x3d0a0600 DEBUG bin gstbin.c:932:bin_replace_message:<my_pipeline> got new message 0x3d216a40, structure-change from sink
0:00:00.441896125 8744 0x3d0a0600 DEBUG GST_BUS gstbus.c:353:gst_bus_post:<bus0> [msg 0x3d216a40] dropped
0:00:00.441918250 8744 0x3d0a0600 INFO GST_PADS gstpad.c:2378:gst_pad_link_prepare: trying to link my_vdec:src and my_sink:sink
0:00:00.441952875 8744 0x3d0a0600 DEBUG GST_CAPS gstutils.c:3040:gst_pad_query_caps:<my_vdec:src> get pad caps with filter (NULL)
0:00:00.441977625 8744 0x3d0a0600 DEBUG query gstquery.c:675:gst_query_new_custom: creating new query 0x3d21fe80 caps
0:00:00.442006625 8744 0x3d0a0600 DEBUG GST_PADS gstpad.c:4006:gst_pad_query:<my_vdec:src> doing query 0x3d21fe80 (caps)
0:00:00.442035125 8744 0x3d0a0600 DEBUG videodecoder gstvideodecoder.c:1733:gst_video_decoder_src_query:<my_vdec> received query 43523, caps
0:00:00.442064000 8744 0x3d0a0600 DEBUG v4l2videodec gstv4l2videodec.c:901:gst_v4l2_video_dec_src_query:<my_vdec> Returning src caps video/x-raw, format=(string)NV12, width=(int)[ 1, 32768 ], height=(int)[ 1, 32768 ], framerate=(fraction)[ 0/1, 2147483647/1 ]
0:00:00.442125500 8744 0x3d0a0600 DEBUG GST_PADS gstpad.c:4029:gst_pad_query:<my_vdec:src> sent query 0x3d21fe80 (caps), result 1
0:00:00.442157250 8744 0x3d0a0600 DEBUG GST_CAPS gstutils.c:3047:gst_pad_query_caps:<my_vdec:src> query returned video/x-raw, format=(string)NV12, width=(int)[ 1, 32768 ], height=(int)[ 1, 32768 ], framerate=(fraction)[ 0/1, 2147483647/1 ]
0:00:00.442218750 8744 0x3d0a0600 DEBUG GST_CAPS gstutils.c:3040:gst_pad_query_caps:<my_sink:sink> get pad caps with filter (NULL)
0:00:00.442243125 8744 0x3d0a0600 DEBUG query gstquery.c:675:gst_query_new_custom: creating new query 0x3d1e15e0 caps
0:00:00.442288625 8744 0x3d0a0600 DEBUG GST_PADS gstpad.c:4006:gst_pad_query:<my_sink:sink> doing query 0x3d1e15e0 (caps)
0:00:00.442410125 8744 0x3d0a0600 DEBUG GST_PERFORMANCE gstcaps.c:179:_gst_caps_copy:video/x-raw, format=(string){ BGRx, BGRA, RGBx, xBGR, xRGB, RGBA, ABGR, ARGB, RGB, BGR, RGB16, BGR16, YUY2, YVYU, UYVY, AYUV, NV12, NV21, NV16, YUV9, YVU9, Y41B, I420, YV12, Y42B, v308 }, width=(int)[ 1, 2147483647 ], height=(int)[ 1, 2147483647 ], framerate=(fraction)[ 0/1, 2147483647/1 ]; video/x-raw(memory:DMABuf), format=(string){ BGRx, BGRA, RGBx, xBGR, xRGB, RGBA, ABGR, ARGB, RGB, BGR, RGB16, BGR16, YUY2, YVYU, UYVY, AYUV, NV12, NV21, NV16, YUV9, YVU9, Y41B, I420, YV12, Y42B, v308 }, width=(int)[ 1, 2147483647 ], height=(int)[ 1, 2147483647 ], framerate=(fraction)[ 0/1, 2147483647/1 ] doing copy 0x3d21fe30 -> 0x3d1e1540
0:00:00.442486000 8744 0x3d0a0600 DEBUG GST_PERFORMANCE gstminiobject.c:317:gst_mini_object_make_writable: copy GstCaps miniobject 0x3d21fe30 -> 0x3d1e1540
0:00:00.442522125 8744 0x3d0a0600 DEBUG GST_PADS gstpad.c:4029:gst_pad_query:<my_sink:sink> sent query 0x3d1e15e0 (caps), result 1
0:00:00.442554000 8744 0x3d0a0600 DEBUG GST_CAPS gstutils.c:3047:gst_pad_query_caps:<my_sink:sink> query returned video/x-raw, format=(string){ BGRx, BGRA, RGBx, xBGR, xRGB, RGBA, ABGR, ARGB, RGB, BGR, RGB16, BGR16, YUY2, YVYU, UYVY, AYUV, NV12, NV21, NV16, YUV9, YVU9, Y41B, I420, YV12, Y42B, v308 }, width=(int)[ 1, 2147483647 ], height=(int)[ 1, 2147483647 ], framerate=(fraction)[ 0/1, 2147483647/1 ]; video/x-raw(memory:DMABuf), format=(string){ BGRx, BGRA, RGBx, xBGR, xRGB, RGBA, ABGR, ARGB, RGB, BGR, RGB16, BGR16, YUY2, YVYU, UYVY, AYUV, NV12, NV21, NV16, YUV9, YVU9, Y41B, I420, YV12, Y42B, v308 }, width=(int)[ 1, 2147483647 ], height=(int)[ 1, 2147483647 ], framerate=(fraction)[ 0/1, 2147483647/1 ]
0:00:00.442679875 8744 0x3d0a0600 DEBUG GST_CAPS gstpad.c:2278:gst_pad_link_check_compatible_unlocked:<my_vdec:src> src caps video/x-raw, format=(string)NV12, width=(int)[ 1, 32768 ], height=(int)[ 1, 32768 ], framerate=(fraction)[ 0/1, 2147483647/1 ]
0:00:00.442737875 8744 0x3d0a0600 DEBUG GST_CAPS gstpad.c:2280:gst_pad_link_check_compatible_unlocked:<my_sink:sink> sink caps video/x-raw, format=(string){ BGRx, BGRA, RGBx, xBGR, xRGB, RGBA, ABGR, ARGB, RGB, BGR, RGB16, BGR16, YUY2, YVYU, UYVY, AYUV, NV12, NV21, NV16, YUV9, YVU9, Y41B, I420, YV12, Y42B, v308 }, width=(int)[ 1, 2147483647 ], height=(int)[ 1, 2147483647 ], framerate=(fraction)[ 0/1, 2147483647/1 ]; video/x-raw(memory:DMABuf), format=(string){ BGRx, BGRA, RGBx, xBGR, xRGB, RGBA, ABGR, ARGB, RGB, BGR, RGB16, BGR16, YUY2, YVYU, UYVY, AYUV, NV12, NV21, NV16, YUV9, YVU9, Y41B, I420, YV12, Y42B, v308 }, width=(int)[ 1, 2147483647 ], height=(int)[ 1, 2147483647 ], framerate=(fraction)[ 0/1, 2147483647/1 ]
0:00:00.442895625 8744 0x3d0a0600 DEBUG GST_CAPS gstpad.c:2298:gst_pad_link_check_compatible_unlocked: caps are compatible
0:00:00.442925250 8744 0x3d0a0600 INFO GST_PADS gstpad.c:2586:gst_pad_link_full: linked my_vdec:src and my_sink:sink, successful
0:00:00.442953750 8744 0x3d0a0600 INFO GST_EVENT gstevent.c:1517:gst_event_new_reconfigure: creating reconfigure event
0:00:00.442974125 8744 0x3d0a0600 DEBUG GST_EVENT gstevent.c:306:gst_event_new_custom: creating new event 0x3d1e2150 reconfigure 61441
0:00:00.443007125 8744 0x3d0a0600 DEBUG GST_EVENT gstpad.c:5638:gst_pad_send_event_unchecked:<my_vdec:src> have event type reconfigure event: 0x3d1e2150, time 99:99:99.999999999, seq-num 8, (NULL)
0:00:00.443055250 8744 0x3d0a0600 INFO GST_EVENT gstpad.c:5744:gst_pad_send_event_unchecked:<my_vdec:src> Received event on flushing pad. Discarding
0:00:00.443075000 8744 0x3d0a0600 LOG GST_EVENT gstevent.c:223:_gst_event_free: freeing event 0x3d1e2150 type reconfigure
0:00:00.443120250 8744 0x3d0a0600 LOG GST_MESSAGE gstmessage.c:301:gst_message_new_custom: source sink: creating new message 0x3d216ac0 structure-change
0:00:00.443151875 8744 0x3d0a0600 DEBUG GST_BUS gstbus.c:318:gst_bus_post:<bus0> [msg 0x3d216ac0] posting on bus structure-change message: 0x3d216ac0, time 99:99:99.999999999, seq-num 9, element 'sink', GstMessageStructureChange, type=(GstStructureChangeType)GST_STRUCTURE_CHANGE_TYPE_PAD_LINK, owner=(GstElement)"\(v4l2h264dec\)\ my_vdec", busy=(boolean)false;
0:00:00.443226875 8744 0x3d0a0600 DEBUG bin gstbin.c:3715:gst_bin_handle_message_func:<my_pipeline> [msg 0x3d216ac0] handling child sink message of type structure-change
0:00:00.443254250 8744 0x3d0a0600 LOG bin gstbin.c:863:message_check: looking at message 0x3d216a40: 1
0:00:00.443283375 8744 0x3d0a0600 DEBUG bin gstbin.c:961:bin_remove_messages:<my_sink:sink> deleting message 0x3d216a40 of type structure-change (types 0x00001000)
0:00:00.443310125 8744 0x3d0a0600 LOG GST_MESSAGE gstmessage.c:208:_gst_message_free: finalize message 0x3d216a40, structure-change from sink
0:00:00.443339125 8744 0x3d0a0600 LOG GST_MESSAGE gstmessage.c:208:_gst_message_free: finalize message 0x3d216ac0, structure-change from sink
0:00:00.443370875 8744 0x3d0a0600 DEBUG GST_BUS gstbus.c:353:gst_bus_post:<bus0> [msg 0x3d216ac0] dropped
0:00:00.443394000 8744 0x3d0a0600 DEBUG GST_ELEMENT_PADS gstutils.c:1904:gst_element_link_pads_full: linked pad my_vdec:src to pad my_sink:sink
0:00:00.443449000 8744 0x3d0a0600 DEBUG GST_BUS gstelement.c:3402:gst_element_get_bus:<my_pipeline> got bus <bus1>
0:00:00.443543750 8744 0x3d0a0600 DEBUG GST_BUS gstbus.c:946:gst_bus_add_watch_full_unlocked:<bus1> New source 0x3d21dc00 with id 2
0:00:00.443746125 8744 0x3d0a0600 LOG GST_DEBUG gstinfo.c:1595:gst_debug_reset_threshold: category audioclock matches pattern 0x3d0a0430 - gets set to level 6
0:00:00.443858875 8744 0x3d0a0600 DEBUG GST_POLL gstpoll.c:681:gst_poll_new: 0x3d1e1540: new controllable : 1
0:00:00.443931125 8744 0x3d0a0600 DEBUG GST_POLL gstpoll.c:848:gst_poll_add_fd_unlocked: 0x3d1e1540: fd (fd:11, idx:0)
0:00:00.443961125 8744 0x3d0a0600 DEBUG GST_POLL gstpoll.c:1015:gst_poll_fd_ctl_read_unlocked: 0x3d1e1540: fd (fd:11, idx:0), active : 1
0:00:00.444003875 8744 0x3d0a0600 DEBUG audioclock gstaudioclock.c:70:gst_audio_clock_init:<GstAudioClock at 0x3d22c0d0> init
0:00:00.444043000 8744 0x3d0a0600 DEBUG GST_CLOCK gstsystemclock.c:270:gst_system_clock_set_property: clock-type set to 2
0:00:00.444105375 8744 0x3d0a0600 DEBUG audioclock gstaudioclock.c:144:gst_audio_clock_reset:<MyClock> reset clock to 0:00:00.000000000, last 0:00:00.000000000, offset +0:00:00.000000000
0:00:00.444168125 8744 0x3d0a0600 DEBUG GST_CLOCK gstelement.c:429:gst_element_set_clock:<my_sink> setting clock 0x3d22c0d0
0:00:00.444201125 8744 0x3d0a0600 DEBUG GST_CLOCK gstelement.c:429:gst_element_set_clock:<my_vdec> setting clock 0x3d22c0d0
0:00:00.444231125 8744 0x3d0a0600 DEBUG GST_CLOCK gstelement.c:429:gst_element_set_clock:<my_h264parse> setting clock 0x3d22c0d0
0:00:00.444262500 8744 0x3d0a0600 DEBUG GST_CLOCK gstelement.c:429:gst_element_set_clock:<my_appsrc> setting clock 0x3d22c0d0
0:00:00.444291000 8744 0x3d0a0600 DEBUG bin gstbin.c:726:gst_bin_set_clock_func:<my_pipeline> iterator done
0:00:00.444322500 8744 0x3d0a0600 DEBUG GST_STATES gstelement.c:2827:gst_element_set_state_func:<my_pipeline> set_state to PLAYING
0:00:00.444355875 8744 0x3d0a0600 DEBUG GST_STATES gstelement.c:2852:gst_element_set_state_func:<my_pipeline> setting target state to PLAYING
0:00:00.444398250 8744 0x3d0a0600 DEBUG GST_STATES gstelement.c:2865:gst_element_set_state_func:<my_pipeline> current NULL, old_pending VOID_PENDING, next VOID_PENDING, old return SUCCESS
0:00:00.444431125 8744 0x3d0a0600 DEBUG GST_STATES gstelement.c:2899:gst_element_set_state_func:<my_pipeline> intermediate: setting state from NULL to READY
0:00:00.444468750 8744 0x3d0a0600 DEBUG GST_BUS gstbus.c:472:gst_bus_set_flushing:<bus1> unset bus flushing
0:00:00.444494625 8744 0x3d0a0600 DEBUG GST_STATES gstbin.c:2852:gst_bin_change_state_func:<my_pipeline> changing state of children from NULL to READY
0:00:00.444523000 8744 0x3d0a0600 DEBUG bin gstbin.c:2889:gst_bin_change_state_func:<my_pipeline> clearing all cached messages
0:00:00.444546250 8744 0x3d0a0600 DEBUG bin gstbin.c:2697:gst_bin_src_pads_activate:<my_pipeline> deactivate pads
0:00:00.444577000 8744 0x3d0a0600 DEBUG bin gstbin.c:2705:gst_bin_src_pads_activate:<my_pipeline> pad deactivation successful
0:00:00.444613750 8744 0x3d0a0600 DEBUG bin gstbin.c:2383:gst_bin_sort_iterator_resync:<my_pipeline> resync
0:00:00.444644250 8744 0x3d0a0600 DEBUG bin gstbin.c:2163:add_to_queue:<my_pipeline> adding 'my_sink' to queue
0:00:00.444675000 8744 0x3d0a0600 DEBUG bin gstbin.c:885:find_message:<my_pipeline> no message found matching types 00001000
0:00:00.444702000 8744 0x3d0a0600 DEBUG bin gstbin.c:892:find_message:<my_pipeline> structure-change
0:00:00.444729250 8744 0x3d0a0600 DEBUG bin gstbin.c:2280:update_degree:<my_pipeline> change element my_vdec, degree 0->1, linked to my_sink
0:00:00.444763500 8744 0x3d0a0600 DEBUG bin gstbin.c:885:find_message:<my_pipeline> no message found matching types 00001000
0:00:00.444789625 8744 0x3d0a0600 DEBUG bin gstbin.c:892:find_message:<my_pipeline> structure-change
0:00:00.444816750 8744 0x3d0a0600 DEBUG bin gstbin.c:2280:update_degree:<my_pipeline> change element my_h264parse, degree 0->1, linked to my_vdec
0:00:00.444848750 8744 0x3d0a0600 DEBUG bin gstbin.c:885:find_message:<my_pipeline> no message found matching types 00001000
0:00:00.444874750 8744 0x3d0a0600 DEBUG bin gstbin.c:892:find_message:<my_pipeline> structure-change
0:00:00.444902375 8744 0x3d0a0600 DEBUG bin gstbin.c:2280:update_degree:<my_pipeline> change element my_appsrc, degree 0->1, linked to my_h264parse
0:00:00.444934625 8744 0x3d0a0600 DEBUG bin gstbin.c:2303:update_degree:<my_pipeline> element my_appsrc not linked on any sinkpads
0:00:00.444970875 8744 0x3d0a0600 DEBUG bin gstbin.c:2370:gst_bin_sort_iterator_next:<my_pipeline> queue head gives my_sink
0:00:00.444997625 8744 0x3d0a0600 DEBUG bin gstbin.c:885:find_message:<my_pipeline> no message found matching types 00001000
0:00:00.445023500 8744 0x3d0a0600 DEBUG bin gstbin.c:892:find_message:<my_pipeline> structure-change
0:00:00.445088000 8744 0x3d0a0600 DEBUG bin gstbin.c:2280:update_degree:<my_pipeline> change element my_vdec, degree 1->0, linked to my_sink
0:00:00.445123750 8744 0x3d0a0600 DEBUG bin gstbin.c:2163:add_to_queue:<my_pipeline> adding 'my_vdec' to queue
0:00:00.445153875 8744 0x3d0a0600 INFO GST_STATES gstbin.c:2504:gst_bin_element_set_state:<my_sink> current NULL pending VOID_PENDING, desired next READY
0:00:00.445184250 8744 0x3d0a0600 DEBUG bin gstbin.c:885:find_message:<my_pipeline> no message found matching types 00100000
0:00:00.445210125 8744 0x3d0a0600 DEBUG bin gstbin.c:892:find_message:<my_pipeline> async-start
0:00:00.445235875 8744 0x3d0a0600 DEBUG bin gstbin.c:2599:gst_bin_element_set_state:<my_pipeline> setting element my_sink to READY, base_time 0:00:00.000000000
0:00:00.445286250 8744 0x3d0a0600 DEBUG GST_STATES gstelement.c:2827:gst_element_set_state_func:<my_sink> set_state to READY
0:00:00.445312500 8744 0x3d0a0600 DEBUG GST_STATES gstelement.c:2852:gst_element_set_state_func:<my_sink> setting target state to READY
0:00:00.445338250 8744 0x3d0a0600 DEBUG GST_STATES gstelement.c:2865:gst_element_set_state_func:<my_sink> current NULL, old_pending VOID_PENDING, next VOID_PENDING, old return SUCCESS
0:00:00.445368500 8744 0x3d0a0600 DEBUG GST_STATES gstelement.c:2899:gst_element_set_state_func:<my_sink> final: setting state from NULL to READY
0:00:00.445398750 8744 0x3d0a0600 DEBUG query gstquery.c:675:gst_query_new_custom: creating new query 0x3d1e15e0 context
0:00:00.445430000 8744 0x3d0a0600 DEBUG GST_PADS gstpad.c:4133:gst_pad_peer_query:<my_sink:sink> peer query 0x3d1e15e0 (context)
0:00:00.445460250 8744 0x3d0a0600 DEBUG GST_PADS gstpad.c:4006:gst_pad_query:<my_vdec:src> doing query 0x3d1e15e0 (context)
0:00:00.445488750 8744 0x3d0a0600 DEBUG videodecoder gstvideodecoder.c:1733:gst_video_decoder_src_query:<my_vdec> received query 48643, context
0:00:00.445516500 8744 0x3d0a0600 LOG videodecoder gstvideodecoder.c:1598:gst_video_decoder_src_query_default:<my_vdec> handling query: context query: 0x3d1e15e0, GstQueryContext, context-type=(string)GstWaylandDisplayHandleContextType;
0:00:00.445562500 8744 0x3d0a0600 DEBUG GST_PADS gstpad.c:3438:gst_pad_query_default:<my_vdec:src> forwarding 0x3d1e15e0 (context) query
0:00:00.445595750 8744 0x3d0a0600 DEBUG GST_PADS gstpad.c:2897:gst_pad_iterate_internal_links_default:<my_vdec:src> Making iterator
0:00:00.445628500 8744 0x3d0a0600 LOG GST_PADS gstpad.c:3007:gst_pad_forward:<my_vdec:src> calling forward function on pad my_vdec:sink
0:00:00.445658375 8744 0x3d0a0600 LOG GST_PADS gstpad.c:3378:query_forward_func:<my_vdec:sink> query peer 0x3d1e15e0 (context) of my_vdec:sink
0:00:00.445689250 8744 0x3d0a0600 DEBUG GST_PADS gstpad.c:4133:gst_pad_peer_query:<my_vdec:sink> peer query 0x3d1e15e0 (context)
0:00:00.445718750 8744 0x3d0a0600 DEBUG GST_PADS gstpad.c:4006:gst_pad_query:<my_h264parse:src> doing query 0x3d1e15e0 (context)
0:00:00.445749000 8744 0x3d0a0600 DEBUG baseparse gstbaseparse.c:1570:gst_base_parse_src_query:<my_h264parse> context query: context query: 0x3d1e15e0, GstQueryContext, context-type=(string)GstWaylandDisplayHandleContextType;
0:00:00.445795250 8744 0x3d0a0600 DEBUG GST_PADS gstpad.c:3438:gst_pad_query_default:<my_h264parse:src> forwarding 0x3d1e15e0 (context) query
0:00:00.445825625 8744 0x3d0a0600 DEBUG GST_PADS gstpad.c:2897:gst_pad_iterate_internal_links_default:<my_h264parse:src> Making iterator
0:00:00.445852750 8744 0x3d0a0600 LOG GST_PADS gstpad.c:3007:gst_pad_forward:<my_h264parse:src> calling forward function on pad my_h264parse:sink
0:00:00.445881500 8744 0x3d0a0600 LOG GST_PADS gstpad.c:3378:query_forward_func:<my_h264parse:sink> query peer 0x3d1e15e0 (context) of my_h264parse:sink
0:00:00.445913250 8744 0x3d0a0600 DEBUG GST_PADS gstpad.c:4133:gst_pad_peer_query:<my_h264parse:sink> peer query 0x3d1e15e0 (context)
0:00:00.445942500 8744 0x3d0a0600 DEBUG GST_PADS gstpad.c:4006:gst_pad_query:<my_appsrc:src> doing query 0x3d1e15e0 (context)
0:00:00.445973750 8744 0x3d0a0600 DEBUG basesrc gstbasesrc.c:1310:gst_base_src_default_query:<my_appsrc> query context returns 0
0:00:00.446002750 8744 0x3d0a0600 DEBUG GST_PADS gstpad.c:4029:gst_pad_query:<my_appsrc:src> sent query 0x3d1e15e0 (context), result 0
0:00:00.446031750 8744 0x3d0a0600 DEBUG GST_PADS gstpad.c:4074:gst_pad_query:<my_appsrc:src> query failed
0:00:00.446071750 8744 0x3d0a0600 DEBUG GST_PADS gstpad.c:4195:gst_pad_peer_query:<my_h264parse:sink> query failed
0:00:00.446097875 8744 0x3d0a0600 LOG baseparse gstbaseparse.c:1578:gst_base_parse_src_query:<my_h264parse> context query result: 0 context query: 0x3d1e15e0, GstQueryContext, context-type=(string)GstWaylandDisplayHandleContextType;
0:00:00.446143125 8744 0x3d0a0600 DEBUG GST_PADS gstpad.c:4029:gst_pad_query:<my_h264parse:src> sent query 0x3d1e15e0 (context), result 0
0:00:00.446172750 8744 0x3d0a0600 DEBUG GST_PADS gstpad.c:4074:gst_pad_query:<my_h264parse:src> query failed
0:00:00.446196250 8744 0x3d0a0600 DEBUG GST_PADS gstpad.c:4195:gst_pad_peer_query:<my_vdec:sink> query failed
0:00:00.446222625 8744 0x3d0a0600 DEBUG GST_PADS gstpad.c:4029:gst_pad_query:<my_vdec:src> sent query 0x3d1e15e0 (context), result 0
0:00:00.446252250 8744 0x3d0a0600 DEBUG GST_PADS gstpad.c:4074:gst_pad_query:<my_vdec:src> query failed
0:00:00.446275625 8744 0x3d0a0600 DEBUG GST_PADS gstpad.c:4195:gst_pad_peer_query:<my_sink:sink> query failed
0:00:00.446299500 8744 0x3d0a0600 LOG GST_MESSAGE gstmessage.c:301:gst_message_new_custom: source my_sink: creating new message 0x3d216a40 need-context
0:00:00.446331500 8744 0x3d0a0600 DEBUG GST_BUS gstbus.c:318:gst_bus_post:<bus0> [msg 0x3d216a40] posting on bus need-context message: 0x3d216a40, time 99:99:99.999999999, seq-num 10, element 'my_sink', GstMessageNeedContext, context-type=(string)GstWaylandDisplayHandleContextType;
0:00:00.446387500 8744 0x3d0a0600 DEBUG bin gstbin.c:3715:gst_bin_handle_message_func:<my_pipeline> [msg 0x3d216a40] handling child my_sink message of type need-context
0:00:00.446419625 8744 0x3d0a0600 LOG bin gstbin.c:4013:gst_bin_handle_message_func:<my_pipeline> got need-context message type: GstWaylandDisplayHandleContextType
0:00:00.446446250 8744 0x3d0a0600 DEBUG bin gstbin.c:4052:gst_bin_handle_message_func:<my_pipeline> posting message upward
0:00:00.446470125 8744 0x3d0a0600 DEBUG GST_BUS gstbus.c:318:gst_bus_post:<bus1> [msg 0x3d216a40] posting on bus need-context message: 0x3d216a40, time 99:99:99.999999999, seq-num 10, element 'my_sink', GstMessageNeedContext, context-type=(string)GstWaylandDisplayHandleContextType;
0:00:00.446522375 8744 0x3d0a0600 DEBUG GST_BUS gstbus.c:357:gst_bus_post:<bus1> [msg 0x3d216a40] pushing on async queue
0:00:00.446546250 8744 0x3d0a0600 LOG GST_POLL gstpoll.c:290:raise_wakeup: 0x3d154a30: raise
0:00:00.446587750 8744 0x3d0a0600 DEBUG GST_BUS gstbus.c:360:gst_bus_post:<bus1> [msg 0x3d216a40] pushed on async queue
0:00:00.446614250 8744 0x3d0a0600 DEBUG GST_BUS gstbus.c:353:gst_bus_post:<bus0> [msg 0x3d216a40] dropped
0:00:00.446765250 8744 0x3d0a0600 DEBUG GST_POLL gstpoll.c:681:gst_poll_new: 0x3d21fe80: new controllable : 1
0:00:00.446811125 8744 0x3d0a0600 DEBUG GST_POLL gstpoll.c:848:gst_poll_add_fd_unlocked: 0x3d21fe80: fd (fd:14, idx:0)
0:00:00.446838625 8744 0x3d0a0600 DEBUG GST_POLL gstpoll.c:1015:gst_poll_fd_ctl_read_unlocked: 0x3d21fe80: fd (fd:14, idx:0), active : 1
0:00:00.450634875 8744 0x3d0a0600 INFO waylandsink wldisplay.c:329:registry_handle_global: bind window manager interface
bind window manager interface
** (hw_decoder_test:8744): WARNING **: Wayland compositor is missing the ability to scale, video display may not work properly.
0:00:00.453353000 8744 0x3d0a0600 LOG GST_STATES gstelement.c:3154:gst_element_change_state_func:<my_sink> default handler tries setting state from NULL to READY (000a)
0:00:00.453415250 8744 0x3d0a0600 DEBUG GST_STATES gstelement.c:2988:gst_element_change_state:<my_sink> element changed state SUCCESS
0:00:00.453490875 8744 0x3d0a0600 INFO GST_STATES gstelement.c:2676:gst_element_continue_state:<my_sink> completed state change to READY
0:00:00.453519750 8744 0x3d0a0600 INFO GST_STATES gstelement.c:2579:_priv_gst_element_state_changed:<my_sink> notifying about state-changed NULL to READY (VOID_PENDING pending)
0:00:00.453516250 8744 0x3d1e1590 DEBUG GST_POLL gstpoll.c:848:gst_poll_add_fd_unlocked: 0x3d21fe80: fd (fd:13, idx:-1)
0:00:00.453617125 8744 0x3d0a0600 LOG GST_MESSAGE gstmessage.c:301:gst_message_new_custom: source my_sink: creating new message 0x3d216b40 state-changed
0:00:00.453657375 8744 0x3d1e1590 DEBUG GST_POLL gstpoll.c:1015:gst_poll_fd_ctl_read_unlocked: 0x3d21fe80: fd (fd:13, idx:1), active : 1
0:00:00.453715625 8744 0x3d1e1590 DEBUG GST_POLL gstpoll.c:1369:gst_poll_wait: 0x3d21fe80: timeout :99:99:99.999999999
0:00:00.453690250 8744 0x3d0a0600 DEBUG GST_BUS gstbus.c:318:gst_bus_post:<bus0> [msg 0x3d216b40] posting on bus state-changed message: 0x3d216b40, time 99:99:99.999999999, seq-num 11, element 'my_sink', GstMessageStateChanged, old-state=(GstState)GST_STATE_NULL, new-state=(GstState)GST_STATE_READY, pending-state=(GstState)GST_STATE_VOID_PENDING;
0:00:00.453810125 8744 0x3d0a0600 DEBUG bin gstbin.c:3715:gst_bin_handle_message_func:<my_pipeline> [msg 0x3d216b40] handling child my_sink message of type state-changed
0:00:00.453844000 8744 0x3d0a0600 DEBUG bin gstbin.c:4052:gst_bin_handle_message_func:<my_pipeline> posting message upward
0:00:00.453870625 8744 0x3d0a0600 DEBUG GST_BUS gstbus.c:318:gst_bus_post:<bus1> [msg 0x3d216b40] posting on bus state-changed message: 0x3d216b40, time 99:99:99.999999999, seq-num 11, element 'my_sink', GstMessageStateChanged, old-state=(GstState)GST_STATE_NULL, new-state=(GstState)GST_STATE_READY, pending-state=(GstState)GST_STATE_VOID_PENDING;
0:00:00.453940000 8744 0x3d0a0600 DEBUG GST_BUS gstbus.c:357:gst_bus_post:<bus1> [msg 0x3d216b40] pushing on async queue
0:00:00.453970125 8744 0x3d0a0600 DEBUG GST_BUS gstbus.c:360:gst_bus_post:<bus1> [msg 0x3d216b40] pushed on async queue
0:00:00.453999500 8744 0x3d0a0600 DEBUG GST_BUS gstbus.c:353:gst_bus_post:<bus0> [msg 0x3d216b40] dropped
0:00:00.454027250 8744 0x3d0a0600 LOG GST_STATES gstelement.c:3004:gst_element_change_state:<my_sink> exit state change 1
0:00:00.454066625 8744 0x3d0a0600 DEBUG GST_STATES gstelement.c:2911:gst_element_set_state_func:<my_sink> returned SUCCESS
0:00:00.454094250 8744 0x3d0a0600 INFO GST_STATES gstbin.c:2952:gst_bin_change_state_func:<my_pipeline> child 'my_sink' changed state to 2(READY) successfully
0:00:00.454141375 8744 0x3d0a0600 DEBUG bin gstbin.c:2370:gst_bin_sort_iterator_next:<my_pipeline> queue head gives my_vdec
0:00:00.454171000 8744 0x3d0a0600 DEBUG bin gstbin.c:885:find_message:<my_pipeline> no message found matching types 00001000
0:00:00.454198625 8744 0x3d0a0600 DEBUG bin gstbin.c:892:find_message:<my_pipeline> structure-change
0:00:00.454231250 8744 0x3d0a0600 DEBUG bin gstbin.c:2280:update_degree:<my_pipeline> change element my_h264parse, degree 1->0, linked to my_vdec
0:00:00.454263125 8744 0x3d0a0600 DEBUG bin gstbin.c:2163:add_to_queue:<my_pipeline> adding 'my_h264parse' to queue
0:00:00.454298000 8744 0x3d0a0600 INFO GST_STATES gstbin.c:2504:gst_bin_element_set_state:<my_vdec> current NULL pending VOID_PENDING, desired next READY
0:00:00.454330875 8744 0x3d0a0600 DEBUG bin gstbin.c:885:find_message:<my_pipeline> no message found matching types 00100000
0:00:00.454357375 8744 0x3d0a0600 DEBUG bin gstbin.c:892:find_message:<my_pipeline> async-start
0:00:00.454401625 8744 0x3d0a0600 DEBUG bin gstbin.c:2599:gst_bin_element_set_state:<my_pipeline> setting element my_vdec to READY, base_time 0:00:00.000000000
0:00:00.454439500 8744 0x3d0a0600 DEBUG GST_STATES gstelement.c:2827:gst_element_set_state_func:<my_vdec> set_state to READY
0:00:00.454465875 8744 0x3d0a0600 DEBUG GST_STATES gstelement.c:2852:gst_element_set_state_func:<my_vdec> setting target state to READY
0:00:00.454491750 8744 0x3d0a0600 DEBUG GST_STATES gstelement.c:2865:gst_element_set_state_func:<my_vdec> current NULL, old_pending VOID_PENDING, next VOID_PENDING, old return SUCCESS
0:00:00.454522875 8744 0x3d0a0600 DEBUG GST_STATES gstelement.c:2899:gst_element_set_state_func:<my_vdec> final: setting state from NULL to READY
0:00:00.454557000 8744 0x3d0a0600 DEBUG v4l2videodec gstv4l2videodec.c:119:gst_v4l2_video_dec_open:<my_vdec> Opening
0:00:00.454584750 8744 0x3d0a0600 DEBUG v4l2 v4l2_calls.c:560:gst_v4l2_open:<my_vdec:sink> Trying to open device /dev/video12
0:00:00.471562750 8744 0x3d0a0600 DEBUG v4l2 v4l2_calls.c:66:gst_v4l2_get_capabilities:<my_vdec> getting capabilities
0:00:00.471682625 8744 0x3d0a0600 LOG v4l2 v4l2_calls.c:80:gst_v4l2_get_capabilities:<my_vdec> driver: 'vpu B0'
0:00:00.471744375 8744 0x3d0a0600 LOG v4l2 v4l2_calls.c:81:gst_v4l2_get_capabilities:<my_vdec> card: 'vpu B0'
0:00:00.471796625 8744 0x3d0a0600 LOG v4l2 v4l2_calls.c:82:gst_v4l2_get_capabilities:<my_vdec> bus_info: 'platform:'
0:00:00.471848000 8744 0x3d0a0600 LOG v4l2 v4l2_calls.c:83:gst_v4l2_get_capabilities:<my_vdec> version: 00000001
0:00:00.471900125 8744 0x3d0a0600 LOG v4l2 v4l2_calls.c:84:gst_v4l2_get_capabilities:<my_vdec> capabilites: 04204000
0:00:00.471947875 8744 0x3d0a0600 DEBUG v4l2 v4l2_calls.c:496:gst_v4l2_adjust_buf_type: adjust type to multi-planar output
0:00:00.471996375 8744 0x3d0a0600 DEBUG v4l2 v4l2_calls.c:138:gst_v4l2_fill_lists:<my_vdec> getting enumerations
0:00:00.472043000 8744 0x3d0a0600 DEBUG v4l2 v4l2_calls.c:141:gst_v4l2_fill_lists:<my_vdec> channels
0:00:00.472096625 8744 0x3d0a0600 DEBUG v4l2 v4l2_calls.c:213:gst_v4l2_fill_lists:<my_vdec> norms
0:00:00.472146500 8744 0x3d0a0600 DEBUG v4l2 v4l2_calls.c:261:gst_v4l2_fill_lists:<my_vdec> controls+menus
0:00:00.472193500 8744 0x3d0a0600 DEBUG v4l2 v4l2_calls.c:281:gst_v4l2_fill_lists:<my_vdec> checking control 00000000
0:00:00.472257625 8744 0x3d0a0600 DEBUG v4l2 v4l2_calls.c:323:gst_v4l2_fill_lists:<my_vdec> starting control class 'User Controls'
0:00:00.472309500 8744 0x3d0a0600 DEBUG v4l2 v4l2_calls.c:281:gst_v4l2_fill_lists:<my_vdec> checking control 00980001
0:00:00.472388000 8744 0x3d0a0600 DEBUG v4l2 v4l2_calls.c:386:gst_v4l2_fill_lists:<my_vdec> ControlID min_number_of_capture_buffers (980927) unhandled, FIXME
0:00:00.472449250 8744 0x3d0a0600 DEBUG v4l2 v4l2_calls.c:281:gst_v4l2_fill_lists:<my_vdec> checking control 00980927
0:00:00.472515000 8744 0x3d0a0600 DEBUG v4l2 v4l2_calls.c:386:gst_v4l2_fill_lists:<my_vdec> ControlID raw_ctrl (981a00) unhandled, FIXME
0:00:00.472572500 8744 0x3d0a0600 DEBUG v4l2 v4l2_calls.c:281:gst_v4l2_fill_lists:<my_vdec> checking control 00981a00
0:00:00.472629375 8744 0x3d0a0600 DEBUG v4l2 v4l2_calls.c:288:gst_v4l2_fill_lists:<my_vdec> controls finished
0:00:00.472675375 8744 0x3d0a0600 DEBUG v4l2 v4l2_calls.c:456:gst_v4l2_fill_lists:<my_vdec> done
0:00:00.472724750 8744 0x3d0a0600 INFO v4l2 v4l2_calls.c:632:gst_v4l2_open:<my_vdec:sink> Opened device 'vpu B0' (/dev/video12) successfully
0:00:00.472853125 8744 0x3d0a0600 DEBUG v4l2 v4l2_calls.c:520:gst_v4l2_subscribe_event:<my_vdec> subscribe event
0:00:00.472926250 8744 0x3d0a0600 DEBUG v4l2 v4l2_calls.c:713:gst_v4l2_dup:<my_vdec:src> Trying to dup device /dev/video12
0:00:00.472971625 8744 0x3d0a0600 DEBUG v4l2 v4l2_calls.c:503:gst_v4l2_adjust_buf_type: adjust type to multi-planar capture
0:00:00.473028625 8744 0x3d0a0600 INFO v4l2 v4l2_calls.c:733:gst_v4l2_dup:<my_vdec:src> Cloned device 'vpu B0' (/dev/video12) successfully
0:00:00.473129125 8744 0x3d0a0600 DEBUG GST_POLL gstpoll.c:848:gst_poll_add_fd_unlocked: 0x3d21fed0: fd (fd:17, idx:-1)
0:00:00.473185500 8744 0x3d0a0600 DEBUG GST_POLL gstpoll.c:1015:gst_poll_fd_ctl_read_unlocked: 0x3d21fed0: fd (fd:17, idx:1), active : 1
0:00:00.473258375 8744 0x3d0a0600 DEBUG v4l2 gstv4l2object.c:1182:gst_v4l2_object_fill_format_list:<my_vdec:sink> getting src format enumerations
0:00:00.473324625 8744 0x3d0a0600 LOG v4l2 gstv4l2object.c:1200:gst_v4l2_object_fill_format_list:<my_vdec:sink> index: 0
0:00:00.473380000 8744 0x3d0a0600 LOG v4l2 gstv4l2object.c:1201:gst_v4l2_object_fill_format_list:<my_vdec:sink> type: 10
0:00:00.473434500 8744 0x3d0a0600 LOG v4l2 gstv4l2object.c:1202:gst_v4l2_object_fill_format_list:<my_vdec:sink> flags: 00000001
0:00:00.473488875 8744 0x3d0a0600 LOG v4l2 gstv4l2object.c:1204:gst_v4l2_object_fill_format_list:<my_vdec:sink> description: 'H.264'
0:00:00.473541750 8744 0x3d0a0600 LOG v4l2 gstv4l2object.c:1206:gst_v4l2_object_fill_format_list:<my_vdec:sink> pixelformat: H264
0:00:00.473617000 8744 0x3d0a0600 LOG v4l2 gstv4l2object.c:1200:gst_v4l2_object_fill_format_list:<my_vdec:sink> index: 1
0:00:00.473671500 8744 0x3d0a0600 LOG v4l2 gstv4l2object.c:1201:gst_v4l2_object_fill_format_list:<my_vdec:sink> type: 10
0:00:00.473725375 8744 0x3d0a0600 LOG v4l2 gstv4l2object.c:1202:gst_v4l2_object_fill_format_list:<my_vdec:sink> flags: 00000001
0:00:00.473780000 8744 0x3d0a0600 LOG v4l2 gstv4l2object.c:1204:gst_v4l2_object_fill_format_list:<my_vdec:sink> description: 'VC-1 (SMPTE 412M Annex G)'
0:00:00.473835000 8744 0x3d0a0600 LOG v4l2 gstv4l2object.c:1206:gst_v4l2_object_fill_format_list:<my_vdec:sink> pixelformat: VC1G
0:00:00.473909000 8744 0x3d0a0600 LOG v4l2 gstv4l2object.c:1200:gst_v4l2_object_fill_format_list:<my_vdec:sink> index: 2
0:00:00.473963250 8744 0x3d0a0600 LOG v4l2 gstv4l2object.c:1201:gst_v4l2_object_fill_format_list:<my_vdec:sink> type: 10
0:00:00.474017000 8744 0x3d0a0600 LOG v4l2 gstv4l2object.c:1202:gst_v4l2_object_fill_format_list:<my_vdec:sink> flags: 00000001
0:00:00.474070750 8744 0x3d0a0600 LOG v4l2 gstv4l2object.c:1204:gst_v4l2_object_fill_format_list:<my_vdec:sink> description: 'VC-1 (SMPTE 412M Annex L)'
0:00:00.474125875 8744 0x3d0a0600 LOG v4l2 gstv4l2object.c:1206:gst_v4l2_object_fill_format_list:<my_vdec:sink> pixelformat: VC1L
0:00:00.474196750 8744 0x3d0a0600 LOG v4l2 gstv4l2object.c:1200:gst_v4l2_object_fill_format_list:<my_vdec:sink> index: 3
0:00:00.474251375 8744 0x3d0a0600 LOG v4l2 gstv4l2object.c:1201:gst_v4l2_object_fill_format_list:<my_vdec:sink> type: 10
0:00:00.474304375 8744 0x3d0a0600 LOG v4l2 gstv4l2object.c:1202:gst_v4l2_object_fill_format_list:<my_vdec:sink> flags: 00000001
0:00:00.474357750 8744 0x3d0a0600 LOG v4l2 gstv4l2object.c:1204:gst_v4l2_object_fill_format_list:<my_vdec:sink> description: 'MPEG-2 ES'
0:00:00.474445500 8744 0x3d0a0600 LOG v4l2 gstv4l2object.c:1206:gst_v4l2_object_fill_format_list:<my_vdec:sink> pixelformat: MPG2
0:00:00.474516625 8744 0x3d0a0600 LOG v4l2 gstv4l2object.c:1200:gst_v4l2_object_fill_format_list:<my_vdec:sink> index: 4
0:00:00.474571625 8744 0x3d0a0600 LOG v4l2 gstv4l2object.c:1201:gst_v4l2_object_fill_format_list:<my_vdec:sink> type: 10
0:00:00.474625000 8744 0x3d0a0600 LOG v4l2 gstv4l2object.c:1202:gst_v4l2_object_fill_format_list:<my_vdec:sink> flags: 00000001
0:00:00.474679375 8744 0x3d0a0600 LOG v4l2 gstv4l2object.c:1204:gst_v4l2_object_fill_format_list:<my_vdec:sink> description: 'AVS Encoded Stream'
0:00:00.474733875 8744 0x3d0a0600 LOG v4l2 gstv4l2object.c:1206:gst_v4l2_object_fill_format_list:<my_vdec:sink> pixelformat: AVS0
0:00:00.474802375 8744 0x3d0a0600 LOG v4l2 gstv4l2object.c:1200:gst_v4l2_object_fill_format_list:<my_vdec:sink> index: 5
0:00:00.474856500 8744 0x3d0a0600 LOG v4l2 gstv4l2object.c:1201:gst_v4l2_object_fill_format_list:<my_vdec:sink> type: 10
0:00:00.474909875 8744 0x3d0a0600 LOG v4l2 gstv4l2object.c:1202:gst_v4l2_object_fill_format_list:<my_vdec:sink> flags: 00000001
0:00:00.474963250 8744 0x3d0a0600 LOG v4l2 gstv4l2object.c:1204:gst_v4l2_object_fill_format_list:<my_vdec:sink> description: 'MPEG-4 part 2 ES'
0:00:00.475016750 8744 0x3d0a0600 LOG v4l2 gstv4l2object.c:1206:gst_v4l2_object_fill_format_list:<my_vdec:sink> pixelformat: MPG4
0:00:00.475094375 8744 0x3d0a0600 LOG v4l2 gstv4l2object.c:1200:gst_v4l2_object_fill_format_list:<my_vdec:sink> index: 6
0:00:00.475150125 8744 0x3d0a0600 LOG v4l2 gstv4l2object.c:1201:gst_v4l2_object_fill_format_list:<my_vdec:sink> type: 10
0:00:00.475204125 8744 0x3d0a0600 LOG v4l2 gstv4l2object.c:1202:gst_v4l2_object_fill_format_list:<my_vdec:sink> flags: 00000001
0:00:00.475259125 8744 0x3d0a0600 LOG v4l2 gstv4l2object.c:1204:gst_v4l2_object_fill_format_list:<my_vdec:sink> description: 'DIVX Encoded Stream'
0:00:00.475314125 8744 0x3d0a0600 LOG v4l2 gstv4l2object.c:1206:gst_v4l2_object_fill_format_list:<my_vdec:sink> pixelformat: DIVX
0:00:00.475382500 8744 0x3d0a0600 LOG v4l2 gstv4l2object.c:1200:gst_v4l2_object_fill_format_list:<my_vdec:sink> index: 7
0:00:00.475436750 8744 0x3d0a0600 LOG v4l2 gstv4l2object.c:1201:gst_v4l2_object_fill_format_list:<my_vdec:sink> type: 10
0:00:00.475490000 8744 0x3d0a0600 LOG v4l2 gstv4l2object.c:1202:gst_v4l2_object_fill_format_list:<my_vdec:sink> flags: 00000001
0:00:00.475543875 8744 0x3d0a0600 LOG v4l2 gstv4l2object.c:1204:gst_v4l2_object_fill_format_list:<my_vdec:sink> description: 'JFIF JPEG'
0:00:00.475597375 8744 0x3d0a0600 LOG v4l2 gstv4l2object.c:1206:gst_v4l2_object_fill_format_list:<my_vdec:sink> pixelformat: JPEG
0:00:00.475669000 8744 0x3d0a0600 LOG v4l2 gstv4l2object.c:1200:gst_v4l2_object_fill_format_list:<my_vdec:sink> index: 8
0:00:00.475723500 8744 0x3d0a0600 LOG v4l2 gstv4l2object.c:1201:gst_v4l2_object_fill_format_list:<my_vdec:sink> type: 10
0:00:00.475777125 8744 0x3d0a0600 LOG v4l2 gstv4l2object.c:1202:gst_v4l2_object_fill_format_list:<my_vdec:sink> flags: 00000001
0:00:00.475831000 8744 0x3d0a0600 LOG v4l2 gstv4l2object.c:1204:gst_v4l2_object_fill_format_list:<my_vdec:sink> description: 'RV Encoded Stream'
0:00:00.475886000 8744 0x3d0a0600 LOG v4l2 gstv4l2object.c:1206:gst_v4l2_object_fill_format_list:<my_vdec:sink> pixelformat: RV00
0:00:00.475986750 8744 0x3d0a0600 LOG v4l2 gstv4l2object.c:1200:gst_v4l2_object_fill_format_list:<my_vdec:sink> index: 9
0:00:00.476041750 8744 0x3d0a0600 LOG v4l2 gstv4l2object.c:1201:gst_v4l2_object_fill_format_list:<my_vdec:sink> type: 10
0:00:00.476095250 8744 0x3d0a0600 LOG v4l2 gstv4l2object.c:1202:gst_v4l2_object_fill_format_list:<my_vdec:sink> flags: 00000001
0:00:00.476149000 8744 0x3d0a0600 LOG v4l2 gstv4l2object.c:1204:gst_v4l2_object_fill_format_list:<my_vdec:sink> description: 'VP6 Encoded Stream'
0:00:00.476203375 8744 0x3d0a0600 LOG v4l2 gstv4l2object.c:1206:gst_v4l2_object_fill_format_list:<my_vdec:sink> pixelformat: VP60
0:00:00.476276500 8744 0x3d0a0600 LOG v4l2 gstv4l2object.c:1200:gst_v4l2_object_fill_format_list:<my_vdec:sink> index: 10
0:00:00.476331375 8744 0x3d0a0600 LOG v4l2 gstv4l2object.c:1201:gst_v4l2_object_fill_format_list:<my_vdec:sink> type: 10
0:00:00.476384625 8744 0x3d0a0600 LOG v4l2 gstv4l2object.c:1202:gst_v4l2_object_fill_format_list:<my_vdec:sink> flags: 00000001
0:00:00.476438000 8744 0x3d0a0600 LOG v4l2 gstv4l2object.c:1204:gst_v4l2_object_fill_format_list:<my_vdec:sink> description: 'SPK Encoded Stream'
0:00:00.476492375 8744 0x3d0a0600 LOG v4l2 gstv4l2object.c:1206:gst_v4l2_object_fill_format_list:<my_vdec:sink> pixelformat: SPK0
0:00:00.476564125 8744 0x3d0a0600 LOG v4l2 gstv4l2object.c:1200:gst_v4l2_object_fill_format_list:<my_vdec:sink> index: 11
0:00:00.476618750 8744 0x3d0a0600 LOG v4l2 gstv4l2object.c:1201:gst_v4l2_object_fill_format_list:<my_vdec:sink> type: 10
0:00:00.476673000 8744 0x3d0a0600 LOG v4l2 gstv4l2object.c:1202:gst_v4l2_object_fill_format_list:<my_vdec:sink> flags: 00000001
0:00:00.476726875 8744 0x3d0a0600 LOG v4l2 gstv4l2object.c:1204:gst_v4l2_object_fill_format_list:<my_vdec:sink> description: 'H.263'
0:00:00.476780125 8744 0x3d0a0600 LOG v4l2 gstv4l2object.c:1206:gst_v4l2_object_fill_format_list:<my_vdec:sink> pixelformat: H263
0:00:00.476852750 8744 0x3d0a0600 LOG v4l2 gstv4l2object.c:1200:gst_v4l2_object_fill_format_list:<my_vdec:sink> index: 12
0:00:00.476907875 8744 0x3d0a0600 LOG v4l2 gstv4l2object.c:1201:gst_v4l2_object_fill_format_list:<my_vdec:sink> type: 10
0:00:00.476961750 8744 0x3d0a0600 LOG v4l2 gstv4l2object.c:1202:gst_v4l2_object_fill_format_list:<my_vdec:sink> flags: 00000001
0:00:00.477015250 8744 0x3d0a0600 LOG v4l2 gstv4l2object.c:1204:gst_v4l2_object_fill_format_list:<my_vdec:sink> description: 'VP8'
0:00:00.477099500 8744 0x3d0a0600 LOG v4l2 gstv4l2object.c:1206:gst_v4l2_object_fill_format_list:<my_vdec:sink> pixelformat: VP80
0:00:00.477188625 8744 0x3d0a0600 LOG v4l2 gstv4l2object.c:1200:gst_v4l2_object_fill_format_list:<my_vdec:sink> index: 13
0:00:00.477244750 8744 0x3d0a0600 LOG v4l2 gstv4l2object.c:1201:gst_v4l2_object_fill_format_list:<my_vdec:sink> type: 10
0:00:00.477298250 8744 0x3d0a0600 LOG v4l2 gstv4l2object.c:1202:gst_v4l2_object_fill_format_list:<my_vdec:sink> flags: 00000001
0:00:00.477352125 8744 0x3d0a0600 LOG v4l2 gstv4l2object.c:1204:gst_v4l2_object_fill_format_list:<my_vdec:sink> description: 'H.264 MVC'
0:00:00.477404875 8744 0x3d0a0600 LOG v4l2 gstv4l2object.c:1206:gst_v4l2_object_fill_format_list:<my_vdec:sink> pixelformat: M264
0:00:00.477476250 8744 0x3d0a0600 LOG v4l2 gstv4l2object.c:1200:gst_v4l2_object_fill_format_list:<my_vdec:sink> index: 14
0:00:00.477561750 8744 0x3d0a0600 LOG v4l2 gstv4l2object.c:1201:gst_v4l2_object_fill_format_list:<my_vdec:sink> type: 10
0:00:00.477617000 8744 0x3d0a0600 LOG v4l2 gstv4l2object.c:1202:gst_v4l2_object_fill_format_list:<my_vdec:sink> flags: 00000001
0:00:00.477671875 8744 0x3d0a0600 LOG v4l2 gstv4l2object.c:1204:gst_v4l2_object_fill_format_list:<my_vdec:sink> description: 'H265 HEVC Encoded Stream'
0:00:00.477727750 8744 0x3d0a0600 LOG v4l2 gstv4l2object.c:1206:gst_v4l2_object_fill_format_list:<my_vdec:sink> pixelformat: HEVC
0:00:00.477800625 8744 0x3d0a0600 LOG v4l2 gstv4l2object.c:1200:gst_v4l2_object_fill_format_list:<my_vdec:sink> index: 15
0:00:00.477855500 8744 0x3d0a0600 LOG v4l2 gstv4l2object.c:1201:gst_v4l2_object_fill_format_list:<my_vdec:sink> type: 10
0:00:00.477909500 8744 0x3d0a0600 LOG v4l2 gstv4l2object.c:1202:gst_v4l2_object_fill_format_list:<my_vdec:sink> flags: 00000001
0:00:00.477963500 8744 0x3d0a0600 LOG v4l2 gstv4l2object.c:1204:gst_v4l2_object_fill_format_list:<my_vdec:sink> description: 'Logo'
0:00:00.478016625 8744 0x3d0a0600 LOG v4l2 gstv4l2object.c:1206:gst_v4l2_object_fill_format_list:<my_vdec:sink> pixelformat: LOGO
0:00:00.478088750 8744 0x3d0a0600 INFO v4l2 gstv4l2object.c:1219:gst_v4l2_object_fill_format_list:<my_vdec:sink> got 16 format(s):
0:00:00.478143375 8744 0x3d0a0600 INFO v4l2 gstv4l2object.c:1225:gst_v4l2_object_fill_format_list:<my_vdec:sink> JPEG
0:00:00.478208250 8744 0x3d0a0600 INFO v4l2 gstv4l2object.c:1225:gst_v4l2_object_fill_format_list:<my_vdec:sink> M264
0:00:00.478273250 8744 0x3d0a0600 INFO v4l2 gstv4l2object.c:1225:gst_v4l2_object_fill_format_list:<my_vdec:sink> LOGO
0:00:00.478337875 8744 0x3d0a0600 INFO v4l2 gstv4l2object.c:1225:gst_v4l2_object_fill_format_list:<my_vdec:sink> HEVC
0:00:00.478402875 8744 0x3d0a0600 INFO v4l2 gstv4l2object.c:1225:gst_v4l2_object_fill_format_list:<my_vdec:sink> VP80
0:00:00.478467250 8744 0x3d0a0600 INFO v4l2 gstv4l2object.c:1225:gst_v4l2_object_fill_format_list:<my_vdec:sink> H263
0:00:00.478531500 8744 0x3d0a0600 INFO v4l2 gstv4l2object.c:1225:gst_v4l2_object_fill_format_list:<my_vdec:sink> SPK0
0:00:00.478595875 8744 0x3d0a0600 INFO v4l2 gstv4l2object.c:1225:gst_v4l2_object_fill_format_list:<my_vdec:sink> VP60
0:00:00.478660250 8744 0x3d0a0600 INFO v4l2 gstv4l2object.c:1225:gst_v4l2_object_fill_format_list:<my_vdec:sink> RV00
0:00:00.478724625 8744 0x3d0a0600 INFO v4l2 gstv4l2object.c:1225:gst_v4l2_object_fill_format_list:<my_vdec:sink> DIVX
0:00:00.478789000 8744 0x3d0a0600 INFO v4l2 gstv4l2object.c:1225:gst_v4l2_object_fill_format_list:<my_vdec:sink> MPG4
0:00:00.478853500 8744 0x3d0a0600 INFO v4l2 gstv4l2object.c:1225:gst_v4l2_object_fill_format_list:<my_vdec:sink> AVS0
0:00:00.478918375 8744 0x3d0a0600 INFO v4l2 gstv4l2object.c:1225:gst_v4l2_object_fill_format_list:<my_vdec:sink> MPG2
0:00:00.478983125 8744 0x3d0a0600 INFO v4l2 gstv4l2object.c:1225:gst_v4l2_object_fill_format_list:<my_vdec:sink> VC1L
0:00:00.479047000 8744 0x3d0a0600 INFO v4l2 gstv4l2object.c:1225:gst_v4l2_object_fill_format_list:<my_vdec:sink> VC1G
0:00:00.479111500 8744 0x3d0a0600 INFO v4l2 gstv4l2object.c:1225:gst_v4l2_object_fill_format_list:<my_vdec:sink> H264
0:00:00.479200250 8744 0x3d0a0600 DEBUG v4l2 gstv4l2object.c:1589:gst_v4l2_object_v4l2fourcc_to_bare_struct: Unsupported fourcc 0x3436324d M264
0:00:00.479272750 8744 0x3d0a0600 DEBUG v4l2 gstv4l2object.c:4263:gst_v4l2_object_probe_caps:<my_vdec:sink> unknown format M264
0:00:00.479357750 8744 0x3d0a0600 DEBUG v4l2 gstv4l2object.c:1589:gst_v4l2_object_v4l2fourcc_to_bare_struct: Unsupported fourcc 0x4f474f4c LOGO
0:00:00.479427750 8744 0x3d0a0600 DEBUG v4l2 gstv4l2object.c:4263:gst_v4l2_object_probe_caps:<my_vdec:sink> unknown format LOGO
0:00:00.479695625 8744 0x3d0a0600 DEBUG v4l2 gstv4l2object.c:2665:gst_v4l2_object_probe_caps_for_format:<my_vdec:sink> Enumerating frame sizes for H264
0:00:00.479835250 8744 0x3d0a0600 DEBUG v4l2 gstv4l2object.c:2792:gst_v4l2_object_probe_caps_for_format:<my_vdec:sink> Failed to enumerate frame sizes for pixelformat H264 (Inappropriate ioctl for device)
0:00:00.479909000 8744 0x3d0a0600 LOG v4l2 gstv4l2object.c:2903:gst_v4l2_object_get_nearest_size:<my_vdec:sink> getting nearest size to 1x1 with format H264
0:00:00.479990625 8744 0x3d0a0600 LOG v4l2 gstv4l2object.c:2919:gst_v4l2_object_get_nearest_size:<my_vdec:sink> got nearest size 1x1
0:00:00.480038625 8744 0x3d0a0600 WARN v4l2 gstv4l2object.c:1986:gst_v4l2_object_get_interlace_mode: Driver bug detected - check driver with v4l2-compliance from http://git.linuxtv.org/v4l-utils.git
0:00:00.480092875 8744 0x3d0a0600 LOG v4l2 gstv4l2object.c:2903:gst_v4l2_object_get_nearest_size:<my_vdec:sink> getting nearest size to 32768x32768 with format H264
0:00:00.480170500 8744 0x3d0a0600 LOG v4l2 gstv4l2object.c:2919:gst_v4l2_object_get_nearest_size:<my_vdec:sink> got nearest size 32768x32768
0:00:00.480218125 8744 0x3d0a0600 WARN v4l2 gstv4l2object.c:1986:gst_v4l2_object_get_interlace_mode: Driver bug detected - check driver with v4l2-compliance from http://git.linuxtv.org/v4l-utils.git
0:00:00.480292625 8744 0x3d0a0600 DEBUG v4l2 gstv4l2object.c:2085:gst_v4l2_object_get_colorspace: Unknown enum v4l2_colorspace 0
0:00:00.480631000 8744 0x3d0a0600 INFO v4l2 gstv4l2object.c:4298:gst_v4l2_object_probe_caps:<my_vdec:sink> probed caps: video/x-h264, stream-format=(string)byte-stream, alignment=(string)au, width=(int)[ 1, 32768 ], height=(int)[ 1, 32768 ], colorimetry=(string){ bt601, smpte240m, bt709, 2:4:5:2, 2:4:5:3, 1:4:7:1, 2:4:7:1, 2:4:12:8, bt2020, 2:0:0:0 }, parsed=(boolean)true
0:00:00.480777125 8744 0x3d0a0600 DEBUG v4l2 gstv4l2object.c:1182:gst_v4l2_object_fill_format_list:<my_vdec:src> getting src format enumerations
0:00:00.480908500 8744 0x3d0a0600 LOG v4l2 gstv4l2object.c:1200:gst_v4l2_object_fill_format_list:<my_vdec:src> index: 0
0:00:00.480947000 8744 0x3d0a0600 LOG v4l2 gstv4l2object.c:1201:gst_v4l2_object_fill_format_list:<my_vdec:src> type: 9
0:00:00.480984250 8744 0x3d0a0600 LOG v4l2 gstv4l2object.c:1202:gst_v4l2_object_fill_format_list:<my_vdec:src> flags: 00000000
0:00:00.481021750 8744 0x3d0a0600 LOG v4l2 gstv4l2object.c:1204:gst_v4l2_object_fill_format_list:<my_vdec:src> description: 'Y/CbCr 4:2:0'
0:00:00.481083250 8744 0x3d0a0600 LOG v4l2 gstv4l2object.c:1206:gst_v4l2_object_fill_format_list:<my_vdec:src> pixelformat: NV12
0:00:00.481169500 8744 0x3d0a0600 LOG v4l2 gstv4l2object.c:1200:gst_v4l2_object_fill_format_list:<my_vdec:src> index: 1
0:00:00.481207500 8744 0x3d0a0600 LOG v4l2 gstv4l2object.c:1201:gst_v4l2_object_fill_format_list:<my_vdec:src> type: 9
0:00:00.481243750 8744 0x3d0a0600 LOG v4l2 gstv4l2object.c:1202:gst_v4l2_object_fill_format_list:<my_vdec:src> flags: 00000000
0:00:00.481279375 8744 0x3d0a0600 LOG v4l2 gstv4l2object.c:1204:gst_v4l2_object_fill_format_list:<my_vdec:src> description: '4:2:0 2 Planes Y/CbCr'
0:00:00.481341500 8744 0x3d0a0600 LOG v4l2 gstv4l2object.c:1206:gst_v4l2_object_fill_format_list:<my_vdec:src> pixelformat: NT12
0:00:00.481390250 8744 0x3d0a0600 INFO v4l2 gstv4l2object.c:1219:gst_v4l2_object_fill_format_list:<my_vdec:src> got 2 format(s):
0:00:00.481427875 8744 0x3d0a0600 INFO v4l2 gstv4l2object.c:1225:gst_v4l2_object_fill_format_list:<my_vdec:src> NV12
0:00:00.481471375 8744 0x3d0a0600 INFO v4l2 gstv4l2object.c:1225:gst_v4l2_object_fill_format_list:<my_vdec:src> NT12
0:00:00.481590250 8744 0x3d0a0600 DEBUG v4l2 gstv4l2object.c:2665:gst_v4l2_object_probe_caps_for_format:<my_vdec:src> Enumerating frame sizes for NV12
0:00:00.481680000 8744 0x3d0a0600 DEBUG v4l2 gstv4l2object.c:2792:gst_v4l2_object_probe_caps_for_format:<my_vdec:src> Failed to enumerate frame sizes for pixelformat NV12 (Inappropriate ioctl for device)
0:00:00.481727625 8744 0x3d0a0600 LOG v4l2 gstv4l2object.c:2903:gst_v4l2_object_get_nearest_size:<my_vdec:src> getting nearest size to 1x1 with format NV12
0:00:00.481778750 8744 0x3d0a0600 LOG v4l2 gstv4l2object.c:2919:gst_v4l2_object_get_nearest_size:<my_vdec:src> got nearest size 1x1
0:00:00.481810125 8744 0x3d0a0600 WARN v4l2 gstv4l2object.c:1986:gst_v4l2_object_get_interlace_mode: Driver bug detected - check driver with v4l2-compliance from http://git.linuxtv.org/v4l-utils.git
0:00:00.481844750 8744 0x3d0a0600 LOG v4l2 gstv4l2object.c:2903:gst_v4l2_object_get_nearest_size:<my_vdec:src> getting nearest size to 32768x32768 with format NV12
0:00:00.481896750 8744 0x3d0a0600 LOG v4l2 gstv4l2object.c:2919:gst_v4l2_object_get_nearest_size:<my_vdec:src> got nearest size 32768x32768
0:00:00.481928250 8744 0x3d0a0600 WARN v4l2 gstv4l2object.c:1986:gst_v4l2_object_get_interlace_mode: Driver bug detected - check driver with v4l2-compliance from http://git.linuxtv.org/v4l-utils.git
0:00:00.481994625 8744 0x3d0a0600 DEBUG v4l2 gstv4l2object.c:2085:gst_v4l2_object_get_colorspace: Unknown enum v4l2_colorspace 0
0:00:00.482156250 8744 0x3d0a0600 DEBUG v4l2 gstv4l2object.c:1589:gst_v4l2_object_v4l2fourcc_to_bare_struct: Unsupported fourcc 0x3231544e NT12
0:00:00.482205125 8744 0x3d0a0600 DEBUG v4l2 gstv4l2object.c:4263:gst_v4l2_object_probe_caps:<my_vdec:src> unknown format NT12
0:00:00.482310000 8744 0x3d0a0600 INFO v4l2 gstv4l2object.c:4298:gst_v4l2_object_probe_caps:<my_vdec:src> probed caps: video/x-raw, format=(string)NV12, width=(int)[ 1, 32768 ], height=(int)[ 1, 32768 ], framerate=(fraction)[ 0/1, 2147483647/1 ], interlace-mode=(string){ progressive, interleaved }, colorimetry=(string){ bt601, smpte240m, bt709, 2:4:5:2, 2:4:5:3, 1:4:7:1, 2:4:7:1, 2:4:12:8, bt2020, 2:0:0:0 }
0:00:00.482418500 8744 0x3d0a0600 LOG GST_STATES gstelement.c:3154:gst_element_change_state_func:<my_vdec> default handler tries setting state from NULL to READY (000a)
0:00:00.482462875 8744 0x3d0a0600 DEBUG GST_STATES gstelement.c:2988:gst_element_change_state:<my_vdec> element changed state SUCCESS
0:00:00.482496250 8744 0x3d0a0600 INFO GST_STATES gstelement.c:2676:gst_element_continue_state:<my_vdec> completed state change to READY
0:00:00.482532500 8744 0x3d0a0600 INFO GST_STATES gstelement.c:2579:_priv_gst_element_state_changed:<my_vdec> notifying about state-changed NULL to READY (VOID_PENDING pending)
0:00:00.482579750 8744 0x3d0a0600 LOG GST_MESSAGE gstmessage.c:301:gst_message_new_custom: source my_vdec: creating new message 0x3d216bc0 state-changed
0:00:00.482629500 8744 0x3d0a0600 DEBUG GST_BUS gstbus.c:318:gst_bus_post:<bus0> [msg 0x3d216bc0] posting on bus state-changed message: 0x3d216bc0, time 99:99:99.999999999, seq-num 12, element 'my_vdec', GstMessageStateChanged, old-state=(GstState)GST_STATE_NULL, new-state=(GstState)GST_STATE_READY, pending-state=(GstState)GST_STATE_VOID_PENDING;
0:00:00.482776500 8744 0x3d0a0600 DEBUG bin gstbin.c:3715:gst_bin_handle_message_func:<my_pipeline> [msg 0x3d216bc0] handling child my_vdec message of type state-changed
0:00:00.482821000 8744 0x3d0a0600 DEBUG bin gstbin.c:4052:gst_bin_handle_message_func:<my_pipeline> posting message upward
0:00:00.482856125 8744 0x3d0a0600 DEBUG GST_BUS gstbus.c:318:gst_bus_post:<bus1> [msg 0x3d216bc0] posting on bus state-changed message: 0x3d216bc0, time 99:99:99.999999999, seq-num 12, element 'my_vdec', GstMessageStateChanged, old-state=(GstState)GST_STATE_NULL, new-state=(GstState)GST_STATE_READY, pending-state=(GstState)GST_STATE_VOID_PENDING;
0:00:00.482944000 8744 0x3d0a0600 DEBUG GST_BUS gstbus.c:357:gst_bus_post:<bus1> [msg 0x3d216bc0] pushing on async queue
0:00:00.482984250 8744 0x3d0a0600 DEBUG GST_BUS gstbus.c:360:gst_bus_post:<bus1> [msg 0x3d216bc0] pushed on async queue
0:00:00.483022500 8744 0x3d0a0600 DEBUG GST_BUS gstbus.c:353:gst_bus_post:<bus0> [msg 0x3d216bc0] dropped
0:00:00.483059500 8744 0x3d0a0600 LOG GST_STATES gstelement.c:3004:gst_element_change_state:<my_vdec> exit state change 1
0:00:00.483095375 8744 0x3d0a0600 DEBUG GST_STATES gstelement.c:2911:gst_element_set_state_func:<my_vdec> returned SUCCESS
0:00:00.483130500 8744 0x3d0a0600 INFO GST_STATES gstbin.c:2952:gst_bin_change_state_func:<my_pipeline> child 'my_vdec' changed state to 2(READY) successfully
0:00:00.483186125 8744 0x3d0a0600 DEBUG bin gstbin.c:2370:gst_bin_sort_iterator_next:<my_pipeline> queue head gives my_h264parse
0:00:00.483225000 8744 0x3d0a0600 DEBUG bin gstbin.c:885:find_message:<my_pipeline> no message found matching types 00001000
0:00:00.483261750 8744 0x3d0a0600 DEBUG bin gstbin.c:892:find_message:<my_pipeline> structure-change
0:00:00.483302750 8744 0x3d0a0600 DEBUG bin gstbin.c:2280:update_degree:<my_pipeline> change element my_appsrc, degree 1->0, linked to my_h264parse
0:00:00.483347125 8744 0x3d0a0600 DEBUG bin gstbin.c:2163:add_to_queue:<my_pipeline> adding 'my_appsrc' to queue
0:00:00.483389250 8744 0x3d0a0600 INFO GST_STATES gstbin.c:2504:gst_bin_element_set_state:<my_h264parse> current NULL pending VOID_PENDING, desired next READY
0:00:00.483431625 8744 0x3d0a0600 DEBUG bin gstbin.c:885:find_message:<my_pipeline> no message found matching types 00100000
0:00:00.483467875 8744 0x3d0a0600 DEBUG bin gstbin.c:892:find_message:<my_pipeline> async-start
0:00:00.483502000 8744 0x3d0a0600 DEBUG bin gstbin.c:2599:gst_bin_element_set_state:<my_pipeline> setting element my_h264parse to READY, base_time 0:00:00.000000000
0:00:00.483549625 8744 0x3d0a0600 DEBUG GST_STATES gstelement.c:2827:gst_element_set_state_func:<my_h264parse> set_state to READY
0:00:00.483584875 8744 0x3d0a0600 DEBUG GST_STATES gstelement.c:2852:gst_element_set_state_func:<my_h264parse> setting target state to READY
0:00:00.483619625 8744 0x3d0a0600 DEBUG GST_STATES gstelement.c:2865:gst_element_set_state_func:<my_h264parse> current NULL, old_pending VOID_PENDING, next VOID_PENDING, old return SUCCESS
0:00:00.483660625 8744 0x3d0a0600 DEBUG GST_STATES gstelement.c:2899:gst_element_set_state_func:<my_h264parse> final: setting state from NULL to READY
0:00:00.483700625 8744 0x3d0a0600 LOG GST_STATES gstelement.c:3154:gst_element_change_state_func:<my_h264parse> default handler tries setting state from NULL to READY (000a)
0:00:00.483740125 8744 0x3d0a0600 DEBUG GST_STATES gstelement.c:2988:gst_element_change_state:<my_h264parse> element changed state SUCCESS
0:00:00.483792625 8744 0x3d0a0600 INFO GST_STATES gstelement.c:2676:gst_element_continue_state:<my_h264parse> completed state change to READY
0:00:00.483828500 8744 0x3d0a0600 INFO GST_STATES gstelement.c:2579:_priv_gst_element_state_changed:<my_h264parse> notifying about state-changed NULL to READY (VOID_PENDING pending)
0:00:00.483867250 8744 0x3d0a0600 LOG GST_MESSAGE gstmessage.c:301:gst_message_new_custom: source my_h264parse: creating new message 0x3d216c40 state-changed
0:00:00.483909250 8744 0x3d0a0600 DEBUG GST_BUS gstbus.c:318:gst_bus_post:<bus0> [msg 0x3d216c40] posting on bus state-changed message: 0x3d216c40, time 99:99:99.999999999, seq-num 13, element 'my_h264parse', GstMessageStateChanged, old-state=(GstState)GST_STATE_NULL, new-state=(GstState)GST_STATE_READY, pending-state=(GstState)GST_STATE_VOID_PENDING;
0:00:00.484002750 8744 0x3d0a0600 DEBUG bin gstbin.c:3715:gst_bin_handle_message_func:<my_pipeline> [msg 0x3d216c40] handling child my_h264parse message of type state-changed
0:00:00.484044000 8744 0x3d0a0600 DEBUG bin gstbin.c:4052:gst_bin_handle_message_func:<my_pipeline> posting message upward
0:00:00.484077375 8744 0x3d0a0600 DEBUG GST_BUS gstbus.c:318:gst_bus_post:<bus1> [msg 0x3d216c40] posting on bus state-changed message: 0x3d216c40, time 99:99:99.999999999, seq-num 13, element 'my_h264parse', GstMessageStateChanged, old-state=(GstState)GST_STATE_NULL, new-state=(GstState)GST_STATE_READY, pending-state=(GstState)GST_STATE_VOID_PENDING;
0:00:00.484165000 8744 0x3d0a0600 DEBUG GST_BUS gstbus.c:357:gst_bus_post:<bus1> [msg 0x3d216c40] pushing on async queue
0:00:00.484201750 8744 0x3d0a0600 DEBUG GST_BUS gstbus.c:360:gst_bus_post:<bus1> [msg 0x3d216c40] pushed on async queue
0:00:00.484237875 8744 0x3d0a0600 DEBUG GST_BUS gstbus.c:353:gst_bus_post:<bus0> [msg 0x3d216c40] dropped
0:00:00.484273875 8744 0x3d0a0600 LOG GST_STATES gstelement.c:3004:gst_element_change_state:<my_h264parse> exit state change 1
0:00:00.484308875 8744 0x3d0a0600 DEBUG GST_STATES gstelement.c:2911:gst_element_set_state_func:<my_h264parse> returned SUCCESS
0:00:00.484343000 8744 0x3d0a0600 INFO GST_STATES gstbin.c:2952:gst_bin_change_state_func:<my_pipeline> child 'my_h264parse' changed state to 2(READY) successfully
0:00:00.484388500 8744 0x3d0a0600 DEBUG bin gstbin.c:2370:gst_bin_sort_iterator_next:<my_pipeline> queue head gives my_appsrc
0:00:00.484424625 8744 0x3d0a0600 DEBUG bin gstbin.c:2303:update_degree:<my_pipeline> element my_appsrc not linked on any sinkpads
0:00:00.484461750 8744 0x3d0a0600 INFO GST_STATES gstbin.c:2504:gst_bin_element_set_state:<my_appsrc> current NULL pending VOID_PENDING, desired next READY
0:00:00.484502500 8744 0x3d0a0600 DEBUG bin gstbin.c:885:find_message:<my_pipeline> no message found matching types 00100000
0:00:00.484538625 8744 0x3d0a0600 DEBUG bin gstbin.c:892:find_message:<my_pipeline> async-start
0:00:00.484572375 8744 0x3d0a0600 DEBUG bin gstbin.c:2599:gst_bin_element_set_state:<my_pipeline> setting element my_appsrc to READY, base_time 0:00:00.000000000
0:00:00.484617875 8744 0x3d0a0600 DEBUG GST_STATES gstelement.c:2827:gst_element_set_state_func:<my_appsrc> set_state to READY
0:00:00.484652125 8744 0x3d0a0600 DEBUG GST_STATES gstelement.c:2852:gst_element_set_state_func:<my_appsrc> setting target state to READY
0:00:00.484686000 8744 0x3d0a0600 DEBUG GST_STATES gstelement.c:2865:gst_element_set_state_func:<my_appsrc> current NULL, old_pending VOID_PENDING, next VOID_PENDING, old return SUCCESS
0:00:00.484726875 8744 0x3d0a0600 DEBUG GST_STATES gstelement.c:2899:gst_element_set_state_func:<my_appsrc> final: setting state from NULL to READY
0:00:00.484789000 8744 0x3d0a0600 LOG GST_STATES gstelement.c:3154:gst_element_change_state_func:<my_appsrc> default handler tries setting state from NULL to READY (000a)
0:00:00.484830000 8744 0x3d0a0600 DEBUG GST_STATES gstelement.c:2988:gst_element_change_state:<my_appsrc> element changed state SUCCESS
0:00:00.484861250 8744 0x3d0a0600 INFO GST_STATES gstelement.c:2676:gst_element_continue_state:<my_appsrc> completed state change to READY
0:00:00.484895500 8744 0x3d0a0600 INFO GST_STATES gstelement.c:2579:_priv_gst_element_state_changed:<my_appsrc> notifying about state-changed NULL to READY (VOID_PENDING pending)
0:00:00.484934500 8744 0x3d0a0600 LOG GST_MESSAGE gstmessage.c:301:gst_message_new_custom: source my_appsrc: creating new message 0x3d216cc0 state-changed
0:00:00.484976000 8744 0x3d0a0600 DEBUG GST_BUS gstbus.c:318:gst_bus_post:<bus0> [msg 0x3d216cc0] posting on bus state-changed message: 0x3d216cc0, time 99:99:99.999999999, seq-num 14, element 'my_appsrc', GstMessageStateChanged, old-state=(GstState)GST_STATE_NULL, new-state=(GstState)GST_STATE_READY, pending-state=(GstState)GST_STATE_VOID_PENDING;
0:00:00.485092625 8744 0x3d0a0600 DEBUG bin gstbin.c:3715:gst_bin_handle_message_func:<my_pipeline> [msg 0x3d216cc0] handling child my_appsrc message of type state-changed
0:00:00.485134875 8744 0x3d0a0600 DEBUG bin gstbin.c:4052:gst_bin_handle_message_func:<my_pipeline> posting message upward
0:00:00.485166750 8744 0x3d0a0600 DEBUG GST_BUS gstbus.c:318:gst_bus_post:<bus1> [msg 0x3d216cc0] posting on bus state-changed message: 0x3d216cc0, time 99:99:99.999999999, seq-num 14, element 'my_appsrc', GstMessageStateChanged, old-state=(GstState)GST_STATE_NULL, new-state=(GstState)GST_STATE_READY, pending-state=(GstState)GST_STATE_VOID_PENDING;
0:00:00.485255750 8744 0x3d0a0600 DEBUG GST_BUS gstbus.c:357:gst_bus_post:<bus1> [msg 0x3d216cc0] pushing on async queue
0:00:00.485292000 8744 0x3d0a0600 DEBUG GST_BUS gstbus.c:360:gst_bus_post:<bus1> [msg 0x3d216cc0] pushed on async queue
0:00:00.485327375 8744 0x3d0a0600 DEBUG GST_BUS gstbus.c:353:gst_bus_post:<bus0> [msg 0x3d216cc0] dropped
0:00:00.485362375 8744 0x3d0a0600 LOG GST_STATES gstelement.c:3004:gst_element_change_state:<my_appsrc> exit state change 1
0:00:00.485396125 8744 0x3d0a0600 DEBUG GST_STATES gstelement.c:2911:gst_element_set_state_func:<my_appsrc> returned SUCCESS
0:00:00.485429875 8744 0x3d0a0600 INFO GST_STATES gstbin.c:2952:gst_bin_change_state_func:<my_pipeline> child 'my_appsrc' changed state to 2(READY) successfully
0:00:00.485475375 8744 0x3d0a0600 DEBUG bin gstbin.c:2359:gst_bin_sort_iterator_next:<my_pipeline> queue empty, elements exhausted
0:00:00.485507875 8744 0x3d0a0600 DEBUG GST_STATES gstbin.c:3011:gst_bin_change_state_func:<my_pipeline> iterator done
0:00:00.485538625 8744 0x3d0a0600 LOG GST_STATES gstelement.c:3154:gst_element_change_state_func:<my_pipeline> default handler tries setting state from NULL to READY (000a)
0:00:00.485580750 8744 0x3d0a0600 DEBUG bin gstbin.c:2401:gst_bin_sort_iterator_free:<my_pipeline> free
0:00:00.485632125 8744 0x3d0a0600 DEBUG bin gstbin.c:3046:gst_bin_change_state_func:<my_pipeline> no async elements
0:00:00.485664625 8744 0x3d0a0600 DEBUG GST_STATES gstbin.c:3080:gst_bin_change_state_func:<my_pipeline> done changing bin's state from NULL to READY, now in NULL, ret SUCCESS
0:00:00.485709375 8744 0x3d0a0600 DEBUG GST_STATES gstelement.c:2988:gst_element_change_state:<my_pipeline> element changed state SUCCESS
0:00:00.485741500 8744 0x3d0a0600 INFO GST_STATES gstelement.c:2651:gst_element_continue_state:<my_pipeline> committing state from NULL to READY, pending PLAYING, next PAUSED
0:00:00.485806125 8744 0x3d0a0600 INFO GST_STATES gstelement.c:2579:_priv_gst_element_state_changed:<my_pipeline> notifying about state-changed NULL to READY (PLAYING pending)
0:00:00.485845875 8744 0x3d0a0600 LOG GST_MESSAGE gstmessage.c:301:gst_message_new_custom: source my_pipeline: creating new message 0x3d216d40 state-changed
0:00:00.485888875 8744 0x3d0a0600 DEBUG GST_BUS gstbus.c:318:gst_bus_post:<bus1> [msg 0x3d216d40] posting on bus state-changed message: 0x3d216d40, time 99:99:99.999999999, seq-num 15, element 'my_pipeline', GstMessageStateChanged, old-state=(GstState)GST_STATE_NULL, new-state=(GstState)GST_STATE_READY, pending-state=(GstState)GST_STATE_PLAYING;
0:00:00.485978500 8744 0x3d0a0600 DEBUG GST_BUS gstbus.c:357:gst_bus_post:<bus1> [msg 0x3d216d40] pushing on async queue
0:00:00.486014625 8744 0x3d0a0600 DEBUG GST_BUS gstbus.c:360:gst_bus_post:<bus1> [msg 0x3d216d40] pushed on async queue
0:00:00.486052125 8744 0x3d0a0600 INFO GST_STATES gstelement.c:2658:gst_element_continue_state:<my_pipeline> continue state change READY to PAUSED, final PLAYING
0:00:00.486094250 8744 0x3d0a0600 DEBUG pipeline gstpipeline.c:306:reset_start_time:<my_pipeline> reset start_time to 0
0:00:00.486126750 8744 0x3d0a0600 DEBUG GST_STATES gstbin.c:2852:gst_bin_change_state_func:<my_pipeline> changing state of children from READY to PAUSED
0:00:00.486163875 8744 0x3d0a0600 DEBUG bin gstbin.c:2876:gst_bin_change_state_func:<my_pipeline> clearing EOS elements
0:00:00.486195875 8744 0x3d0a0600 DEBUG bin gstbin.c:2697:gst_bin_src_pads_activate:<my_pipeline> activate pads
0:00:00.486241250 8744 0x3d0a0600 DEBUG bin gstbin.c:2705:gst_bin_src_pads_activate:<my_pipeline> pad activation successful
0:00:00.486283625 8744 0x3d0a0600 DEBUG bin gstbin.c:2383:gst_bin_sort_iterator_resync:<my_pipeline> resync
0:00:00.486316375 8744 0x3d0a0600 DEBUG bin gstbin.c:2163:add_to_queue:<my_pipeline> adding 'my_sink' to queue
0:00:00.486355750 8744 0x3d0a0600 DEBUG bin gstbin.c:885:find_message:<my_pipeline> no message found matching types 00001000
0:00:00.486390750 8744 0x3d0a0600 DEBUG bin gstbin.c:892:find_message:<my_pipeline> structure-change
0:00:00.486427500 8744 0x3d0a0600 DEBUG bin gstbin.c:2280:update_degree:<my_pipeline> change element my_vdec, degree 0->1, linked to my_sink
0:00:00.486473000 8744 0x3d0a0600 DEBUG bin gstbin.c:885:find_message:<my_pipeline> no message found matching types 00001000
0:00:00.486508375 8744 0x3d0a0600 DEBUG bin gstbin.c:892:find_message:<my_pipeline> structure-change
0:00:00.486544375 8744 0x3d0a0600 DEBUG bin gstbin.c:2280:update_degree:<my_pipeline> change element my_h264parse, degree 0->1, linked to my_vdec
0:00:00.486587625 8744 0x3d0a0600 DEBUG bin gstbin.c:885:find_message:<my_pipeline> no message found matching types 00001000
0:00:00.486622500 8744 0x3d0a0600 DEBUG bin gstbin.c:892:find_message:<my_pipeline> structure-change
0:00:00.486658500 8744 0x3d0a0600 DEBUG bin gstbin.c:2280:update_degree:<my_pipeline> change element my_appsrc, degree 0->1, linked to my_h264parse
0:00:00.486702625 8744 0x3d0a0600 DEBUG bin gstbin.c:2303:update_degree:<my_pipeline> element my_appsrc not linked on any sinkpads
0:00:00.486745125 8744 0x3d0a0600 DEBUG bin gstbin.c:2370:gst_bin_sort_iterator_next:<my_pipeline> queue head gives my_sink
0:00:00.486780250 8744 0x3d0a0600 DEBUG bin gstbin.c:885:find_message:<my_pipeline> no message found matching types 00001000
0:00:00.486849375 8744 0x3d0a0600 DEBUG bin gstbin.c:892:find_message:<my_pipeline> structure-change
0:00:00.486886625 8744 0x3d0a0600 DEBUG bin gstbin.c:2280:update_degree:<my_pipeline> change element my_vdec, degree 1->0, linked to my_sink
0:00:00.486929000 8744 0x3d0a0600 DEBUG bin gstbin.c:2163:add_to_queue:<my_pipeline> adding 'my_vdec' to queue
0:00:00.486968250 8744 0x3d0a0600 INFO GST_STATES gstbin.c:2504:gst_bin_element_set_state:<my_sink> current READY pending VOID_PENDING, desired next PAUSED
0:00:00.487010250 8744 0x3d0a0600 DEBUG bin gstbin.c:885:find_message:<my_pipeline> no message found matching types 00100000
0:00:00.487045750 8744 0x3d0a0600 DEBUG bin gstbin.c:892:find_message:<my_pipeline> async-start
0:00:00.487079250 8744 0x3d0a0600 DEBUG bin gstbin.c:2599:gst_bin_element_set_state:<my_pipeline> setting element my_sink to PAUSED, base_time 0:00:00.000000000
0:00:00.487126500 8744 0x3d0a0600 DEBUG GST_STATES gstelement.c:2827:gst_element_set_state_func:<my_sink> set_state to PAUSED
0:00:00.487160875 8744 0x3d0a0600 DEBUG GST_STATES gstelement.c:2852:gst_element_set_state_func:<my_sink> setting target state to PAUSED
0:00:00.487194750 8744 0x3d0a0600 DEBUG GST_STATES gstelement.c:2865:gst_element_set_state_func:<my_sink> current READY, old_pending VOID_PENDING, next VOID_PENDING, old return SUCCESS
0:00:00.487235500 8744 0x3d0a0600 DEBUG GST_STATES gstelement.c:2899:gst_element_set_state_func:<my_sink> final: setting state from READY to PAUSED
0:00:00.487279125 8744 0x3d0a0600 DEBUG basesink gstbasesink.c:5065:gst_base_sink_change_state:<my_sink> READY to PAUSED
0:00:00.487312125 8744 0x3d0a0600 DEBUG basesink gstbasesink.c:5086:gst_base_sink_change_state:<my_sink> doing async state change
0:00:00.487346250 8744 0x3d0a0600 LOG GST_MESSAGE gstmessage.c:301:gst_message_new_custom: source my_sink: creating new message 0x3d216dc0 async-start
0:00:00.487393875 8744 0x3d0a0600 DEBUG GST_BUS gstbus.c:318:gst_bus_post:<bus0> [msg 0x3d216dc0] posting on bus async-start message: 0x3d216dc0, time 99:99:99.999999999, seq-num 16, element 'my_sink', (NULL)
0:00:00.487459000 8744 0x3d0a0600 DEBUG bin gstbin.c:3715:gst_bin_handle_message_func:<my_pipeline> [msg 0x3d216dc0] handling child my_sink message of type async-start
0:00:00.487499875 8744 0x3d0a0600 DEBUG bin gstbin.c:3905:gst_bin_handle_message_func:<my_pipeline> ASYNC_START message 0x3d216dc0, my_sink
0:00:00.487537250 8744 0x3d0a0600 DEBUG bin gstbin.c:885:find_message:<my_pipeline> no message found matching types 00100000
0:00:00.487572375 8744 0x3d0a0600 DEBUG bin gstbin.c:892:find_message:<my_pipeline> async-start
0:00:00.487607125 8744 0x3d0a0600 DEBUG bin gstbin.c:932:bin_replace_message:<my_pipeline> got new message 0x3d216dc0, async-start from my_sink
0:00:00.487646875 8744 0x3d0a0600 DEBUG GST_STATES gstbin.c:3365:bin_handle_async_start:<my_pipeline> state change busy
0:00:00.487679125 8744 0x3d0a0600 DEBUG GST_BUS gstbus.c:353:gst_bus_post:<bus0> [msg 0x3d216dc0] dropped
0:00:00.487714375 8744 0x3d0a0600 LOG GST_STATES gstelement.c:3154:gst_element_change_state_func:<my_sink> default handler tries setting state from READY to PAUSED (0013)
0:00:00.487754750 8744 0x3d0a0600 DEBUG GST_ELEMENT_PADS gstelement.c:3097:gst_element_pads_activate:<my_sink> activate pads
0:00:00.487803250 8744 0x3d0a0600 DEBUG GST_PADS gstpad.c:1105:gst_pad_set_active:<my_sink:sink> activating pad from none
0:00:00.487836250 8744 0x3d0a0600 DEBUG basesink gstbasesink.c:4207:gst_base_sink_pad_activate:<my_sink> Trying pull mode first
0:00:00.487869000 8744 0x3d0a0600 DEBUG basesink gstbasesink.c:4213:gst_base_sink_pad_activate:<my_sink> pull mode disabled
0:00:00.487920625 8744 0x3d0a0600 DEBUG basesink gstbasesink.c:4263:gst_base_sink_pad_activate:<my_sink> Falling back to push mode
0:00:00.487964000 8744 0x3d0a0600 DEBUG GST_PADS gstpad.c:1011:pre_activate:<my_sink:sink> setting pad into push mode, unset flushing
0:00:00.488003375 8744 0x3d0a0600 DEBUG GST_PADS gstpad.c:1023:pre_activate:<my_sink:sink> reschedule events on peer my_vdec:src
0:00:00.488046375 8744 0x3d0a0600 DEBUG GST_PADS gstpad.c:1234:activate_mode_internal:<my_sink:sink> activated in push mode
0:00:00.488083125 8744 0x3d0a0600 DEBUG basesink gstbasesink.c:4265:gst_base_sink_pad_activate:<my_sink> Success activating push mode
0:00:00.488117875 8744 0x3d0a0600 DEBUG GST_ELEMENT_PADS gstelement.c:3116:gst_element_pads_activate:<my_sink> pad activation successful
0:00:00.488153750 8744 0x3d0a0600 DEBUG GST_STATES gstelement.c:2970:gst_element_change_state:<my_sink> element will change state ASYNC
0:00:00.488184875 8744 0x3d0a0600 LOG GST_STATES gstelement.c:3010:gst_element_change_state:<my_sink> exit async state change 2
0:00:00.488219000 8744 0x3d0a0600 DEBUG GST_STATES gstelement.c:2911:gst_element_set_state_func:<my_sink> returned ASYNC
0:00:00.488253375 8744 0x3d0a0600 INFO GST_STATES gstbin.c:2958:gst_bin_change_state_func:<my_pipeline> child 'my_sink' is changing state asynchronously to PAUSED
0:00:00.488295875 8744 0x3d0a0600 DEBUG bin gstbin.c:2370:gst_bin_sort_iterator_next:<my_pipeline> queue head gives my_vdec
0:00:00.488325125 8744 0x3d0a0600 LOG bin gstbin.c:863:message_check: looking at message 0x3d216dc0: 0
0:00:00.488362125 8744 0x3d0a0600 DEBUG bin gstbin.c:885:find_message:<my_pipeline> no message found matching types 00001000
0:00:00.488397125 8744 0x3d0a0600 DEBUG bin gstbin.c:892:find_message:<my_pipeline> structure-change
0:00:00.488433625 8744 0x3d0a0600 DEBUG bin gstbin.c:2280:update_degree:<my_pipeline> change element my_h264parse, degree 1->0, linked to my_vdec
0:00:00.488477750 8744 0x3d0a0600 DEBUG bin gstbin.c:2163:add_to_queue:<my_pipeline> adding 'my_h264parse' to queue
0:00:00.488516625 8744 0x3d0a0600 INFO GST_STATES gstbin.c:2504:gst_bin_element_set_state:<my_vdec> current READY pending VOID_PENDING, desired next PAUSED
0:00:00.488551500 8744 0x3d0a0600 LOG bin gstbin.c:863:message_check: looking at message 0x3d216dc0: 0
0:00:00.488589000 8744 0x3d0a0600 DEBUG bin gstbin.c:885:find_message:<my_pipeline> no message found matching types 00100000
0:00:00.488623750 8744 0x3d0a0600 DEBUG bin gstbin.c:892:find_message:<my_pipeline> async-start
0:00:00.488656875 8744 0x3d0a0600 DEBUG bin gstbin.c:2599:gst_bin_element_set_state:<my_pipeline> setting element my_vdec to PAUSED, base_time 0:00:00.000000000
0:00:00.488703000 8744 0x3d0a0600 DEBUG GST_STATES gstelement.c:2827:gst_element_set_state_func:<my_vdec> set_state to PAUSED
0:00:00.488737000 8744 0x3d0a0600 DEBUG GST_STATES gstelement.c:2852:gst_element_set_state_func:<my_vdec> setting target state to PAUSED
0:00:00.488770750 8744 0x3d0a0600 DEBUG GST_STATES gstelement.c:2865:gst_element_set_state_func:<my_vdec> current READY, old_pending VOID_PENDING, next VOID_PENDING, old return SUCCESS
0:00:00.488811375 8744 0x3d0a0600 DEBUG GST_STATES gstelement.c:2899:gst_element_set_state_func:<my_vdec> final: setting state from READY to PAUSED
0:00:00.488854625 8744 0x3d0a0600 DEBUG videodecoder gstvideodecoder.c:2010:gst_video_decoder_reset:<my_vdec> reset full 1
0:00:00.488901375 8744 0x3d0a0600 DEBUG v4l2videodec gstv4l2videodec.c:189:gst_v4l2_video_dec_start:<my_vdec> Starting
0:00:00.488956750 8744 0x3d0a0600 LOG v4l2 gstv4l2object.c:4173:gst_v4l2_object_unlock:<my_vdec:sink> start flushing
0:00:00.488983875 8744 0x3d0a0600 LOG GST_POLL gstpoll.c:1673:gst_poll_set_flushing: 0x3d21fde0: flushing: 1
0:00:00.489021250 8744 0x3d0a0600 LOG GST_STATES gstelement.c:3154:gst_element_change_state_func:<my_vdec> default handler tries setting state from READY to PAUSED (0013)
0:00:00.489090250 8744 0x3d0a0600 DEBUG GST_ELEMENT_PADS gstelement.c:3097:gst_element_pads_activate:<my_vdec> activate pads
0:00:00.489133500 8744 0x3d0a0600 DEBUG GST_PADS gstpad.c:1105:gst_pad_set_active:<my_vdec:src> activating pad from none
0:00:00.489169000 8744 0x3d0a0600 DEBUG GST_PADS gstpad.c:1011:pre_activate:<my_vdec:src> setting pad into push mode, unset flushing
0:00:00.489207250 8744 0x3d0a0600 DEBUG GST_PADS gstpad.c:1234:activate_mode_internal:<my_vdec:src> activated in push mode
0:00:00.489253125 8744 0x3d0a0600 DEBUG GST_PADS gstpad.c:1105:gst_pad_set_active:<my_vdec:sink> activating pad from none
0:00:00.489287500 8744 0x3d0a0600 DEBUG GST_PADS gstpad.c:1011:pre_activate:<my_vdec:sink> setting pad into push mode, unset flushing
0:00:00.489324625 8744 0x3d0a0600 DEBUG GST_PADS gstpad.c:1023:pre_activate:<my_vdec:sink> reschedule events on peer my_h264parse:src
0:00:00.489365750 8744 0x3d0a0600 DEBUG GST_PADS gstpad.c:1234:activate_mode_internal:<my_vdec:sink> activated in push mode
0:00:00.489404250 8744 0x3d0a0600 DEBUG GST_ELEMENT_PADS gstelement.c:3116:gst_element_pads_activate:<my_vdec> pad activation successful
0:00:00.489439000 8744 0x3d0a0600 DEBUG GST_STATES gstelement.c:2988:gst_element_change_state:<my_vdec> element changed state SUCCESS
0:00:00.489469625 8744 0x3d0a0600 INFO GST_STATES gstelement.c:2676:gst_element_continue_state:<my_vdec> completed state change to PAUSED
0:00:00.489504000 8744 0x3d0a0600 INFO GST_STATES gstelement.c:2579:_priv_gst_element_state_changed:<my_vdec> notifying about state-changed READY to PAUSED (VOID_PENDING pending)
0:00:00.489542250 8744 0x3d0a0600 LOG GST_MESSAGE gstmessage.c:301:gst_message_new_custom: source my_vdec: creating new message 0x3d216e40 state-changed
0:00:00.489584250 8744 0x3d0a0600 DEBUG GST_BUS gstbus.c:318:gst_bus_post:<bus0> [msg 0x3d216e40] posting on bus state-changed message: 0x3d216e40, time 99:99:99.999999999, seq-num 17, element 'my_vdec', GstMessageStateChanged, old-state=(GstState)GST_STATE_READY, new-state=(GstState)GST_STATE_PAUSED, pending-state=(GstState)GST_STATE_VOID_PENDING;
0:00:00.489677000 8744 0x3d0a0600 DEBUG bin gstbin.c:3715:gst_bin_handle_message_func:<my_pipeline> [msg 0x3d216e40] handling child my_vdec message of type state-changed
0:00:00.489718125 8744 0x3d0a0600 DEBUG bin gstbin.c:4052:gst_bin_handle_message_func:<my_pipeline> posting message upward
0:00:00.489750500 8744 0x3d0a0600 DEBUG GST_BUS gstbus.c:318:gst_bus_post:<bus1> [msg 0x3d216e40] posting on bus state-changed message: 0x3d216e40, time 99:99:99.999999999, seq-num 17, element 'my_vdec', GstMessageStateChanged, old-state=(GstState)GST_STATE_READY, new-state=(GstState)GST_STATE_PAUSED, pending-state=(GstState)GST_STATE_VOID_PENDING;
0:00:00.489838875 8744 0x3d0a0600 DEBUG GST_BUS gstbus.c:357:gst_bus_post:<bus1> [msg 0x3d216e40] pushing on async queue
0:00:00.489874750 8744 0x3d0a0600 DEBUG GST_BUS gstbus.c:360:gst_bus_post:<bus1> [msg 0x3d216e40] pushed on async queue
0:00:00.489909500 8744 0x3d0a0600 DEBUG GST_BUS gstbus.c:353:gst_bus_post:<bus0> [msg 0x3d216e40] dropped
0:00:00.489944125 8744 0x3d0a0600 LOG GST_STATES gstelement.c:3004:gst_element_change_state:<my_vdec> exit state change 1
0:00:00.489999125 8744 0x3d0a0600 DEBUG GST_STATES gstelement.c:2911:gst_element_set_state_func:<my_vdec> returned SUCCESS
0:00:00.490033500 8744 0x3d0a0600 INFO GST_STATES gstbin.c:2952:gst_bin_change_state_func:<my_pipeline> child 'my_vdec' changed state to 3(PAUSED) successfully
0:00:00.490079125 8744 0x3d0a0600 DEBUG bin gstbin.c:2370:gst_bin_sort_iterator_next:<my_pipeline> queue head gives my_h264parse
0:00:00.490108375 8744 0x3d0a0600 LOG bin gstbin.c:863:message_check: looking at message 0x3d216dc0: 0
0:00:00.490145875 8744 0x3d0a0600 DEBUG bin gstbin.c:885:find_message:<my_pipeline> no message found matching types 00001000
0:00:00.490180500 8744 0x3d0a0600 DEBUG bin gstbin.c:892:find_message:<my_pipeline> structure-change
0:00:00.490216000 8744 0x3d0a0600 DEBUG bin gstbin.c:2280:update_degree:<my_pipeline> change element my_appsrc, degree 1->0, linked to my_h264parse
0:00:00.490261250 8744 0x3d0a0600 DEBUG bin gstbin.c:2163:add_to_queue:<my_pipeline> adding 'my_appsrc' to queue
0:00:00.490300125 8744 0x3d0a0600 INFO GST_STATES gstbin.c:2504:gst_bin_element_set_state:<my_h264parse> current READY pending VOID_PENDING, desired next PAUSED
0:00:00.490335375 8744 0x3d0a0600 LOG bin gstbin.c:863:message_check: looking at message 0x3d216dc0: 0
0:00:00.490372750 8744 0x3d0a0600 DEBUG bin gstbin.c:885:find_message:<my_pipeline> no message found matching types 00100000
0:00:00.490407625 8744 0x3d0a0600 DEBUG bin gstbin.c:892:find_message:<my_pipeline> async-start
0:00:00.490440750 8744 0x3d0a0600 DEBUG bin gstbin.c:2599:gst_bin_element_set_state:<my_pipeline> setting element my_h264parse to PAUSED, base_time 0:00:00.000000000
0:00:00.490489125 8744 0x3d0a0600 DEBUG GST_STATES gstelement.c:2827:gst_element_set_state_func:<my_h264parse> set_state to PAUSED
0:00:00.490523875 8744 0x3d0a0600 DEBUG GST_STATES gstelement.c:2852:gst_element_set_state_func:<my_h264parse> setting target state to PAUSED
0:00:00.490557875 8744 0x3d0a0600 DEBUG GST_STATES gstelement.c:2865:gst_element_set_state_func:<my_h264parse> current READY, old_pending VOID_PENDING, next VOID_PENDING, old return SUCCESS
0:00:00.490599625 8744 0x3d0a0600 DEBUG GST_STATES gstelement.c:2899:gst_element_set_state_func:<my_h264parse> final: setting state from READY to PAUSED
0:00:00.490643125 8744 0x3d0a0600 DEBUG baseparse gstbaseparse.c:4858:gst_base_parse_change_state:<my_h264parse> no index provided creating our own
0:00:00.490872875 8744 0x3d0a0600 DEBUG default gstindex.c:281:gst_index_group_new: created new index group 0
0:00:00.490922625 8744 0x3d0a0600 DEBUG default gstindex.c:194:gst_index_init: created new index
0:00:00.490949500 8744 0x3d0a0600 DEBUG default gstmemindex.c:128:gst_mem_index_init: created new mem index
0:00:00.491087625 8744 0x3d0a0600 LOG default gstmemindex.c:270:gst_mem_index_add_entry:<memindex0> added this entry
0:00:00.491141875 8744 0x3d0a0600 LOG GST_STATES gstelement.c:3154:gst_element_change_state_func:<my_h264parse> default handler tries setting state from READY to PAUSED (0013)
0:00:00.491185000 8744 0x3d0a0600 DEBUG GST_ELEMENT_PADS gstelement.c:3097:gst_element_pads_activate:<my_h264parse> activate pads
0:00:00.491228000 8744 0x3d0a0600 DEBUG GST_PADS gstpad.c:1105:gst_pad_set_active:<my_h264parse:src> activating pad from none
0:00:00.491263625 8744 0x3d0a0600 DEBUG GST_PADS gstpad.c:1011:pre_activate:<my_h264parse:src> setting pad into push mode, unset flushing
0:00:00.491302250 8744 0x3d0a0600 DEBUG GST_PADS gstpad.c:1234:activate_mode_internal:<my_h264parse:src> activated in push mode
0:00:00.491371000 8744 0x3d0a0600 DEBUG GST_PADS gstpad.c:1105:gst_pad_set_active:<my_h264parse:sink> activating pad from none
0:00:00.491403625 8744 0x3d0a0600 DEBUG baseparse gstbaseparse.c:3654:gst_base_parse_sink_activate:<my_h264parse> sink activate
0:00:00.491441750 8744 0x3d0a0600 DEBUG query gstquery.c:675:gst_query_new_custom: creating new query 0x3d2330f0 scheduling
0:00:00.491493000 8744 0x3d0a0600 DEBUG GST_PADS gstpad.c:4133:gst_pad_peer_query:<my_h264parse:sink> peer query 0x3d2330f0 (scheduling)
0:00:00.491539375 8744 0x3d0a0600 DEBUG GST_PADS gstpad.c:4006:gst_pad_query:<my_appsrc:src> doing query 0x3d2330f0 (scheduling)
0:00:00.491617875 8744 0x3d0a0600 DEBUG GST_PADS gstpad.c:4029:gst_pad_query:<my_appsrc:src> sent query 0x3d2330f0 (scheduling), result 1
0:00:00.491682125 8744 0x3d0a0600 DEBUG baseparse gstbaseparse.c:3685:gst_base_parse_sink_activate:<my_h264parse> trying to activate in push mode
0:00:00.491719250 8744 0x3d0a0600 DEBUG GST_PADS gstpad.c:1011:pre_activate:<my_h264parse:sink> setting pad into push mode, unset flushing
0:00:00.491757875 8744 0x3d0a0600 DEBUG GST_PADS gstpad.c:1023:pre_activate:<my_h264parse:sink> reschedule events on peer my_appsrc:src
0:00:00.491802000 8744 0x3d0a0600 DEBUG baseparse gstbaseparse.c:3733:gst_base_parse_sink_activate_mode:<my_h264parse> sink activate in push mode
0:00:00.491840625 8744 0x3d0a0600 DEBUG baseparse gstbaseparse.c:3696:gst_base_parse_activate:<my_h264parse> activate 1
0:00:00.491877375 8744 0x3d0a0600 DEBUG h264parse gsth264parse.c:265:gst_h264_parse_start:<my_h264parse> start
0:00:00.491910625 8744 0x3d0a0600 DEBUG h264parse gsth264parse.c:186:gst_h264_parse_reset_frame:<my_h264parse> reset frame
0:00:00.492382250 8744 0x3d0a0600 LOG GST_DEBUG gstinfo.c:1595:gst_debug_reset_threshold: category codecparsers_h264 matches pattern 0x3d0a0430 - gets set to level 6
0:00:00.492452250 8744 0x3d0a0600 LOG baseparse gstbaseparse.c:3850:gst_base_parse_set_min_frame_size:<my_h264parse> set frame_min_size: 6
0:00:00.492489125 8744 0x3d0a0600 DEBUG baseparse gstbaseparse.c:3719:gst_base_parse_activate:<my_h264parse> activate return: 1
0:00:00.492523500 8744 0x3d0a0600 DEBUG baseparse gstbaseparse.c:3756:gst_base_parse_sink_activate_mode:<my_h264parse> sink activate return: 1
0:00:00.492562250 8744 0x3d0a0600 DEBUG GST_PADS gstpad.c:1234:activate_mode_internal:<my_h264parse:sink> activated in push mode
0:00:00.492603875 8744 0x3d0a0600 DEBUG GST_ELEMENT_PADS gstelement.c:3116:gst_element_pads_activate:<my_h264parse> pad activation successful
0:00:00.492639750 8744 0x3d0a0600 DEBUG GST_STATES gstelement.c:2988:gst_element_change_state:<my_h264parse> element changed state SUCCESS
0:00:00.492672375 8744 0x3d0a0600 INFO GST_STATES gstelement.c:2676:gst_element_continue_state:<my_h264parse> completed state change to PAUSED
0:00:00.492707250 8744 0x3d0a0600 INFO GST_STATES gstelement.c:2579:_priv_gst_element_state_changed:<my_h264parse> notifying about state-changed READY to PAUSED (VOID_PENDING pending)
0:00:00.492746125 8744 0x3d0a0600 LOG GST_MESSAGE gstmessage.c:301:gst_message_new_custom: source my_h264parse: creating new message 0x3d216f40 state-changed
0:00:00.492788500 8744 0x3d0a0600 DEBUG GST_BUS gstbus.c:318:gst_bus_post:<bus0> [msg 0x3d216f40] posting on bus state-changed message: 0x3d216f40, time 99:99:99.999999999, seq-num 18, element 'my_h264parse', GstMessageStateChanged, old-state=(GstState)GST_STATE_READY, new-state=(GstState)GST_STATE_PAUSED, pending-state=(GstState)GST_STATE_VOID_PENDING;
0:00:00.492888625 8744 0x3d0a0600 DEBUG bin gstbin.c:3715:gst_bin_handle_message_func:<my_pipeline> [msg 0x3d216f40] handling child my_h264parse message of type state-changed
0:00:00.492951750 8744 0x3d0a0600 DEBUG bin gstbin.c:4052:gst_bin_handle_message_func:<my_pipeline> posting message upward
0:00:00.492985250 8744 0x3d0a0600 DEBUG GST_BUS gstbus.c:318:gst_bus_post:<bus1> [msg 0x3d216f40] posting on bus state-changed message: 0x3d216f40, time 99:99:99.999999999, seq-num 18, element 'my_h264parse', GstMessageStateChanged, old-state=(GstState)GST_STATE_READY, new-state=(GstState)GST_STATE_PAUSED, pending-state=(GstState)GST_STATE_VOID_PENDING;
0:00:00.493120375 8744 0x3d0a0600 DEBUG GST_BUS gstbus.c:357:gst_bus_post:<bus1> [msg 0x3d216f40] pushing on async queue
0:00:00.493157250 8744 0x3d0a0600 DEBUG GST_BUS gstbus.c:360:gst_bus_post:<bus1> [msg 0x3d216f40] pushed on async queue
0:00:00.493192500 8744 0x3d0a0600 DEBUG GST_BUS gstbus.c:353:gst_bus_post:<bus0> [msg 0x3d216f40] dropped
0:00:00.493227375 8744 0x3d0a0600 LOG GST_STATES gstelement.c:3004:gst_element_change_state:<my_h264parse> exit state change 1
0:00:00.493261875 8744 0x3d0a0600 DEBUG GST_STATES gstelement.c:2911:gst_element_set_state_func:<my_h264parse> returned SUCCESS
0:00:00.493295750 8744 0x3d0a0600 INFO GST_STATES gstbin.c:2952:gst_bin_change_state_func:<my_pipeline> child 'my_h264parse' changed state to 3(PAUSED) successfully
0:00:00.493341500 8744 0x3d0a0600 DEBUG bin gstbin.c:2370:gst_bin_sort_iterator_next:<my_pipeline> queue head gives my_appsrc
0:00:00.493376750 8744 0x3d0a0600 DEBUG bin gstbin.c:2303:update_degree:<my_pipeline> element my_appsrc not linked on any sinkpads
0:00:00.493412875 8744 0x3d0a0600 INFO GST_STATES gstbin.c:2504:gst_bin_element_set_state:<my_appsrc> current READY pending VOID_PENDING, desired next PAUSED
0:00:00.493446750 8744 0x3d0a0600 LOG bin gstbin.c:863:message_check: looking at message 0x3d216dc0: 0
0:00:00.493484125 8744 0x3d0a0600 DEBUG bin gstbin.c:885:find_message:<my_pipeline> no message found matching types 00100000
0:00:00.493519500 8744 0x3d0a0600 DEBUG bin gstbin.c:892:find_message:<my_pipeline> async-start
0:00:00.493553250 8744 0x3d0a0600 DEBUG bin gstbin.c:2599:gst_bin_element_set_state:<my_pipeline> setting element my_appsrc to PAUSED, base_time 0:00:00.000000000
0:00:00.493599750 8744 0x3d0a0600 DEBUG GST_STATES gstelement.c:2827:gst_element_set_state_func:<my_appsrc> set_state to PAUSED
0:00:00.493633750 8744 0x3d0a0600 DEBUG GST_STATES gstelement.c:2852:gst_element_set_state_func:<my_appsrc> setting target state to PAUSED
0:00:00.493666625 8744 0x3d0a0600 DEBUG GST_STATES gstelement.c:2865:gst_element_set_state_func:<my_appsrc> current READY, old_pending VOID_PENDING, next VOID_PENDING, old return SUCCESS
0:00:00.493786375 8744 0x3d0a0600 DEBUG GST_STATES gstelement.c:2899:gst_element_set_state_func:<my_appsrc> final: setting state from READY to PAUSED
0:00:00.493817250 8744 0x3d0a0600 LOG GST_STATES gstelement.c:3154:gst_element_change_state_func:<my_appsrc> default handler tries setting state from READY to PAUSED (0013)
0:00:00.493846375 8744 0x3d0a0600 DEBUG GST_ELEMENT_PADS gstelement.c:3097:gst_element_pads_activate:<my_appsrc> activate pads
0:00:00.493877375 8744 0x3d0a0600 DEBUG GST_PADS gstpad.c:1105:gst_pad_set_active:<my_appsrc:src> activating pad from none
0:00:00.493903000 8744 0x3d0a0600 DEBUG GST_PADS gstpad.c:1011:pre_activate:<my_appsrc:src> setting pad into push mode, unset flushing
0:00:00.493932000 8744 0x3d0a0600 DEBUG basesrc gstbasesrc.c:3858:gst_base_src_activate_mode:<my_appsrc:src> activating in mode 1
0:00:00.493957875 8744 0x3d0a0600 DEBUG basesrc gstbasesrc.c:3784:gst_base_src_activate_push:<my_appsrc> Activating in push mode
0:00:00.494006000 8744 0x3d0a0600 DEBUG appsrc gstappsrc.c:865:gst_app_src_start:<my_appsrc> starting
0:00:00.494032250 8744 0x3d0a0600 DEBUG basesrc gstbasesrc.c:3481:gst_base_src_start_complete:<my_appsrc> starting source
0:00:00.494057625 8744 0x3d0a0600 DEBUG appsrc gstappsrc.c:1427:gst_app_src_get_size:<my_appsrc> getting size of -1
0:00:00.494084500 8744 0x3d0a0600 DEBUG basesrc gstbasesrc.c:3494:gst_base_src_start_complete:<my_appsrc> setting size 18446744073709551615
0:00:00.494116875 8744 0x3d0a0600 DEBUG basesrc gstbasesrc.c:3505:gst_base_src_start_complete:<my_appsrc> format: bytes, have size: 1, size: 18446744073709551615, duration: -1
0:00:00.494150375 8744 0x3d0a0600 DEBUG basesrc gstbasesrc.c:3508:gst_base_src_start_complete:<my_appsrc> is seekable: 0
0:00:00.494176125 8744 0x3d0a0600 DEBUG basesrc gstbasesrc.c:3513:gst_base_src_start_complete:<my_appsrc> is random_access: 0
0:00:00.494212750 8744 0x3d0a0600 DEBUG basesrc gstbasesrc.c:1615:gst_base_src_perform_seek:<my_appsrc> doing seek: (NULL)
0:00:00.494247250 8744 0x3d0a0600 DEBUG GST_PADS gstpad.c:6137:gst_pad_pause_task:<my_appsrc:src> pause task
0:00:00.494272625 8744 0x3d0a0600 DEBUG GST_PADS gstpad.c:6158:gst_pad_pause_task:<my_appsrc:src> pad has no task
0:00:00.494296000 8744 0x3d0a0600 DEBUG basesrc gstbasesrc.c:1671:gst_base_src_perform_seek:<my_appsrc> seek with seqnum 20
0:00:00.494343125 8744 0x3d0a0600 DEBUG basesrc gstbasesrc.c:1708:gst_base_src_perform_seek:<my_appsrc> segment configured from 0 to -1, position 0
0:00:00.494373375 8744 0x3d0a0600 INFO basesrc gstbasesrc.c:1358:gst_base_src_do_seek:<my_appsrc> seeking: bytes segment start=0, offset=0, stop=-1, rate=1.000000, applied_rate=1.000000, flags=0x00, time=0, base=0, position 0, duration -1
0:00:00.494441625 8744 0x3d0a0600 DEBUG GST_PADS gstpad.c:6081:gst_pad_start_task:<my_appsrc:src> start task
0:00:00.494494000 8744 0x3d0a0600 DEBUG task gsttask.c:428:gst_task_new: Created task 0x3d20c4d0
0:00:00.494520125 8744 0x3d0a0600 INFO task gsttask.c:457:gst_task_set_lock: setting stream lock 0x3d2061d0 on task 0x3d20c4d0
0:00:00.494554375 8744 0x3d0a0600 INFO GST_PADS gstpad.c:6090:gst_pad_start_task:<my_appsrc:src> created task 0x3d20c4d0
0:00:00.494582750 8744 0x3d0a0600 DEBUG GST_PADS gstpad.c:6007:do_stream_status:<my_appsrc:src> doing stream-status 0
0:00:00.494612250 8744 0x3d0a0600 LOG GST_MESSAGE gstmessage.c:301:gst_message_new_custom: source src: creating new message 0x3d231810 stream-status
0:00:00.494649625 8744 0x3d0a0600 DEBUG GST_PADS gstpad.c:6036:do_stream_status:<my_appsrc:src> posting stream-status 0
0:00:00.494677500 8744 0x3d0a0600 DEBUG GST_BUS gstbus.c:318:gst_bus_post:<bus0> [msg 0x3d231810] posting on bus stream-status message: 0x3d231810, time 99:99:99.999999999, seq-num 21, element 'src', GstMessageStreamStatus, type=(GstStreamStatusType)GST_STREAM_STATUS_TYPE_CREATE, owner=(GstElement)"\(GstAppSrc\)\ my_appsrc", object=(GstTask)"\(GstTask\)\ task0";
0:00:00.494772875 8744 0x3d0a0600 DEBUG bin gstbin.c:3715:gst_bin_handle_message_func:<my_pipeline> [msg 0x3d231810] handling child src message of type stream-status
0:00:00.494804750 8744 0x3d0a0600 DEBUG bin gstbin.c:4052:gst_bin_handle_message_func:<my_pipeline> posting message upward
0:00:00.494829500 8744 0x3d0a0600 DEBUG GST_BUS gstbus.c:318:gst_bus_post:<bus1> [msg 0x3d231810] posting on bus stream-status message: 0x3d231810, time 99:99:99.999999999, seq-num 21, element 'src', GstMessageStreamStatus, type=(GstStreamStatusType)GST_STREAM_STATUS_TYPE_CREATE, owner=(GstElement)"\(GstAppSrc\)\ my_appsrc", object=(GstTask)"\(GstTask\)\ task0";
0:00:00.494928125 8744 0x3d0a0600 DEBUG GST_BUS gstbus.c:357:gst_bus_post:<bus1> [msg 0x3d231810] pushing on async queue
0:00:00.494955875 8744 0x3d0a0600 DEBUG GST_BUS gstbus.c:360:gst_bus_post:<bus1> [msg 0x3d231810] pushed on async queue
0:00:00.494982750 8744 0x3d0a0600 DEBUG GST_BUS gstbus.c:353:gst_bus_post:<bus0> [msg 0x3d231810] dropped
0:00:00.495010500 8744 0x3d0a0600 DEBUG task gsttask.c:688:gst_task_set_state:<task0> Changing task 0x3d20c4d0 to state 0
0:00:00.495458250 8744 0x3d0a0600 DEBUG basesrc gstbasesrc.c:3618:gst_base_src_start_wait:<my_appsrc> got ok
0:00:00.495492625 8744 0x3d0a0600 DEBUG GST_PADS gstpad.c:1234:activate_mode_internal:<my_appsrc:src> activated in push mode
0:00:00.495506125 8744 0x3d233140 DEBUG task gsttask.c:287:gst_task_func: Entering task 0x3d20c4d0, thread 0x3d233140
0:00:00.495527750 8744 0x3d0a0600 DEBUG GST_ELEMENT_PADS gstelement.c:3116:gst_element_pads_activate:<my_appsrc> pad activation successful
0:00:00.495570375 8744 0x3d233140 DEBUG GST_PADS gstpad.c:6007:do_stream_status:<my_appsrc:src> doing stream-status 1
0:00:00.495582750 8744 0x3d0a0600 DEBUG GST_STATES gstelement.c:2988:gst_element_change_state:<my_appsrc> element changed state SUCCESS
0:00:00.495626750 8744 0x3d0a0600 INFO GST_STATES gstelement.c:2676:gst_element_continue_state:<my_appsrc> completed state change to PAUSED
0:00:00.495639250 8744 0x3d233140 LOG GST_MESSAGE gstmessage.c:301:gst_message_new_custom: source src: creating new message 0x3d231990 stream-status
0:00:00.495653500 8744 0x3d0a0600 INFO GST_STATES gstelement.c:2579:_priv_gst_element_state_changed:<my_appsrc> notifying about state-changed READY to PAUSED (VOID_PENDING pending)
0:00:00.495677750 8744 0x3d233140 DEBUG GST_PADS gstpad.c:6036:do_stream_status:<my_appsrc:src> posting stream-status 1
0:00:00.495687125 8744 0x3d0a0600 LOG GST_MESSAGE gstmessage.c:301:gst_message_new_custom: source my_appsrc: creating new message 0x3d231890 state-changed
0:00:00.495721250 8744 0x3d0a0600 DEBUG GST_BUS gstbus.c:318:gst_bus_post:<bus0> [msg 0x3d231890] posting on bus state-changed message: 0x3d231890, time 99:99:99.999999999, seq-num 23, element 'my_appsrc', GstMessageStateChanged, old-state=(GstState)GST_STATE_READY, new-state=(GstState)GST_STATE_PAUSED, pending-state=(GstState)GST_STATE_VOID_PENDING;
0:00:00.495708125 8744 0x3d233140 DEBUG GST_BUS gstbus.c:318:gst_bus_post:<bus0> [msg 0x3d231990] posting on bus stream-status message: 0x3d231990, time 99:99:99.999999999, seq-num 22, element 'src', GstMessageStreamStatus, type=(GstStreamStatusType)GST_STREAM_STATUS_TYPE_ENTER, owner=(GstElement)"\(GstAppSrc\)\ my_appsrc", object=(GstTask)"\(GstTask\)\ my_appsrc:src";
0:00:00.495789875 8744 0x3d0a0600 DEBUG bin gstbin.c:3715:gst_bin_handle_message_func:<my_pipeline> [msg 0x3d231890] handling child my_appsrc message of type state-changed
0:00:00.495825000 8744 0x3d233140 DEBUG bin gstbin.c:3715:gst_bin_handle_message_func:<my_pipeline> [msg 0x3d231990] handling child src message of type stream-status
0:00:00.495841125 8744 0x3d0a0600 DEBUG bin gstbin.c:4052:gst_bin_handle_message_func:<my_pipeline> posting message upward
0:00:00.495865000 8744 0x3d233140 DEBUG bin gstbin.c:4052:gst_bin_handle_message_func:<my_pipeline> posting message upward
0:00:00.495892250 8744 0x3d0a0600 DEBUG GST_BUS gstbus.c:318:gst_bus_post:<bus1> [msg 0x3d231890] posting on bus state-changed message: 0x3d231890, time 99:99:99.999999999, seq-num 23, element 'my_appsrc', GstMessageStateChanged, old-state=(GstState)GST_STATE_READY, new-state=(GstState)GST_STATE_PAUSED, pending-state=(GstState)GST_STATE_VOID_PENDING;
0:00:00.495907875 8744 0x3d233140 DEBUG GST_BUS gstbus.c:318:gst_bus_post:<bus1> [msg 0x3d231990] posting on bus stream-status message: 0x3d231990, time 99:99:99.999999999, seq-num 22, element 'src', GstMessageStreamStatus, type=(GstStreamStatusType)GST_STREAM_STATUS_TYPE_ENTER, owner=(GstElement)"\(GstAppSrc\)\ my_appsrc", object=(GstTask)"\(GstTask\)\ my_appsrc:src";
0:00:00.495986375 8744 0x3d0a0600 DEBUG GST_BUS gstbus.c:357:gst_bus_post:<bus1> [msg 0x3d231890] pushing on async queue
0:00:00.496002250 8744 0x3d233140 DEBUG GST_BUS gstbus.c:357:gst_bus_post:<bus1> [msg 0x3d231990] pushing on async queue
0:00:00.496014750 8744 0x3d0a0600 DEBUG GST_BUS gstbus.c:360:gst_bus_post:<bus1> [msg 0x3d231890] pushed on async queue
0:00:00.496030125 8744 0x3d233140 DEBUG GST_BUS gstbus.c:360:gst_bus_post:<bus1> [msg 0x3d231990] pushed on async queue
0:00:00.496041625 8744 0x3d0a0600 DEBUG GST_BUS gstbus.c:353:gst_bus_post:<bus0> [msg 0x3d231890] dropped
0:00:00.496057000 8744 0x3d233140 DEBUG GST_BUS gstbus.c:353:gst_bus_post:<bus0> [msg 0x3d231990] dropped
0:00:00.496068125 8744 0x3d0a0600 LOG GST_STATES gstelement.c:3004:gst_element_change_state:<my_appsrc> exit state change 1
0:00:00.496094000 8744 0x3d0a0600 DEBUG GST_STATES gstelement.c:2911:gst_element_set_state_func:<my_appsrc> returned SUCCESS
0:00:00.496100750 8744 0x3d233140 DEBUG task gsttask.c:249:gst_task_configure_name:<my_appsrc:src> Setting thread name to 'my_appsrc:src'
0:00:00.496128250 8744 0x3d0a0600 INFO GST_STATES gstbin.c:2952:gst_bin_change_state_func:<my_pipeline> child 'my_appsrc' changed state to 3(PAUSED) successfully
0:00:00.496164125 8744 0x3d0a0600 DEBUG bin gstbin.c:2359:gst_bin_sort_iterator_next:<my_pipeline> queue empty, elements exhausted
0:00:00.496159250 8744 0x3d233140 INFO GST_ELEMENT_PADS gstelement.c:917:gst_element_get_static_pad: no such pad 'sink' in element "my_appsrc"
0:00:00.496195125 8744 0x3d0a0600 DEBUG GST_STATES gstbin.c:3011:gst_bin_change_state_func:<my_pipeline> iterator done
0:00:00.496224625 8744 0x3d0a0600 LOG GST_STATES gstelement.c:3154:gst_element_change_state_func:<my_pipeline> default handler tries setting state from READY to PAUSED (0013)
0:00:00.496238875 8744 0x3d233140 DEBUG query gstquery.c:675:gst_query_new_custom: creating new query 0x3d233680 uri
0:00:00.496255875 8744 0x3d0a0600 DEBUG GST_ELEMENT_PADS gstelement.c:3097:gst_element_pads_activate:<my_pipeline> activate pads
0:00:00.496266125 8744 0x3d233140 DEBUG GST_ELEMENT_PADS gstelement.c:1962:gst_element_query: send query on element my_appsrc
0:00:00.496290000 8744 0x3d233140 DEBUG GST_ELEMENT_PADS gstelement.c:1746:gst_element_get_random_pad: getting a random pad
0:00:00.496287625 8744 0x3d0a0600 DEBUG GST_ELEMENT_PADS gstelement.c:3116:gst_element_pads_activate:<my_pipeline> pad activation successful
0:00:00.496316750 8744 0x3d233140 DEBUG GST_ELEMENT_PADS gstelement.c:1765:gst_element_get_random_pad: checking pad my_appsrc:src
0:00:00.496348125 8744 0x3d233140 DEBUG GST_ELEMENT_PADS gstelement.c:1777:gst_element_get_random_pad: found pad my_appsrc:src
0:00:00.496365250 8744 0x3d0a0600 DEBUG GST_STATES gstbin.c:3029:gst_bin_change_state_func:<my_pipeline> we have ASYNC elements SUCCESS -> ASYNC
0:00:00.496380750 8744 0x3d233140 DEBUG GST_PADS gstpad.c:4006:gst_pad_query:<my_appsrc:src> doing query 0x3d233680 (uri)
0:00:00.496395875 8744 0x3d0a0600 DEBUG bin gstbin.c:2401:gst_bin_sort_iterator_free:<my_pipeline> free
0:00:00.496430500 8744 0x3d0a0600 DEBUG bin gstbin.c:3057:gst_bin_change_state_func:<my_pipeline> check async elements
0:00:00.496449000 8744 0x3d233140 DEBUG basesrc gstbasesrc.c:1310:gst_base_src_default_query:<my_appsrc> query uri returns 0
0:00:00.496473750 8744 0x3d0a0600 LOG bin gstbin.c:863:message_check: looking at message 0x3d216dc0: 1
0:00:00.496496000 8744 0x3d233140 DEBUG GST_PADS gstpad.c:4029:gst_pad_query:<my_appsrc:src> sent query 0x3d233680 (uri), result 0
0:00:00.496504375 8744 0x3d0a0600 DEBUG bin gstbin.c:883:find_message:<my_pipeline> we found a message 0x3d216dc0 from my_sink matching types 00100000
0:00:00.496548750 8744 0x3d233140 DEBUG GST_PADS gstpad.c:4074:gst_pad_query:<my_appsrc:src> query failed
0:00:00.496543250 8744 0x3d0a0600 DEBUG GST_STATES gstbin.c:3080:gst_bin_change_state_func:<my_pipeline> done changing bin's state from READY to PAUSED, now in READY, ret ASYNC
0:00:00.496581125 8744 0x3d233140 FIXME default gstutils.c:3963:gst_pad_create_stream_id_internal:<my_appsrc:src> Creating random stream-id, consider implementing a deterministic way of creating a stream-id
0:00:00.496621500 8744 0x3d0a0600 DEBUG GST_STATES gstelement.c:2970:gst_element_change_state:<my_pipeline> element will change state ASYNC
0:00:00.496647000 8744 0x3d0a0600 LOG GST_STATES gstelement.c:3010:gst_element_change_state:<my_pipeline> exit async state change 2
0:00:00.496673875 8744 0x3d0a0600 LOG GST_STATES gstelement.c:3004:gst_element_change_state:<my_pipeline> exit state change 2
0:00:00.496700250 8744 0x3d0a0600 DEBUG GST_STATES gstelement.c:2911:gst_element_set_state_func:<my_pipeline> returned ASYNC
0:00:00.496770250 8744 0x3d233140 DEBUG basesrc gstbasesrc.c:897:gst_base_src_send_stream_start:<my_appsrc> Pushing STREAM_START
0:00:00.496815750 8744 0x3d233140 DEBUG GST_EVENT gstevent.c:306:gst_event_new_custom: creating new event 0x3d1e21c0 stream-start 10254
0:00:00.496868500 8744 0x3d233140 LOG GST_PADS gstpad.c:5116:store_sticky_event:<my_appsrc:src> Removing pending EOS and StreamGroupDone events
0:00:00.496902000 8744 0x3d233140 LOG GST_PADS gstpad.c:5176:store_sticky_event:<my_appsrc:src> stored sticky event stream-start
0:00:00.496931875 8744 0x3d233140 DEBUG GST_PADS gstpad.c:3937:check_sticky:<my_appsrc:src> pushing all sticky events
0:00:00.496960500 8744 0x3d233140 LOG GST_PADS gstpad.c:5351:gst_pad_push_event_unchecked:<my_appsrc:src> sending event 0x3d1e21c0 (stream-start) to peerpad <my_h264parse:sink>
0:00:00.497010500 8744 0xffffa4002580 LOG GST_BUS gstbus.c:522:gst_bus_timed_pop_filtered:<bus1> have 11 messages
0:00:00.496999375 8744 0x3d233140 DEBUG GST_EVENT gstpad.c:5638:gst_pad_send_event_unchecked:<my_h264parse:sink> have event type stream-start event: 0x3d1e21c0, time 99:99:99.999999999, seq-num 24, GstEventStreamStart, stream-id=(string)76c2509b1a6ed8ef6d5891dddfeb3642, flags=(GstStreamFlags)GST_STREAM_FLAG_NONE, group-id=(uint)1;
0:00:00.497178250 8744 0x3d233140 LOG GST_PADS gstpad.c:5646:gst_pad_send_event_unchecked:<my_h264parse:sink> Removing pending EOS events
0:00:00.497167500 8744 0xffffa4002580 DEBUG GST_BUS gstbus.c:546:gst_bus_timed_pop_filtered:<bus1> got message 0x3d216a40, need-context from my_sink, type mask is 4294967295
0:00:00.497229625 8744 0x3d233140 DEBUG baseparse gstbaseparse.c:1142:gst_base_parse_sink_event_default:<my_h264parse> handling event 10254, stream-start
0:00:00.497306750 8744 0x3d233140 LOG GST_PADS gstpad.c:5116:store_sticky_event:<my_h264parse:src> Removing pending EOS and StreamGroupDone events
0:00:00.497335750 8744 0x3d233140 LOG GST_PADS gstpad.c:5176:store_sticky_event:<my_h264parse:src> stored sticky event stream-start
0:00:00.497281250 8744 0xffffa4002580 DEBUG GST_BUS gstbus.c:839:gst_bus_source_dispatch:<bus1> source 0x3d21dc00 calling dispatch with need-context message: 0x3d216a40, time 99:99:99.999999999, seq-num 10, element 'my_sink', GstMessageNeedContext, context-type=(string)GstWaylandDisplayHandleContextType;
0:00:00.497364125 8744 0x3d233140 DEBUG GST_PADS gstpad.c:3937:check_sticky:<my_h264parse:src> pushing all sticky events
0:00:00.497437750 8744 0xffffa4002580 LOG GST_MESSAGE gstmessage.c:208:_gst_message_free: finalize message 0x3d216a40, need-context from my_sink
0:00:00.497469500 8744 0x3d233140 LOG GST_PADS gstpad.c:5351:gst_pad_push_event_unchecked:<my_h264parse:src> sending event 0x3d1e21c0 (stream-start) to peerpad <my_vdec:sink>
0:00:00.497503750 8744 0xffffa4002580 DEBUG GST_BUS gstbus.c:844:gst_bus_source_dispatch:<bus1> source 0x3d21dc00 handler returns 1
0:00:00.497516375 8744 0x3d233140 DEBUG GST_EVENT gstpad.c:5638:gst_pad_send_event_unchecked:<my_vdec:sink> have event type stream-start event: 0x3d1e21c0, time 99:99:99.999999999, seq-num 24, GstEventStreamStart, stream-id=(string)76c2509b1a6ed8ef6d5891dddfeb3642, flags=(GstStreamFlags)GST_STREAM_FLAG_NONE, group-id=(uint)1;
0:00:00.497600000 8744 0x3d233140 LOG GST_PADS gstpad.c:5646:gst_pad_send_event_unchecked:<my_vdec:sink> Removing pending EOS events
0:00:00.497595625 8744 0xffffa4002580 LOG GST_BUS gstbus.c:522:gst_bus_timed_pop_filtered:<bus1> have 10 messages
0:00:00.497656500 8744 0x3d233140 DEBUG videodecoder gstvideodecoder.c:1393:gst_video_decoder_sink_event:<my_vdec> received event 10254, stream-start
0:00:00.497714625 8744 0xffffa4002580 DEBUG GST_BUS gstbus.c:546:gst_bus_timed_pop_filtered:<bus1> got message 0x3d216b40, state-changed from my_sink, type mask is 4294967295
0:00:00.497736250 8744 0x3d233140 DEBUG v4l2videodec gstv4l2videodec.c:432:gst_v4l2_video_dec_drain:<my_vdec> Draining...
0:00:00.497802875 8744 0x3d233140 DEBUG GST_PADS gstpad.c:6194:gst_pad_get_task_state:<my_vdec:src> pad has no task
0:00:00.497828250 8744 0x3d233140 DEBUG v4l2videodec gstv4l2videodec.c:296:gst_v4l2_video_dec_flush:<my_vdec> Flushed
0:00:00.497858875 8744 0x3d233140 DEBUG GST_PADS gstpad.c:6194:gst_pad_get_task_state:<my_vdec:src> pad has no task
0:00:00.497779000 8744 0xffffa4002580 DEBUG GST_BUS gstbus.c:839:gst_bus_source_dispatch:<bus1> source 0x3d21dc00 calling dispatch with state-changed message: 0x3d216b40, time 99:99:99.999999999, seq-num 11, element 'my_sink', GstMessageStateChanged, old-state=(GstState)GST_STATE_NULL, new-state=(GstState)GST_STATE_READY, pending-state=(GstState)GST_STATE_VOID_PENDING;
(bus_call, 87)my_sink state change, old state: NULL, new state: READY
0:00:00.497928000 8744 0x3d233140 LOG v4l2 gstv4l2object.c:4188:gst_v4l2_object_unlock_stop:<my_vdec:sink> stop flushing
0:00:00.497968875 8744 0xffffa4002580 LOG GST_MESSAGE gstmessage.c:208:_gst_message_free: finalize message 0x3d216b40, state-changed from my_sink
0:00:00.497992875 8744 0x3d233140 LOG GST_POLL gstpoll.c:1673:gst_poll_set_flushing: 0x3d21fde0: flushing: 0
0:00:00.498037125 8744 0xffffa4002580 DEBUG GST_BUS gstbus.c:844:gst_bus_source_dispatch:<bus1> source 0x3d21dc00 handler returns 1
0:00:00.498052375 8744 0x3d233140 LOG v4l2 gstv4l2object.c:4188:gst_v4l2_object_unlock_stop:<my_vdec:src> stop flushing
0:00:00.498110375 8744 0x3d233140 LOG GST_POLL gstpoll.c:1673:gst_poll_set_flushing: 0x3d21fed0: flushing: 0
0:00:00.498126875 8744 0xffffa4002580 LOG GST_BUS gstbus.c:522:gst_bus_timed_pop_filtered:<bus1> have 9 messages
0:00:00.498139875 8744 0x3d233140 DEBUG videodecoder gstvideodecoder.c:1101:gst_video_decoder_sink_event_default:<my_vdec> received STREAM_START. Clearing taglist
0:00:00.498186125 8744 0xffffa4002580 DEBUG GST_BUS gstbus.c:546:gst_bus_timed_pop_filtered:<bus1> got message 0x3d216bc0, state-changed from my_vdec, type mask is 4294967295
0:00:00.498206250 8744 0x3d233140 DEBUG videodecoder gstvideodecoder.c:857:gst_video_decoder_push_event:<my_vdec> pushing event stream-start
0:00:00.498305750 8744 0x3d233140 LOG GST_PADS gstpad.c:5116:store_sticky_event:<my_vdec:src> Removing pending EOS and StreamGroupDone events
0:00:00.498334625 8744 0x3d233140 LOG GST_PADS gstpad.c:5176:store_sticky_event:<my_vdec:src> stored sticky event stream-start
0:00:00.498285500 8744 0xffffa4002580 DEBUG GST_BUS gstbus.c:839:gst_bus_source_dispatch:<bus1> source 0x3d21dc00 calling dispatch with state-changed message: 0x3d216bc0, time 99:99:99.999999999, seq-num 12, element 'my_vdec', GstMessageStateChanged, old-state=(GstState)GST_STATE_NULL, new-state=(GstState)GST_STATE_READY, pending-state=(GstState)GST_STATE_VOID_PENDING;
(bus_call, 87)my_vdec state change, old state: NULL, new state: READY
0:00:00.498402125 8744 0x3d233140 DEBUG GST_PADS gstpad.c:3937:check_sticky:<my_vdec:src> pushing all sticky events
0:00:00.498464750 8744 0xffffa4002580 LOG GST_MESSAGE gstmessage.c:208:_gst_message_free: finalize message 0x3d216bc0, state-changed from my_vdec
0:00:00.498495750 8744 0x3d233140 LOG GST_PADS gstpad.c:5351:gst_pad_push_event_unchecked:<my_vdec:src> sending event 0x3d1e21c0 (stream-start) to peerpad <my_sink:sink>
0:00:00.498524000 8744 0xffffa4002580 DEBUG GST_BUS gstbus.c:844:gst_bus_source_dispatch:<bus1> source 0x3d21dc00 handler returns 1
0:00:00.498543750 8744 0x3d233140 DEBUG GST_EVENT gstpad.c:5638:gst_pad_send_event_unchecked:<my_sink:sink> have event type stream-start event: 0x3d1e21c0, time 99:99:99.999999999, seq-num 24, GstEventStreamStart, stream-id=(string)76c2509b1a6ed8ef6d5891dddfeb3642, flags=(GstStreamFlags)GST_STREAM_FLAG_NONE, group-id=(uint)1;
0:00:00.498600750 8744 0xffffa4002580 LOG GST_BUS gstbus.c:522:gst_bus_timed_pop_filtered:<bus1> have 8 messages
0:00:00.498613750 8744 0x3d233140 LOG GST_PADS gstpad.c:5646:gst_pad_send_event_unchecked:<my_sink:sink> Removing pending EOS events
0:00:00.498657000 8744 0xffffa4002580 DEBUG GST_BUS gstbus.c:546:gst_bus_timed_pop_filtered:<bus1> got message 0x3d216c40, state-changed from my_h264parse, type mask is 4294967295
0:00:00.498679000 8744 0x3d233140 DEBUG basesink gstbasesink.c:3252:gst_base_sink_event:<my_sink> received event 0x3d1e21c0 stream-start event: 0x3d1e21c0, time 99:99:99.999999999, seq-num 24, GstEventStreamStart, stream-id=(string)76c2509b1a6ed8ef6d5891dddfeb3642, flags=(GstStreamFlags)GST_STREAM_FLAG_NONE, group-id=(uint)1;
0:00:00.498758375 8744 0x3d233140 DEBUG basesink gstbasesink.c:3138:gst_base_sink_default_event:<my_sink> Now posting STREAM_START (seqnum:24)
0:00:00.498711375 8744 0xffffa4002580 DEBUG GST_BUS gstbus.c:839:gst_bus_source_dispatch:<bus1> source 0x3d21dc00 calling dispatch with state-changed message: 0x3d216c40, time 99:99:99.999999999, seq-num 13, element 'my_h264parse', GstMessageStateChanged, old-state=(GstState)GST_STATE_NULL, new-state=(GstState)GST_STATE_READY, pending-state=(GstState)GST_STATE_VOID_PENDING;
(bus_call, 87)my_h264parse state change, old state: NULL, new state: READY
0:00:00.498788500 8744 0x3d233140 LOG GST_MESSAGE gstmessage.c:301:gst_message_new_custom: source my_sink: creating new message 0x3d231a10 stream-start
0:00:00.498857125 8744 0xffffa4002580 LOG GST_MESSAGE gstmessage.c:208:_gst_message_free: finalize message 0x3d216c40, state-changed from my_h264parse
0:00:00.498915625 8744 0xffffa4002580 DEBUG GST_BUS gstbus.c:844:gst_bus_source_dispatch:<bus1> source 0x3d21dc00 handler returns 1
0:00:00.498901875 8744 0x3d233140 DEBUG GST_BUS gstbus.c:318:gst_bus_post:<bus0> [msg 0x3d231a10] posting on bus stream-start message: 0x3d231a10, time 99:99:99.999999999, seq-num 24, element 'my_sink', GstMessageStreamStart, group-id=(uint)1;
0:00:00.498992875 8744 0xffffa4002580 LOG GST_BUS gstbus.c:522:gst_bus_timed_pop_filtered:<bus1> have 7 messages
0:00:00.499011875 8744 0x3d233140 DEBUG bin gstbin.c:3715:gst_bin_handle_message_func:<my_pipeline> [msg 0x3d231a10] handling child my_sink message of type stream-start
0:00:00.499040750 8744 0xffffa4002580 DEBUG GST_BUS gstbus.c:546:gst_bus_timed_pop_filtered:<bus1> got message 0x3d216cc0, state-changed from my_appsrc, type mask is 4294967295
0:00:00.499054125 8744 0x3d233140 LOG bin gstbin.c:863:message_check: looking at message 0x3d216dc0: 0
0:00:00.499123625 8744 0x3d233140 DEBUG bin gstbin.c:885:find_message:<my_pipeline> no message found matching types 10000000
0:00:00.499157500 8744 0x3d233140 DEBUG bin gstbin.c:892:find_message:<my_pipeline> stream-start
0:00:00.499200250 8744 0x3d233140 DEBUG bin gstbin.c:932:bin_replace_message:<my_pipeline> got new message 0x3d231a10, stream-start from my_sink
0:00:00.499102125 8744 0xffffa4002580 DEBUG GST_BUS gstbus.c:839:gst_bus_source_dispatch:<bus1> source 0x3d21dc00 calling dispatch with state-changed message: 0x3d216cc0, time 99:99:99.999999999, seq-num 14, element 'my_appsrc', GstMessageStateChanged, old-state=(GstState)GST_STATE_NULL, new-state=(GstState)GST_STATE_READY, pending-state=(GstState)GST_STATE_VOID_PENDING;
(bus_call, 87)my_appsrc state change, old state: NULL, new state: READY
0:00:00.499239250 8744 0x3d233140 DEBUG GST_STATES gstbin.c:1969:bin_element_is_sink:<my_pipeline> child my_sink is sink
0:00:00.499313500 8744 0xffffa4002580 LOG GST_MESSAGE gstmessage.c:208:_gst_message_free: finalize message 0x3d216cc0, state-changed from my_appsrc
0:00:00.499336375 8744 0x3d233140 LOG bin gstbin.c:863:message_check: looking at message 0x3d231a10: 1
0:00:00.499381000 8744 0xffffa4002580 DEBUG GST_BUS gstbus.c:844:gst_bus_source_dispatch:<bus1> source 0x3d21dc00 handler returns 1
0:00:00.499396500 8744 0x3d233140 DEBUG bin gstbin.c:883:find_message:<my_pipeline> we found a message 0x3d231a10 from my_sink matching types 10000000
0:00:00.499452500 8744 0x3d233140 DEBUG bin gstbin.c:1039:is_stream_start: sink 'my_sink' posted STREAM_START
0:00:00.499463625 8744 0xffffa4002580 LOG GST_BUS gstbus.c:522:gst_bus_timed_pop_filtered:<bus1> have 6 messages
0:00:00.499487250 8744 0x3d233140 DEBUG GST_STATES gstbin.c:1969:bin_element_is_sink:<my_pipeline> child my_vdec is not sink
0:00:00.499531875 8744 0x3d233140 DEBUG GST_STATES gstbin.c:1969:bin_element_is_sink:<my_pipeline> child my_h264parse is not sink
0:00:00.499560500 8744 0x3d233140 DEBUG GST_STATES gstbin.c:1969:bin_element_is_sink:<my_pipeline> child my_appsrc is not sink
0:00:00.499585125 8744 0x3d233140 LOG bin gstbin.c:863:message_check: looking at message 0x3d231a10: 1
0:00:00.499589125 8744 0xffffa4002580 DEBUG GST_BUS gstbus.c:546:gst_bus_timed_pop_filtered:<bus1> got message 0x3d216d40, state-changed from my_pipeline, type mask is 4294967295
0:00:00.499614000 8744 0x3d233140 DEBUG bin gstbin.c:961:bin_remove_messages:<my_sink> deleting message 0x3d231a10 of type stream-start (types 0x10000000)
0:00:00.499682875 8744 0x3d233140 LOG GST_MESSAGE gstmessage.c:208:_gst_message_free: finalize message 0x3d231a10, stream-start from my_sink
0:00:00.499713125 8744 0x3d233140 LOG bin gstbin.c:863:message_check: looking at message 0x3d216dc0: 0
0:00:00.499666875 8744 0xffffa4002580 DEBUG GST_BUS gstbus.c:839:gst_bus_source_dispatch:<bus1> source 0x3d21dc00 calling dispatch with state-changed message: 0x3d216d40, time 99:99:99.999999999, seq-num 15, element 'my_pipeline', GstMessageStateChanged, old-state=(GstState)GST_STATE_NULL, new-state=(GstState)GST_STATE_READY, pending-state=(GstState)GST_STATE_PLAYING;
(bus_call, 87)my_pipeline state change, old state: NULL, new state: READY
0:00:00.499750875 8744 0x3d233140 DEBUG bin gstbin.c:967:bin_remove_messages:<my_sink> not deleting message 0x3d216dc0 of type 0x00100000
0:00:00.499856625 8744 0xffffa4002580 LOG GST_MESSAGE gstmessage.c:208:_gst_message_free: finalize message 0x3d216d40, state-changed from my_pipeline
0:00:00.499882750 8744 0x3d233140 LOG GST_MESSAGE gstmessage.c:301:gst_message_new_custom: source my_pipeline: creating new message 0x3d231a90 stream-start
0:00:00.499932625 8744 0x3d233140 DEBUG bin gstbin.c:3584:bin_do_stream_start:<my_pipeline> all sinks posted STREAM_START, posting seqnum #24
0:00:00.499960250 8744 0xffffa4002580 DEBUG GST_BUS gstbus.c:844:gst_bus_source_dispatch:<bus1> source 0x3d21dc00 handler returns 1
0:00:00.499963500 8744 0x3d233140 DEBUG GST_BUS gstbus.c:318:gst_bus_post:<bus1> [msg 0x3d231a90] posting on bus stream-start message: 0x3d231a90, time 99:99:99.999999999, seq-num 24, element 'my_pipeline', GstMessageStreamStart, group-id=(uint)1;
0:00:00.500031875 8744 0x3d233140 DEBUG GST_BUS gstbus.c:357:gst_bus_post:<bus1> [msg 0x3d231a90] pushing on async queue
0:00:00.500042250 8744 0xffffa4002580 LOG GST_BUS gstbus.c:522:gst_bus_timed_pop_filtered:<bus1> have 5 messages
0:00:00.500061000 8744 0x3d233140 DEBUG GST_BUS gstbus.c:360:gst_bus_post:<bus1> [msg 0x3d231a90] pushed on async queue
0:00:00.500098750 8744 0xffffa4002580 DEBUG GST_BUS gstbus.c:546:gst_bus_timed_pop_filtered:<bus1> got message 0x3d216e40, state-changed from my_vdec, type mask is 4294967295
0:00:00.500118875 8744 0x3d233140 DEBUG GST_BUS gstbus.c:353:gst_bus_post:<bus0> [msg 0x3d231a10] dropped
0:00:00.500186375 8744 0x3d233140 DEBUG GST_PADS gstpad.c:5712:gst_pad_send_event_unchecked:<my_sink:sink> sent event, ret ok
0:00:00.500226250 8744 0x3d233140 LOG GST_PADS gstpad.c:5116:store_sticky_event:<my_sink:sink> Removing pending EOS and StreamGroupDone events
0:00:00.500163000 8744 0xffffa4002580 DEBUG GST_BUS gstbus.c:839:gst_bus_source_dispatch:<bus1> source 0x3d21dc00 calling dispatch with state-changed message: 0x3d216e40, time 99:99:99.999999999, seq-num 17, element 'my_vdec', GstMessageStateChanged, old-state=(GstState)GST_STATE_READY, new-state=(GstState)GST_STATE_PAUSED, pending-state=(GstState)GST_STATE_VOID_PENDING;
(bus_call, 87)my_vdec state change, old state: READY, new state: PAUSED
0:00:00.500262375 8744 0x3d233140 LOG GST_PADS gstpad.c:5176:store_sticky_event:<my_sink:sink> stored sticky event stream-start
0:00:00.500336750 8744 0xffffa4002580 LOG GST_MESSAGE gstmessage.c:208:_gst_message_free: finalize message 0x3d216e40, state-changed from my_vdec
0:00:00.500367875 8744 0x3d233140 LOG GST_PADS gstpad.c:5359:gst_pad_push_event_unchecked:<my_vdec:src> sent event 0x3d1e21c0 (stream-start) to peerpad <my_sink:sink>, ret ok
0:00:00.500396125 8744 0xffffa4002580 DEBUG GST_BUS gstbus.c:844:gst_bus_source_dispatch:<bus1> source 0x3d21dc00 handler returns 1
0:00:00.500416125 8744 0x3d233140 DEBUG GST_PADS gstpad.c:3889:push_sticky:<my_vdec:src> event stream-start marked received
0:00:00.500475000 8744 0x3d233140 DEBUG GST_PADS gstpad.c:5712:gst_pad_send_event_unchecked:<my_vdec:sink> sent event, ret ok
0:00:00.500515250 8744 0x3d233140 LOG GST_PADS gstpad.c:5116:store_sticky_event:<my_vdec:sink> Removing pending EOS and StreamGroupDone events
0:00:00.500548250 8744 0x3d233140 LOG GST_PADS gstpad.c:5176:store_sticky_event:<my_vdec:sink> stored sticky event stream-start
0:00:00.500476625 8744 0xffffa4002580 LOG GST_BUS gstbus.c:522:gst_bus_timed_pop_filtered:<bus1> have 5 messages
0:00:00.500603625 8744 0x3d233140 LOG GST_PADS gstpad.c:5359:gst_pad_push_event_unchecked:<my_h264parse:src> sent event 0x3d1e21c0 (stream-start) to peerpad <my_vdec:sink>, ret ok
0:00:00.500694500 8744 0x3d233140 DEBUG GST_PADS gstpad.c:3889:push_sticky:<my_h264parse:src> event stream-start marked received
0:00:00.500732250 8744 0x3d233140 DEBUG baseparse gstbaseparse.c:1475:gst_base_parse_sink_event_default:<my_h264parse> event handled
0:00:00.500765000 8744 0x3d233140 DEBUG GST_PADS gstpad.c:5712:gst_pad_send_event_unchecked:<my_h264parse:sink> sent event, ret ok
0:00:00.500679750 8744 0xffffa4002580 DEBUG GST_BUS gstbus.c:546:gst_bus_timed_pop_filtered:<bus1> got message 0x3d216f40, state-changed from my_h264parse, type mask is 4294967295
0:00:00.500793000 8744 0x3d233140 LOG GST_PADS gstpad.c:5116:store_sticky_event:<my_h264parse:sink> Removing pending EOS and StreamGroupDone events
0:00:00.500861625 8744 0x3d233140 LOG GST_PADS gstpad.c:5176:store_sticky_event:<my_h264parse:sink> stored sticky event stream-start
0:00:00.500893250 8744 0x3d233140 LOG GST_PADS gstpad.c:5359:gst_pad_push_event_unchecked:<my_appsrc:src> sent event 0x3d1e21c0 (stream-start) to peerpad <my_h264parse:sink>, ret ok
0:00:00.500845375 8744 0xffffa4002580 DEBUG GST_BUS gstbus.c:839:gst_bus_source_dispatch:<bus1> source 0x3d21dc00 calling dispatch with state-changed message: 0x3d216f40, time 99:99:99.999999999, seq-num 18, element 'my_h264parse', GstMessageStateChanged, old-state=(GstState)GST_STATE_READY, new-state=(GstState)GST_STATE_PAUSED, pending-state=(GstState)GST_STATE_VOID_PENDING;
(bus_call, 87)my_h264parse state change, old state: READY, new state: PAUSED
0:00:00.500941875 8744 0x3d233140 DEBUG GST_PADS gstpad.c:3889:push_sticky:<my_appsrc:src> event stream-start marked received
0:00:00.500999500 8744 0xffffa4002580 LOG GST_MESSAGE gstmessage.c:208:_gst_message_free: finalize message 0x3d216f40, state-changed from my_h264parse
0:00:00.501040125 8744 0x3d233140 DEBUG GST_PADS gstpad.c:1677:gst_pad_check_reconfigure:<my_appsrc:src> remove RECONFIGURE flag
0:00:00.501127000 8744 0xffffa4002580 DEBUG GST_BUS gstbus.c:844:gst_bus_source_dispatch:<bus1> source 0x3d21dc00 handler returns 1
0:00:00.501143500 8744 0x3d233140 DEBUG basesrc gstbasesrc.c:3367:gst_base_src_negotiate:<my_appsrc> starting negotiation
0:00:00.501218375 8744 0x3d233140 DEBUG GST_CAPS gstutils.c:3040:gst_pad_query_caps:<my_appsrc:src> get pad caps with filter (NULL)
0:00:00.501220500 8744 0xffffa4002580 LOG GST_BUS gstbus.c:522:gst_bus_timed_pop_filtered:<bus1> have 4 messages
0:00:00.501259375 8744 0x3d233140 DEBUG query gstquery.c:675:gst_query_new_custom: creating new query 0x3d2336d0 caps
0:00:00.501317375 8744 0xffffa4002580 DEBUG GST_BUS gstbus.c:546:gst_bus_timed_pop_filtered:<bus1> got message 0x3d231810, stream-status from src, type mask is 4294967295
0:00:00.501335250 8744 0x3d233140 DEBUG GST_PADS gstpad.c:4006:gst_pad_query:<my_appsrc:src> doing query 0x3d2336d0 (caps)
0:00:00.501407250 8744 0x3d233140 DEBUG appsrc gstappsrc.c:688:gst_app_src_internal_get_caps:<my_appsrc> caps: (NULL)
0:00:00.501435500 8744 0x3d233140 DEBUG basesrc gstbasesrc.c:1310:gst_base_src_default_query:<my_appsrc> query caps returns 0
0:00:00.501467375 8744 0x3d233140 DEBUG GST_PADS gstpad.c:4029:gst_pad_query:<my_appsrc:src> sent query 0x3d2336d0 (caps), result 0
0:00:00.501383750 8744 0xffffa4002580 DEBUG GST_BUS gstbus.c:839:gst_bus_source_dispatch:<bus1> source 0x3d21dc00 calling dispatch with stream-status message: 0x3d231810, time 99:99:99.999999999, seq-num 21, element 'src', GstMessageStreamStatus, type=(GstStreamStatusType)GST_STREAM_STATUS_TYPE_CREATE, owner=(GstElement)"\(GstAppSrc\)\ my_appsrc", object=(GstTask)"\(GstTask\)\ my_appsrc:src";
0:00:00.501499875 8744 0x3d233140 DEBUG GST_PADS gstpad.c:4074:gst_pad_query:<my_appsrc:src> query failed
0:00:00.501568000 8744 0xffffa4002580 LOG GST_MESSAGE gstmessage.c:208:_gst_message_free: finalize message 0x3d231810, stream-status from src
0:00:00.501599625 8744 0x3d233140 DEBUG basesrc gstbasesrc.c:3297:gst_base_src_default_negotiate:<my_appsrc> caps of src: ANY
0:00:00.501641375 8744 0x3d233140 DEBUG basesrc gstbasesrc.c:3343:gst_base_src_default_negotiate:<my_appsrc> no negotiation needed
0:00:00.501633875 8744 0xffffa4002580 DEBUG GST_BUS gstbus.c:844:gst_bus_source_dispatch:<bus1> source 0x3d21dc00 handler returns 1
0:00:00.501681750 8744 0x3d233140 DEBUG GST_CAPS gstpad.c:2733:gst_pad_get_current_caps:<my_appsrc:src> get current pad caps (NULL)
0:00:00.501752750 8744 0x3d233140 DEBUG query gstquery.c:675:gst_query_new_custom: creating new query 0x3d233770 allocation
0:00:00.501761375 8744 0xffffa4002580 LOG GST_BUS gstbus.c:522:gst_bus_timed_pop_filtered:<bus1> have 3 messages
0:00:00.501824250 8744 0x3d233140 DEBUG GST_PADS gstpad.c:4133:gst_pad_peer_query:<my_appsrc:src> peer query 0x3d233770 (allocation)
0:00:00.501818875 8744 0xffffa4002580 DEBUG GST_BUS gstbus.c:546:gst_bus_timed_pop_filtered:<bus1> got message 0x3d231890, state-changed from my_appsrc, type mask is 4294967295
0:00:00.501870375 8744 0x3d233140 DEBUG GST_PADS gstpad.c:4006:gst_pad_query:<my_h264parse:sink> doing query 0x3d233770 (allocation)
0:00:00.501944250 8744 0x3d233140 DEBUG baseparse gstbaseparse.c:1546:gst_base_parse_sink_query:<my_h264parse> allocation query
0:00:00.501975500 8744 0x3d233140 DEBUG GST_PADS gstpad.c:3438:gst_pad_query_default:<my_h264parse:sink> forwarding 0x3d233770 (allocation) query
0:00:00.501924000 8744 0xffffa4002580 DEBUG GST_BUS gstbus.c:839:gst_bus_source_dispatch:<bus1> source 0x3d21dc00 calling dispatch with state-changed message: 0x3d231890, time 99:99:99.999999999, seq-num 23, element 'my_appsrc', GstMessageStateChanged, old-state=(GstState)GST_STATE_READY, new-state=(GstState)GST_STATE_PAUSED, pending-state=(GstState)GST_STATE_VOID_PENDING;
(bus_call, 87)my_appsrc state change, old state: READY, new state: PAUSED
0:00:00.502025875 8744 0x3d233140 DEBUG GST_PADS gstpad.c:2897:gst_pad_iterate_internal_links_default:<my_h264parse:sink> Making iterator
0:00:00.502097500 8744 0xffffa4002580 LOG GST_MESSAGE gstmessage.c:208:_gst_message_free: finalize message 0x3d231890, state-changed from my_appsrc
0:00:00.502145500 8744 0x3d233140 LOG GST_PADS gstpad.c:3007:gst_pad_forward:<my_h264parse:sink> calling forward function on pad my_h264parse:src
0:00:00.502159000 8744 0xffffa4002580 DEBUG GST_BUS gstbus.c:844:gst_bus_source_dispatch:<bus1> source 0x3d21dc00 handler returns 1
0:00:00.502186500 8744 0x3d233140 LOG GST_PADS gstpad.c:3378:query_forward_func:<my_h264parse:src> query peer 0x3d233770 (allocation) of my_h264parse:src
0:00:00.502226125 8744 0x3d233140 DEBUG GST_PADS gstpad.c:4133:gst_pad_peer_query:<my_h264parse:src> peer query 0x3d233770 (allocation)
0:00:00.502240500 8744 0xffffa4002580 LOG GST_BUS gstbus.c:522:gst_bus_timed_pop_filtered:<bus1> have 2 messages
0:00:00.502256875 8744 0x3d233140 DEBUG GST_PADS gstpad.c:4006:gst_pad_query:<my_vdec:sink> doing query 0x3d233770 (allocation)
0:00:00.502296750 8744 0xffffa4002580 DEBUG GST_BUS gstbus.c:546:gst_bus_timed_pop_filtered:<bus1> got message 0x3d231990, stream-status from src, type mask is 4294967295
0:00:00.502318625 8744 0x3d233140 DEBUG videodecoder gstvideodecoder.c:1884:gst_video_decoder_sink_query:<my_vdec> received query 35846, allocation
0:00:00.502413625 8744 0x3d233140 LOG videodecoder gstvideodecoder.c:1792:gst_video_decoder_sink_query_default:<my_vdec> handling query: allocation query: 0x3d233770, GstQueryAllocation, caps=(GstCaps)"NULL", need-pool=(boolean)true;
0:00:00.502466625 8744 0x3d233140 DEBUG GST_PADS gstpad.c:4029:gst_pad_query:<my_vdec:sink> sent query 0x3d233770 (allocation), result 1
0:00:00.502394125 8744 0xffffa4002580 DEBUG GST_BUS gstbus.c:839:gst_bus_source_dispatch:<bus1> source 0x3d21dc00 calling dispatch with stream-status message: 0x3d231990, time 99:99:99.999999999, seq-num 22, element 'src', GstMessageStreamStatus, type=(GstStreamStatusType)GST_STREAM_STATUS_TYPE_ENTER, owner=(GstElement)"\(GstAppSrc\)\ my_appsrc", object=(GstTask)"\(GstTask\)\ my_appsrc:src";
0:00:00.502501250 8744 0x3d233140 LOG baseparse gstbaseparse.c:1554:gst_base_parse_sink_query:<my_h264parse> allocation query result: 1 allocation query: 0x3d233770, GstQueryAllocation, caps=(GstCaps)"NULL", need-pool=(boolean)true;
0:00:00.502548375 8744 0xffffa4002580 LOG GST_MESSAGE gstmessage.c:208:_gst_message_free: finalize message 0x3d231990, stream-status from src
0:00:00.502614875 8744 0x3d233140 DEBUG GST_PADS gstpad.c:4029:gst_pad_query:<my_h264parse:sink> sent query 0x3d233770 (allocation), result 1
0:00:00.502614500 8744 0xffffa4002580 DEBUG GST_BUS gstbus.c:844:gst_bus_source_dispatch:<bus1> source 0x3d21dc00 handler returns 1
0:00:00.502713625 8744 0x3d233140 WARN structure gststructure.c:1832:priv_gst_structure_append_to_gstring: No value transform to serialize field 'allocator' of type 'GArray'
0:00:00.502736250 8744 0xffffa4002580 LOG GST_BUS gstbus.c:522:gst_bus_timed_pop_filtered:<bus1> have 1 messages
0:00:00.502756000 8744 0x3d233140 WARN structure gststructure.c:1832:priv_gst_structure_append_to_gstring: No value transform to serialize field 'pool' of type 'GArray'
0:00:00.502786750 8744 0xffffa4002580 LOG GST_POLL gstpoll.c:314:release_wakeup: 0x3d154a30: release
0:00:00.502695875 8744 0x3d233140 DEBUG basesrc gstbasesrc.c:3244:gst_base_src_prepare_allocation:<my_appsrc> ALLOCATION (1) params: allocation query: 0x3d233770, GstQueryAllocation, caps=(GstCaps)"NULL", need-pool=(boolean)true, allocator=(GArray)NULL, pool=(GArray)NULL;
0:00:00.502915125 8744 0x3d233140 LOG basesrc gstbasesrc.c:2828:gst_base_src_loop:<my_appsrc> next_ts 0:00:00.000000000 size 4096
0:00:00.502910750 8744 0xffffa4002580 DEBUG GST_BUS gstbus.c:546:gst_bus_timed_pop_filtered:<bus1> got message 0x3d231a90, stream-start from my_pipeline, type mask is 4294967295
0:00:00.502962250 8744 0x3d233140 DEBUG basesrc gstbasesrc.c:2399:gst_base_src_update_length:<my_appsrc> reading offset 0, length 4096, size -1, segment.stop -1, maxsize -1
0:00:00.503033375 8744 0x3d233140 DEBUG basesrc gstbasesrc.c:2506:gst_base_src_get_range:<my_appsrc> calling create offset 0 length 4096, time 0
0:00:00.503012750 8744 0xffffa4002580 DEBUG GST_BUS gstbus.c:839:gst_bus_source_dispatch:<bus1> source 0x3d21dc00 calling dispatch with stream-start message: 0x3d231a90, time 99:99:99.999999999, seq-num 24, element 'my_pipeline', GstMessageStreamStart, group-id=(uint)1;
0:00:00.503072875 8744 0x3d233140 DEBUG GST_CAPS gstpad.c:2733:gst_pad_get_current_caps:<my_appsrc:src> get current pad caps (NULL)
0:00:00.503109250 8744 0xffffa4002580 LOG GST_MESSAGE gstmessage.c:208:_gst_message_free: finalize message 0x3d231a90, stream-start from my_pipeline
0:00:00.503144875 8744 0x3d233140 INFO GST_EVENT gstevent.c:814:gst_event_new_caps: creating caps event video/x-h264, stream-format=(string)byte-stream, alignment=(string)au, framerate=(fraction)0/1
0:00:00.503168125 8744 0xffffa4002580 DEBUG GST_BUS gstbus.c:844:gst_bus_source_dispatch:<bus1> source 0x3d21dc00 handler returns 1
0:00:00.503227875 8744 0x3d233140 DEBUG GST_EVENT gstevent.c:306:gst_event_new_custom: creating new event 0x3d1e2230 caps 12814
0:00:00.503305875 8744 0x3d233140 LOG GST_PADS gstpad.c:5176:store_sticky_event:<my_appsrc:src> stored sticky event caps
0:00:00.503335250 8744 0x3d233140 DEBUG GST_PADS gstpad.c:5182:store_sticky_event:<my_appsrc:src> notify caps
0:00:00.503372375 8744 0x3d233140 LOG GST_PROPERTIES gstobject.c:448:gst_object_dispatch_properties_changed:<my_appsrc> deep notification from src (caps)
0:00:00.503409250 8744 0x3d233140 LOG GST_PROPERTIES gstobject.c:448:gst_object_dispatch_properties_changed:<my_pipeline> deep notification from src (caps)
0:00:00.503442250 8744 0x3d233140 DEBUG GST_PADS gstpad.c:3937:check_sticky:<my_appsrc:src> pushing all sticky events
0:00:00.503467750 8744 0x3d233140 DEBUG GST_PADS gstpad.c:3867:push_sticky:<my_appsrc:src> event stream-start was already received
0:00:00.503496000 8744 0x3d233140 LOG GST_PADS gstpad.c:5351:gst_pad_push_event_unchecked:<my_appsrc:src> sending event 0x3d1e2230 (caps) to peerpad <my_h264parse:sink>
0:00:00.503532875 8744 0x3d233140 DEBUG GST_EVENT gstpad.c:5638:gst_pad_send_event_unchecked:<my_h264parse:sink> have event type caps event: 0x3d1e2230, time 99:99:99.999999999, seq-num 27, GstEventCaps, caps=(GstCaps)"video/x-h264\,\ stream-format\=\(string\)byte-stream\,\ alignment\=\(string\)au\,\ framerate\=\(fraction\)0/1";
0:00:00.503605625 8744 0x3d233140 DEBUG GST_CAPS gstutils.c:3123:gst_pad_query_accept_caps:<my_h264parse:sink> accept caps of video/x-h264, stream-format=(string)byte-stream, alignment=(string)au, framerate=(fraction)0/1
0:00:00.503646875 8744 0x3d233140 DEBUG query gstquery.c:675:gst_query_new_custom: creating new query 0xffffa4005c00 accept-caps
0:00:00.503679250 8744 0x3d233140 DEBUG GST_PADS gstpad.c:4006:gst_pad_query:<my_h264parse:sink> doing query 0xffffa4005c00 (accept-caps)
0:00:00.503709125 8744 0x3d233140 DEBUG baseparse gstbaseparse.c:1546:gst_base_parse_sink_query:<my_h264parse> accept-caps query
0:00:00.503737000 8744 0x3d233140 DEBUG GST_PADS gstpad.c:3129:gst_pad_query_accept_caps_default:<my_h264parse:sink> query accept-caps accept-caps query: 0xffffa4005c00, GstQueryAcceptCaps, caps=(GstCaps)"video/x-h264\,\ stream-format\=\(string\)byte-stream\,\ alignment\=\(string\)au\,\ framerate\=\(fraction\)0/1", result=(boolean)false;
0:00:00.503799750 8744 0x3d233140 DEBUG GST_PADS gstpad.c:3156:gst_pad_query_accept_caps_default:<my_h264parse:sink> allowed caps intersect video/x-h264, caps video/x-h264, stream-format=(string)byte-stream, alignment=(string)au, framerate=(fraction)0/1
0:00:00.503852000 8744 0x3d233140 DEBUG GST_PADS gstpad.c:3438:gst_pad_query_default:<my_h264parse:sink> not forwarding 0xffffa4005c00 (accept-caps) query
0:00:00.503882750 8744 0x3d233140 LOG baseparse gstbaseparse.c:1554:gst_base_parse_sink_query:<my_h264parse> accept-caps query result: 1 accept-caps query: 0xffffa4005c00, GstQueryAcceptCaps, caps=(GstCaps)"video/x-h264\,\ stream-format\=\(string\)byte-stream\,\ alignment\=\(string\)au\,\ framerate\=\(fraction\)0/1", result=(boolean)true;
0:00:00.503946750 8744 0x3d233140 DEBUG GST_PADS gstpad.c:4029:gst_pad_query:<my_h264parse:sink> sent query 0xffffa4005c00 (accept-caps), result 1
0:00:00.503979125 8744 0x3d233140 DEBUG default gstutils.c:3128:gst_pad_query_accept_caps:<my_h264parse:sink> query returned 1
0:00:00.504007250 8744 0x3d233140 DEBUG baseparse gstbaseparse.c:1142:gst_base_parse_sink_event_default:<my_h264parse> handling event 12814, caps
0:00:00.504057250 8744 0x3d233140 DEBUG baseparse gstbaseparse.c:1150:gst_base_parse_sink_event_default:<my_h264parse> caps: video/x-h264, stream-format=(string)byte-stream, alignment=(string)au, framerate=(fraction)0/1
0:00:00.504102250 8744 0x3d233140 DEBUG GST_CAPS gstpad.c:2733:gst_pad_get_current_caps:<my_h264parse:sink> get current pad caps (NULL)
0:00:00.504136750 8744 0x3d233140 DEBUG h264parse gsth264parse.c:331:gst_h264_parse_format_from_caps: parsing caps: video/x-h264, stream-format=(string)byte-stream, alignment=(string)au, framerate=(fraction)0/1
0:00:00.504188250 8744 0x3d233140 DEBUG h264parse gsth264parse.c:2699:gst_h264_parse_set_caps:<my_h264parse> have bytestream h264
0:00:00.504230125 8744 0x3d233140 DEBUG GST_PROPERTIES gstpad.c:2817:gst_pad_get_allowed_caps:<my_h264parse:src> getting allowed caps
0:00:00.504257125 8744 0x3d233140 DEBUG GST_CAPS gstutils.c:3040:gst_pad_query_caps:<my_h264parse:src> get pad caps with filter (NULL)
0:00:00.504283375 8744 0x3d233140 DEBUG query gstquery.c:675:gst_query_new_custom: creating new query 0xffffa4005ca0 caps
0:00:00.504315000 8744 0x3d233140 DEBUG GST_PADS gstpad.c:4006:gst_pad_query:<my_h264parse:src> doing query 0xffffa4005ca0 (caps)
0:00:00.504346875 8744 0x3d233140 DEBUG baseparse gstbaseparse.c:1570:gst_base_parse_src_query:<my_h264parse> caps query: caps query: 0xffffa4005ca0, GstQueryCaps, filter=(GstCaps)"NULL", caps=(GstCaps)"NULL";
0:00:00.504397000 8744 0x3d233140 DEBUG GST_CAPS gstpad.c:3183:gst_pad_query_caps_default:<my_h264parse:src> query caps caps query: 0xffffa4005ca0, GstQueryCaps, filter=(GstCaps)"NULL", caps=(GstCaps)"NULL";
0:00:00.504441750 8744 0x3d233140 DEBUG GST_CAPS gstpad.c:3200:gst_pad_query_caps_default:<my_h264parse:src> fixed pad caps: trying pad caps
0:00:00.504467000 8744 0x3d233140 DEBUG GST_CAPS gstpad.c:3206:gst_pad_query_caps_default:<my_h264parse:src> trying pad template caps
0:00:00.504492250 8744 0x3d233140 DEBUG GST_CAPS gstpad.c:3236:gst_pad_query_caps_default:<my_h264parse:src> using caps 0x3d154ad0 video/x-h264, parsed=(boolean)true, stream-format=(string){ avc, avc3, byte-stream }, alignment=(string){ au, nal }
0:00:00.504540750 8744 0x3d233140 DEBUG GST_PADS gstpad.c:3438:gst_pad_query_default:<my_h264parse:src> not forwarding 0xffffa4005ca0 (caps) query
0:00:00.504570875 8744 0x3d233140 LOG baseparse gstbaseparse.c:1578:gst_base_parse_src_query:<my_h264parse> caps query result: 1 caps query: 0xffffa4005ca0, GstQueryCaps, filter=(GstCaps)"NULL", caps=(GstCaps)"video/x-h264\,\ parsed\=\(boolean\)true\,\ stream-format\=\(string\)\{\ avc\,\ avc3\,\ byte-stream\ \}\,\ alignment\=\(string\)\{\ au\,\ nal\ \}";
0:00:00.504636375 8744 0x3d233140 DEBUG GST_PADS gstpad.c:4029:gst_pad_query:<my_h264parse:src> sent query 0xffffa4005ca0 (caps), result 1
0:00:00.504670125 8744 0x3d233140 DEBUG GST_CAPS gstutils.c:3047:gst_pad_query_caps:<my_h264parse:src> query returned video/x-h264, parsed=(boolean)true, stream-format=(string){ avc, avc3, byte-stream }, alignment=(string){ au, nal }
0:00:00.504709375 8744 0x3d233140 DEBUG query gstquery.c:675:gst_query_new_custom: creating new query 0xffffa4005cf0 caps
0:00:00.504743500 8744 0x3d233140 DEBUG GST_PADS gstpad.c:4133:gst_pad_peer_query:<my_h264parse:src> peer query 0xffffa4005cf0 (caps)
0:00:00.504775375 8744 0x3d233140 DEBUG GST_PADS gstpad.c:4006:gst_pad_query:<my_vdec:sink> doing query 0xffffa4005cf0 (caps)
0:00:00.504805125 8744 0x3d233140 DEBUG videodecoder gstvideodecoder.c:1884:gst_video_decoder_sink_query:<my_vdec> received query 43523, caps
0:00:00.504834875 8744 0x3d233140 LOG videodecoder gstvideodecoder.c:1792:gst_video_decoder_sink_query_default:<my_vdec> handling query: caps query: 0xffffa4005cf0, GstQueryCaps, filter=(GstCaps)"video/x-h264\,\ parsed\=\(boolean\)true\,\ stream-format\=\(string\)\{\ avc\,\ avc3\,\ byte-stream\ \}\,\ alignment\=\(string\)\{\ au\,\ nal\ \}", caps=(GstCaps)"NULL";
0:00:00.504944125 8744 0x3d233140 DEBUG GST_CAPS gstutils.c:3086:gst_pad_peer_query_caps:<my_vdec:src> get pad peer caps with filter video/x-raw
0:00:00.504973250 8744 0x3d233140 DEBUG query gstquery.c:675:gst_query_new_custom: creating new query 0xffffa4005de0 caps
0:00:00.505003875 8744 0x3d233140 DEBUG GST_PADS gstpad.c:4133:gst_pad_peer_query:<my_vdec:src> peer query 0xffffa4005de0 (caps)
0:00:00.505035375 8744 0x3d233140 DEBUG GST_PADS gstpad.c:4006:gst_pad_query:<my_sink:sink> doing query 0xffffa4005de0 (caps)
0:00:00.505227000 8744 0x3d233140 DEBUG GST_PERFORMANCE gstcaps.c:179:_gst_caps_copy:video/x-raw, format=(string){ BGRx, BGRA, RGBx, xBGR, xRGB, RGBA, ABGR, ARGB, RGB, BGR, RGB16, BGR16, YUY2, YVYU, UYVY, AYUV, NV12, NV21, NV16, YUV9, YVU9, Y41B, I420, YV12, Y42B, v308 }, width=(int)[ 1, 2147483647 ], height=(int)[ 1, 2147483647 ], framerate=(fraction)[ 0/1, 2147483647/1 ]; video/x-raw(memory:DMABuf), format=(string){ BGRx, BGRA, RGBx, xBGR, xRGB, RGBA, ABGR, ARGB, RGB, BGR, RGB16, BGR16, YUY2, YVYU, UYVY, AYUV, NV12, NV21, NV16, YUV9, YVU9, Y41B, I420, YV12, Y42B, v308 }, width=(int)[ 1, 2147483647 ], height=(int)[ 1, 2147483647 ], framerate=(fraction)[ 0/1, 2147483647/1 ] doing copy 0x3d21fe30 -> 0xffffa4005e30
0:00:00.505320500 8744 0x3d233140 DEBUG GST_PERFORMANCE gstminiobject.c:317:gst_mini_object_make_writable: copy GstCaps miniobject 0x3d21fe30 -> 0xffffa4005e30
0:00:00.505394250 8744 0x3d233140 DEBUG waylandsink gstwaylandsink.c:569:gst_wayland_sink_get_caps:<my_sink> display caps: video/x-raw, format=(string){ BGRA, BGRx, RGB16, I420, NV12, YUY2 }, width=(int)[ 1, 2147483647 ], height=(int)[ 1, 2147483647 ], framerate=(fraction)[ 0/1, 2147483647/1 ]; video/x-raw(memory:DMABuf), format=(string){ RGB16, BGRx, RGBx, xBGR, ARGB, BGRA, RGBA, ABGR, YUY2, NV12, I420 }, width=(int)[ 1, 2147483647 ], height=(int)[ 1, 2147483647 ], framerate=(fraction)[ 0/1, 2147483647/1 ]
0:00:00.505526500 8744 0x3d233140 DEBUG GST_PADS gstpad.c:4029:gst_pad_query:<my_sink:sink> sent query 0xffffa4005de0 (caps), result 1
0:00:00.505561625 8744 0x3d233140 DEBUG GST_CAPS gstutils.c:3093:gst_pad_peer_query_caps:<my_vdec:src> peer query returned video/x-raw, format=(string){ BGRA, BGRx, RGB16, I420, NV12, YUY2 }, width=(int)[ 1, 2147483647 ], height=(int)[ 1, 2147483647 ], framerate=(fraction)[ 0/1, 2147483647/1 ]
0:00:00.505660875 8744 0x3d233140 LOG default gstvideoutilsprivate.c:128:__gst_video_element_proxy_getcaps:<my_vdec> template caps video/x-h264, stream-format=(string)byte-stream, alignment=(string)au, width=(int)[ 1, 32768 ], height=(int)[ 1, 32768 ], colorimetry=(string){ bt601, smpte240m, bt709, 2:4:5:2, 2:4:5:3, 1:4:7:1, 2:4:7:1, 2:4:12:8, bt2020, 2:0:0:0 }, parsed=(boolean)true
0:00:00.505720250 8744 0x3d233140 LOG default gstvideoutilsprivate.c:129:__gst_video_element_proxy_getcaps:<my_vdec> allowed caps video/x-raw, format=(string)NV12, width=(int)[ 1, 32768 ], height=(int)[ 1, 32768 ], framerate=(fraction)[ 0/1, 2147483647/1 ]
0:00:00.505821250 8744 0x3d233140 LOG default gstvideoutilsprivate.c:138:__gst_video_element_proxy_getcaps:<my_vdec> intersecting with video/x-h264, parsed=(boolean)true, stream-format=(string){ avc, avc3, byte-stream }, alignment=(string){ au, nal }
0:00:00.505899875 8744 0x3d233140 LOG default gstvideoutilsprivate.c:147:__gst_video_element_proxy_getcaps:<my_vdec> proxy caps video/x-h264, width=(int)[ 1, 32768 ], height=(int)[ 1, 32768 ], framerate=(fraction)[ 0/1, 2147483647/1 ], stream-format=(string)byte-stream, alignment=(string)au, colorimetry=(string){ bt601, smpte240m, bt709, 2:4:5:2, 2:4:5:3, 1:4:7:1, 2:4:7:1, 2:4:12:8, bt2020, 2:0:0:0 }, parsed=(boolean)true
0:00:00.505991125 8744 0x3d233140 DEBUG v4l2videodec gstv4l2videodec.c:925:gst_v4l2_video_dec_sink_getcaps:<my_vdec> Returning sink caps video/x-h264, width=(int)[ 1, 32768 ], height=(int)[ 1, 32768 ], framerate=(fraction)[ 0/1, 2147483647/1 ], stream-format=(string)byte-stream, alignment=(string)au, colorimetry=(string){ bt601, smpte240m, bt709, 2:4:5:2, 2:4:5:3, 1:4:7:1, 2:4:7:1, 2:4:12:8, bt2020, 2:0:0:0 }, parsed=(boolean)true
0:00:00.506063750 8744 0x3d233140 LOG videodecoder gstvideodecoder.c:1777:gst_video_decoder_sink_getcaps:<my_vdec> Returning caps video/x-h264, width=(int)[ 1, 32768 ], height=(int)[ 1, 32768 ], framerate=(fraction)[ 0/1, 2147483647/1 ], stream-format=(string)byte-stream, alignment=(string)au, colorimetry=(string){ bt601, smpte240m, bt709, 2:4:5:2, 2:4:5:3, 1:4:7:1, 2:4:7:1, 2:4:12:8, bt2020, 2:0:0:0 }, parsed=(boolean)true
0:00:00.506136875 8744 0x3d233140 DEBUG GST_PADS gstpad.c:4029:gst_pad_query:<my_vdec:sink> sent query 0xffffa4005cf0 (caps), result 1
0:00:00.506171250 8744 0x3d233140 DEBUG GST_CAPS gstpad.c:2836:gst_pad_get_allowed_caps:<my_h264parse:src> allowed caps video/x-h264, width=(int)[ 1, 32768 ], height=(int)[ 1, 32768 ], framerate=(fraction)[ 0/1, 2147483647/1 ], stream-format=(string)byte-stream, alignment=(string)au, colorimetry=(string){ bt601, smpte240m, bt709, 2:4:5:2, 2:4:5:3, 1:4:7:1, 2:4:7:1, 2:4:12:8, bt2020, 2:0:0:0 }, parsed=(boolean)true
0:00:00.506243375 8744 0x3d233140 DEBUG h264parse gsth264parse.c:371:gst_h264_parse_negotiate:<my_h264parse> allowed caps: video/x-h264, width=(int)[ 1, 32768 ], height=(int)[ 1, 32768 ], framerate=(fraction)[ 0/1, 2147483647/1 ], stream-format=(string)byte-stream, alignment=(string)au, colorimetry=(string){ bt601, smpte240m, bt709, 2:4:5:2, 2:4:5:3, 1:4:7:1, 2:4:7:1, 2:4:12:8, bt2020, 2:0:0:0 }, parsed=(boolean)true
0:00:00.506314250 8744 0x3d233140 DEBUG h264parse gsth264parse.c:378:gst_h264_parse_negotiate:<my_h264parse> negotiating with caps: video/x-h264, width=(int)[ 1, 32768 ], height=(int)[ 1, 32768 ], framerate=(fraction)[ 0/1, 2147483647/1 ], stream-format=(string)byte-stream, alignment=(string)au, colorimetry=(string){ bt601, smpte240m, bt709, 2:4:5:2, 2:4:5:3, 1:4:7:1, 2:4:7:1, 2:4:12:8, bt2020, 2:0:0:0 }, parsed=(boolean)true
0:00:00.506396750 8744 0x3d233140 DEBUG h264parse gsth264parse.c:385:gst_h264_parse_negotiate:<my_h264parse> downstream accepts upstream caps
0:00:00.506417750 8744 0x3d233140 DEBUG h264parse gsth264parse.c:331:gst_h264_parse_format_from_caps: parsing caps: video/x-h264, parsed=(boolean)true, stream-format=(string)byte-stream, alignment=(string)au
0:00:00.506462125 8744 0x3d233140 DEBUG h264parse gsth264parse.c:408:gst_h264_parse_negotiate:<my_h264parse> selected format byte-stream, alignment au
0:00:00.506496500 8744 0x3d233140 DEBUG GST_CAPS gstpad.c:2705:gst_pad_has_current_caps:<my_h264parse:src> check current pad caps (NULL)
0:00:00.506524250 8744 0x3d233140 DEBUG h264parse gsth264parse.c:1750:gst_h264_parse_update_src_caps:<my_h264parse> sps: (nil)
0:00:00.506559500 8744 0x3d233140 DEBUG GST_PERFORMANCE gstcaps.c:179:_gst_caps_copy:video/x-h264, stream-format=(string)byte-stream, alignment=(string)au, framerate=(fraction)0/1 doing copy 0x3d21fd40 -> 0xffffa40064a0
0:00:00.506606500 8744 0x3d233140 DEBUG GST_CAPS gstpad.c:2733:gst_pad_get_current_caps:<my_h264parse:src> get current pad caps (NULL)
0:00:00.506636500 8744 0x3d233140 INFO GST_EVENT gstevent.c:814:gst_event_new_caps: creating caps event video/x-h264, stream-format=(string)byte-stream, alignment=(string)au, framerate=(fraction)0/1, parsed=(boolean)true
0:00:00.506677625 8744 0x3d233140 DEBUG GST_EVENT gstevent.c:306:gst_event_new_custom: creating new event 0x3d1e22a0 caps 12814
0:00:00.506736500 8744 0x3d233140 LOG GST_PADS gstpad.c:5176:store_sticky_event:<my_h264parse:src> stored sticky event caps
0:00:00.506764875 8744 0x3d233140 DEBUG GST_PADS gstpad.c:5182:store_sticky_event:<my_h264parse:src> notify caps
0:00:00.506798000 8744 0x3d233140 LOG GST_PROPERTIES gstobject.c:448:gst_object_dispatch_properties_changed:<my_h264parse> deep notification from src (caps)
0:00:00.506829750 8744 0x3d233140 LOG GST_PROPERTIES gstobject.c:448:gst_object_dispatch_properties_changed:<my_pipeline> deep notification from src (caps)
0:00:00.506862125 8744 0x3d233140 DEBUG GST_PADS gstpad.c:3937:check_sticky:<my_h264parse:src> pushing all sticky events
0:00:00.506887375 8744 0x3d233140 DEBUG GST_PADS gstpad.c:3867:push_sticky:<my_h264parse:src> event stream-start was already received
0:00:00.506916250 8744 0x3d233140 LOG GST_PADS gstpad.c:5351:gst_pad_push_event_unchecked:<my_h264parse:src> sending event 0x3d1e22a0 (caps) to peerpad <my_vdec:sink>
0:00:00.506952750 8744 0x3d233140 DEBUG GST_EVENT gstpad.c:5638:gst_pad_send_event_unchecked:<my_vdec:sink> have event type caps event: 0x3d1e22a0, time 99:99:99.999999999, seq-num 28, GstEventCaps, caps=(GstCaps)"video/x-h264\,\ stream-format\=\(string\)byte-stream\,\ alignment\=\(string\)au\,\ framerate\=\(fraction\)0/1\,\ parsed\=\(boolean\)true";
0:00:00.507025250 8744 0x3d233140 DEBUG GST_CAPS gstutils.c:3123:gst_pad_query_accept_caps:<my_vdec:sink> accept caps of video/x-h264, stream-format=(string)byte-stream, alignment=(string)au, framerate=(fraction)0/1, parsed=(boolean)true
0:00:00.507067125 8744 0x3d233140 DEBUG query gstquery.c:675:gst_query_new_custom: creating new query 0xffffa40064f0 accept-caps
0:00:00.507098250 8744 0x3d233140 DEBUG GST_PADS gstpad.c:4006:gst_pad_query:<my_vdec:sink> doing query 0xffffa40064f0 (accept-caps)
0:00:00.507126750 8744 0x3d233140 DEBUG videodecoder gstvideodecoder.c:1884:gst_video_decoder_sink_query:<my_vdec> received query 40963, accept-caps
0:00:00.507155250 8744 0x3d233140 LOG videodecoder gstvideodecoder.c:1792:gst_video_decoder_sink_query_default:<my_vdec> handling query: accept-caps query: 0xffffa40064f0, GstQueryAcceptCaps, caps=(GstCaps)"video/x-h264\,\ stream-format\=\(string\)byte-stream\,\ alignment\=\(string\)au\,\ framerate\=\(fraction\)0/1\,\ parsed\=\(boolean\)true", result=(boolean)false;
0:00:00.507224250 8744 0x3d233140 DEBUG GST_CAPS gstutils.c:3040:gst_pad_query_caps:<my_vdec:sink> get pad caps with filter video/x-h264, stream-format=(string)byte-stream, alignment=(string)au, framerate=(fraction)0/1, parsed=(boolean)true
0:00:00.507264625 8744 0x3d233140 DEBUG query gstquery.c:675:gst_query_new_custom: creating new query 0xffffa4005c50 caps
0:00:00.507295625 8744 0x3d233140 DEBUG GST_PADS gstpad.c:4006:gst_pad_query:<my_vdec:sink> doing query 0xffffa4005c50 (caps)
0:00:00.507324250 8744 0x3d233140 DEBUG videodecoder gstvideodecoder.c:1884:gst_video_decoder_sink_query:<my_vdec> received query 43523, caps
0:00:00.507351625 8744 0x3d233140 LOG videodecoder gstvideodecoder.c:1792:gst_video_decoder_sink_query_default:<my_vdec> handling query: caps query: 0xffffa4005c50, GstQueryCaps, filter=(GstCaps)"video/x-h264\,\ stream-format\=\(string\)byte-stream\,\ alignment\=\(string\)au\,\ framerate\=\(fraction\)0/1\,\ parsed\=\(boolean\)true", caps=(GstCaps)"NULL";
0:00:00.507427000 8744 0x3d233140 DEBUG GST_CAPS gstutils.c:3086:gst_pad_peer_query_caps:<my_vdec:src> get pad peer caps with filter video/x-raw, framerate=(fraction)0/1
0:00:00.507463000 8744 0x3d233140 DEBUG query gstquery.c:675:gst_query_new_custom: creating new query 0xffffa4005ed0 caps
0:00:00.507493750 8744 0x3d233140 DEBUG GST_PADS gstpad.c:4133:gst_pad_peer_query:<my_vdec:src> peer query 0xffffa4005ed0 (caps)
0:00:00.507549250 8744 0x3d233140 DEBUG GST_PADS gstpad.c:4006:gst_pad_query:<my_sink:sink> doing query 0xffffa4005ed0 (caps)
0:00:00.507669875 8744 0x3d233140 DEBUG GST_PERFORMANCE gstcaps.c:179:_gst_caps_copy:video/x-raw, format=(string){ BGRx, BGRA, RGBx, xBGR, xRGB, RGBA, ABGR, ARGB, RGB, BGR, RGB16, BGR16, YUY2, YVYU, UYVY, AYUV, NV12, NV21, NV16, YUV9, YVU9, Y41B, I420, YV12, Y42B, v308 }, width=(int)[ 1, 2147483647 ], height=(int)[ 1, 2147483647 ], framerate=(fraction)[ 0/1, 2147483647/1 ]; video/x-raw(memory:DMABuf), format=(string){ BGRx, BGRA, RGBx, xBGR, xRGB, RGBA, ABGR, ARGB, RGB, BGR, RGB16, BGR16, YUY2, YVYU, UYVY, AYUV, NV12, NV21, NV16, YUV9, YVU9, Y41B, I420, YV12, Y42B, v308 }, width=(int)[ 1, 2147483647 ], height=(int)[ 1, 2147483647 ], framerate=(fraction)[ 0/1, 2147483647/1 ] doing copy 0x3d21fe30 -> 0xffffa4006400
0:00:00.507745250 8744 0x3d233140 DEBUG GST_PERFORMANCE gstminiobject.c:317:gst_mini_object_make_writable: copy GstCaps miniobject 0x3d21fe30 -> 0xffffa4006400
0:00:00.507808375 8744 0x3d233140 DEBUG waylandsink gstwaylandsink.c:569:gst_wayland_sink_get_caps:<my_sink> display caps: video/x-raw, format=(string){ BGRA, BGRx, RGB16, I420, NV12, YUY2 }, width=(int)[ 1, 2147483647 ], height=(int)[ 1, 2147483647 ], framerate=(fraction)[ 0/1, 2147483647/1 ]; video/x-raw(memory:DMABuf), format=(string){ RGB16, BGRx, RGBx, xBGR, ARGB, BGRA, RGBA, ABGR, YUY2, NV12, I420 }, width=(int)[ 1, 2147483647 ], height=(int)[ 1, 2147483647 ], framerate=(fraction)[ 0/1, 2147483647/1 ]
0:00:00.507934000 8744 0x3d233140 DEBUG GST_PADS gstpad.c:4029:gst_pad_query:<my_sink:sink> sent query 0xffffa4005ed0 (caps), result 1
0:00:00.507969125 8744 0x3d233140 DEBUG GST_CAPS gstutils.c:3093:gst_pad_peer_query_caps:<my_vdec:src> peer query returned video/x-raw, framerate=(fraction)0/1, format=(string){ BGRA, BGRx, RGB16, I420, NV12, YUY2 }, width=(int)[ 1, 2147483647 ], height=(int)[ 1, 2147483647 ]
0:00:00.508044375 8744 0x3d233140 LOG default gstvideoutilsprivate.c:128:__gst_video_element_proxy_getcaps:<my_vdec> template caps video/x-h264, stream-format=(string)byte-stream, alignment=(string)au, width=(int)[ 1, 32768 ], height=(int)[ 1, 32768 ], colorimetry=(string){ bt601, smpte240m, bt709, 2:4:5:2, 2:4:5:3, 1:4:7:1, 2:4:7:1, 2:4:12:8, bt2020, 2:0:0:0 }, parsed=(boolean)true
0:00:00.508100250 8744 0x3d233140 LOG default gstvideoutilsprivate.c:129:__gst_video_element_proxy_getcaps:<my_vdec> allowed caps video/x-raw, framerate=(fraction)0/1, format=(string)NV12, width=(int)[ 1, 32768 ], height=(int)[ 1, 32768 ]
0:00:00.508184625 8744 0x3d233140 LOG default gstvideoutilsprivate.c:138:__gst_video_element_proxy_getcaps:<my_vdec> intersecting with video/x-h264, stream-format=(string)byte-stream, alignment=(string)au, framerate=(fraction)0/1, parsed=(boolean)true
0:00:00.508255375 8744 0x3d233140 LOG default gstvideoutilsprivate.c:147:__gst_video_element_proxy_getcaps:<my_vdec> proxy caps video/x-h264, width=(int)[ 1, 32768 ], height=(int)[ 1, 32768 ], framerate=(fraction)0/1, stream-format=(string)byte-stream, alignment=(string)au, colorimetry=(string){ bt601, smpte240m, bt709, 2:4:5:2, 2:4:5:3, 1:4:7:1, 2:4:7:1, 2:4:12:8, bt2020, 2:0:0:0 }, parsed=(boolean)true
0:00:00.508323000 8744 0x3d233140 DEBUG v4l2videodec gstv4l2videodec.c:925:gst_v4l2_video_dec_sink_getcaps:<my_vdec> Returning sink caps video/x-h264, width=(int)[ 1, 32768 ], height=(int)[ 1, 32768 ], framerate=(fraction)0/1, stream-format=(string)byte-stream, alignment=(string)au, colorimetry=(string){ bt601, smpte240m, bt709, 2:4:5:2, 2:4:5:3, 1:4:7:1, 2:4:7:1, 2:4:12:8, bt2020, 2:0:0:0 }, parsed=(boolean)true
0:00:00.508386500 8744 0x3d233140 LOG videodecoder gstvideodecoder.c:1777:gst_video_decoder_sink_getcaps:<my_vdec> Returning caps video/x-h264, width=(int)[ 1, 32768 ], height=(int)[ 1, 32768 ], framerate=(fraction)0/1, stream-format=(string)byte-stream, alignment=(string)au, colorimetry=(string){ bt601, smpte240m, bt709, 2:4:5:2, 2:4:5:3, 1:4:7:1, 2:4:7:1, 2:4:12:8, bt2020, 2:0:0:0 }, parsed=(boolean)true
0:00:00.508468250 8744 0x3d233140 DEBUG GST_PADS gstpad.c:4029:gst_pad_query:<my_vdec:sink> sent query 0xffffa4005c50 (caps), result 1
0:00:00.508502375 8744 0x3d233140 DEBUG GST_CAPS gstutils.c:3047:gst_pad_query_caps:<my_vdec:sink> query returned video/x-h264, width=(int)[ 1, 32768 ], height=(int)[ 1, 32768 ], framerate=(fraction)0/1, stream-format=(string)byte-stream, alignment=(string)au, colorimetry=(string){ bt601, smpte240m, bt709, 2:4:5:2, 2:4:5:3, 1:4:7:1, 2:4:7:1, 2:4:12:8, bt2020, 2:0:0:0 }, parsed=(boolean)true
0:00:00.508578375 8744 0x3d233140 DEBUG GST_PADS gstpad.c:4029:gst_pad_query:<my_vdec:sink> sent query 0xffffa40064f0 (accept-caps), result 1
0:00:00.508612625 8744 0x3d233140 DEBUG default gstutils.c:3128:gst_pad_query_accept_caps:<my_vdec:sink> query returned 1
0:00:00.508641250 8744 0x3d233140 DEBUG videodecoder gstvideodecoder.c:1393:gst_video_decoder_sink_event:<my_vdec> received event 12814, caps
0:00:00.508671750 8744 0x3d233140 DEBUG videodecoder gstvideodecoder.c:683:gst_video_decoder_setcaps:<my_vdec> setcaps video/x-h264, stream-format=(string)byte-stream, alignment=(string)au, framerate=(fraction)0/1, parsed=(boolean)true
0:00:00.508740875 8744 0x3d233140 LOG GST_DEBUG gstinfo.c:1595:gst_debug_reset_threshold: category video-info matches pattern 0x3d0a0430 - gets set to level 6
0:00:00.508801875 8744 0x3d233140 DEBUG video-info video-info.c:357:gst_video_info_from_caps: parsing caps video/x-h264, stream-format=(string)byte-stream, alignment=(string)au, framerate=(fraction)0/1, parsed=(boolean)true
0:00:00.508859000 8744 0x3d233140 DEBUG video-info video-info.c:468:gst_video_info_from_caps: no colorimetry, using default
0:00:00.508887500 8744 0x3d233140 DEBUG v4l2videodec gstv4l2videodec.c:239:gst_v4l2_video_dec_set_format:<my_vdec> Setting format: video/x-h264, stream-format=(string)byte-stream, alignment=(string)au, framerate=(fraction)0/1, parsed=(boolean)true
0:00:00.508932750 8744 0x3d233140 DEBUG v4l2 gstv4l2object.c:3882:gst_v4l2_object_set_format:<my_vdec:sink> Setting format to video/x-h264, stream-format=(string)byte-stream, alignment=(string)au, framerate=(fraction)0/1, parsed=(boolean)true
0:00:00.508974000 8744 0x3d233140 DEBUG video-info video-info.c:357:gst_video_info_from_caps: parsing caps video/x-h264, stream-format=(string)byte-stream, alignment=(string)au, framerate=(fraction)0/1, parsed=(boolean)true
0:00:00.509019125 8744 0x3d233140 DEBUG video-info video-info.c:468:gst_video_info_from_caps: no colorimetry, using default
0:00:00.509270000 8744 0x3d233140 DEBUG v4l2 gstv4l2object.c:3320:gst_v4l2_object_set_format_full:<my_vdec:sink> progressive video
0:00:00.509306875 8744 0x3d233140 DEBUG v4l2 gstv4l2object.c:3458:gst_v4l2_object_set_format_full:<my_vdec:sink> Desired format 0x0, format H264 stride: 0
0:00:00.509348375 8744 0x3d233140 DEBUG v4l2 gstv4l2object.c:3510:gst_v4l2_object_set_format_full:<my_vdec:sink> Desired format is 0x0, format H264, nb planes 1
0:00:00.509387000 8744 0x3d233140 DEBUG v4l2 gstv4l2object.c:3516:gst_v4l2_object_set_format_full:<my_vdec:sink> stride 0
0:00:00.509416500 8744 0x3d233140 DEBUG v4l2 gstv4l2object.c:3537:gst_v4l2_object_set_format_full:<my_vdec:sink> Desired colorspace is 0:0:0:0
0:00:00.509467750 8744 0x3d233140 DEBUG v4l2 gstv4l2object.c:3553:gst_v4l2_object_set_format_full:<my_vdec:sink> Got format of 0x0, format H264, nb planes 1, colorspace 0
0:00:00.509509125 8744 0x3d233140 DEBUG v4l2 gstv4l2object.c:3560:gst_v4l2_object_set_format_full:<my_vdec:sink> stride 0, sizeimage 6291456
0:00:00.509554750 8744 0x3d233140 DEBUG v4l2 gstv4l2object.c:2085:gst_v4l2_object_get_colorspace: Unknown enum v4l2_colorspace 0
0:00:00.509588750 8744 0x3d233140 DEBUG v4l2 gstv4l2object.c:3633:gst_v4l2_object_set_format_full:<my_vdec:sink> Desired framerate: 0/1
0:00:00.509626625 8744 0x3d233140 DEBUG v4l2 gstv4l2object.c:3211:gst_v4l2_object_save_format:<my_vdec:sink> Got sizeimage 6291456
0:00:00.509658500 8744 0x3d233140 DEBUG v4l2 gstv4l2object.c:2967:gst_v4l2_object_setup_pool:<my_vdec:sink> initializing the output system
0:00:00.509688500 8744 0x3d233140 INFO v4l2 gstv4l2object.c:2997:gst_v4l2_object_setup_pool:<my_vdec:sink> accessing buffers via mode 2
0:00:00.509724250 8744 0x3d233140 LOG v4l2 gstv4l2object.c:3006:gst_v4l2_object_setup_pool:<my_vdec:sink> initiating buffer pool
0:00:00.509800000 8744 0x3d233140 LOG GST_DEBUG gstinfo.c:1595:gst_debug_reset_threshold: category bufferpool matches pattern 0x3d0a0430 - gets set to level 6
0:00:00.509853000 8744 0x3d233140 LOG GST_DEBUG gstinfo.c:1595:gst_debug_reset_threshold: category v4l2bufferpool matches pattern 0x3d0a0430 - gets set to level 6
0:00:00.509927000 8744 0x3d233140 DEBUG GST_POLL gstpoll.c:681:gst_poll_new: 0xffffa4005d90: new controllable : 1
0:00:00.510000000 8744 0x3d233140 DEBUG GST_POLL gstpoll.c:848:gst_poll_add_fd_unlocked: 0xffffa4005d90: fd (fd:19, idx:0)
0:00:00.510032375 8744 0x3d233140 DEBUG GST_POLL gstpoll.c:1015:gst_poll_fd_ctl_read_unlocked: 0xffffa4005d90: fd (fd:19, idx:0), active : 1
0:00:00.510090125 8744 0x3d233140 LOG GST_POLL gstpoll.c:290:raise_wakeup: 0xffffa4005d90: raise
0:00:00.510131875 8744 0x3d233140 DEBUG bufferpool gstbufferpool.c:185:gst_buffer_pool_init:<GstBufferPool at 0xffffa4012090> created
0:00:00.510154500 8744 0x3d233140 DEBUG GST_POLL gstpoll.c:681:gst_poll_new: 0xffffa4005ca0: new controllable : 1
0:00:00.510199250 8744 0x3d233140 DEBUG GST_POLL gstpoll.c:848:gst_poll_add_fd_unlocked: 0xffffa4005ca0: fd (fd:21, idx:0)
0:00:00.510229000 8744 0x3d233140 DEBUG GST_POLL gstpoll.c:1015:gst_poll_fd_ctl_read_unlocked: 0xffffa4005ca0: fd (fd:21, idx:0), active : 1
0:00:00.510284250 8744 0x3d233140 DEBUG GST_POLL gstpoll.c:848:gst_poll_add_fd_unlocked: 0xffffa4005ca0: fd (fd:18, idx:-1)
0:00:00.510315500 8744 0x3d233140 DEBUG GST_POLL gstpoll.c:980:gst_poll_fd_ctl_write: 0xffffa4005ca0: fd (fd:18, idx:1), active : 1
0:00:00.510345875 8744 0x3d233140 LOG GST_POLL gstpoll.c:994:gst_poll_fd_ctl_write: 0xffffa4005ca0: pfd->events now 60 (POLLOUT:4)
0:00:00.510410125 8744 0x3d233140 LOG GST_DEBUG gstinfo.c:1595:gst_debug_reset_threshold: category v4l2allocator matches pattern 0x3d0a0430 - gets set to level 6
0:00:00.510600250 8744 0x3d233140 WARN structure gststructure.c:1832:priv_gst_structure_append_to_gstring: No value transform to serialize field 'params' of type 'GstAllocationParams'
0:00:00.510534375 8744 0x3d233140 DEBUG v4l2bufferpool gstv4l2bufferpool.c:509:gst_v4l2_buffer_pool_set_config:<my_vdec:pool:sink> config GstBufferPoolConfig, caps=(GstCaps)"video/x-h264\,\ stream-format\=\(string\)byte-stream\,\ alignment\=\(string\)au\,\ framerate\=\(fraction\)0/1\,\ parsed\=\(boolean\)true", size=(uint)6291456, min-buffers=(uint)0, max-buffers=(uint)0, allocator=(GstAllocator)"NULL", params=(GstAllocationParams)NULL;
0:00:00.510661000 8744 0x3d233140 INFO v4l2bufferpool gstv4l2bufferpool.c:557:gst_v4l2_buffer_pool_set_config:<my_vdec:pool:sink> increasing minimum buffers to 2
0:00:00.510690500 8744 0x3d233140 INFO v4l2bufferpool gstv4l2bufferpool.c:570:gst_v4l2_buffer_pool_set_config:<my_vdec:pool:sink> reducing maximum buffers to 32
0:00:00.510736875 8744 0x3d233140 INFO v4l2bufferpool gstv4l2bufferpool.c:581:gst_v4l2_buffer_pool_set_config:<my_vdec:pool:sink> can't allocate, setting maximum to minimum
0:00:00.510763250 8744 0x3d233140 DEBUG video-info video-info.c:357:gst_video_info_from_caps: parsing caps video/x-h264, stream-format=(string)byte-stream, alignment=(string)au, framerate=(fraction)0/1, parsed=(boolean)true
0:00:00.510815000 8744 0x3d233140 DEBUG video-info video-info.c:468:gst_video_info_from_caps: no colorimetry, using default
0:00:00.510900750 8744 0x3d233140 WARN structure gststructure.c:1832:priv_gst_structure_append_to_gstring: No value transform to serialize field 'params' of type 'GstAllocationParams'
0:00:00.510846000 8744 0x3d233140 DEBUG bufferpool gstbufferpool.c:614:default_set_config:<my_vdec:pool:sink> config GstBufferPoolConfig, caps=(GstCaps)"video/x-h264\,\ stream-format\=\(string\)byte-stream\,\ alignment\=\(string\)au\,\ framerate\=\(fraction\)0/1\,\ parsed\=\(boolean\)true", size=(uint)6291456, min-buffers=(uint)2, max-buffers=(uint)2, allocator=(GstAllocator)"NULL", params=(GstAllocationParams)NULL;
0:00:00.510968125 8744 0x3d233140 DEBUG GST_PADS gstpad.c:5712:gst_pad_send_event_unchecked:<my_vdec:sink> sent event, ret ok
0:00:00.511000250 8744 0x3d233140 LOG GST_PADS gstpad.c:5176:store_sticky_event:<my_vdec:sink> stored sticky event caps
0:00:00.511029375 8744 0x3d233140 DEBUG GST_PADS gstpad.c:5182:store_sticky_event:<my_vdec:sink> notify caps
0:00:00.511059125 8744 0x3d233140 LOG GST_PROPERTIES gstobject.c:448:gst_object_dispatch_properties_changed:<my_vdec> deep notification from sink (caps)
0:00:00.511093125 8744 0x3d233140 LOG GST_PROPERTIES gstobject.c:448:gst_object_dispatch_properties_changed:<my_pipeline> deep notification from sink (caps)
0:00:00.511128875 8744 0x3d233140 LOG GST_PADS gstpad.c:5359:gst_pad_push_event_unchecked:<my_h264parse:src> sent event 0x3d1e22a0 (caps) to peerpad <my_vdec:sink>, ret ok
0:00:00.511170750 8744 0x3d233140 DEBUG GST_PADS gstpad.c:3889:push_sticky:<my_h264parse:src> event caps marked received
0:00:00.511202250 8744 0x3d233140 DEBUG baseparse gstbaseparse.c:1475:gst_base_parse_sink_event_default:<my_h264parse> event handled
0:00:00.511230125 8744 0x3d233140 DEBUG GST_PADS gstpad.c:5712:gst_pad_send_event_unchecked:<my_h264parse:sink> sent event, ret ok
0:00:00.511261250 8744 0x3d233140 LOG GST_PADS gstpad.c:5176:store_sticky_event:<my_h264parse:sink> stored sticky event caps
0:00:00.511290125 8744 0x3d233140 DEBUG GST_PADS gstpad.c:5182:store_sticky_event:<my_h264parse:sink> notify caps
0:00:00.511318250 8744 0x3d233140 LOG GST_PROPERTIES gstobject.c:448:gst_object_dispatch_properties_changed:<my_h264parse> deep notification from sink (caps)
0:00:00.511350750 8744 0x3d233140 LOG GST_PROPERTIES gstobject.c:448:gst_object_dispatch_properties_changed:<my_pipeline> deep notification from sink (caps)
0:00:00.511386000 8744 0x3d233140 LOG GST_PADS gstpad.c:5359:gst_pad_push_event_unchecked:<my_appsrc:src> sent event 0x3d1e2230 (caps) to peerpad <my_h264parse:sink>, ret ok
0:00:00.511426625 8744 0x3d233140 DEBUG GST_PADS gstpad.c:3889:push_sticky:<my_appsrc:src> event caps marked received
(get_data, 99)
(get_data, 108)read_ret: 8, target frame num: 0, read frame num: 0
0:00:00.511578125 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:799:gst_buffer_new: new 0xffffa40170d0
0:00:00.511616750 8744 0x3d233140 DEBUG GST_MEMORY gstmemory.c:139:gst_memory_init: new memory 0x3d227580, maxsize:2717 offset:0 size:2717
0:00:00.511649875 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:414:_memory_add: buffer 0xffffa40170d0, idx -1, mem 0x3d227580
0:00:00.511731250 8744 0x3d233140 DEBUG appsrc gstappsrc.c:1863:gst_app_src_push_internal:<my_appsrc> queueing buffer 0xffffa40170d0
0:00:00.511778125 8744 0x3d233140 LOG appsrc gstappsrc.c:1221:gst_app_src_create:<my_appsrc> have buffer 0xffffa40170d0 of size 2717
0:00:00.511814375 8744 0x3d233140 DEBUG basesrc gstbasesrc.c:2578:gst_base_src_get_range:<my_appsrc> setting first timestamp to 0
0:00:00.511851000 8744 0x3d233140 DEBUG basesrc gstbasesrc.c:2360:gst_base_src_do_sync:<my_appsrc> no sync needed
0:00:00.511881500 8744 0x3d233140 DEBUG basesrc gstbasesrc.c:2597:gst_base_src_get_range:<my_appsrc> buffer ok
0:00:00.511906375 8744 0x3d233140 INFO GST_EVENT gstevent.c:895:gst_event_new_segment: creating segment event bytes segment start=0, offset=0, stop=-1, rate=1.000000, applied_rate=1.000000, flags=0x00, time=0, base=0, position 0, duration -1
0:00:00.511976625 8744 0x3d233140 DEBUG GST_EVENT gstevent.c:306:gst_event_new_custom: creating new event 0x3d1e2310 segment 17934
0:00:00.512018875 8744 0x3d233140 LOG GST_PADS gstpad.c:5176:store_sticky_event:<my_appsrc:src> stored sticky event segment
0:00:00.512048875 8744 0x3d233140 DEBUG GST_PADS gstpad.c:3937:check_sticky:<my_appsrc:src> pushing all sticky events
0:00:00.512076125 8744 0x3d233140 DEBUG GST_PADS gstpad.c:3867:push_sticky:<my_appsrc:src> event stream-start was already received
0:00:00.512106125 8744 0x3d233140 DEBUG GST_PADS gstpad.c:3867:push_sticky:<my_appsrc:src> event caps was already received
0:00:00.512137250 8744 0x3d233140 LOG GST_PADS gstpad.c:5351:gst_pad_push_event_unchecked:<my_appsrc:src> sending event 0x3d1e2310 (segment) to peerpad <my_h264parse:sink>
0:00:00.512177500 8744 0x3d233140 DEBUG GST_EVENT gstpad.c:5638:gst_pad_send_event_unchecked:<my_h264parse:sink> have event type segment event: 0x3d1e2310, time 99:99:99.999999999, seq-num 20, GstEventSegment, segment=(GstSegment)"GstSegment, flags=(GstSegmentFlags)GST_SEGMENT_FLAG_NONE, rate=(double)1, applied-rate=(double)1, format=(GstFormat)GST_FORMAT_BYTES, base=(guint64)0, offset=(guint64)0, start=(guint64)0, stop=(guint64)18446744073709551615, time=(guint64)0, position=(guint64)0, duration=(guint64)18446744073709551615;";
0:00:00.512364125 8744 0x3d233140 DEBUG baseparse gstbaseparse.c:1142:gst_base_parse_sink_event_default:<my_h264parse> handling event 17934, segment
0:00:00.512402125 8744 0x3d233140 DEBUG baseparse gstbaseparse.c:1174:gst_base_parse_sink_event_default:<my_h264parse> segment bytes segment start=0, offset=0, stop=-1, rate=1.000000, applied_rate=1.000000, flags=0x00, time=0, base=0, position 0, duration -1
0:00:00.512466000 8744 0x3d233140 LOG baseparse gstbaseparse.c:1008:gst_base_parse_convert:<my_h264parse> BYTES -> TIME: 0 -> 0:00:00.000000000
0:00:00.512499750 8744 0x3d233140 INFO GST_EVENT gstevent.c:895:gst_event_new_segment: creating segment event time segment start=0:00:00.000000000, offset=0:00:00.000000000, stop=99:99:99.999999999, 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:00.512586250 8744 0x3d233140 DEBUG GST_EVENT gstevent.c:306:gst_event_new_custom: creating new event 0xffffa4007c20 segment 17934
0:00:00.512620875 8744 0x3d233140 DEBUG baseparse gstbaseparse.c:1229:gst_base_parse_sink_event_default:<my_h264parse> Converted incoming segment to TIME. bytes segment start=0, offset=0, stop=-1, rate=1.000000, applied_rate=1.000000, flags=0x00, time=0, base=0, position 0, duration -1
0:00:00.512676250 8744 0x3d233140 DEBUG baseparse gstbaseparse.c:1264:gst_base_parse_sink_event_default:<my_h264parse> draining current segment
0:00:00.512719625 8744 0x3d233140 DEBUG baseparse gstbaseparse.c:2715:gst_base_parse_drain:<my_h264parse> draining
0:00:00.512749375 8744 0x3d233140 DEBUG baseparse gstbaseparse.c:1475:gst_base_parse_sink_event_default:<my_h264parse> event handled
0:00:00.512777625 8744 0x3d233140 DEBUG GST_PADS gstpad.c:5712:gst_pad_send_event_unchecked:<my_h264parse:sink> sent event, ret ok
0:00:00.512809000 8744 0x3d233140 LOG GST_PADS gstpad.c:5176:store_sticky_event:<my_h264parse:sink> stored sticky event segment
0:00:00.512839625 8744 0x3d233140 LOG GST_PADS gstpad.c:5359:gst_pad_push_event_unchecked:<my_appsrc:src> sent event 0x3d1e2310 (segment) to peerpad <my_h264parse:sink>, ret ok
0:00:00.512881750 8744 0x3d233140 DEBUG GST_PADS gstpad.c:3889:push_sticky:<my_appsrc:src> event segment marked received
0:00:00.512916375 8744 0x3d233140 INFO basesrc gstbasesrc.c:2945:gst_base_src_loop:<my_appsrc> marking pending DISCONT
0:00:00.512955750 8744 0x3d233140 DEBUG GST_SCHEDULING gstpad.c:4277:gst_pad_chain_data_unchecked:<my_h264parse:sink> calling chainfunction &gst_base_parse_chain with buffer buffer: 0xffffa40170d0, pts 0:00:00.000000000, dts 0:00:00.000000000, dur 0:00:00.500000000, size 2717, offset none, offset_end none, flags 0x40
0:00:00.513022500 8744 0x3d233140 DEBUG baseparse gstbaseparse.c:3030:gst_base_parse_chain:<my_h264parse> chain
0:00:00.513078625 8744 0x3d233140 DEBUG baseparse gstbaseparse.c:3061:gst_base_parse_chain:<my_h264parse> Looking for streamheader field on caps to prepend to the stream
0:00:00.513113625 8744 0x3d233140 DEBUG GST_CAPS gstpad.c:2733:gst_pad_get_current_caps:<my_h264parse:sink> get current pad caps video/x-h264, stream-format=(string)byte-stream, alignment=(string)au, framerate=(fraction)0/1
0:00:00.513168750 8744 0x3d233140 DEBUG baseparse gstbaseparse.c:3010:gst_base_parse_process_streamheader:<my_h264parse> No streamheader on caps
0:00:00.513196625 8744 0x3d233140 LOG baseparse gstbaseparse.c:3150:gst_base_parse_chain:<my_h264parse> buffer size: 2717, offset = -1, dts 0:00:00.000000000, pts 0:00:00.000000000
0:00:00.513244250 8744 0x3d233140 DEBUG baseparse gstbaseparse.c:2715:gst_base_parse_drain:<my_h264parse> draining
0:00:00.513274125 8744 0x3d233140 LOG adapter gstadapter.c:389:gst_adapter_push:<GstAdapter at 0x3d20c000> pushing 0xffffa40170d0 first 2717 bytes
0:00:00.513314750 8744 0x3d233140 LOG adapter gstadapter.c:290:update_timestamps_and_offset:<GstAdapter at 0x3d20c000> new pts 0:00:00.000000000
0:00:00.513352000 8744 0x3d233140 LOG adapter gstadapter.c:296:update_timestamps_and_offset:<GstAdapter at 0x3d20c000> new dts 0:00:00.000000000
0:00:00.513389875 8744 0x3d233140 LOG adapter gstadapter.c:974:gst_adapter_get_buffer:<GstAdapter at 0x3d20c000> getting buffer of 2717 bytes
0:00:00.513420750 8744 0x3d233140 LOG adapter gstadapter.c:989:gst_adapter_get_buffer:<GstAdapter at 0x3d20c000> providing buffer of 2717 bytes as head buffer
0:00:00.513455875 8744 0x3d233140 LOG baseparse gstbaseparse.c:2148:gst_base_parse_handle_buffer:<my_h264parse> handling buffer of size 2717 with dts 0:00:00.000000000, pts 0:00:00.000000000, duration 0:00:00.500000000
0:00:00.513502625 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:799:gst_buffer_new: new 0xffffa40171e0
0:00:00.513526875 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:515:gst_buffer_copy_into: copy 0xffffa40170d0 to 0xffffa40171e0, offset 0-2717/2717
0:00:00.513561500 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:414:_memory_add: buffer 0xffffa40171e0, idx -1, mem 0x3d227580
0:00:00.513589375 8744 0x3d233140 DEBUG GST_PERFORMANCE gstminiobject.c:317:gst_mini_object_make_writable: copy GstBuffer miniobject 0xffffa40170d0 -> 0xffffa40171e0
0:00:00.513640875 8744 0x3d233140 LOG baseparse gstbaseparse.c:2110:gst_base_parse_prepare_frame:<my_h264parse> preparing frame at offset 18446744073709551615 (0xffffffffffffffff) of size 2717
0:00:00.513676875 8744 0x3d233140 DEBUG baseparse gstbaseparse.c:757:gst_base_parse_update_frame:<my_h264parse> marking DISCONT
0:00:00.513703000 8744 0x3d233140 LOG baseparse gstbaseparse.c:764:gst_base_parse_update_frame:<my_h264parse> marking as new frame
0:00:00.513725375 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1721:gst_buffer_map_range: buffer 0xffffa40171e0, idx 0, length -1, flags 0001
0:00:00.513756875 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:213:_get_merged_memory: buffer 0xffffa40171e0, idx 0, length 1
0:00:00.513793750 8744 0x3d233140 LOG h264parse gsth264parse.c:1097:gst_h264_parse_handle_frame:<my_h264parse> parsing new frame
0:00:00.513820125 8744 0x3d233140 DEBUG h264parse gsth264parse.c:186:gst_h264_parse_reset_frame:<my_h264parse> reset frame
0:00:00.513847875 8744 0x3d233140 DEBUG h264parse gsth264parse.c:1112:gst_h264_parse_handle_frame:<my_h264parse> last parse position 0
0:00:00.513898375 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:242:gst_h264_parse_nalu_header: Nal type 9, ref_idc 0
0:00:00.513927500 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:242:gst_h264_parse_nalu_header: Nal type 9, ref_idc 0
0:00:00.513953750 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:1366:gst_h264_parser_identify_nalu: Complete nal found. Off: 4, Size: 2
0:00:00.513985875 8744 0x3d233140 DEBUG h264parse gsth264parse.c:1162:gst_h264_parse_handle_frame:<my_h264parse> complete nal (offset, size): (4, 2)
0:00:00.514016875 8744 0x3d233140 DEBUG h264parse gsth264parse.c:1219:gst_h264_parse_handle_frame:<my_h264parse> 0xffffa4016010 complete nal found. Off: 4, Size: 2
0:00:00.514051500 8744 0x3d233140 DEBUG h264parse gsth264parse.c:721:gst_h264_parse_process_nal:<my_h264parse> processing nal of type 9 AU delimiter, size 2
0:00:00.514101375 8744 0x3d233140 LOG h264parse gsth264parse.c:895:gst_h264_parse_process_nal:<my_h264parse> collecting NAL in AVC frame
0:00:00.514129000 8744 0x3d233140 DEBUG h264parse gsth264parse.c:428:gst_h264_parse_wrap_nal:<my_h264parse> nal length 2
0:00:00.514156750 8744 0x3d233140 DEBUG GST_MEMORY gstmemory.c:139:gst_memory_init: new memory 0x3d0bef00, maxsize:13 offset:0 size:6
0:00:00.514187000 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:799:gst_buffer_new: new 0xffffa40172f0
0:00:00.514209875 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:414:_memory_add: buffer 0xffffa40172f0, idx -1, mem 0x3d0bef00
0:00:00.514236875 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:855:gst_buffer_new_allocate: new buffer 0xffffa40172f0 of size 6 from allocator (nil)
0:00:00.514266625 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1826:gst_buffer_fill: buffer 0xffffa40172f0, offset 0, size 4
0:00:00.514297250 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1826:gst_buffer_fill: buffer 0xffffa40172f0, offset 4, size 2
0:00:00.514328125 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1582:gst_buffer_resize_range: trim 0xffffa40172f0 0-6 size:6 offs:0 max:13
0:00:00.514370375 8744 0x3d233140 LOG adapter gstadapter.c:389:gst_adapter_push:<GstAdapter at 0x3d20c120> pushing 0xffffa40172f0 first 6 bytes
0:00:00.514402250 8744 0x3d233140 DEBUG h264parse gsth264parse.c:914:gst_h264_parse_collect_nal:<my_h264parse> parsing collected nal
0:00:00.514424875 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:242:gst_h264_parse_nalu_header: Nal type 6, ref_idc 0
0:00:00.514456250 8744 0x3d233140 LOG h264parse gsth264parse.c:922:gst_h264_parse_collect_nal:<my_h264parse> nal type: 9 AU delimiter
0:00:00.514506375 8744 0x3d233140 LOG h264parse gsth264parse.c:941:gst_h264_parse_collect_nal:<my_h264parse> next nal type: 6 SEI
0:00:00.514537625 8744 0x3d233140 LOG h264parse gsth264parse.c:948:gst_h264_parse_collect_nal:<my_h264parse> au complete: 0
0:00:00.514566125 8744 0x3d233140 DEBUG h264parse gsth264parse.c:1264:gst_h264_parse_handle_frame:<my_h264parse> Looking for more
0:00:00.514587500 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:242:gst_h264_parse_nalu_header: Nal type 6, ref_idc 0
0:00:00.514612750 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:1366:gst_h264_parser_identify_nalu: Complete nal found. Off: 10, Size: 12
0:00:00.514643750 8744 0x3d233140 DEBUG h264parse gsth264parse.c:1162:gst_h264_parse_handle_frame:<my_h264parse> complete nal (offset, size): (10, 12)
0:00:00.514674375 8744 0x3d233140 DEBUG h264parse gsth264parse.c:1219:gst_h264_parse_handle_frame:<my_h264parse> 0xffffa4016010 complete nal found. Off: 10, Size: 12
0:00:00.514708000 8744 0x3d233140 DEBUG h264parse gsth264parse.c:721:gst_h264_parse_process_nal:<my_h264parse> processing nal of type 6 SEI, size 12
0:00:00.514740125 8744 0x3d233140 WARN h264parse gsth264parse.c:1236:gst_h264_parse_handle_frame:<my_h264parse> broken/invalid nal Type: 6 SEI, Size: 12 will be dropped
0:00:00.514774250 8744 0x3d233140 DEBUG h264parse gsth264parse.c:1294:gst_h264_parse_handle_frame:<my_h264parse> skipping 12
0:00:00.514801875 8744 0x3d233140 DEBUG h264parse gsth264parse.c:186:gst_h264_parse_reset_frame:<my_h264parse> reset frame
0:00:00.514823250 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:725:_gst_buffer_free: finalize 0xffffa40172f0
0:00:00.514847500 8744 0x3d233140 DEBUG GST_MEMORY gstmemory.c:88:_gst_memory_free: free memory 0x3d0bef00
0:00:00.514884125 8744 0x3d233140 LOG baseparse gstbaseparse.c:2166:gst_base_parse_handle_buffer:<my_h264parse> handle_frame skipped 12, flushed 0
0:00:00.514916250 8744 0x3d233140 LOG baseparse gstbaseparse.c:2176:gst_base_parse_handle_buffer:<my_h264parse> finding sync, skipping 12 bytes
0:00:00.514940750 8744 0x3d233140 DEBUG baseparse gstbaseparse.c:2194:gst_base_parse_handle_buffer: Asked to skip 12 (2717 available)
0:00:00.514976375 8744 0x3d233140 LOG adapter gstadapter.c:634:gst_adapter_flush_unchecked:<GstAdapter at 0x3d20c000> flushing 12 bytes
0:00:00.515006000 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:725:_gst_buffer_free: finalize 0xffffa40171e0
0:00:00.515051375 8744 0x3d233140 LOG adapter gstadapter.c:974:gst_adapter_get_buffer:<GstAdapter at 0x3d20c000> getting buffer of 2705 bytes
0:00:00.515082750 8744 0x3d233140 LOG adapter gstadapter.c:994:gst_adapter_get_buffer:<GstAdapter at 0x3d20c000> providing buffer of 2705 bytes via region copy
0:00:00.515115250 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:799:gst_buffer_new: new 0xffffa4017400
0:00:00.515138750 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:2039:gst_buffer_copy_region: new region copy 0xffffa4017400 of 0xffffa40170d0 12-2705
0:00:00.515169375 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:515:gst_buffer_copy_into: copy 0xffffa40170d0 to 0xffffa4017400, offset 12-2705/2717
0:00:00.515205875 8744 0x3d233140 DEBUG GST_MEMORY gstmemory.c:139:gst_memory_init: new memory 0x3d227610, maxsize:2717 offset:12 size:2705
0:00:00.515236875 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:414:_memory_add: buffer 0xffffa4017400, idx -1, mem 0x3d227610
0:00:00.515270250 8744 0x3d233140 LOG baseparse gstbaseparse.c:2148:gst_base_parse_handle_buffer:<my_h264parse> handling buffer of size 2705 with dts 99:99:99.999999999, pts 99:99:99.999999999, duration 99:99:99.999999999
0:00:00.515338750 8744 0x3d233140 LOG baseparse gstbaseparse.c:2110:gst_base_parse_prepare_frame:<my_h264parse> preparing frame at offset 18446744073709551615 (0xffffffffffffffff) of size 2705
0:00:00.515374125 8744 0x3d233140 DEBUG baseparse gstbaseparse.c:757:gst_base_parse_update_frame:<my_h264parse> marking DISCONT
0:00:00.515400000 8744 0x3d233140 LOG baseparse gstbaseparse.c:764:gst_base_parse_update_frame:<my_h264parse> marking as new frame
0:00:00.515423500 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1721:gst_buffer_map_range: buffer 0xffffa4017400, idx 0, length -1, flags 0001
0:00:00.515454000 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:213:_get_merged_memory: buffer 0xffffa4017400, idx 0, length 1
0:00:00.515488125 8744 0x3d233140 LOG h264parse gsth264parse.c:1097:gst_h264_parse_handle_frame:<my_h264parse> parsing new frame
0:00:00.515513250 8744 0x3d233140 DEBUG h264parse gsth264parse.c:186:gst_h264_parse_reset_frame:<my_h264parse> reset frame
0:00:00.515538625 8744 0x3d233140 DEBUG h264parse gsth264parse.c:1112:gst_h264_parse_handle_frame:<my_h264parse> last parse position 0
0:00:00.515562750 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:242:gst_h264_parse_nalu_header: Nal type 6, ref_idc 0
0:00:00.515592625 8744 0x3d233140 DEBUG h264parse gsth264parse.c:1294:gst_h264_parse_handle_frame:<my_h264parse> skipping 10
0:00:00.515619500 8744 0x3d233140 DEBUG h264parse gsth264parse.c:186:gst_h264_parse_reset_frame:<my_h264parse> reset frame
0:00:00.515644625 8744 0x3d233140 LOG baseparse gstbaseparse.c:2166:gst_base_parse_handle_buffer:<my_h264parse> handle_frame skipped 10, flushed 0
0:00:00.515673750 8744 0x3d233140 LOG baseparse gstbaseparse.c:2176:gst_base_parse_handle_buffer:<my_h264parse> finding sync, skipping 10 bytes
0:00:00.515696250 8744 0x3d233140 DEBUG baseparse gstbaseparse.c:2194:gst_base_parse_handle_buffer: Asked to skip 10 (2705 available)
0:00:00.515728250 8744 0x3d233140 LOG adapter gstadapter.c:634:gst_adapter_flush_unchecked:<GstAdapter at 0x3d20c000> flushing 10 bytes
0:00:00.515752000 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:725:_gst_buffer_free: finalize 0xffffa4017400
0:00:00.515774750 8744 0x3d233140 DEBUG GST_MEMORY gstmemory.c:88:_gst_memory_free: free memory 0x3d227610
0:00:00.515806625 8744 0x3d233140 LOG adapter gstadapter.c:974:gst_adapter_get_buffer:<GstAdapter at 0x3d20c000> getting buffer of 2695 bytes
0:00:00.515836875 8744 0x3d233140 LOG adapter gstadapter.c:994:gst_adapter_get_buffer:<GstAdapter at 0x3d20c000> providing buffer of 2695 bytes via region copy
0:00:00.515861000 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:799:gst_buffer_new: new 0xffffa4017510
0:00:00.515883125 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:2039:gst_buffer_copy_region: new region copy 0xffffa4017510 of 0xffffa40170d0 22-2695
0:00:00.515911750 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:515:gst_buffer_copy_into: copy 0xffffa40170d0 to 0xffffa4017510, offset 22-2695/2717
0:00:00.515943250 8744 0x3d233140 DEBUG GST_MEMORY gstmemory.c:139:gst_memory_init: new memory 0x3d2276a0, maxsize:2717 offset:22 size:2695
0:00:00.515972875 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:414:_memory_add: buffer 0xffffa4017510, idx -1, mem 0x3d2276a0
0:00:00.516005500 8744 0x3d233140 LOG baseparse gstbaseparse.c:2148:gst_base_parse_handle_buffer:<my_h264parse> handling buffer of size 2695 with dts 99:99:99.999999999, pts 99:99:99.999999999, duration 99:99:99.999999999
0:00:00.516053500 8744 0x3d233140 LOG baseparse gstbaseparse.c:2110:gst_base_parse_prepare_frame:<my_h264parse> preparing frame at offset 18446744073709551615 (0xffffffffffffffff) of size 2695
0:00:00.516105375 8744 0x3d233140 DEBUG baseparse gstbaseparse.c:757:gst_base_parse_update_frame:<my_h264parse> marking DISCONT
0:00:00.516131250 8744 0x3d233140 LOG baseparse gstbaseparse.c:764:gst_base_parse_update_frame:<my_h264parse> marking as new frame
0:00:00.516151750 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1721:gst_buffer_map_range: buffer 0xffffa4017510, idx 0, length -1, flags 0001
0:00:00.516182500 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:213:_get_merged_memory: buffer 0xffffa4017510, idx 0, length 1
0:00:00.516214250 8744 0x3d233140 LOG h264parse gsth264parse.c:1097:gst_h264_parse_handle_frame:<my_h264parse> parsing new frame
0:00:00.516239250 8744 0x3d233140 DEBUG h264parse gsth264parse.c:186:gst_h264_parse_reset_frame:<my_h264parse> reset frame
0:00:00.516263750 8744 0x3d233140 DEBUG h264parse gsth264parse.c:1112:gst_h264_parse_handle_frame:<my_h264parse> last parse position 0
0:00:00.516286875 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:242:gst_h264_parse_nalu_header: Nal type 6, ref_idc 0
0:00:00.516311625 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:242:gst_h264_parse_nalu_header: Nal type 6, ref_idc 0
0:00:00.516336375 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:1366:gst_h264_parser_identify_nalu: Complete nal found. Off: 3, Size: 21
0:00:00.516367125 8744 0x3d233140 DEBUG h264parse gsth264parse.c:1162:gst_h264_parse_handle_frame:<my_h264parse> complete nal (offset, size): (3, 21)
0:00:00.516396500 8744 0x3d233140 DEBUG h264parse gsth264parse.c:1219:gst_h264_parse_handle_frame:<my_h264parse> 0xffffa4016026 complete nal found. Off: 3, Size: 21
0:00:00.516429625 8744 0x3d233140 DEBUG h264parse gsth264parse.c:721:gst_h264_parse_process_nal:<my_h264parse> processing nal of type 6 SEI, size 21
0:00:00.516460875 8744 0x3d233140 WARN h264parse gsth264parse.c:1236:gst_h264_parse_handle_frame:<my_h264parse> broken/invalid nal Type: 6 SEI, Size: 21 will be dropped
0:00:00.516493000 8744 0x3d233140 DEBUG h264parse gsth264parse.c:1294:gst_h264_parse_handle_frame:<my_h264parse> skipping 21
0:00:00.516519750 8744 0x3d233140 DEBUG h264parse gsth264parse.c:186:gst_h264_parse_reset_frame:<my_h264parse> reset frame
0:00:00.516545500 8744 0x3d233140 LOG baseparse gstbaseparse.c:2166:gst_base_parse_handle_buffer:<my_h264parse> handle_frame skipped 21, flushed 0
0:00:00.516575750 8744 0x3d233140 LOG baseparse gstbaseparse.c:2176:gst_base_parse_handle_buffer:<my_h264parse> finding sync, skipping 21 bytes
0:00:00.516599375 8744 0x3d233140 DEBUG baseparse gstbaseparse.c:2194:gst_base_parse_handle_buffer: Asked to skip 21 (2695 available)
0:00:00.516631125 8744 0x3d233140 LOG adapter gstadapter.c:634:gst_adapter_flush_unchecked:<GstAdapter at 0x3d20c000> flushing 21 bytes
0:00:00.516654875 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:725:_gst_buffer_free: finalize 0xffffa4017510
0:00:00.516678000 8744 0x3d233140 DEBUG GST_MEMORY gstmemory.c:88:_gst_memory_free: free memory 0x3d2276a0
0:00:00.516709625 8744 0x3d233140 LOG adapter gstadapter.c:974:gst_adapter_get_buffer:<GstAdapter at 0x3d20c000> getting buffer of 2674 bytes
0:00:00.516739750 8744 0x3d233140 LOG adapter gstadapter.c:994:gst_adapter_get_buffer:<GstAdapter at 0x3d20c000> providing buffer of 2674 bytes via region copy
0:00:00.516763625 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:799:gst_buffer_new: new 0xffffa4017620
0:00:00.516785750 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:2039:gst_buffer_copy_region: new region copy 0xffffa4017620 of 0xffffa40170d0 43-2674
0:00:00.516814125 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:515:gst_buffer_copy_into: copy 0xffffa40170d0 to 0xffffa4017620, offset 43-2674/2717
0:00:00.516862625 8744 0x3d233140 DEBUG GST_MEMORY gstmemory.c:139:gst_memory_init: new memory 0x3d227730, maxsize:2717 offset:43 size:2674
0:00:00.516893250 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:414:_memory_add: buffer 0xffffa4017620, idx -1, mem 0x3d227730
0:00:00.516925875 8744 0x3d233140 LOG baseparse gstbaseparse.c:2148:gst_base_parse_handle_buffer:<my_h264parse> handling buffer of size 2674 with dts 99:99:99.999999999, pts 99:99:99.999999999, duration 99:99:99.999999999
0:00:00.516992500 8744 0x3d233140 LOG baseparse gstbaseparse.c:2110:gst_base_parse_prepare_frame:<my_h264parse> preparing frame at offset 18446744073709551615 (0xffffffffffffffff) of size 2674
0:00:00.517026500 8744 0x3d233140 DEBUG baseparse gstbaseparse.c:757:gst_base_parse_update_frame:<my_h264parse> marking DISCONT
0:00:00.517106625 8744 0x3d233140 LOG baseparse gstbaseparse.c:764:gst_base_parse_update_frame:<my_h264parse> marking as new frame
0:00:00.517133125 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1721:gst_buffer_map_range: buffer 0xffffa4017620, idx 0, length -1, flags 0001
0:00:00.517164375 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:213:_get_merged_memory: buffer 0xffffa4017620, idx 0, length 1
0:00:00.517197125 8744 0x3d233140 LOG h264parse gsth264parse.c:1097:gst_h264_parse_handle_frame:<my_h264parse> parsing new frame
0:00:00.517222000 8744 0x3d233140 DEBUG h264parse gsth264parse.c:186:gst_h264_parse_reset_frame:<my_h264parse> reset frame
0:00:00.517246625 8744 0x3d233140 DEBUG h264parse gsth264parse.c:1112:gst_h264_parse_handle_frame:<my_h264parse> last parse position 0
0:00:00.517270000 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:242:gst_h264_parse_nalu_header: Nal type 7, ref_idc 1
0:00:00.517299375 8744 0x3d233140 DEBUG h264parse gsth264parse.c:1294:gst_h264_parse_handle_frame:<my_h264parse> skipping 3
0:00:00.517325625 8744 0x3d233140 DEBUG h264parse gsth264parse.c:186:gst_h264_parse_reset_frame:<my_h264parse> reset frame
0:00:00.517350500 8744 0x3d233140 LOG baseparse gstbaseparse.c:2166:gst_base_parse_handle_buffer:<my_h264parse> handle_frame skipped 3, flushed 0
0:00:00.517380125 8744 0x3d233140 LOG baseparse gstbaseparse.c:2176:gst_base_parse_handle_buffer:<my_h264parse> finding sync, skipping 3 bytes
0:00:00.517402625 8744 0x3d233140 DEBUG baseparse gstbaseparse.c:2194:gst_base_parse_handle_buffer: Asked to skip 3 (2674 available)
0:00:00.517435375 8744 0x3d233140 LOG adapter gstadapter.c:634:gst_adapter_flush_unchecked:<GstAdapter at 0x3d20c000> flushing 3 bytes
0:00:00.517458625 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:725:_gst_buffer_free: finalize 0xffffa4017620
0:00:00.517481250 8744 0x3d233140 DEBUG GST_MEMORY gstmemory.c:88:_gst_memory_free: free memory 0x3d227730
0:00:00.517512625 8744 0x3d233140 LOG adapter gstadapter.c:974:gst_adapter_get_buffer:<GstAdapter at 0x3d20c000> getting buffer of 2671 bytes
0:00:00.517542875 8744 0x3d233140 LOG adapter gstadapter.c:994:gst_adapter_get_buffer:<GstAdapter at 0x3d20c000> providing buffer of 2671 bytes via region copy
0:00:00.517566625 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:799:gst_buffer_new: new 0xffffa4017620
0:00:00.517588750 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:2039:gst_buffer_copy_region: new region copy 0xffffa4017620 of 0xffffa40170d0 46-2671
0:00:00.517617500 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:515:gst_buffer_copy_into: copy 0xffffa40170d0 to 0xffffa4017620, offset 46-2671/2717
0:00:00.517649875 8744 0x3d233140 DEBUG GST_MEMORY gstmemory.c:139:gst_memory_init: new memory 0xffffa4018040, maxsize:2717 offset:46 size:2671
0:00:00.517697500 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:414:_memory_add: buffer 0xffffa4017620, idx -1, mem 0xffffa4018040
0:00:00.517732125 8744 0x3d233140 LOG baseparse gstbaseparse.c:2148:gst_base_parse_handle_buffer:<my_h264parse> handling buffer of size 2671 with dts 99:99:99.999999999, pts 99:99:99.999999999, duration 99:99:99.999999999
0:00:00.517779125 8744 0x3d233140 LOG baseparse gstbaseparse.c:2110:gst_base_parse_prepare_frame:<my_h264parse> preparing frame at offset 18446744073709551615 (0xffffffffffffffff) of size 2671
0:00:00.517814000 8744 0x3d233140 DEBUG baseparse gstbaseparse.c:757:gst_base_parse_update_frame:<my_h264parse> marking DISCONT
0:00:00.517839000 8744 0x3d233140 LOG baseparse gstbaseparse.c:764:gst_base_parse_update_frame:<my_h264parse> marking as new frame
0:00:00.517859375 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1721:gst_buffer_map_range: buffer 0xffffa4017620, idx 0, length -1, flags 0001
0:00:00.517889375 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:213:_get_merged_memory: buffer 0xffffa4017620, idx 0, length 1
0:00:00.517921500 8744 0x3d233140 LOG h264parse gsth264parse.c:1097:gst_h264_parse_handle_frame:<my_h264parse> parsing new frame
0:00:00.517946500 8744 0x3d233140 DEBUG h264parse gsth264parse.c:186:gst_h264_parse_reset_frame:<my_h264parse> reset frame
0:00:00.517971125 8744 0x3d233140 DEBUG h264parse gsth264parse.c:1112:gst_h264_parse_handle_frame:<my_h264parse> last parse position 0
0:00:00.517994250 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:242:gst_h264_parse_nalu_header: Nal type 7, ref_idc 1
0:00:00.518019250 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:242:gst_h264_parse_nalu_header: Nal type 7, ref_idc 1
0:00:00.518043875 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:1366:gst_h264_parser_identify_nalu: Complete nal found. Off: 4, Size: 19
0:00:00.518074375 8744 0x3d233140 DEBUG h264parse gsth264parse.c:1162:gst_h264_parse_handle_frame:<my_h264parse> complete nal (offset, size): (4, 19)
0:00:00.518104125 8744 0x3d233140 DEBUG h264parse gsth264parse.c:1219:gst_h264_parse_handle_frame:<my_h264parse> 0xffffa401603e complete nal found. Off: 4, Size: 19
0:00:00.518136875 8744 0x3d233140 DEBUG h264parse gsth264parse.c:721:gst_h264_parse_process_nal:<my_h264parse> processing nal of type 7 SPS, size 19
0:00:00.518164500 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:1749:gst_h264_parse_sps: parsing SPS
0:00:00.518196500 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:416:gst_h264_parse_vui_parameters: parsing "VUI Parameters"
0:00:00.518222250 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:387:gst_h264_parse_hrd_parameters: parsing "HRD Parameters"
0:00:00.518245875 8744 0x3d233140 LOG codecparsers_h264 gsth264parser.c:1596:gst_h264_parse_sps_data: initial width=176, height=144
0:00:00.518272875 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:1475:gst_h264_parser_parse_sps: adding sequence parameter set with id: 0 to array
0:00:00.518303125 8744 0x3d233140 DEBUG h264parse gsth264parse.c:742:gst_h264_parse_process_nal:<my_h264parse> triggering src caps check
0:00:00.518328625 8744 0x3d233140 DEBUG h264parse gsth264parse.c:459:gst_h264_parser_store_nal:<my_h264parse> storing sps 0
0:00:00.518366750 8744 0x3d233140 DEBUG GST_MEMORY gstmemory.c:139:gst_memory_init: new memory 0xffffa401b010, maxsize:26 offset:0 size:19
0:00:00.518398375 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:799:gst_buffer_new: new 0xffffa4017510
0:00:00.518420750 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:414:_memory_add: buffer 0xffffa4017510, idx -1, mem 0xffffa401b010
0:00:00.518465625 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:855:gst_buffer_new_allocate: new buffer 0xffffa4017510 of size 19 from allocator (nil)
0:00:00.518494875 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1826:gst_buffer_fill: buffer 0xffffa4017510, offset 0, size 19
0:00:00.518528625 8744 0x3d233140 LOG h264parse gsth264parse.c:895:gst_h264_parse_process_nal:<my_h264parse> collecting NAL in AVC frame
0:00:00.518554375 8744 0x3d233140 DEBUG h264parse gsth264parse.c:428:gst_h264_parse_wrap_nal:<my_h264parse> nal length 19
0:00:00.518577375 8744 0x3d233140 DEBUG GST_MEMORY gstmemory.c:139:gst_memory_init: new memory 0xffffa401b0c0, maxsize:30 offset:0 size:23
0:00:00.518607625 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:799:gst_buffer_new: new 0xffffa4017400
0:00:00.518629500 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:414:_memory_add: buffer 0xffffa4017400, idx -1, mem 0xffffa401b0c0
0:00:00.518656250 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:855:gst_buffer_new_allocate: new buffer 0xffffa4017400 of size 23 from allocator (nil)
0:00:00.518683125 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1826:gst_buffer_fill: buffer 0xffffa4017400, offset 0, size 4
0:00:00.518710500 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1826:gst_buffer_fill: buffer 0xffffa4017400, offset 4, size 19
0:00:00.518738750 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1582:gst_buffer_resize_range: trim 0xffffa4017400 0-23 size:23 offs:0 max:30
0:00:00.518779750 8744 0x3d233140 LOG adapter gstadapter.c:389:gst_adapter_push:<GstAdapter at 0x3d20c120> pushing 0xffffa4017400 first 23 bytes
0:00:00.518811000 8744 0x3d233140 DEBUG h264parse gsth264parse.c:914:gst_h264_parse_collect_nal:<my_h264parse> parsing collected nal
0:00:00.518832125 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:242:gst_h264_parse_nalu_header: Nal type 8, ref_idc 1
0:00:00.518861625 8744 0x3d233140 LOG h264parse gsth264parse.c:922:gst_h264_parse_collect_nal:<my_h264parse> nal type: 7 SPS
0:00:00.518890750 8744 0x3d233140 LOG h264parse gsth264parse.c:941:gst_h264_parse_collect_nal:<my_h264parse> next nal type: 8 PPS
0:00:00.518920000 8744 0x3d233140 LOG h264parse gsth264parse.c:948:gst_h264_parse_collect_nal:<my_h264parse> au complete: 0
0:00:00.518946625 8744 0x3d233140 DEBUG h264parse gsth264parse.c:1264:gst_h264_parse_handle_frame:<my_h264parse> Looking for more
0:00:00.518967125 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:242:gst_h264_parse_nalu_header: Nal type 8, ref_idc 1
0:00:00.518991500 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:1366:gst_h264_parser_identify_nalu: Complete nal found. Off: 27, Size: 4
0:00:00.519021125 8744 0x3d233140 DEBUG h264parse gsth264parse.c:1162:gst_h264_parse_handle_frame:<my_h264parse> complete nal (offset, size): (27, 4)
0:00:00.519050250 8744 0x3d233140 DEBUG h264parse gsth264parse.c:1219:gst_h264_parse_handle_frame:<my_h264parse> 0xffffa401603e complete nal found. Off: 27, Size: 4
0:00:00.519082625 8744 0x3d233140 DEBUG h264parse gsth264parse.c:721:gst_h264_parse_process_nal:<my_h264parse> processing nal of type 8 PPS, size 4
0:00:00.519109875 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:1885:gst_h264_parse_pps: parsing PPS
0:00:00.519136625 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:2017:gst_h264_parser_parse_pps: adding picture parameter set with id: 0 to array
0:00:00.519166875 8744 0x3d233140 DEBUG h264parse gsth264parse.c:775:gst_h264_parse_process_nal:<my_h264parse> triggering src caps check
0:00:00.519192375 8744 0x3d233140 DEBUG h264parse gsth264parse.c:463:gst_h264_parser_store_nal:<my_h264parse> storing pps 0
0:00:00.519215875 8744 0x3d233140 DEBUG GST_MEMORY gstmemory.c:139:gst_memory_init: new memory 0xffffa400a830, maxsize:11 offset:0 size:4
0:00:00.519273875 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:799:gst_buffer_new: new 0xffffa40171e0
0:00:00.519298000 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:414:_memory_add: buffer 0xffffa40171e0, idx -1, mem 0xffffa400a830
0:00:00.519325500 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:855:gst_buffer_new_allocate: new buffer 0xffffa40171e0 of size 4 from allocator (nil)
0:00:00.519353125 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1826:gst_buffer_fill: buffer 0xffffa40171e0, offset 0, size 4
0:00:00.519386500 8744 0x3d233140 LOG h264parse gsth264parse.c:895:gst_h264_parse_process_nal:<my_h264parse> collecting NAL in AVC frame
0:00:00.519411625 8744 0x3d233140 DEBUG h264parse gsth264parse.c:428:gst_h264_parse_wrap_nal:<my_h264parse> nal length 4
0:00:00.519435250 8744 0x3d233140 DEBUG GST_MEMORY gstmemory.c:139:gst_memory_init: new memory 0xffffa400a8d0, maxsize:15 offset:0 size:8
0:00:00.519465125 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:799:gst_buffer_new: new 0xffffa40172f0
0:00:00.519487625 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:414:_memory_add: buffer 0xffffa40172f0, idx -1, mem 0xffffa400a8d0
0:00:00.519514750 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:855:gst_buffer_new_allocate: new buffer 0xffffa40172f0 of size 8 from allocator (nil)
0:00:00.519541500 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1826:gst_buffer_fill: buffer 0xffffa40172f0, offset 0, size 4
0:00:00.519568875 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1826:gst_buffer_fill: buffer 0xffffa40172f0, offset 4, size 4
0:00:00.519596000 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1582:gst_buffer_resize_range: trim 0xffffa40172f0 0-8 size:8 offs:0 max:15
0:00:00.519635250 8744 0x3d233140 LOG adapter gstadapter.c:395:gst_adapter_push:<GstAdapter at 0x3d20c120> pushing 0xffffa40172f0 8 bytes at end, size now 31
0:00:00.519668875 8744 0x3d233140 DEBUG h264parse gsth264parse.c:914:gst_h264_parse_collect_nal:<my_h264parse> parsing collected nal
0:00:00.519690125 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:242:gst_h264_parse_nalu_header: Nal type 5, ref_idc 1
0:00:00.519720000 8744 0x3d233140 LOG h264parse gsth264parse.c:922:gst_h264_parse_collect_nal:<my_h264parse> nal type: 8 PPS
0:00:00.519749250 8744 0x3d233140 LOG h264parse gsth264parse.c:941:gst_h264_parse_collect_nal:<my_h264parse> next nal type: 5 Slice IDR
0:00:00.519778375 8744 0x3d233140 LOG h264parse gsth264parse.c:948:gst_h264_parse_collect_nal:<my_h264parse> au complete: 0
0:00:00.519805375 8744 0x3d233140 DEBUG h264parse gsth264parse.c:1264:gst_h264_parse_handle_frame:<my_h264parse> Looking for more
0:00:00.519825750 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:242:gst_h264_parse_nalu_header: Nal type 5, ref_idc 1
0:00:00.519852125 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:1366:gst_h264_parser_identify_nalu: Complete nal found. Off: 34, Size: 923
0:00:00.519881500 8744 0x3d233140 DEBUG h264parse gsth264parse.c:1162:gst_h264_parse_handle_frame:<my_h264parse> complete nal (offset, size): (34, 923)
0:00:00.519911125 8744 0x3d233140 DEBUG h264parse gsth264parse.c:1219:gst_h264_parse_handle_frame:<my_h264parse> 0xffffa401603e complete nal found. Off: 34, Size: 923
0:00:00.519943250 8744 0x3d233140 DEBUG h264parse gsth264parse.c:721:gst_h264_parse_process_nal:<my_h264parse> processing nal of type 5 Slice IDR, size 923
0:00:00.519974250 8744 0x3d233140 DEBUG h264parse gsth264parse.c:827:gst_h264_parse_process_nal:<my_h264parse> first_mb_in_slice = 0
0:00:00.519999625 8744 0x3d233140 DEBUG h264parse gsth264parse.c:830:gst_h264_parse_process_nal:<my_h264parse> frame start: 1
0:00:00.520040250 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:2079:gst_h264_parser_parse_slice_hdr: parsing "Slice header", slice type 2
0:00:00.520070250 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:700:gst_h264_slice_parse_dec_ref_pic_marking: parsing "Decoded reference picture marking"
0:00:00.520098500 8744 0x3d233140 DEBUG h264parse gsth264parse.c:840:gst_h264_parse_process_nal:<my_h264parse> parse result 0, first MB: 0, slice type: 2
0:00:00.520131125 8744 0x3d233140 DEBUG h264parse gsth264parse.c:863:gst_h264_parse_process_nal:<my_h264parse> marking IDR in frame at offset 31
0:00:00.520159000 8744 0x3d233140 LOG h264parse gsth264parse.c:895:gst_h264_parse_process_nal:<my_h264parse> collecting NAL in AVC frame
0:00:00.520183625 8744 0x3d233140 DEBUG h264parse gsth264parse.c:428:gst_h264_parse_wrap_nal:<my_h264parse> nal length 923
0:00:00.520211375 8744 0x3d233140 DEBUG GST_MEMORY gstmemory.c:139:gst_memory_init: new memory 0xffffa401aae0, maxsize:934 offset:0 size:927
0:00:00.520244750 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:799:gst_buffer_new: new 0xffffa4017730
0:00:00.520267375 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:414:_memory_add: buffer 0xffffa4017730, idx -1, mem 0xffffa401aae0
0:00:00.520294500 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:855:gst_buffer_new_allocate: new buffer 0xffffa4017730 of size 927 from allocator (nil)
0:00:00.520321500 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1826:gst_buffer_fill: buffer 0xffffa4017730, offset 0, size 4
0:00:00.520348500 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1826:gst_buffer_fill: buffer 0xffffa4017730, offset 4, size 923
0:00:00.520376250 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1582:gst_buffer_resize_range: trim 0xffffa4017730 0-927 size:927 offs:0 max:934
0:00:00.520416500 8744 0x3d233140 LOG adapter gstadapter.c:395:gst_adapter_push:<GstAdapter at 0x3d20c120> pushing 0xffffa4017730 927 bytes at end, size now 958
0:00:00.520449500 8744 0x3d233140 DEBUG h264parse gsth264parse.c:914:gst_h264_parse_collect_nal:<my_h264parse> parsing collected nal
0:00:00.520470375 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:242:gst_h264_parse_nalu_header: Nal type 5, ref_idc 1
0:00:00.520500250 8744 0x3d233140 LOG h264parse gsth264parse.c:922:gst_h264_parse_collect_nal:<my_h264parse> nal type: 5 Slice IDR
0:00:00.520529375 8744 0x3d233140 LOG h264parse gsth264parse.c:941:gst_h264_parse_collect_nal:<my_h264parse> next nal type: 5 Slice IDR
0:00:00.520558625 8744 0x3d233140 LOG h264parse gsth264parse.c:948:gst_h264_parse_collect_nal:<my_h264parse> au complete: 0
0:00:00.520585000 8744 0x3d233140 DEBUG h264parse gsth264parse.c:1264:gst_h264_parse_handle_frame:<my_h264parse> Looking for more
0:00:00.520605375 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:242:gst_h264_parse_nalu_header: Nal type 5, ref_idc 1
0:00:00.520632500 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:1351:gst_h264_parser_identify_nalu: Nal start 960, No end found
0:00:00.520660000 8744 0x3d233140 DEBUG h264parse gsth264parse.c:1166:gst_h264_parse_handle_frame:<my_h264parse> not a complete nal found at offset 960
0:00:00.520687500 8744 0x3d233140 DEBUG h264parse gsth264parse.c:1172:gst_h264_parse_handle_frame:<my_h264parse> draining, accepting with size 1711
0:00:00.520714875 8744 0x3d233140 DEBUG h264parse gsth264parse.c:1219:gst_h264_parse_handle_frame:<my_h264parse> 0xffffa401603e complete nal found. Off: 960, Size: 1711
0:00:00.520747250 8744 0x3d233140 DEBUG h264parse gsth264parse.c:721:gst_h264_parse_process_nal:<my_h264parse> processing nal of type 5 Slice IDR, size 1711
0:00:00.520795625 8744 0x3d233140 DEBUG h264parse gsth264parse.c:830:gst_h264_parse_process_nal:<my_h264parse> frame start: 1
0:00:00.520819875 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:2079:gst_h264_parser_parse_slice_hdr: parsing "Slice header", slice type 2
0:00:00.520844125 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:700:gst_h264_slice_parse_dec_ref_pic_marking: parsing "Decoded reference picture marking"
0:00:00.520870375 8744 0x3d233140 DEBUG h264parse gsth264parse.c:840:gst_h264_parse_process_nal:<my_h264parse> parse result 0, first MB: 49, slice type: 2
0:00:00.520902125 8744 0x3d233140 LOG h264parse gsth264parse.c:895:gst_h264_parse_process_nal:<my_h264parse> collecting NAL in AVC frame
0:00:00.520926625 8744 0x3d233140 DEBUG h264parse gsth264parse.c:428:gst_h264_parse_wrap_nal:<my_h264parse> nal length 1711
0:00:00.520959500 8744 0x3d233140 DEBUG GST_MEMORY gstmemory.c:139:gst_memory_init: new memory 0xffffa401bb10, maxsize:1722 offset:0 size:1715
0:00:00.520990750 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:799:gst_buffer_new: new 0xffffa4017840
0:00:00.521012875 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:414:_memory_add: buffer 0xffffa4017840, idx -1, mem 0xffffa401bb10
0:00:00.521039125 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:855:gst_buffer_new_allocate: new buffer 0xffffa4017840 of size 1715 from allocator (nil)
0:00:00.521097375 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1826:gst_buffer_fill: buffer 0xffffa4017840, offset 0, size 4
0:00:00.521124875 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1826:gst_buffer_fill: buffer 0xffffa4017840, offset 4, size 1711
0:00:00.521152750 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1582:gst_buffer_resize_range: trim 0xffffa4017840 0-1715 size:1715 offs:0 max:1722
0:00:00.521192750 8744 0x3d233140 LOG adapter gstadapter.c:395:gst_adapter_push:<GstAdapter at 0x3d20c120> pushing 0xffffa4017840 1715 bytes at end, size now 2673
0:00:00.521236500 8744 0x3d233140 DEBUG GST_CAPS gstpad.c:2705:gst_pad_has_current_caps:<my_h264parse:src> check current pad caps video/x-h264, stream-format=(string)byte-stream, alignment=(string)au, framerate=(fraction)0/1, parsed=(boolean)true
0:00:00.521303125 8744 0x3d233140 DEBUG GST_CAPS gstpad.c:2733:gst_pad_get_current_caps:<my_h264parse:sink> get current pad caps video/x-h264, stream-format=(string)byte-stream, alignment=(string)au, framerate=(fraction)0/1
0:00:00.521350250 8744 0x3d233140 DEBUG h264parse gsth264parse.c:1750:gst_h264_parse_update_src_caps:<my_h264parse> sps: 0xffffb396d010
0:00:00.521378500 8744 0x3d233140 INFO h264parse gsth264parse.c:1792:gst_h264_parse_update_src_caps:<my_h264parse> resolution changed 176x144
0:00:00.521423375 8744 0x3d233140 DEBUG GST_PERFORMANCE gstcaps.c:179:_gst_caps_copy:video/x-h264, stream-format=(string)byte-stream, alignment=(string)au, framerate=(fraction)0/1 doing copy 0x3d21fd40 -> 0x3d2336d0
0:00:00.521494250 8744 0x3d233140 DEBUG baseparse gstbaseparse.c:3877:gst_base_parse_set_frame_rate:<my_h264parse> invalid fps (0/1), ignoring parameters
0:00:00.521527250 8744 0x3d233140 LOG baseparse gstbaseparse.c:3903:gst_base_parse_set_frame_rate:<my_h264parse> set fps: 0/0 => duration: 18446744073709 ms
0:00:00.521559625 8744 0x3d233140 LOG baseparse gstbaseparse.c:3907:gst_base_parse_set_frame_rate:<my_h264parse> set lead in: 0 frames = 0 ms, lead out: 0 frames = 0 ms
0:00:00.521636625 8744 0x3d233140 DEBUG GST_CAPS gstpad.c:2733:gst_pad_get_current_caps:<my_h264parse:src> get current pad caps video/x-h264, stream-format=(string)byte-stream, alignment=(string)au, framerate=(fraction)0/1, parsed=(boolean)true
0:00:00.521725125 8744 0x3d233140 DEBUG GST_CAPS gstpad.c:2733:gst_pad_get_current_caps:<my_h264parse:src> get current pad caps video/x-h264, stream-format=(string)byte-stream, alignment=(string)au, framerate=(fraction)0/1, parsed=(boolean)true
0:00:00.521781500 8744 0x3d233140 INFO GST_EVENT gstevent.c:814:gst_event_new_caps: creating caps event video/x-h264, stream-format=(string)byte-stream, alignment=(string)au, framerate=(fraction)0/1, width=(int)176, height=(int)144, interlace-mode=(string)progressive, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8, parsed=(boolean)true, profile=(string)constrained-baseline, level=(string)1.2
0:00:00.521860875 8744 0x3d233140 DEBUG GST_EVENT gstevent.c:306:gst_event_new_custom: creating new event 0xffffa4007c90 caps 12814
0:00:00.521901500 8744 0x3d233140 LOG GST_PADS gstpad.c:5176:store_sticky_event:<my_h264parse:src> stored sticky event caps
0:00:00.521932125 8744 0x3d233140 DEBUG GST_PADS gstpad.c:5182:store_sticky_event:<my_h264parse:src> notify caps
0:00:00.521972250 8744 0x3d233140 LOG GST_PROPERTIES gstobject.c:448:gst_object_dispatch_properties_changed:<my_h264parse> deep notification from src (caps)
0:00:00.522008000 8744 0x3d233140 LOG GST_PROPERTIES gstobject.c:448:gst_object_dispatch_properties_changed:<my_pipeline> deep notification from src (caps)
0:00:00.522043000 8744 0x3d233140 DEBUG GST_PADS gstpad.c:3937:check_sticky:<my_h264parse:src> pushing all sticky events
0:00:00.522071500 8744 0x3d233140 DEBUG GST_PADS gstpad.c:3867:push_sticky:<my_h264parse:src> event stream-start was already received
0:00:00.522103375 8744 0x3d233140 LOG GST_PADS gstpad.c:5351:gst_pad_push_event_unchecked:<my_h264parse:src> sending event 0xffffa4007c90 (caps) to peerpad <my_vdec:sink>
0:00:00.522144375 8744 0x3d233140 DEBUG GST_EVENT gstpad.c:5638:gst_pad_send_event_unchecked:<my_vdec:sink> have event type caps event: 0xffffa4007c90, time 99:99:99.999999999, seq-num 32, GstEventCaps, caps=(GstCaps)"video/x-h264\,\ stream-format\=\(string\)byte-stream\,\ alignment\=\(string\)au\,\ framerate\=\(fraction\)0/1\,\ width\=\(int\)176\,\ height\=\(int\)144\,\ interlace-mode\=\(string\)progressive\,\ chroma-format\=\(string\)4:2:0\,\ bit-depth-luma\=\(uint\)8\,\ bit-depth-chroma\=\(uint\)8\,\ parsed\=\(boolean\)true\,\ profile\=\(string\)constrained-baseline\,\ level\=\(string\)1.2";
0:00:00.522270500 8744 0x3d233140 DEBUG GST_CAPS gstutils.c:3123:gst_pad_query_accept_caps:<my_vdec:sink> accept caps of video/x-h264, stream-format=(string)byte-stream, alignment=(string)au, framerate=(fraction)0/1, width=(int)176, height=(int)144, interlace-mode=(string)progressive, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8, parsed=(boolean)true, profile=(string)constrained-baseline, level=(string)1.2
0:00:00.522345000 8744 0x3d233140 DEBUG query gstquery.c:675:gst_query_new_custom: creating new query 0x3d233720 accept-caps
0:00:00.522381500 8744 0x3d233140 DEBUG GST_PADS gstpad.c:4006:gst_pad_query:<my_vdec:sink> doing query 0x3d233720 (accept-caps)
0:00:00.522415500 8744 0x3d233140 DEBUG videodecoder gstvideodecoder.c:1884:gst_video_decoder_sink_query:<my_vdec> received query 40963, accept-caps
0:00:00.522447125 8744 0x3d233140 LOG videodecoder gstvideodecoder.c:1792:gst_video_decoder_sink_query_default:<my_vdec> handling query: accept-caps query: 0x3d233720, GstQueryAcceptCaps, caps=(GstCaps)"video/x-h264\,\ stream-format\=\(string\)byte-stream\,\ alignment\=\(string\)au\,\ framerate\=\(fraction\)0/1\,\ width\=\(int\)176\,\ height\=\(int\)144\,\ interlace-mode\=\(string\)progressive\,\ chroma-format\=\(string\)4:2:0\,\ bit-depth-luma\=\(uint\)8\,\ bit-depth-chroma\=\(uint\)8\,\ parsed\=\(boolean\)true\,\ profile\=\(string\)constrained-baseline\,\ level\=\(string\)1.2", result=(boolean)false;
0:00:00.522577250 8744 0x3d233140 DEBUG GST_CAPS gstutils.c:3040:gst_pad_query_caps:<my_vdec:sink> get pad caps with filter video/x-h264, stream-format=(string)byte-stream, alignment=(string)au, framerate=(fraction)0/1, width=(int)176, height=(int)144, interlace-mode=(string)progressive, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8, parsed=(boolean)true, profile=(string)constrained-baseline, level=(string)1.2
0:00:00.522654000 8744 0x3d233140 DEBUG query gstquery.c:675:gst_query_new_custom: creating new query 0x3d233770 caps
0:00:00.522687250 8744 0x3d233140 DEBUG GST_PADS gstpad.c:4006:gst_pad_query:<my_vdec:sink> doing query 0x3d233770 (caps)
0:00:00.522718125 8744 0x3d233140 DEBUG videodecoder gstvideodecoder.c:1884:gst_video_decoder_sink_query:<my_vdec> received query 43523, caps
0:00:00.522747875 8744 0x3d233140 LOG videodecoder gstvideodecoder.c:1792:gst_video_decoder_sink_query_default:<my_vdec> handling query: caps query: 0x3d233770, GstQueryCaps, filter=(GstCaps)"video/x-h264\,\ stream-format\=\(string\)byte-stream\,\ alignment\=\(string\)au\,\ framerate\=\(fraction\)0/1\,\ width\=\(int\)176\,\ height\=\(int\)144\,\ interlace-mode\=\(string\)progressive\,\ chroma-format\=\(string\)4:2:0\,\ bit-depth-luma\=\(uint\)8\,\ bit-depth-chroma\=\(uint\)8\,\ parsed\=\(boolean\)true\,\ profile\=\(string\)constrained-baseline\,\ level\=\(string\)1.2", caps=(GstCaps)"NULL";
0:00:00.522881750 8744 0x3d233140 DEBUG GST_CAPS gstutils.c:3086:gst_pad_peer_query_caps:<my_vdec:src> get pad peer caps with filter video/x-raw, width=(int)176, height=(int)144, framerate=(fraction)0/1
0:00:00.522933625 8744 0x3d233140 DEBUG query gstquery.c:675:gst_query_new_custom: creating new query 0xffffa4005e30 caps
0:00:00.522968625 8744 0x3d233140 DEBUG GST_PADS gstpad.c:4133:gst_pad_peer_query:<my_vdec:src> peer query 0xffffa4005e30 (caps)
0:00:00.523004750 8744 0x3d233140 DEBUG GST_PADS gstpad.c:4006:gst_pad_query:<my_sink:sink> doing query 0xffffa4005e30 (caps)
0:00:00.523155375 8744 0x3d233140 DEBUG GST_PERFORMANCE gstcaps.c:179:_gst_caps_copy:video/x-raw, format=(string){ BGRx, BGRA, RGBx, xBGR, xRGB, RGBA, ABGR, ARGB, RGB, BGR, RGB16, BGR16, YUY2, YVYU, UYVY, AYUV, NV12, NV21, NV16, YUV9, YVU9, Y41B, I420, YV12, Y42B, v308 }, width=(int)[ 1, 2147483647 ], height=(int)[ 1, 2147483647 ], framerate=(fraction)[ 0/1, 2147483647/1 ]; video/x-raw(memory:DMABuf), format=(string){ BGRx, BGRA, RGBx, xBGR, xRGB, RGBA, ABGR, ARGB, RGB, BGR, RGB16, BGR16, YUY2, YVYU, UYVY, AYUV, NV12, NV21, NV16, YUV9, YVU9, Y41B, I420, YV12, Y42B, v308 }, width=(int)[ 1, 2147483647 ], height=(int)[ 1, 2147483647 ], framerate=(fraction)[ 0/1, 2147483647/1 ] doing copy 0x3d21fe30 -> 0xffffa4005c50
0:00:00.523242875 8744 0x3d233140 DEBUG GST_PERFORMANCE gstminiobject.c:317:gst_mini_object_make_writable: copy GstCaps miniobject 0x3d21fe30 -> 0xffffa4005c50
0:00:00.523336875 8744 0x3d233140 DEBUG waylandsink gstwaylandsink.c:569:gst_wayland_sink_get_caps:<my_sink> display caps: video/x-raw, format=(string){ BGRA, BGRx, RGB16, I420, NV12, YUY2 }, width=(int)[ 1, 2147483647 ], height=(int)[ 1, 2147483647 ], framerate=(fraction)[ 0/1, 2147483647/1 ]; video/x-raw(memory:DMABuf), format=(string){ RGB16, BGRx, RGBx, xBGR, ARGB, BGRA, RGBA, ABGR, YUY2, NV12, I420 }, width=(int)[ 1, 2147483647 ], height=(int)[ 1, 2147483647 ], framerate=(fraction)[ 0/1, 2147483647/1 ]
0:00:00.523491625 8744 0x3d233140 DEBUG GST_PADS gstpad.c:4029:gst_pad_query:<my_sink:sink> sent query 0xffffa4005e30 (caps), result 1
0:00:00.523532000 8744 0x3d233140 DEBUG GST_CAPS gstutils.c:3093:gst_pad_peer_query_caps:<my_vdec:src> peer query returned video/x-raw, width=(int)176, height=(int)144, framerate=(fraction)0/1, format=(string){ BGRA, BGRx, RGB16, I420, NV12, YUY2 }
0:00:00.523633375 8744 0x3d233140 LOG default gstvideoutilsprivate.c:128:__gst_video_element_proxy_getcaps:<my_vdec> template caps video/x-h264, stream-format=(string)byte-stream, alignment=(string)au, width=(int)[ 1, 32768 ], height=(int)[ 1, 32768 ], colorimetry=(string){ bt601, smpte240m, bt709, 2:4:5:2, 2:4:5:3, 1:4:7:1, 2:4:7:1, 2:4:12:8, bt2020, 2:0:0:0 }, parsed=(boolean)true
0:00:00.523698750 8744 0x3d233140 LOG default gstvideoutilsprivate.c:129:__gst_video_element_proxy_getcaps:<my_vdec> allowed caps video/x-raw, width=(int)176, height=(int)144, framerate=(fraction)0/1, format=(string)NV12
0:00:00.523791500 8744 0x3d233140 LOG default gstvideoutilsprivate.c:138:__gst_video_element_proxy_getcaps:<my_vdec> intersecting with video/x-h264, stream-format=(string)byte-stream, alignment=(string)au, framerate=(fraction)0/1, width=(int)176, height=(int)144, interlace-mode=(string)progressive, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8, parsed=(boolean)true, profile=(string)constrained-baseline, level=(string)1.2
0:00:00.523899125 8744 0x3d233140 LOG default gstvideoutilsprivate.c:147:__gst_video_element_proxy_getcaps:<my_vdec> proxy caps video/x-h264, width=(int)176, height=(int)144, framerate=(fraction)0/1, stream-format=(string)byte-stream, alignment=(string)au, colorimetry=(string){ bt601, smpte240m, bt709, 2:4:5:2, 2:4:5:3, 1:4:7:1, 2:4:7:1, 2:4:12:8, bt2020, 2:0:0:0 }, parsed=(boolean)true, interlace-mode=(string)progressive, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8, profile=(string)constrained-baseline, level=(string)1.2
0:00:00.523979375 8744 0x3d233140 DEBUG v4l2videodec gstv4l2videodec.c:925:gst_v4l2_video_dec_sink_getcaps:<my_vdec> Returning sink caps video/x-h264, width=(int)176, height=(int)144, framerate=(fraction)0/1, stream-format=(string)byte-stream, alignment=(string)au, colorimetry=(string){ bt601, smpte240m, bt709, 2:4:5:2, 2:4:5:3, 1:4:7:1, 2:4:7:1, 2:4:12:8, bt2020, 2:0:0:0 }, parsed=(boolean)true, interlace-mode=(string)progressive, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8, profile=(string)constrained-baseline, level=(string)1.2
0:00:00.524058125 8744 0x3d233140 LOG videodecoder gstvideodecoder.c:1777:gst_video_decoder_sink_getcaps:<my_vdec> Returning caps video/x-h264, width=(int)176, height=(int)144, framerate=(fraction)0/1, stream-format=(string)byte-stream, alignment=(string)au, colorimetry=(string){ bt601, smpte240m, bt709, 2:4:5:2, 2:4:5:3, 1:4:7:1, 2:4:7:1, 2:4:12:8, bt2020, 2:0:0:0 }, parsed=(boolean)true, interlace-mode=(string)progressive, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8, profile=(string)constrained-baseline, level=(string)1.2
0:00:00.524141250 8744 0x3d233140 DEBUG GST_PADS gstpad.c:4029:gst_pad_query:<my_vdec:sink> sent query 0x3d233770 (caps), result 1
0:00:00.524177500 8744 0x3d233140 DEBUG GST_CAPS gstutils.c:3047:gst_pad_query_caps:<my_vdec:sink> query returned video/x-h264, width=(int)176, height=(int)144, framerate=(fraction)0/1, stream-format=(string)byte-stream, alignment=(string)au, colorimetry=(string){ bt601, smpte240m, bt709, 2:4:5:2, 2:4:5:3, 1:4:7:1, 2:4:7:1, 2:4:12:8, bt2020, 2:0:0:0 }, parsed=(boolean)true, interlace-mode=(string)progressive, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8, profile=(string)constrained-baseline, level=(string)1.2
0:00:00.524277250 8744 0x3d233140 DEBUG GST_PADS gstpad.c:4029:gst_pad_query:<my_vdec:sink> sent query 0x3d233720 (accept-caps), result 1
0:00:00.524315500 8744 0x3d233140 DEBUG default gstutils.c:3128:gst_pad_query_accept_caps:<my_vdec:sink> query returned 1
0:00:00.524347000 8744 0x3d233140 DEBUG videodecoder gstvideodecoder.c:1393:gst_video_decoder_sink_event:<my_vdec> received event 12814, caps
0:00:00.524380000 8744 0x3d233140 DEBUG videodecoder gstvideodecoder.c:683:gst_video_decoder_setcaps:<my_vdec> setcaps video/x-h264, stream-format=(string)byte-stream, alignment=(string)au, framerate=(fraction)0/1, width=(int)176, height=(int)144, interlace-mode=(string)progressive, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8, parsed=(boolean)true, profile=(string)constrained-baseline, level=(string)1.2
0:00:00.524470875 8744 0x3d233140 DEBUG videodecoder gstvideodecoder.c:690:gst_video_decoder_setcaps:<my_vdec> Checking if caps changed old video/x-h264, stream-format=(string)byte-stream, alignment=(string)au, framerate=(fraction)0/1, parsed=(boolean)true new video/x-h264, stream-format=(string)byte-stream, alignment=(string)au, framerate=(fraction)0/1, width=(int)176, height=(int)144, interlace-mode=(string)progressive, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8, parsed=(boolean)true, profile=(string)constrained-baseline, level=(string)1.2
0:00:00.524563875 8744 0x3d233140 DEBUG video-info video-info.c:357:gst_video_info_from_caps: parsing caps video/x-h264, stream-format=(string)byte-stream, alignment=(string)au, framerate=(fraction)0/1, width=(int)176, height=(int)144, interlace-mode=(string)progressive, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8, parsed=(boolean)true, profile=(string)constrained-baseline, level=(string)1.2
0:00:00.524685500 8744 0x3d233140 DEBUG video-info video-info.c:468:gst_video_info_from_caps: no colorimetry, using default
0:00:00.524717000 8744 0x3d233140 DEBUG v4l2videodec gstv4l2videodec.c:239:gst_v4l2_video_dec_set_format:<my_vdec> Setting format: video/x-h264, stream-format=(string)byte-stream, alignment=(string)au, framerate=(fraction)0/1, width=(int)176, height=(int)144, interlace-mode=(string)progressive, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8, parsed=(boolean)true, profile=(string)constrained-baseline, level=(string)1.2
0:00:00.524819500 8744 0x3d233140 DEBUG GST_PADS gstpad.c:6194:gst_pad_get_task_state:<my_vdec:src> pad has no task
0:00:00.524850500 8744 0x3d233140 DEBUG v4l2 gstv4l2object.c:4201:gst_v4l2_object_stop:<my_vdec:sink> stopping
0:00:00.524877625 8744 0x3d233140 DEBUG v4l2 gstv4l2object.c:4209:gst_v4l2_object_stop:<my_vdec:sink> deactivating pool
0:00:00.524903750 8744 0x3d233140 LOG bufferpool gstbufferpool.c:506:gst_buffer_pool_set_active:<my_vdec:pool:sink> active 0
0:00:00.524932000 8744 0x3d233140 DEBUG bufferpool gstbufferpool.c:552:gst_buffer_pool_set_active:<my_vdec:pool:sink> pool was in the right state
0:00:00.524962375 8744 0x3d233140 LOG v4l2allocator gstv4l2allocator.c:413:gst_v4l2_allocator_dispose:<my_vdec:pool:sink:allocator> called
0:00:00.524994625 8744 0x3d233140 LOG v4l2allocator gstv4l2allocator.c:430:gst_v4l2_allocator_finalize:<my_vdec:pool:sink:allocator> called
0:00:00.525081750 8744 0x3d233140 DEBUG GST_POLL gstpoll.c:772:gst_poll_free: 0xffffa4005ca0: freeing
0:00:00.525193375 8744 0x3d233140 DEBUG bufferpool gstbufferpool.c:197:gst_buffer_pool_finalize:<my_vdec:pool:sink> 0xffffa4012090 finalize
0:00:00.525223625 8744 0x3d233140 LOG bufferpool gstbufferpool.c:506:gst_buffer_pool_set_active:<my_vdec:pool:sink> active 0
0:00:00.525250750 8744 0x3d233140 DEBUG bufferpool gstbufferpool.c:552:gst_buffer_pool_set_active:<my_vdec:pool:sink> pool was in the right state
0:00:00.525273250 8744 0x3d233140 DEBUG GST_POLL gstpoll.c:772:gst_poll_free: 0xffffa4005d90: freeing
0:00:00.525358000 8744 0x3d233140 DEBUG GST_CAPS gstpad.c:2733:gst_pad_get_current_caps:<my_vdec:src> get current pad caps (NULL)
0:00:00.525388000 8744 0x3d233140 DEBUG query gstquery.c:675:gst_query_new_custom: creating new query 0xffffa4005ed0 allocation
0:00:00.525440875 8744 0x3d233140 DEBUG GST_PADS gstpad.c:4133:gst_pad_peer_query:<my_vdec:src> peer query 0xffffa4005ed0 (allocation)
0:00:00.525475125 8744 0x3d233140 DEBUG GST_PADS gstpad.c:4006:gst_pad_query:<my_sink:sink> doing query 0xffffa4005ed0 (allocation)
0:00:00.525512000 8744 0x3d233140 DEBUG GST_META gstmeta.c:88:gst_meta_api_type_register: register API "GstDmabufMetaAPI"
0:00:00.525595875 8744 0x3d233140 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'dmabuf.drm_modifier'
0:00:00.525629500 8744 0x3d233140 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'guint64'
0:00:00.525697000 8744 0x3d233140 DEBUG GST_META gstmeta.c:88:gst_meta_api_type_register: register API "GstVideoMetaAPI"
0:00:00.525731125 8744 0x3d233140 DEBUG GST_META gstmeta.c:95:gst_meta_api_type_register: adding tag "video"
0:00:00.525758125 8744 0x3d233140 DEBUG GST_META gstmeta.c:95:gst_meta_api_type_register: adding tag "memory"
0:00:00.525783500 8744 0x3d233140 DEBUG GST_META gstmeta.c:95:gst_meta_api_type_register: adding tag "colorspace"
0:00:00.525809000 8744 0x3d233140 DEBUG GST_META gstmeta.c:95:gst_meta_api_type_register: adding tag "size"
0:00:00.525840375 8744 0x3d233140 DEBUG GST_META gstmeta.c:88:gst_meta_api_type_register: register API "GstVideoCropMetaAPI"
0:00:00.525872375 8744 0x3d233140 DEBUG GST_META gstmeta.c:95:gst_meta_api_type_register: adding tag "video"
0:00:00.525898500 8744 0x3d233140 DEBUG GST_META gstmeta.c:95:gst_meta_api_type_register: adding tag "size"
0:00:00.525923375 8744 0x3d233140 DEBUG GST_META gstmeta.c:95:gst_meta_api_type_register: adding tag "orientation"
0:00:00.525962125 8744 0x3d233140 DEBUG GST_PADS gstpad.c:4029:gst_pad_query:<my_sink:sink> sent query 0xffffa4005ed0 (allocation), result 1
0:00:00.526006250 8744 0x3d233140 DEBUG v4l2 gstv4l2object.c:4201:gst_v4l2_object_stop:<my_vdec:src> stopping
0:00:00.526034125 8744 0x3d233140 DEBUG v4l2 gstv4l2object.c:3882:gst_v4l2_object_set_format:<my_vdec:sink> Setting format to video/x-h264, stream-format=(string)byte-stream, alignment=(string)au, framerate=(fraction)0/1, width=(int)176, height=(int)144, interlace-mode=(string)progressive, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8, parsed=(boolean)true, profile=(string)constrained-baseline, level=(string)1.2
0:00:00.526107625 8744 0x3d233140 DEBUG video-info video-info.c:357:gst_video_info_from_caps: parsing caps video/x-h264, stream-format=(string)byte-stream, alignment=(string)au, framerate=(fraction)0/1, width=(int)176, height=(int)144, interlace-mode=(string)progressive, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8, parsed=(boolean)true, profile=(string)constrained-baseline, level=(string)1.2
0:00:00.526185125 8744 0x3d233140 DEBUG video-info video-info.c:468:gst_video_info_from_caps: no colorimetry, using default
0:00:00.526225750 8744 0x3d233140 DEBUG v4l2 gstv4l2object.c:3320:gst_v4l2_object_set_format_full:<my_vdec:sink> progressive video
0:00:00.526256250 8744 0x3d233140 DEBUG v4l2 gstv4l2object.c:3458:gst_v4l2_object_set_format_full:<my_vdec:sink> Desired format 176x144, format H264 stride: 0
0:00:00.526297750 8744 0x3d233140 DEBUG v4l2 gstv4l2object.c:3510:gst_v4l2_object_set_format_full:<my_vdec:sink> Desired format is 176x144, format H264, nb planes 1
0:00:00.526336250 8744 0x3d233140 DEBUG v4l2 gstv4l2object.c:3516:gst_v4l2_object_set_format_full:<my_vdec:sink> stride 0
0:00:00.526366000 8744 0x3d233140 DEBUG v4l2 gstv4l2object.c:3537:gst_v4l2_object_set_format_full:<my_vdec:sink> Desired colorspace is 0:0:0:0
0:00:00.526462375 8744 0x3d233140 DEBUG v4l2 gstv4l2object.c:3553:gst_v4l2_object_set_format_full:<my_vdec:sink> Got format of 176x144, format H264, nb planes 1, colorspace 0
0:00:00.526504875 8744 0x3d233140 DEBUG v4l2 gstv4l2object.c:3560:gst_v4l2_object_set_format_full:<my_vdec:sink> stride 0, sizeimage 6291456
0:00:00.526534125 8744 0x3d233140 DEBUG v4l2 gstv4l2object.c:2085:gst_v4l2_object_get_colorspace: Unknown enum v4l2_colorspace 0
0:00:00.526567250 8744 0x3d233140 DEBUG v4l2 gstv4l2object.c:3633:gst_v4l2_object_set_format_full:<my_vdec:sink> Desired framerate: 0/1
0:00:00.526605125 8744 0x3d233140 DEBUG v4l2 gstv4l2object.c:3211:gst_v4l2_object_save_format:<my_vdec:sink> Got sizeimage 6291456
0:00:00.526637125 8744 0x3d233140 DEBUG v4l2 gstv4l2object.c:2967:gst_v4l2_object_setup_pool:<my_vdec:sink> initializing the output system
0:00:00.526667750 8744 0x3d233140 INFO v4l2 gstv4l2object.c:2997:gst_v4l2_object_setup_pool:<my_vdec:sink> accessing buffers via mode 2
0:00:00.526704125 8744 0x3d233140 LOG v4l2 gstv4l2object.c:3006:gst_v4l2_object_setup_pool:<my_vdec:sink> initiating buffer pool
0:00:00.526755625 8744 0x3d233140 DEBUG GST_POLL gstpoll.c:681:gst_poll_new: 0xffffa4006400: new controllable : 1
0:00:00.526816750 8744 0x3d233140 DEBUG GST_POLL gstpoll.c:848:gst_poll_add_fd_unlocked: 0xffffa4006400: fd (fd:19, idx:0)
0:00:00.526847250 8744 0x3d233140 DEBUG GST_POLL gstpoll.c:1015:gst_poll_fd_ctl_read_unlocked: 0xffffa4006400: fd (fd:19, idx:0), active : 1
0:00:00.526889250 8744 0x3d233140 LOG GST_POLL gstpoll.c:290:raise_wakeup: 0xffffa4006400: raise
0:00:00.526930250 8744 0x3d233140 DEBUG bufferpool gstbufferpool.c:185:gst_buffer_pool_init:<GstBufferPool at 0xffffa4012410> created
0:00:00.526952000 8744 0x3d233140 DEBUG GST_POLL gstpoll.c:681:gst_poll_new: 0xffffa4005cf0: new controllable : 1
0:00:00.526993375 8744 0x3d233140 DEBUG GST_POLL gstpoll.c:848:gst_poll_add_fd_unlocked: 0xffffa4005cf0: fd (fd:21, idx:0)
0:00:00.527023000 8744 0x3d233140 DEBUG GST_POLL gstpoll.c:1015:gst_poll_fd_ctl_read_unlocked: 0xffffa4005cf0: fd (fd:21, idx:0), active : 1
0:00:00.527081000 8744 0x3d233140 DEBUG GST_POLL gstpoll.c:848:gst_poll_add_fd_unlocked: 0xffffa4005cf0: fd (fd:18, idx:-1)
0:00:00.527112250 8744 0x3d233140 DEBUG GST_POLL gstpoll.c:980:gst_poll_fd_ctl_write: 0xffffa4005cf0: fd (fd:18, idx:1), active : 1
0:00:00.527142000 8744 0x3d233140 LOG GST_POLL gstpoll.c:994:gst_poll_fd_ctl_write: 0xffffa4005cf0: pfd->events now 60 (POLLOUT:4)
0:00:00.527338750 8744 0x3d233140 WARN structure gststructure.c:1832:priv_gst_structure_append_to_gstring: No value transform to serialize field 'params' of type 'GstAllocationParams'
0:00:00.527239375 8744 0x3d233140 DEBUG v4l2bufferpool gstv4l2bufferpool.c:509:gst_v4l2_buffer_pool_set_config:<my_vdec:pool:sink> config GstBufferPoolConfig, caps=(GstCaps)"video/x-h264\,\ stream-format\=\(string\)byte-stream\,\ alignment\=\(string\)au\,\ framerate\=\(fraction\)0/1\,\ width\=\(int\)176\,\ height\=\(int\)144\,\ interlace-mode\=\(string\)progressive\,\ chroma-format\=\(string\)4:2:0\,\ bit-depth-luma\=\(uint\)8\,\ bit-depth-chroma\=\(uint\)8\,\ parsed\=\(boolean\)true\,\ profile\=\(string\)constrained-baseline\,\ level\=\(string\)1.2", size=(uint)6291456, min-buffers=(uint)0, max-buffers=(uint)0, allocator=(GstAllocator)"NULL", params=(GstAllocationParams)NULL;
0:00:00.527401375 8744 0x3d233140 INFO v4l2bufferpool gstv4l2bufferpool.c:557:gst_v4l2_buffer_pool_set_config:<my_vdec:pool:sink> increasing minimum buffers to 2
0:00:00.527430500 8744 0x3d233140 INFO v4l2bufferpool gstv4l2bufferpool.c:570:gst_v4l2_buffer_pool_set_config:<my_vdec:pool:sink> reducing maximum buffers to 32
0:00:00.527476375 8744 0x3d233140 INFO v4l2bufferpool gstv4l2bufferpool.c:581:gst_v4l2_buffer_pool_set_config:<my_vdec:pool:sink> can't allocate, setting maximum to minimum
0:00:00.527503750 8744 0x3d233140 DEBUG video-info video-info.c:357:gst_video_info_from_caps: parsing caps video/x-h264, stream-format=(string)byte-stream, alignment=(string)au, framerate=(fraction)0/1, width=(int)176, height=(int)144, interlace-mode=(string)progressive, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8, parsed=(boolean)true, profile=(string)constrained-baseline, level=(string)1.2
0:00:00.527582875 8744 0x3d233140 DEBUG video-info video-info.c:468:gst_video_info_from_caps: no colorimetry, using default
0:00:00.527697125 8744 0x3d233140 WARN structure gststructure.c:1832:priv_gst_structure_append_to_gstring: No value transform to serialize field 'params' of type 'GstAllocationParams'
0:00:00.527613625 8744 0x3d233140 DEBUG bufferpool gstbufferpool.c:614:default_set_config:<my_vdec:pool:sink> config GstBufferPoolConfig, caps=(GstCaps)"video/x-h264\,\ stream-format\=\(string\)byte-stream\,\ alignment\=\(string\)au\,\ framerate\=\(fraction\)0/1\,\ width\=\(int\)176\,\ height\=\(int\)144\,\ interlace-mode\=\(string\)progressive\,\ chroma-format\=\(string\)4:2:0\,\ bit-depth-luma\=\(uint\)8\,\ bit-depth-chroma\=\(uint\)8\,\ parsed\=\(boolean\)true\,\ profile\=\(string\)constrained-baseline\,\ level\=\(string\)1.2", size=(uint)6291456, min-buffers=(uint)2, max-buffers=(uint)2, allocator=(GstAllocator)"NULL", params=(GstAllocationParams)NULL;
0:00:00.527756000 8744 0x3d233140 DEBUG default gstvideoutils.c:161:_gst_video_codec_state_free: free state 0xffffa4010000
0:00:00.527790375 8744 0x3d233140 DEBUG GST_PADS gstpad.c:5712:gst_pad_send_event_unchecked:<my_vdec:sink> sent event, ret ok
0:00:00.527817375 8744 0x3d233140 LOG GST_EVENT gstevent.c:223:_gst_event_free: freeing event 0x3d1e22a0 type caps
0:00:00.527852000 8744 0x3d233140 LOG GST_PADS gstpad.c:5176:store_sticky_event:<my_vdec:sink> stored sticky event caps
0:00:00.527881625 8744 0x3d233140 DEBUG GST_PADS gstpad.c:5182:store_sticky_event:<my_vdec:sink> notify caps
0:00:00.527911750 8744 0x3d233140 LOG GST_PROPERTIES gstobject.c:448:gst_object_dispatch_properties_changed:<my_vdec> deep notification from sink (caps)
0:00:00.527945750 8744 0x3d233140 LOG GST_PROPERTIES gstobject.c:448:gst_object_dispatch_properties_changed:<my_pipeline> deep notification from sink (caps)
0:00:00.527981625 8744 0x3d233140 LOG GST_PADS gstpad.c:5359:gst_pad_push_event_unchecked:<my_h264parse:src> sent event 0xffffa4007c90 (caps) to peerpad <my_vdec:sink>, ret ok
0:00:00.528026500 8744 0x3d233140 DEBUG GST_PADS gstpad.c:3889:push_sticky:<my_h264parse:src> event caps marked received
0:00:00.528062375 8744 0x3d233140 LOG h264parse gsth264parse.c:2016:gst_h264_parse_get_timestamp:<my_h264parse> Upstream ts 0:00:00.000000000
0:00:00.528098875 8744 0x3d233140 DEBUG h264parse gsth264parse.c:2035:gst_h264_parse_get_timestamp:<my_h264parse> unable to compute timestamp: timing info not present
0:00:00.528129125 8744 0x3d233140 LOG adapter gstadapter.c:974:gst_adapter_get_buffer:<GstAdapter at 0x3d20c120> getting buffer of 2673 bytes
0:00:00.528162125 8744 0x3d233140 LOG adapter gstadapter.c:736:gst_adapter_get_internal:<GstAdapter at 0x3d20c120> allocating 2673 bytes
0:00:00.528205250 8744 0x3d233140 DEBUG adapter gstadapter.c:344:copy_into_unchecked: bsize 23, skip 0, csize 23
0:00:00.528240750 8744 0x3d233140 LOG GST_PERFORMANCE gstadapter.c:346:copy_into_unchecked:<GstAdapter at 0x3d20c120> extract 23 bytes
0:00:00.528269250 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1876:gst_buffer_extract: buffer 0xffffa4017400, offset 0, size 23
0:00:00.528323875 8744 0x3d233140 LOG GST_PERFORMANCE gstadapter.c:359:copy_into_unchecked:<GstAdapter at 0x3d20c120> extract 8 bytes
0:00:00.528347250 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1876:gst_buffer_extract: buffer 0xffffa40172f0, offset 0, size 8
0:00:00.528382250 8744 0x3d233140 LOG GST_PERFORMANCE gstadapter.c:359:copy_into_unchecked:<GstAdapter at 0x3d20c120> extract 927 bytes
0:00:00.528404625 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1876:gst_buffer_extract: buffer 0xffffa4017730, offset 0, size 927
0:00:00.528441125 8744 0x3d233140 LOG GST_PERFORMANCE gstadapter.c:359:copy_into_unchecked:<GstAdapter at 0x3d20c120> extract 1715 bytes
0:00:00.528463375 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1876:gst_buffer_extract: buffer 0xffffa4017840, offset 0, size 1715
0:00:00.528496875 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:799:gst_buffer_new: new 0xffffa4017950
0:00:00.528522000 8744 0x3d233140 DEBUG GST_MEMORY gstmemory.c:139:gst_memory_init: new memory 0xffffa40180d0, maxsize:2673 offset:0 size:2673
0:00:00.528553125 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:414:_memory_add: buffer 0xffffa4017950, idx -1, mem 0xffffa40180d0
0:00:00.528593750 8744 0x3d233140 LOG adapter gstadapter.c:634:gst_adapter_flush_unchecked:<GstAdapter at 0x3d20c120> flushing 2673 bytes
0:00:00.528624500 8744 0x3d233140 LOG adapter gstadapter.c:656:gst_adapter_flush_unchecked:<GstAdapter at 0x3d20c120> flushing out head buffer
0:00:00.528645625 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:725:_gst_buffer_free: finalize 0xffffa4017400
0:00:00.528668625 8744 0x3d233140 DEBUG GST_MEMORY gstmemory.c:88:_gst_memory_free: free memory 0xffffa401b0c0
0:00:00.528709625 8744 0x3d233140 LOG adapter gstadapter.c:656:gst_adapter_flush_unchecked:<GstAdapter at 0x3d20c120> flushing out head buffer
0:00:00.528730375 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:725:_gst_buffer_free: finalize 0xffffa40172f0
0:00:00.528753250 8744 0x3d233140 DEBUG GST_MEMORY gstmemory.c:88:_gst_memory_free: free memory 0xffffa400a8d0
0:00:00.528785625 8744 0x3d233140 LOG adapter gstadapter.c:656:gst_adapter_flush_unchecked:<GstAdapter at 0x3d20c120> flushing out head buffer
0:00:00.528806250 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:725:_gst_buffer_free: finalize 0xffffa4017730
0:00:00.528828500 8744 0x3d233140 DEBUG GST_MEMORY gstmemory.c:88:_gst_memory_free: free memory 0xffffa401aae0
0:00:00.528860500 8744 0x3d233140 LOG adapter gstadapter.c:656:gst_adapter_flush_unchecked:<GstAdapter at 0x3d20c120> flushing out head buffer
0:00:00.528881000 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:725:_gst_buffer_free: finalize 0xffffa4017840
0:00:00.528903375 8744 0x3d233140 DEBUG GST_MEMORY gstmemory.c:88:_gst_memory_free: free memory 0xffffa401bb10
0:00:00.528935000 8744 0x3d233140 LOG adapter gstadapter.c:668:gst_adapter_flush_unchecked:<GstAdapter at 0x3d20c120> adapter empty now
0:00:00.528956750 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:515:gst_buffer_copy_into: copy 0xffffa4017620 to 0xffffa4017950, offset 0-2671/2671
0:00:00.528995375 8744 0x3d233140 LOG baseparse gstbaseparse.c:2637:gst_base_parse_finish_frame:<my_h264parse> finished frame at offset 46, flushing size 2671
0:00:00.529032375 8744 0x3d233140 DEBUG query gstquery.c:675:gst_query_new_custom: creating new query 0xffffa40064a0 seeking
0:00:00.529104625 8744 0x3d233140 DEBUG GST_PADS gstpad.c:4133:gst_pad_peer_query:<my_h264parse:sink> peer query 0xffffa40064a0 (seeking)
0:00:00.529139500 8744 0x3d233140 DEBUG GST_PADS gstpad.c:4006:gst_pad_query:<my_appsrc:src> doing query 0xffffa40064a0 (seeking)
0:00:00.529211375 8744 0x3d233140 DEBUG basesrc gstbasesrc.c:1310:gst_base_src_default_query:<my_appsrc> query seeking returns 1
0:00:00.529244750 8744 0x3d233140 DEBUG GST_PADS gstpad.c:4029:gst_pad_query:<my_appsrc:src> sent query 0xffffa40064a0 (seeking), result 1
0:00:00.529286625 8744 0x3d233140 DEBUG baseparse gstbaseparse.c:2028:gst_base_parse_check_seekability:<my_h264parse> seekable: 0 (0 - 18446744073709551615)
0:00:00.529320000 8744 0x3d233140 DEBUG baseparse gstbaseparse.c:2032:gst_base_parse_check_seekability:<my_h264parse> idx_interval: 0ms
0:00:00.529351000 8744 0x3d233140 DEBUG query gstquery.c:675:gst_query_new_custom: creating new query 0xffffa4005ed0 duration
0:00:00.529384000 8744 0x3d233140 DEBUG GST_PADS gstpad.c:4133:gst_pad_peer_query:<my_h264parse:sink> peer query 0xffffa4005ed0 (duration)
0:00:00.529416125 8744 0x3d233140 DEBUG GST_PADS gstpad.c:4006:gst_pad_query:<my_appsrc:src> doing query 0xffffa4005ed0 (duration)
0:00:00.529449250 8744 0x3d233140 DEBUG GST_PADS gstpad.c:4029:gst_pad_query:<my_appsrc:src> sent query 0xffffa4005ed0 (duration), result 0
0:00:00.529481750 8744 0x3d233140 DEBUG GST_PADS gstpad.c:4074:gst_pad_query:<my_appsrc:src> query failed
0:00:00.529508125 8744 0x3d233140 DEBUG GST_PADS gstpad.c:4195:gst_pad_peer_query:<my_h264parse:sink> query failed
0:00:00.529534750 8744 0x3d233140 DEBUG baseparse gstbaseparse.c:2051:gst_base_parse_check_upstream:<my_h264parse> upstream_has_duration: 0
0:00:00.529565375 8744 0x3d233140 LOG adapter gstadapter.c:634:gst_adapter_flush_unchecked:<GstAdapter at 0x3d20c000> flushing 2671 bytes
0:00:00.529595375 8744 0x3d233140 LOG adapter gstadapter.c:656:gst_adapter_flush_unchecked:<GstAdapter at 0x3d20c000> flushing out head buffer
0:00:00.529615625 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:725:_gst_buffer_free: finalize 0xffffa40170d0
0:00:00.529645500 8744 0x3d233140 LOG adapter gstadapter.c:668:gst_adapter_flush_unchecked:<GstAdapter at 0x3d20c000> adapter empty now
0:00:00.529670125 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:725:_gst_buffer_free: finalize 0xffffa4017620
0:00:00.529693125 8744 0x3d233140 DEBUG GST_MEMORY gstmemory.c:88:_gst_memory_free: free memory 0xffffa4018040
0:00:00.529716250 8744 0x3d233140 DEBUG GST_MEMORY gstmemory.c:88:_gst_memory_free: free memory 0x3d227580
(free_data, 133)
0:00:00.529787250 8744 0x3d233140 DEBUG baseparse gstbaseparse.c:2333:gst_base_parse_handle_and_push_frame:<my_h264parse> no next fallback timestamp
0:00:00.529823500 8744 0x3d233140 LOG baseparse gstbaseparse.c:2392:gst_base_parse_push_frame:<my_h264parse> processing buffer of size 2673 with dts 0:00:00.000000000, pts 0:00:00.000000000, duration 99:99:99.999999999
0:00:00.529883625 8744 0x3d233140 DEBUG GST_CAPS gstpad.c:2705:gst_pad_has_current_caps:<my_h264parse:src> check current pad caps video/x-h264, stream-format=(string)byte-stream, alignment=(string)au, framerate=(fraction)0/1, width=(int)176, height=(int)144, interlace-mode=(string)progressive, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8, parsed=(boolean)true, profile=(string)constrained-baseline, level=(string)1.2
0:00:00.529961250 8744 0x3d233140 DEBUG GST_CAPS gstpad.c:2733:gst_pad_get_current_caps:<my_h264parse:src> get current pad caps video/x-h264, stream-format=(string)byte-stream, alignment=(string)au, framerate=(fraction)0/1, width=(int)176, height=(int)144, interlace-mode=(string)progressive, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8, parsed=(boolean)true, profile=(string)constrained-baseline, level=(string)1.2
0:00:00.530062750 8744 0x3d233140 DEBUG baseparse gstbaseparse.c:2074:gst_base_parse_check_media:<my_h264parse> media is video: 1
0:00:00.530093250 8744 0x3d233140 LOG baseparse gstbaseparse.c:900:gst_base_parse_queue_tag_event_update:<my_h264parse> upstream : (NULL)
0:00:00.530121750 8744 0x3d233140 LOG baseparse gstbaseparse.c:902:gst_base_parse_queue_tag_event_update:<my_h264parse> parser : (NULL)
0:00:00.530148625 8744 0x3d233140 LOG baseparse gstbaseparse.c:903:gst_base_parse_queue_tag_event_update:<my_h264parse> mode : 3
0:00:00.530180500 8744 0x3d233140 DEBUG baseparse gstbaseparse.c:909:gst_base_parse_queue_tag_event_update:<my_h264parse> merged : (NULL)
0:00:00.530222875 8744 0x3d233140 LOG GST_PADS gstpad.c:5176:store_sticky_event:<my_h264parse:src> stored sticky event segment
0:00:00.530253750 8744 0x3d233140 DEBUG GST_PADS gstpad.c:3937:check_sticky:<my_h264parse:src> pushing all sticky events
0:00:00.530280875 8744 0x3d233140 DEBUG GST_PADS gstpad.c:3867:push_sticky:<my_h264parse:src> event stream-start was already received
0:00:00.530310500 8744 0x3d233140 DEBUG GST_PADS gstpad.c:3867:push_sticky:<my_h264parse:src> event caps was already received
0:00:00.530341500 8744 0x3d233140 LOG GST_PADS gstpad.c:5351:gst_pad_push_event_unchecked:<my_h264parse:src> sending event 0xffffa4007c20 (segment) to peerpad <my_vdec:sink>
0:00:00.530381500 8744 0x3d233140 DEBUG GST_EVENT gstpad.c:5638:gst_pad_send_event_unchecked:<my_vdec:sink> have event type segment event: 0xffffa4007c20, time 99:99:99.999999999, seq-num 20, GstEventSegment, segment=(GstSegment)"GstSegment, flags=(GstSegmentFlags)GST_SEGMENT_FLAG_NONE, rate=(double)1, applied-rate=(double)1, format=(GstFormat)GST_FORMAT_TIME, base=(guint64)0, offset=(guint64)0, start=(guint64)0, stop=(guint64)18446744073709551615, time=(guint64)0, position=(guint64)0, duration=(guint64)18446744073709551615;";
0:00:00.530560000 8744 0x3d233140 DEBUG videodecoder gstvideodecoder.c:1393:gst_video_decoder_sink_event:<my_vdec> received event 17934, segment
0:00:00.530595500 8744 0x3d233140 DEBUG videodecoder gstvideodecoder.c:1264:gst_video_decoder_sink_event_default:<my_vdec> received TIME SEGMENT time segment start=0:00:00.000000000, offset=0:00:00.000000000, stop=99:99:99.999999999, 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:00.530684125 8744 0x3d233140 DEBUG GST_PADS gstpad.c:5712:gst_pad_send_event_unchecked:<my_vdec:sink> sent event, ret ok
0:00:00.530715750 8744 0x3d233140 LOG GST_PADS gstpad.c:5176:store_sticky_event:<my_vdec:sink> stored sticky event segment
0:00:00.530745875 8744 0x3d233140 LOG GST_PADS gstpad.c:5359:gst_pad_push_event_unchecked:<my_h264parse:src> sent event 0xffffa4007c20 (segment) to peerpad <my_vdec:sink>, ret ok
0:00:00.530788000 8744 0x3d233140 DEBUG GST_PADS gstpad.c:3889:push_sticky:<my_h264parse:src> event segment marked received
0:00:00.530822250 8744 0x3d233140 DEBUG GST_CAPS gstpad.c:2733:gst_pad_get_current_caps:<my_h264parse:src> get current pad caps video/x-h264, stream-format=(string)byte-stream, alignment=(string)au, framerate=(fraction)0/1, width=(int)176, height=(int)144, interlace-mode=(string)progressive, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8, parsed=(boolean)true, profile=(string)constrained-baseline, level=(string)1.2
0:00:00.530965750 8744 0x3d233140 DEBUG default pbutils.c:69:_init_locale_text_domain: binding text domain gst-plugins-base-1.0 to locale dir /usr/share/locale
0:00:00.531033125 8744 0x3d233140 DEBUG baseparse gstbaseparse.c:4962:gst_base_parse_merge_tags:<my_h264parse> setting parser tags to taglist, video-codec=(string)"H.264\ \(Constrained\ Baseline\ Profile\)"; (mode 2)
0:00:00.531102000 8744 0x3d233140 DEBUG GST_MEMORY gstmemory.c:139:gst_memory_init: new memory 0xffffa4018160, maxsize:6 offset:0 size:6
0:00:00.531134875 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:799:gst_buffer_new: new 0xffffa4017a60
0:00:00.531158500 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:515:gst_buffer_copy_into: copy 0xffffa4017950 to 0xffffa4017a60, offset 0-2673/2673
0:00:00.531190375 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:414:_memory_add: buffer 0xffffa4017a60, idx -1, mem 0xffffa40180d0
0:00:00.531220000 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:414:_memory_add: buffer 0xffffa4017a60, idx 0, mem 0xffffa4018160
0:00:00.531254375 8744 0x3d233140 DEBUG h264parse gsth264parse.c:186:gst_h264_parse_reset_frame:<my_h264parse> reset frame
0:00:00.531281375 8744 0x3d233140 LOG baseparse gstbaseparse.c:900:gst_base_parse_queue_tag_event_update:<my_h264parse> upstream : (NULL)
0:00:00.531309500 8744 0x3d233140 LOG baseparse gstbaseparse.c:902:gst_base_parse_queue_tag_event_update:<my_h264parse> parser : taglist, video-codec=(string)"H.264\ \(Constrained\ Baseline\ Profile\)";
0:00:00.531345750 8744 0x3d233140 LOG baseparse gstbaseparse.c:903:gst_base_parse_queue_tag_event_update:<my_h264parse> mode : 2
0:00:00.531379375 8744 0x3d233140 DEBUG baseparse gstbaseparse.c:909:gst_base_parse_queue_tag_event_update:<my_h264parse> merged : taglist, video-codec=(string)"H.264\ \(Constrained\ Baseline\ Profile\)";
0:00:00.531426375 8744 0x3d233140 DEBUG GST_EVENT gstevent.c:306:gst_event_new_custom: creating new event 0xffffa4007d00 tag 20510
0:00:00.531465750 8744 0x3d233140 LOG GST_PADS gstpad.c:5176:store_sticky_event:<my_h264parse:src> stored sticky event tag
0:00:00.531495500 8744 0x3d233140 DEBUG GST_PADS gstpad.c:3937:check_sticky:<my_h264parse:src> pushing all sticky events
0:00:00.531522625 8744 0x3d233140 DEBUG GST_PADS gstpad.c:3867:push_sticky:<my_h264parse:src> event stream-start was already received
0:00:00.531552250 8744 0x3d233140 DEBUG GST_PADS gstpad.c:3867:push_sticky:<my_h264parse:src> event caps was already received
0:00:00.531582375 8744 0x3d233140 DEBUG GST_PADS gstpad.c:3867:push_sticky:<my_h264parse:src> event segment was already received
0:00:00.531612875 8744 0x3d233140 LOG GST_PADS gstpad.c:5351:gst_pad_push_event_unchecked:<my_h264parse:src> sending event 0xffffa4007d00 (tag) to peerpad <my_vdec:sink>
0:00:00.531652875 8744 0x3d233140 DEBUG GST_EVENT gstpad.c:5638:gst_pad_send_event_unchecked:<my_vdec:sink> have event type tag event: 0xffffa4007d00, time 99:99:99.999999999, seq-num 33, GstTagList-stream, taglist=(taglist)"taglist\,\ video-codec\=\(string\)\"H.264\\\ \\\(Constrained\\\ Baseline\\\ Profile\\\)\"\;";
0:00:00.531715500 8744 0x3d233140 DEBUG videodecoder gstvideodecoder.c:1393:gst_video_decoder_sink_event:<my_vdec> received event 20510, tag
0:00:00.531748250 8744 0x3d233140 INFO videodecoder gstvideodecoder.c:1339:gst_video_decoder_sink_event_default:<my_vdec> upstream tags: taglist, video-codec=(string)"H.264\ \(Constrained\ Baseline\ Profile\)";
0:00:00.531785750 8744 0x3d233140 LOG videodecoder gstvideodecoder.c:805:gst_video_decoder_create_merged_tags_event:<my_vdec> upstream : taglist, video-codec=(string)"H.264\ \(Constrained\ Baseline\ Profile\)";
0:00:00.531821875 8744 0x3d233140 LOG videodecoder gstvideodecoder.c:806:gst_video_decoder_create_merged_tags_event:<my_vdec> decoder : (NULL)
0:00:00.531849625 8744 0x3d233140 LOG videodecoder gstvideodecoder.c:807:gst_video_decoder_create_merged_tags_event:<my_vdec> mode : 3
0:00:00.531883000 8744 0x3d233140 DEBUG videodecoder gstvideodecoder.c:813:gst_video_decoder_create_merged_tags_event:<my_vdec> merged : taglist, video-codec=(string)"H.264\ \(Constrained\ Baseline\ Profile\)";
0:00:00.531936125 8744 0x3d233140 DEBUG GST_EVENT gstevent.c:306:gst_event_new_custom: creating new event 0xffffa4007d70 tag 20510
0:00:00.531975125 8744 0x3d233140 DEBUG GST_PADS gstpad.c:5712:gst_pad_send_event_unchecked:<my_vdec:sink> sent event, ret ok
0:00:00.532006375 8744 0x3d233140 LOG GST_PADS gstpad.c:5176:store_sticky_event:<my_vdec:sink> stored sticky event tag
0:00:00.532037000 8744 0x3d233140 LOG GST_PADS gstpad.c:5359:gst_pad_push_event_unchecked:<my_h264parse:src> sent event 0xffffa4007d00 (tag) to peerpad <my_vdec:sink>, ret ok
0:00:00.532080125 8744 0x3d233140 DEBUG GST_PADS gstpad.c:3889:push_sticky:<my_h264parse:src> event tag marked received
0:00:00.532104875 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:725:_gst_buffer_free: finalize 0xffffa4017950
0:00:00.532134750 8744 0x3d233140 LOG baseparse gstbaseparse.c:2535:gst_base_parse_push_frame:<my_h264parse> pushing frame (2679 bytes) now..
0:00:00.532173875 8744 0x3d233140 DEBUG GST_SCHEDULING gstpad.c:4277:gst_pad_chain_data_unchecked:<my_vdec:sink> calling chainfunction &gst_video_decoder_chain with buffer buffer: 0xffffa4017a60, pts 0:00:00.000000000, dts 0:00:00.000000000, dur 99:99:99.999999999, size 2679, offset 46, offset_end none, flags 0x4440
0:00:00.532270500 8744 0x3d233140 LOG videodecoder gstvideodecoder.c:2438:gst_video_decoder_chain:<my_vdec> chain PTS 0:00:00.000000000, DTS 0:00:00.000000000 duration 99:99:99.999999999 size 2679 flags 4440
0:00:00.532323500 8744 0x3d233140 DEBUG v4l2videodec gstv4l2videodec.c:432:gst_v4l2_video_dec_drain:<my_vdec> Draining...
0:00:00.532351750 8744 0x3d233140 DEBUG GST_PADS gstpad.c:6194:gst_pad_get_task_state:<my_vdec:src> pad has no task
0:00:00.532377875 8744 0x3d233140 DEBUG v4l2videodec gstv4l2videodec.c:296:gst_v4l2_video_dec_flush:<my_vdec> Flushed
0:00:00.532405000 8744 0x3d233140 DEBUG GST_PADS gstpad.c:6194:gst_pad_get_task_state:<my_vdec:src> pad has no task
0:00:00.532432875 8744 0x3d233140 LOG v4l2 gstv4l2object.c:4188:gst_v4l2_object_unlock_stop:<my_vdec:sink> stop flushing
0:00:00.532454500 8744 0x3d233140 LOG GST_POLL gstpoll.c:1673:gst_poll_set_flushing: 0x3d21fde0: flushing: 0
0:00:00.532486500 8744 0x3d233140 LOG v4l2 gstv4l2object.c:4188:gst_v4l2_object_unlock_stop:<my_vdec:src> stop flushing
0:00:00.532507125 8744 0x3d233140 LOG GST_POLL gstpoll.c:1673:gst_poll_set_flushing: 0x3d21fed0: flushing: 0
0:00:00.532538125 8744 0x3d233140 LOG videodecoder gstvideodecoder.c:2595:gst_video_decoder_new_frame:<my_vdec> Created new frame 0xffffa4017620 (sfn:0)
0:00:00.532569250 8744 0x3d233140 LOG videodecoder gstvideodecoder.c:2141:gst_video_decoder_chain_forward:<my_vdec> Marking current_frame as sync point
0:00:00.532595625 8744 0x3d233140 DEBUG videodecoder gstvideodecoder.c:3402:gst_video_decoder_decode_frame:<my_vdec> PTS delta 0 ms
0:00:00.532623375 8744 0x3d233140 LOG videodecoder gstvideodecoder.c:3410:gst_video_decoder_decode_frame:<my_vdec> PTS 0:00:00.000000000, DTS 0:00:00.000000000, dist 0
0:00:00.532669625 8744 0x3d233140 DEBUG v4l2videodec gstv4l2videodec.c:704:gst_v4l2_video_dec_handle_frame:<my_vdec> Handling frame 0
0:00:00.532697875 8744 0x3d233140 DEBUG v4l2videodec gstv4l2videodec.c:720:gst_v4l2_video_dec_handle_frame:<my_vdec> Sending header
0:00:00.532826750 8744 0x3d233140 WARN structure gststructure.c:1832:priv_gst_structure_append_to_gstring: No value transform to serialize field 'params' of type 'GstAllocationParams'
0:00:00.532740625 8744 0x3d233140 DEBUG v4l2bufferpool gstv4l2bufferpool.c:509:gst_v4l2_buffer_pool_set_config:<my_vdec:pool:sink> config GstBufferPoolConfig, caps=(GstCaps)"video/x-h264\,\ stream-format\=\(string\)byte-stream\,\ alignment\=\(string\)au\,\ framerate\=\(fraction\)0/1\,\ width\=\(int\)176\,\ height\=\(int\)144\,\ interlace-mode\=\(string\)progressive\,\ chroma-format\=\(string\)4:2:0\,\ bit-depth-luma\=\(uint\)8\,\ bit-depth-chroma\=\(uint\)8\,\ parsed\=\(boolean\)true\,\ profile\=\(string\)constrained-baseline\,\ level\=\(string\)1.2", size=(uint)6291456, min-buffers=(uint)2, max-buffers=(uint)2, allocator=(GstAllocator)"NULL", params=(GstAllocationParams)NULL;
0:00:00.532902750 8744 0x3d233140 DEBUG video-info video-info.c:357:gst_video_info_from_caps: parsing caps video/x-h264, stream-format=(string)byte-stream, alignment=(string)au, framerate=(fraction)0/1, width=(int)176, height=(int)144, interlace-mode=(string)progressive, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8, parsed=(boolean)true, profile=(string)constrained-baseline, level=(string)1.2
0:00:00.532982250 8744 0x3d233140 DEBUG video-info video-info.c:468:gst_video_info_from_caps: no colorimetry, using default
0:00:00.533124375 8744 0x3d233140 WARN structure gststructure.c:1832:priv_gst_structure_append_to_gstring: No value transform to serialize field 'params' of type 'GstAllocationParams'
0:00:00.533013000 8744 0x3d233140 DEBUG bufferpool gstbufferpool.c:614:default_set_config:<my_vdec:pool:sink> config GstBufferPoolConfig, caps=(GstCaps)"video/x-h264\,\ stream-format\=\(string\)byte-stream\,\ alignment\=\(string\)au\,\ framerate\=\(fraction\)0/1\,\ width\=\(int\)176\,\ height\=\(int\)144\,\ interlace-mode\=\(string\)progressive\,\ chroma-format\=\(string\)4:2:0\,\ bit-depth-luma\=\(uint\)8\,\ bit-depth-chroma\=\(uint\)8\,\ parsed\=\(boolean\)true\,\ profile\=\(string\)constrained-baseline\,\ level\=\(string\)1.2", size=(uint)6291456, min-buffers=(uint)2, max-buffers=(uint)2, allocator=(GstAllocator)"NULL", params=(GstAllocationParams)NULL;
0:00:00.533191500 8744 0x3d233140 LOG bufferpool gstbufferpool.c:506:gst_buffer_pool_set_active:<my_vdec:pool:sink> active 1
0:00:00.533220750 8744 0x3d233140 LOG bufferpool gstbufferpool.c:359:do_start:<my_vdec:pool:sink> starting
0:00:00.533245375 8744 0x3d233140 DEBUG v4l2bufferpool gstv4l2bufferpool.c:747:gst_v4l2_buffer_pool_start:<my_vdec:pool:sink> activating pool
0:00:00.533281125 8744 0x3d233140 DEBUG v4l2bufferpool gstv4l2bufferpool.c:777:gst_v4l2_buffer_pool_start:<my_vdec:pool:sink> requesting 2 MMAP buffers
0:00:00.545341625 8744 0x3d233140 DEBUG v4l2allocator gstv4l2allocator.c:692:gst_v4l2_allocator_start:<my_vdec:pool:sink:allocator> allocated 2 mmap buffers out of 2 requested
0:00:00.545509125 8744 0x3d233140 LOG v4l2allocator gstv4l2allocator.c:303:gst_v4l2_memory_group_new:<my_vdec:pool:sink:allocator> Got mmap buffer
0:00:00.545539250 8744 0x3d233140 LOG v4l2allocator gstv4l2allocator.c:304:gst_v4l2_memory_group_new:<my_vdec:pool:sink:allocator> index: 0
0:00:00.545565625 8744 0x3d233140 LOG v4l2allocator gstv4l2allocator.c:305:gst_v4l2_memory_group_new:<my_vdec:pool:sink:allocator> type: 10
0:00:00.545592125 8744 0x3d233140 LOG v4l2allocator gstv4l2allocator.c:306:gst_v4l2_memory_group_new:<my_vdec:pool:sink:allocator> flags: 00004000
0:00:00.545618500 8744 0x3d233140 LOG v4l2allocator gstv4l2allocator.c:307:gst_v4l2_memory_group_new:<my_vdec:pool:sink:allocator> field: 0
0:00:00.545644000 8744 0x3d233140 LOG v4l2allocator gstv4l2allocator.c:308:gst_v4l2_memory_group_new:<my_vdec:pool:sink:allocator> memory: 1
0:00:00.545669875 8744 0x3d233140 LOG v4l2allocator gstv4l2allocator.c:309:gst_v4l2_memory_group_new:<my_vdec:pool:sink:allocator> planes: 1
0:00:00.545695750 8744 0x3d233140 LOG v4l2allocator gstv4l2allocator.c:318:gst_v4l2_memory_group_new:<my_vdec:pool:sink:allocator> [0] bytesused: 0, length: 6291456, offset: 0
0:00:00.545771500 8744 0x3d233140 LOG v4l2allocator gstv4l2allocator.c:320:gst_v4l2_memory_group_new:<my_vdec:pool:sink:allocator> [0] MMAP offset: 0
0:00:00.545807750 8744 0x3d233140 LOG v4l2allocator gstv4l2allocator.c:303:gst_v4l2_memory_group_new:<my_vdec:pool:sink:allocator> Got mmap buffer
0:00:00.545834125 8744 0x3d233140 LOG v4l2allocator gstv4l2allocator.c:304:gst_v4l2_memory_group_new:<my_vdec:pool:sink:allocator> index: 1
0:00:00.545860000 8744 0x3d233140 LOG v4l2allocator gstv4l2allocator.c:305:gst_v4l2_memory_group_new:<my_vdec:pool:sink:allocator> type: 10
0:00:00.545885375 8744 0x3d233140 LOG v4l2allocator gstv4l2allocator.c:306:gst_v4l2_memory_group_new:<my_vdec:pool:sink:allocator> flags: 00004000
0:00:00.545911125 8744 0x3d233140 LOG v4l2allocator gstv4l2allocator.c:307:gst_v4l2_memory_group_new:<my_vdec:pool:sink:allocator> field: 0
0:00:00.545936500 8744 0x3d233140 LOG v4l2allocator gstv4l2allocator.c:308:gst_v4l2_memory_group_new:<my_vdec:pool:sink:allocator> memory: 1
0:00:00.545962000 8744 0x3d233140 LOG v4l2allocator gstv4l2allocator.c:309:gst_v4l2_memory_group_new:<my_vdec:pool:sink:allocator> planes: 1
0:00:00.545987250 8744 0x3d233140 LOG v4l2allocator gstv4l2allocator.c:318:gst_v4l2_memory_group_new:<my_vdec:pool:sink:allocator> [0] bytesused: 0, length: 6291456, offset: 0
0:00:00.546018750 8744 0x3d233140 LOG v4l2allocator gstv4l2allocator.c:320:gst_v4l2_memory_group_new:<my_vdec:pool:sink:allocator> [0] MMAP offset: 6291456
0:00:00.546206250 8744 0x3d233140 WARN structure gststructure.c:1832:priv_gst_structure_append_to_gstring: No value transform to serialize field 'params' of type 'GstAllocationParams'
0:00:00.546082000 8744 0x3d233140 DEBUG bufferpool gstbufferpool.c:614:default_set_config:<my_vdec:pool:sink> config GstBufferPoolConfig, caps=(GstCaps)"video/x-h264\,\ stream-format\=\(string\)byte-stream\,\ alignment\=\(string\)au\,\ framerate\=\(fraction\)0/1\,\ width\=\(int\)176\,\ height\=\(int\)144\,\ interlace-mode\=\(string\)progressive\,\ chroma-format\=\(string\)4:2:0\,\ bit-depth-luma\=\(uint\)8\,\ bit-depth-chroma\=\(uint\)8\,\ parsed\=\(boolean\)true\,\ profile\=\(string\)constrained-baseline\,\ level\=\(string\)1.2", size=(uint)6291456, min-buffers=(uint)2, max-buffers=(uint)2, allocator=(GstAllocator)"NULL", params=(GstAllocationParams)NULL;
0:00:00.546337875 8744 0x3d233140 LOG v4l2allocator gstv4l2allocator.c:807:gst_v4l2_allocator_alloc_mmap:<my_vdec:pool:sink:allocator> mmap buffer length 6291456, data offset 0, plane 0
0:00:00.546370750 8744 0x3d233140 DEBUG GST_MEMORY gstmemory.c:139:gst_memory_init: new memory 0xffffa40181f0, maxsize:6291456 offset:0 size:6291456
0:00:00.546403500 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:799:gst_buffer_new: new 0xffffa40170d0
0:00:00.546428125 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:414:_memory_add: buffer 0xffffa40170d0, idx -1, mem 0xffffa40181f0
0:00:00.546461375 8744 0x3d233140 LOG bufferpool gstbufferpool.c:292:do_alloc_buffer:<my_vdec:pool:sink> allocated buffer 0/2, 0xffffa40170d0
0:00:00.546493000 8744 0x3d233140 DEBUG v4l2bufferpool gstv4l2bufferpool.c:1420:gst_v4l2_buffer_pool_release_buffer:<my_vdec:pool:sink> release buffer 0xffffa40170d0
0:00:00.546577625 8744 0x3d233140 LOG v4l2bufferpool gstv4l2bufferpool.c:1488:gst_v4l2_buffer_pool_release_buffer:<my_vdec:pool:sink> buffer 0 not queued, putting on free list
0:00:00.546614500 8744 0x3d233140 LOG bufferpool gstbufferpool.c:1284:default_release_buffer:<my_vdec:pool:sink> released buffer 0xffffa40170d0 0
0:00:00.546642125 8744 0x3d233140 DEBUG GST_BUFFER gstbuffer.c:1375:gst_buffer_is_memory_range_writable: idx 0, length -1
0:00:00.546722750 8744 0x3d233140 LOG v4l2allocator gstv4l2allocator.c:807:gst_v4l2_allocator_alloc_mmap:<my_vdec:pool:sink:allocator> mmap buffer length 6291456, data offset 0, plane 0
0:00:00.546750250 8744 0x3d233140 DEBUG GST_MEMORY gstmemory.c:139:gst_memory_init: new memory 0xffffa4018280, maxsize:6291456 offset:0 size:6291456
0:00:00.546779375 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:799:gst_buffer_new: new 0xffffa4017840
0:00:00.546800625 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:414:_memory_add: buffer 0xffffa4017840, idx -1, mem 0xffffa4018280
0:00:00.546831375 8744 0x3d233140 LOG bufferpool gstbufferpool.c:292:do_alloc_buffer:<my_vdec:pool:sink> allocated buffer 1/2, 0xffffa4017840
0:00:00.546861125 8744 0x3d233140 DEBUG v4l2bufferpool gstv4l2bufferpool.c:1420:gst_v4l2_buffer_pool_release_buffer:<my_vdec:pool:sink> release buffer 0xffffa4017840
0:00:00.546887375 8744 0x3d233140 LOG v4l2bufferpool gstv4l2bufferpool.c:1488:gst_v4l2_buffer_pool_release_buffer:<my_vdec:pool:sink> buffer 1 not queued, putting on free list
0:00:00.546914875 8744 0x3d233140 LOG bufferpool gstbufferpool.c:1284:default_release_buffer:<my_vdec:pool:sink> released buffer 0xffffa4017840 0
0:00:00.546938875 8744 0x3d233140 DEBUG GST_BUFFER gstbuffer.c:1375:gst_buffer_is_memory_range_writable: idx 0, length -1
0:00:00.546969375 8744 0x3d233140 DEBUG v4l2bufferpool gstv4l2bufferpool.c:974:gst_v4l2_buffer_pool_flush_stop:<my_vdec:pool:sink> stop flushing
0:00:00.546989625 8744 0x3d233140 LOG GST_POLL gstpoll.c:1673:gst_poll_set_flushing: 0xffffa4005cf0: flushing: 0
0:00:00.547022250 8744 0x3d233140 DEBUG v4l2bufferpool gstv4l2bufferpool.c:1745:gst_v4l2_buffer_pool_process:<my_vdec:pool:sink> process buffer 0xffffb396af40
0:00:00.547048750 8744 0x3d233140 LOG v4l2bufferpool gstv4l2bufferpool.c:1923:gst_v4l2_buffer_pool_process:<my_vdec:pool:sink> alloc buffer from our pool
0:00:00.547073750 8744 0x3d233140 DEBUG v4l2bufferpool gstv4l2bufferpool.c:1342:gst_v4l2_buffer_pool_acquire_buffer:<my_vdec:pool:sink> acquire
0:00:00.547098375 8744 0x3d233140 LOG bufferpool gstbufferpool.c:1128:default_acquire_buffer:<my_vdec:pool:sink> acquired buffer 0xffffa40170d0
0:00:00.547125750 8744 0x3d233140 LOG v4l2bufferpool gstv4l2bufferpool.c:116:gst_v4l2_buffer_pool_copy_buffer:<my_vdec:pool:sink> copying buffer
0:00:00.547149250 8744 0x3d233140 DEBUG v4l2bufferpool gstv4l2bufferpool.c:141:gst_v4l2_buffer_pool_copy_buffer:<my_vdec:pool:sink> copy raw bytes
0:00:00.547169500 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1721:gst_buffer_map_range: buffer 0xffffa4017a60, idx 0, length -1, flags 0001
0:00:00.547198375 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:213:_get_merged_memory: buffer 0xffffa4017a60, idx 0, length 2
0:00:00.547233125 8744 0x3d233140 DEBUG GST_MEMORY gstmemory.c:139:gst_memory_init: new memory 0xffffa40232b0, maxsize:2686 offset:0 size:2679
0:00:00.547263625 8744 0x3d233140 DEBUG GST_PERFORMANCE gstbuffer.c:262:_get_merged_memory: memcpy 6 bytes for merge 0xffffa40232b0 from memory 0xffffa4018160
0:00:00.547293125 8744 0x3d233140 DEBUG GST_PERFORMANCE gstbuffer.c:262:_get_merged_memory: memcpy 2673 bytes for merge 0xffffa40232b0 from memory 0xffffa40180d0
0:00:00.547324000 8744 0x3d233140 DEBUG GST_PERFORMANCE gstbuffer.c:1751:gst_buffer_map_range: temporary mapping for memory 0xffffa40232b0 in buffer 0xffffa4017a60
0:00:00.547350000 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1826:gst_buffer_fill: buffer 0xffffa40170d0, offset 0, size 2679
0:00:00.547379500 8744 0x3d233140 DEBUG GST_MEMORY gstmemory.c:88:_gst_memory_free: free memory 0xffffa40232b0
0:00:00.547422125 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1582:gst_buffer_resize_range: trim 0xffffa40170d0 0-2679 size:6291456 offs:0 max:6291456
0:00:00.547456875 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:515:gst_buffer_copy_into: copy 0xffffa4017a60 to 0xffffa40170d0, offset 0-2679/2679
0:00:00.547492125 8744 0x3d233140 LOG GST_PERFORMANCE gstv4l2bufferpool.c:155:gst_v4l2_buffer_pool_copy_buffer:<my_vdec:pool:sink> slow copy into buffer 0xffffa40170d0
0:00:00.547520125 8744 0x3d233140 LOG v4l2bufferpool gstv4l2bufferpool.c:1059:gst_v4l2_buffer_pool_qbuf:<my_vdec:pool:sink> queuing buffer 0
0:00:00.547563500 8744 0x3d233140 LOG v4l2allocator gstv4l2allocator.c:1265:gst_v4l2_allocator_qbuf:<my_vdec:pool:sink:allocator> queued buffer 0 (flags 0x4003)
0:00:00.552693000 8744 0x3d233140 DEBUG v4l2bufferpool gstv4l2bufferpool.c:666:gst_v4l2_buffer_pool_streamon:<my_vdec:pool:sink> Started streaming
0:00:00.552728750 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:710:_gst_buffer_dispose: release 0xffffa40170d0 to pool 0xffffa4012410
0:00:00.552762375 8744 0x3d233140 DEBUG v4l2bufferpool gstv4l2bufferpool.c:1420:gst_v4l2_buffer_pool_release_buffer:<my_vdec:pool:sink> release buffer 0xffffa40170d0
0:00:00.552790500 8744 0x3d233140 LOG v4l2bufferpool gstv4l2bufferpool.c:1503:gst_v4l2_buffer_pool_release_buffer:<my_vdec:pool:sink> buffer 0 is queued
0:00:00.552827000 8744 0x3d233140 DEBUG GST_PADS gstpad.c:6194:gst_pad_get_task_state:<my_vdec:src> pad has no task
0:00:00.552854500 8744 0x3d233140 DEBUG v4l2videodec gstv4l2videodec.c:769:gst_v4l2_video_dec_handle_frame:<my_vdec> Starting decoding thread
0:00:00.552881875 8744 0x3d233140 DEBUG GST_PADS gstpad.c:6081:gst_pad_start_task:<my_vdec:src> start task
0:00:00.553005875 8744 0x3d233140 DEBUG task gsttask.c:428:gst_task_new: Created task 0x3d20c5f0
0:00:00.553032625 8744 0x3d233140 INFO task gsttask.c:457:gst_task_set_lock: setting stream lock 0x3d206b10 on task 0x3d20c5f0
0:00:00.553112375 8744 0x3d233140 INFO GST_PADS gstpad.c:6090:gst_pad_start_task:<my_vdec:src> created task 0x3d20c5f0
0:00:00.553142875 8744 0x3d233140 DEBUG GST_PADS gstpad.c:6007:do_stream_status:<my_vdec:src> doing stream-status 0
0:00:00.553184750 8744 0x3d233140 LOG GST_MESSAGE gstmessage.c:301:gst_message_new_custom: source src: creating new message 0x3d231c10 stream-status
0:00:00.553229500 8744 0x3d233140 DEBUG GST_PADS gstpad.c:6036:do_stream_status:<my_vdec:src> posting stream-status 0
0:00:00.553263125 8744 0x3d233140 DEBUG GST_BUS gstbus.c:318:gst_bus_post:<bus0> [msg 0x3d231c10] posting on bus stream-status message: 0x3d231c10, time 99:99:99.999999999, seq-num 35, element 'src', GstMessageStreamStatus, type=(GstStreamStatusType)GST_STREAM_STATUS_TYPE_CREATE, owner=(GstElement)"\(v4l2h264dec\)\ my_vdec", object=(GstTask)"\(GstTask\)\ task1";
0:00:00.553386875 8744 0x3d233140 DEBUG bin gstbin.c:3715:gst_bin_handle_message_func:<my_pipeline> [msg 0x3d231c10] handling child src message of type stream-status
0:00:00.553419375 8744 0x3d233140 DEBUG bin gstbin.c:4052:gst_bin_handle_message_func:<my_pipeline> posting message upward
0:00:00.553446750 8744 0x3d233140 DEBUG GST_BUS gstbus.c:318:gst_bus_post:<bus1> [msg 0x3d231c10] posting on bus stream-status message: 0x3d231c10, time 99:99:99.999999999, seq-num 35, element 'src', GstMessageStreamStatus, type=(GstStreamStatusType)GST_STREAM_STATUS_TYPE_CREATE, owner=(GstElement)"\(v4l2h264dec\)\ my_vdec", object=(GstTask)"\(GstTask\)\ task1";
0:00:00.553532500 8744 0x3d233140 DEBUG GST_BUS gstbus.c:357:gst_bus_post:<bus1> [msg 0x3d231c10] pushing on async queue
0:00:00.553558875 8744 0x3d233140 LOG GST_POLL gstpoll.c:290:raise_wakeup: 0x3d154a30: raise
0:00:00.553651750 8744 0x3d233140 DEBUG GST_BUS gstbus.c:360:gst_bus_post:<bus1> [msg 0x3d231c10] pushed on async queue
0:00:00.553679875 8744 0x3d233140 DEBUG GST_BUS gstbus.c:353:gst_bus_post:<bus0> [msg 0x3d231c10] dropped
0:00:00.553697250 8744 0xffffa4002580 LOG GST_BUS gstbus.c:522:gst_bus_timed_pop_filtered:<bus1> have 1 messages
0:00:00.553708125 8744 0x3d233140 DEBUG task gsttask.c:688:gst_task_set_state:<task1> Changing task 0x3d20c5f0 to state 0
0:00:00.553745375 8744 0xffffa4002580 LOG GST_POLL gstpoll.c:314:release_wakeup: 0x3d154a30: release
0:00:00.553806875 8744 0xffffa4002580 DEBUG GST_BUS gstbus.c:546:gst_bus_timed_pop_filtered:<bus1> got message 0x3d231c10, stream-status from src, type mask is 4294967295
0:00:00.553849750 8744 0xffffa4002580 DEBUG GST_BUS gstbus.c:839:gst_bus_source_dispatch:<bus1> source 0x3d21dc00 calling dispatch with stream-status message: 0x3d231c10, time 99:99:99.999999999, seq-num 35, element 'src', GstMessageStreamStatus, type=(GstStreamStatusType)GST_STREAM_STATUS_TYPE_CREATE, owner=(GstElement)"\(v4l2h264dec\)\ my_vdec", object=(GstTask)"\(GstTask\)\ task1";
0:00:00.553948625 8744 0xffffa4002580 LOG GST_MESSAGE gstmessage.c:208:_gst_message_free: finalize message 0x3d231c10, stream-status from src
0:00:00.553986625 8744 0xffffa4002580 DEBUG GST_BUS gstbus.c:844:gst_bus_source_dispatch:<bus1> source 0x3d21dc00 handler returns 1
0:00:00.554326125 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:799:gst_buffer_new: new 0xffffa4017730
0:00:00.554355500 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:515:gst_buffer_copy_into: copy 0xffffa4017a60 to 0xffffa4017730, offset 0-0/2679
0:00:00.554390625 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:725:_gst_buffer_free: finalize 0xffffa4017a60
0:00:00.554414500 8744 0x3d233140 DEBUG GST_MEMORY gstmemory.c:88:_gst_memory_free: free memory 0xffffa4018160
0:00:00.554441250 8744 0x3d233140 DEBUG GST_MEMORY gstmemory.c:88:_gst_memory_free: free memory 0xffffa40180d0
0:00:00.554490000 8744 0x3d233140 DEBUG GST_SCHEDULING gstpad.c:4283:gst_pad_chain_data_unchecked:<my_vdec:sink> called chainfunction &gst_video_decoder_chain with buffer 0xffffa4017a60, returned ok
0:00:00.554468000 8744 0x3d233770 DEBUG task gsttask.c:287:gst_task_func: Entering task 0x3d20c5f0, thread 0x3d233770
0:00:00.554562500 8744 0x3d233140 LOG baseparse gstbaseparse.c:2537:gst_base_parse_push_frame:<my_h264parse> frame pushed, flow ok
0:00:00.554621000 8744 0x3d233770 DEBUG GST_PADS gstpad.c:6007:do_stream_status:<my_vdec:src> doing stream-status 1
0:00:00.554633500 8744 0x3d233140 LOG baseparse gstbaseparse.c:2166:gst_base_parse_handle_buffer:<my_h264parse> handle_frame skipped 0, flushed 2671
0:00:00.554707125 8744 0x3d233140 DEBUG baseparse gstbaseparse.c:3215:gst_base_parse_chain:<my_h264parse> not enough data available (only 0 bytes)
0:00:00.554735875 8744 0x3d233140 LOG baseparse gstbaseparse.c:3277:gst_base_parse_chain:<my_h264parse> chain leaving
0:00:00.554762875 8744 0x3d233140 DEBUG GST_SCHEDULING gstpad.c:4283:gst_pad_chain_data_unchecked:<my_h264parse:sink> called chainfunction &gst_base_parse_chain with buffer 0xffffa40170d0, returned ok
0:00:00.554758875 8744 0x3d233770 LOG GST_MESSAGE gstmessage.c:301:gst_message_new_custom: source src: creating new message 0xffff9c003000 stream-status
0:00:00.554823500 8744 0x3d233140 LOG basesrc gstbasesrc.c:2828:gst_base_src_loop:<my_appsrc> next_ts 0:00:00.000002717 size 4096
0:00:00.554881375 8744 0x3d233770 DEBUG GST_PADS gstpad.c:6036:do_stream_status:<my_vdec:src> posting stream-status 1
0:00:00.554896375 8744 0x3d233140 DEBUG basesrc gstbasesrc.c:2399:gst_base_src_update_length:<my_appsrc> reading offset 2717, length 4096, size -1, segment.stop -1, maxsize -1
0:00:00.554995625 8744 0x3d233140 DEBUG basesrc gstbasesrc.c:2506:gst_base_src_get_range:<my_appsrc> calling create offset 2717 length 4096, time 0
(get_data, 99)
(get_data, 108)read_ret: 8, target frame num: 1, read frame num: 1
0:00:00.555067250 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:799:gst_buffer_new: new 0xffffa40172f0
0:00:00.554945250 8744 0x3d233770 DEBUG GST_BUS gstbus.c:318:gst_bus_post:<bus0> [msg 0xffff9c003000] posting on bus stream-status message: 0xffff9c003000, time 99:99:99.999999999, seq-num 36, element 'src', GstMessageStreamStatus, type=(GstStreamStatusType)GST_STREAM_STATUS_TYPE_ENTER, owner=(GstElement)"\(v4l2h264dec\)\ my_vdec", object=(GstTask)"\(GstTask\)\ my_vdec:src";
0:00:00.555103125 8744 0x3d233140 DEBUG GST_MEMORY gstmemory.c:139:gst_memory_init: new memory 0xffffa4018310, maxsize:259 offset:0 size:259
0:00:00.555178500 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:414:_memory_add: buffer 0xffffa40172f0, idx -1, mem 0xffffa4018310
0:00:00.555165750 8744 0x3d233770 DEBUG bin gstbin.c:3715:gst_bin_handle_message_func:<my_pipeline> [msg 0xffff9c003000] handling child src message of type stream-status
0:00:00.555246000 8744 0x3d233140 DEBUG appsrc gstappsrc.c:1863:gst_app_src_push_internal:<my_appsrc> queueing buffer 0xffffa40172f0
0:00:00.555268125 8744 0x3d233770 DEBUG bin gstbin.c:4052:gst_bin_handle_message_func:<my_pipeline> posting message upward
0:00:00.555293125 8744 0x3d233140 LOG appsrc gstappsrc.c:1221:gst_app_src_create:<my_appsrc> have buffer 0xffffa40172f0 of size 259
0:00:00.555336000 8744 0x3d233140 DEBUG basesrc gstbasesrc.c:2360:gst_base_src_do_sync:<my_appsrc> no sync needed
0:00:00.555361250 8744 0x3d233140 DEBUG basesrc gstbasesrc.c:2597:gst_base_src_get_range:<my_appsrc> buffer ok
0:00:00.555314625 8744 0x3d233770 DEBUG GST_BUS gstbus.c:318:gst_bus_post:<bus1> [msg 0xffff9c003000] posting on bus stream-status message: 0xffff9c003000, time 99:99:99.999999999, seq-num 36, element 'src', GstMessageStreamStatus, type=(GstStreamStatusType)GST_STREAM_STATUS_TYPE_ENTER, owner=(GstElement)"\(v4l2h264dec\)\ my_vdec", object=(GstTask)"\(GstTask\)\ my_vdec:src";
0:00:00.555406875 8744 0x3d233140 DEBUG GST_SCHEDULING gstpad.c:4277:gst_pad_chain_data_unchecked:<my_h264parse:sink> calling chainfunction &gst_base_parse_chain with buffer buffer: 0xffffa40172f0, pts 0:00:00.500000000, dts 99:99:99.999999999, dur 0:00:00.500000000, size 259, offset none, offset_end none, flags 0x0
0:00:00.555479000 8744 0x3d233770 DEBUG GST_BUS gstbus.c:357:gst_bus_post:<bus1> [msg 0xffff9c003000] pushing on async queue
0:00:00.555520125 8744 0x3d233140 DEBUG baseparse gstbaseparse.c:3030:gst_base_parse_chain:<my_h264parse> chain
0:00:00.555561500 8744 0x3d233770 LOG GST_POLL gstpoll.c:290:raise_wakeup: 0x3d154a30: raise
0:00:00.555601750 8744 0x3d233140 LOG baseparse gstbaseparse.c:3150:gst_base_parse_chain:<my_h264parse> buffer size: 259, offset = -1, dts 99:99:99.999999999, pts 0:00:00.500000000
0:00:00.555665500 8744 0x3d233140 LOG adapter gstadapter.c:389:gst_adapter_push:<GstAdapter at 0x3d20c000> pushing 0xffffa40172f0 first 259 bytes
0:00:00.555699625 8744 0x3d233140 LOG adapter gstadapter.c:290:update_timestamps_and_offset:<GstAdapter at 0x3d20c000> new pts 0:00:00.500000000
0:00:00.555711625 8744 0x3d233770 DEBUG GST_BUS gstbus.c:360:gst_bus_post:<bus1> [msg 0xffff9c003000] pushed on async queue
0:00:00.555738125 8744 0x3d233140 LOG adapter gstadapter.c:974:gst_adapter_get_buffer:<GstAdapter at 0x3d20c000> getting buffer of 259 bytes
0:00:00.555773375 8744 0x3d233770 DEBUG GST_BUS gstbus.c:353:gst_bus_post:<bus0> [msg 0xffff9c003000] dropped
0:00:00.555761875 8744 0xffffa4002580 LOG GST_BUS gstbus.c:522:gst_bus_timed_pop_filtered:<bus1> have 1 messages
0:00:00.555868625 8744 0x3d233770 DEBUG task gsttask.c:249:gst_task_configure_name:<my_vdec:src> Setting thread name to 'my_vdec:src'
0:00:00.555931250 8744 0xffffa4002580 LOG GST_POLL gstpoll.c:314:release_wakeup: 0x3d154a30: release
0:00:00.555877625 8744 0x3d233140 LOG adapter gstadapter.c:989:gst_adapter_get_buffer:<GstAdapter at 0x3d20c000> providing buffer of 259 bytes as head buffer
0:00:00.556021625 8744 0x3d233770 LOG v4l2 gstv4l2object.c:3903:gst_v4l2_object_poll:0x3d2174a0 polling device
0:00:00.556035125 8744 0x3d233140 LOG baseparse gstbaseparse.c:2148:gst_base_parse_handle_buffer:<my_h264parse> handling buffer of size 259 with dts 99:99:99.999999999, pts 0:00:00.500000000, duration 0:00:00.500000000
0:00:00.556091875 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:799:gst_buffer_new: new 0xffffa4017400
0:00:00.556015625 8744 0xffffa4002580 DEBUG GST_BUS gstbus.c:546:gst_bus_timed_pop_filtered:<bus1> got message 0xffff9c003000, stream-status from src, type mask is 4294967295
0:00:00.556111750 8744 0x3d233770 DEBUG GST_POLL gstpoll.c:1369:gst_poll_wait: 0x3d21fed0: timeout :99:99:99.999999999
0:00:00.556115000 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:515:gst_buffer_copy_into: copy 0xffffa40172f0 to 0xffffa4017400, offset 0-259/259
0:00:00.556224375 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:414:_memory_add: buffer 0xffffa4017400, idx -1, mem 0xffffa4018310
0:00:00.556159250 8744 0xffffa4002580 DEBUG GST_BUS gstbus.c:839:gst_bus_source_dispatch:<bus1> source 0x3d21dc00 calling dispatch with stream-status message: 0xffff9c003000, time 99:99:99.999999999, seq-num 36, element 'src', GstMessageStreamStatus, type=(GstStreamStatusType)GST_STREAM_STATUS_TYPE_ENTER, owner=(GstElement)"\(v4l2h264dec\)\ my_vdec", object=(GstTask)"\(GstTask\)\ my_vdec:src";
0:00:00.556254625 8744 0x3d233140 DEBUG GST_PERFORMANCE gstminiobject.c:317:gst_mini_object_make_writable: copy GstBuffer miniobject 0xffffa40172f0 -> 0xffffa4017400
0:00:00.556306375 8744 0xffffa4002580 LOG GST_MESSAGE gstmessage.c:208:_gst_message_free: finalize message 0xffff9c003000, stream-status from src
0:00:00.556337000 8744 0x3d233140 LOG baseparse gstbaseparse.c:2110:gst_base_parse_prepare_frame:<my_h264parse> preparing frame at offset 18446744073709551615 (0xffffffffffffffff) of size 259
0:00:00.556378125 8744 0x3d233140 LOG baseparse gstbaseparse.c:764:gst_base_parse_update_frame:<my_h264parse> marking as new frame
0:00:00.556368500 8744 0xffffa4002580 DEBUG GST_BUS gstbus.c:844:gst_bus_source_dispatch:<bus1> source 0x3d21dc00 handler returns 1
0:00:00.556408125 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1721:gst_buffer_map_range: buffer 0xffffa4017400, idx 0, length -1, flags 0001
0:00:00.556480125 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:213:_get_merged_memory: buffer 0xffffa4017400, idx 0, length 1
0:00:00.556516125 8744 0x3d233140 LOG h264parse gsth264parse.c:1097:gst_h264_parse_handle_frame:<my_h264parse> parsing new frame
0:00:00.556540500 8744 0x3d233140 DEBUG h264parse gsth264parse.c:186:gst_h264_parse_reset_frame:<my_h264parse> reset frame
0:00:00.556567000 8744 0x3d233140 DEBUG h264parse gsth264parse.c:1112:gst_h264_parse_handle_frame:<my_h264parse> last parse position 0
0:00:00.556594625 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:242:gst_h264_parse_nalu_header: Nal type 9, ref_idc 0
0:00:00.556619625 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:242:gst_h264_parse_nalu_header: Nal type 9, ref_idc 0
0:00:00.556662250 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:1366:gst_h264_parser_identify_nalu: Complete nal found. Off: 4, Size: 2
0:00:00.556692000 8744 0x3d233140 DEBUG h264parse gsth264parse.c:1162:gst_h264_parse_handle_frame:<my_h264parse> complete nal (offset, size): (4, 2)
0:00:00.556719750 8744 0x3d233140 DEBUG h264parse gsth264parse.c:1219:gst_h264_parse_handle_frame:<my_h264parse> 0xffffa400fa00 complete nal found. Off: 4, Size: 2
0:00:00.556750625 8744 0x3d233140 DEBUG h264parse gsth264parse.c:721:gst_h264_parse_process_nal:<my_h264parse> processing nal of type 9 AU delimiter, size 2
0:00:00.556780750 8744 0x3d233140 LOG h264parse gsth264parse.c:895:gst_h264_parse_process_nal:<my_h264parse> collecting NAL in AVC frame
0:00:00.556804250 8744 0x3d233140 DEBUG h264parse gsth264parse.c:428:gst_h264_parse_wrap_nal:<my_h264parse> nal length 2
0:00:00.556828625 8744 0x3d233140 DEBUG GST_MEMORY gstmemory.c:139:gst_memory_init: new memory 0xffffa400a970, maxsize:13 offset:0 size:6
0:00:00.556856500 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:799:gst_buffer_new: new 0xffffa4017a60
0:00:00.556877375 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:414:_memory_add: buffer 0xffffa4017a60, idx -1, mem 0xffffa400a970
0:00:00.556903000 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:855:gst_buffer_new_allocate: new buffer 0xffffa4017a60 of size 6 from allocator (nil)
0:00:00.556930750 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1826:gst_buffer_fill: buffer 0xffffa4017a60, offset 0, size 4
0:00:00.556957375 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1826:gst_buffer_fill: buffer 0xffffa4017a60, offset 4, size 2
0:00:00.556983375 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1582:gst_buffer_resize_range: trim 0xffffa4017a60 0-6 size:6 offs:0 max:13
0:00:00.557020875 8744 0x3d233140 LOG adapter gstadapter.c:389:gst_adapter_push:<GstAdapter at 0x3d20c120> pushing 0xffffa4017a60 first 6 bytes
0:00:00.557086750 8744 0x3d233140 DEBUG h264parse gsth264parse.c:914:gst_h264_parse_collect_nal:<my_h264parse> parsing collected nal
0:00:00.557113000 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:242:gst_h264_parse_nalu_header: Nal type 6, ref_idc 0
0:00:00.557141375 8744 0x3d233140 LOG h264parse gsth264parse.c:922:gst_h264_parse_collect_nal:<my_h264parse> nal type: 9 AU delimiter
0:00:00.557169375 8744 0x3d233140 LOG h264parse gsth264parse.c:941:gst_h264_parse_collect_nal:<my_h264parse> next nal type: 6 SEI
0:00:00.557196625 8744 0x3d233140 LOG h264parse gsth264parse.c:948:gst_h264_parse_collect_nal:<my_h264parse> au complete: 0
0:00:00.557221750 8744 0x3d233140 DEBUG h264parse gsth264parse.c:1264:gst_h264_parse_handle_frame:<my_h264parse> Looking for more
0:00:00.557240500 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:242:gst_h264_parse_nalu_header: Nal type 6, ref_idc 0
0:00:00.557262625 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:1366:gst_h264_parser_identify_nalu: Complete nal found. Off: 10, Size: 21
0:00:00.557289750 8744 0x3d233140 DEBUG h264parse gsth264parse.c:1162:gst_h264_parse_handle_frame:<my_h264parse> complete nal (offset, size): (10, 21)
0:00:00.557317250 8744 0x3d233140 DEBUG h264parse gsth264parse.c:1219:gst_h264_parse_handle_frame:<my_h264parse> 0xffffa400fa00 complete nal found. Off: 10, Size: 21
0:00:00.557346125 8744 0x3d233140 DEBUG h264parse gsth264parse.c:721:gst_h264_parse_process_nal:<my_h264parse> processing nal of type 6 SEI, size 21
0:00:00.557370750 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:2292:gst_h264_parser_parse_sei: parsing SEI nal
0:00:00.557390625 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:1127:gst_h264_parser_parse_sei_message: parsing "Sei message"
0:00:00.557427250 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:1147:gst_h264_parser_parse_sei_message: SEI message received: payloadType 5, payloadSize = 136 bits
0:00:00.557463750 8744 0x3d233140 DEBUG h264parse gsth264parse.c:807:gst_h264_parse_process_nal:<my_h264parse> marking SEI in frame at offset 6
0:00:00.557490000 8744 0x3d233140 LOG h264parse gsth264parse.c:895:gst_h264_parse_process_nal:<my_h264parse> collecting NAL in AVC frame
0:00:00.557512875 8744 0x3d233140 DEBUG h264parse gsth264parse.c:428:gst_h264_parse_wrap_nal:<my_h264parse> nal length 21
0:00:00.557534500 8744 0x3d233140 DEBUG GST_MEMORY gstmemory.c:139:gst_memory_init: new memory 0xffffa401b170, maxsize:32 offset:0 size:25
0:00:00.557562250 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:799:gst_buffer_new: new 0xffffa4017950
0:00:00.557583125 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:414:_memory_add: buffer 0xffffa4017950, idx -1, mem 0xffffa401b170
0:00:00.557608000 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:855:gst_buffer_new_allocate: new buffer 0xffffa4017950 of size 25 from allocator (nil)
0:00:00.557633000 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1826:gst_buffer_fill: buffer 0xffffa4017950, offset 0, size 4
0:00:00.557658125 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1826:gst_buffer_fill: buffer 0xffffa4017950, offset 4, size 21
0:00:00.557683500 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1582:gst_buffer_resize_range: trim 0xffffa4017950 0-25 size:25 offs:0 max:32
0:00:00.557720000 8744 0x3d233140 LOG adapter gstadapter.c:395:gst_adapter_push:<GstAdapter at 0x3d20c120> pushing 0xffffa4017950 25 bytes at end, size now 31
0:00:00.557750750 8744 0x3d233140 DEBUG h264parse gsth264parse.c:914:gst_h264_parse_collect_nal:<my_h264parse> parsing collected nal
0:00:00.557769875 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:242:gst_h264_parse_nalu_header: Nal type 1, ref_idc 1
0:00:00.557797000 8744 0x3d233140 LOG h264parse gsth264parse.c:922:gst_h264_parse_collect_nal:<my_h264parse> nal type: 6 SEI
0:00:00.557823375 8744 0x3d233140 LOG h264parse gsth264parse.c:941:gst_h264_parse_collect_nal:<my_h264parse> next nal type: 1 Slice
0:00:00.557850250 8744 0x3d233140 LOG h264parse gsth264parse.c:948:gst_h264_parse_collect_nal:<my_h264parse> au complete: 0
0:00:00.557874875 8744 0x3d233140 DEBUG h264parse gsth264parse.c:1264:gst_h264_parse_handle_frame:<my_h264parse> Looking for more
0:00:00.557893625 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:242:gst_h264_parse_nalu_header: Nal type 1, ref_idc 1
0:00:00.557915875 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:1366:gst_h264_parser_identify_nalu: Complete nal found. Off: 34, Size: 69
0:00:00.557942625 8744 0x3d233140 DEBUG h264parse gsth264parse.c:1162:gst_h264_parse_handle_frame:<my_h264parse> complete nal (offset, size): (34, 69)
0:00:00.557969625 8744 0x3d233140 DEBUG h264parse gsth264parse.c:1219:gst_h264_parse_handle_frame:<my_h264parse> 0xffffa400fa00 complete nal found. Off: 34, Size: 69
0:00:00.557999000 8744 0x3d233140 DEBUG h264parse gsth264parse.c:721:gst_h264_parse_process_nal:<my_h264parse> processing nal of type 1 Slice, size 69
0:00:00.558027750 8744 0x3d233140 DEBUG h264parse gsth264parse.c:827:gst_h264_parse_process_nal:<my_h264parse> first_mb_in_slice = 0
0:00:00.558050500 8744 0x3d233140 DEBUG h264parse gsth264parse.c:830:gst_h264_parse_process_nal:<my_h264parse> frame start: 1
0:00:00.558073625 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:2079:gst_h264_parser_parse_slice_hdr: parsing "Slice header", slice type 0
0:00:00.558102125 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:700:gst_h264_slice_parse_dec_ref_pic_marking: parsing "Decoded reference picture marking"
0:00:00.558151125 8744 0x3d233140 DEBUG h264parse gsth264parse.c:840:gst_h264_parse_process_nal:<my_h264parse> parse result 0, first MB: 0, slice type: 0
0:00:00.558182000 8744 0x3d233140 LOG h264parse gsth264parse.c:895:gst_h264_parse_process_nal:<my_h264parse> collecting NAL in AVC frame
0:00:00.558204750 8744 0x3d233140 DEBUG h264parse gsth264parse.c:428:gst_h264_parse_wrap_nal:<my_h264parse> nal length 69
0:00:00.558281000 8744 0x3d233140 DEBUG GST_MEMORY gstmemory.c:139:gst_memory_init: new memory 0x3d1da620, maxsize:80 offset:0 size:73
0:00:00.558310250 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:799:gst_buffer_new: new 0xffffa4017b70
0:00:00.558331000 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:414:_memory_add: buffer 0xffffa4017b70, idx -1, mem 0x3d1da620
0:00:00.558355625 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:855:gst_buffer_new_allocate: new buffer 0xffffa4017b70 of size 73 from allocator (nil)
0:00:00.558381000 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1826:gst_buffer_fill: buffer 0xffffa4017b70, offset 0, size 4
0:00:00.558405875 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1826:gst_buffer_fill: buffer 0xffffa4017b70, offset 4, size 69
0:00:00.558431000 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1582:gst_buffer_resize_range: trim 0xffffa4017b70 0-73 size:73 offs:0 max:80
0:00:00.558467250 8744 0x3d233140 LOG adapter gstadapter.c:395:gst_adapter_push:<GstAdapter at 0x3d20c120> pushing 0xffffa4017b70 73 bytes at end, size now 104
0:00:00.558497500 8744 0x3d233140 DEBUG h264parse gsth264parse.c:914:gst_h264_parse_collect_nal:<my_h264parse> parsing collected nal
0:00:00.558516750 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:242:gst_h264_parse_nalu_header: Nal type 1, ref_idc 1
0:00:00.558544625 8744 0x3d233140 LOG h264parse gsth264parse.c:922:gst_h264_parse_collect_nal:<my_h264parse> nal type: 1 Slice
0:00:00.558571500 8744 0x3d233140 LOG h264parse gsth264parse.c:941:gst_h264_parse_collect_nal:<my_h264parse> next nal type: 1 Slice
0:00:00.558598625 8744 0x3d233140 LOG h264parse gsth264parse.c:948:gst_h264_parse_collect_nal:<my_h264parse> au complete: 0
0:00:00.558623250 8744 0x3d233140 DEBUG h264parse gsth264parse.c:1264:gst_h264_parse_handle_frame:<my_h264parse> Looking for more
0:00:00.558642125 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:242:gst_h264_parse_nalu_header: Nal type 1, ref_idc 1
0:00:00.558665250 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:1351:gst_h264_parser_identify_nalu: Nal start 106, No end found
0:00:00.558690625 8744 0x3d233140 DEBUG h264parse gsth264parse.c:1166:gst_h264_parse_handle_frame:<my_h264parse> not a complete nal found at offset 106
0:00:00.558715875 8744 0x3d233140 DEBUG h264parse gsth264parse.c:1172:gst_h264_parse_handle_frame:<my_h264parse> draining, accepting with size 153
0:00:00.558741500 8744 0x3d233140 DEBUG h264parse gsth264parse.c:1219:gst_h264_parse_handle_frame:<my_h264parse> 0xffffa400fa00 complete nal found. Off: 106, Size: 153
0:00:00.558771375 8744 0x3d233140 DEBUG h264parse gsth264parse.c:721:gst_h264_parse_process_nal:<my_h264parse> processing nal of type 1 Slice, size 153
0:00:00.558800125 8744 0x3d233140 DEBUG h264parse gsth264parse.c:830:gst_h264_parse_process_nal:<my_h264parse> frame start: 1
0:00:00.558821750 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:2079:gst_h264_parser_parse_slice_hdr: parsing "Slice header", slice type 0
0:00:00.558844000 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:700:gst_h264_slice_parse_dec_ref_pic_marking: parsing "Decoded reference picture marking"
0:00:00.558896875 8744 0x3d233140 DEBUG h264parse gsth264parse.c:840:gst_h264_parse_process_nal:<my_h264parse> parse result 0, first MB: 49, slice type: 0
0:00:00.558927125 8744 0x3d233140 LOG h264parse gsth264parse.c:895:gst_h264_parse_process_nal:<my_h264parse> collecting NAL in AVC frame
0:00:00.558949750 8744 0x3d233140 DEBUG h264parse gsth264parse.c:428:gst_h264_parse_wrap_nal:<my_h264parse> nal length 153
0:00:00.558986500 8744 0x3d233140 DEBUG GST_MEMORY gstmemory.c:139:gst_memory_init: new memory 0xffffa4027080, maxsize:164 offset:0 size:157
0:00:00.559017750 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:799:gst_buffer_new: new 0xffffa4017c80
0:00:00.559038875 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:414:_memory_add: buffer 0xffffa4017c80, idx -1, mem 0xffffa4027080
0:00:00.559064125 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:855:gst_buffer_new_allocate: new buffer 0xffffa4017c80 of size 157 from allocator (nil)
0:00:00.559089500 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1826:gst_buffer_fill: buffer 0xffffa4017c80, offset 0, size 4
0:00:00.559114875 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1826:gst_buffer_fill: buffer 0xffffa4017c80, offset 4, size 153
0:00:00.559140500 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1582:gst_buffer_resize_range: trim 0xffffa4017c80 0-157 size:157 offs:0 max:164
0:00:00.559178125 8744 0x3d233140 LOG adapter gstadapter.c:395:gst_adapter_push:<GstAdapter at 0x3d20c120> pushing 0xffffa4017c80 157 bytes at end, size now 261
0:00:00.559218250 8744 0x3d233140 DEBUG GST_CAPS gstpad.c:2705:gst_pad_has_current_caps:<my_h264parse:src> check current pad caps video/x-h264, stream-format=(string)byte-stream, alignment=(string)au, framerate=(fraction)0/1, width=(int)176, height=(int)144, interlace-mode=(string)progressive, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8, parsed=(boolean)true, profile=(string)constrained-baseline, level=(string)1.2
0:00:00.559308250 8744 0x3d233140 LOG h264parse gsth264parse.c:2016:gst_h264_parse_get_timestamp:<my_h264parse> Upstream ts 0:00:00.500000000
0:00:00.559341000 8744 0x3d233140 DEBUG h264parse gsth264parse.c:2035:gst_h264_parse_get_timestamp:<my_h264parse> unable to compute timestamp: timing info not present
0:00:00.559368000 8744 0x3d233140 LOG adapter gstadapter.c:974:gst_adapter_get_buffer:<GstAdapter at 0x3d20c120> getting buffer of 261 bytes
0:00:00.559397125 8744 0x3d233140 LOG adapter gstadapter.c:736:gst_adapter_get_internal:<GstAdapter at 0x3d20c120> allocating 261 bytes
0:00:00.559420375 8744 0x3d233140 DEBUG adapter gstadapter.c:344:copy_into_unchecked: bsize 6, skip 0, csize 6
0:00:00.559451250 8744 0x3d233140 LOG GST_PERFORMANCE gstadapter.c:346:copy_into_unchecked:<GstAdapter at 0x3d20c120> extract 6 bytes
0:00:00.559473125 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1876:gst_buffer_extract: buffer 0xffffa4017a60, offset 0, size 6
0:00:00.559505750 8744 0x3d233140 LOG GST_PERFORMANCE gstadapter.c:359:copy_into_unchecked:<GstAdapter at 0x3d20c120> extract 25 bytes
0:00:00.559526375 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1876:gst_buffer_extract: buffer 0xffffa4017950, offset 0, size 25
0:00:00.559557875 8744 0x3d233140 LOG GST_PERFORMANCE gstadapter.c:359:copy_into_unchecked:<GstAdapter at 0x3d20c120> extract 73 bytes
0:00:00.559578375 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1876:gst_buffer_extract: buffer 0xffffa4017b70, offset 0, size 73
0:00:00.559609875 8744 0x3d233140 LOG GST_PERFORMANCE gstadapter.c:359:copy_into_unchecked:<GstAdapter at 0x3d20c120> extract 157 bytes
0:00:00.559630375 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1876:gst_buffer_extract: buffer 0xffffa4017c80, offset 0, size 157
0:00:00.559685750 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:799:gst_buffer_new: new 0xffffa4017d90
0:00:00.559709000 8744 0x3d233140 DEBUG GST_MEMORY gstmemory.c:139:gst_memory_init: new memory 0xffffa40183a0, maxsize:261 offset:0 size:261
0:00:00.559738000 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:414:_memory_add: buffer 0xffffa4017d90, idx -1, mem 0xffffa40183a0
0:00:00.559773375 8744 0x3d233140 LOG adapter gstadapter.c:634:gst_adapter_flush_unchecked:<GstAdapter at 0x3d20c120> flushing 261 bytes
0:00:00.559802500 8744 0x3d233140 LOG adapter gstadapter.c:656:gst_adapter_flush_unchecked:<GstAdapter at 0x3d20c120> flushing out head buffer
0:00:00.559821750 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:725:_gst_buffer_free: finalize 0xffffa4017a60
0:00:00.559842625 8744 0x3d233140 DEBUG GST_MEMORY gstmemory.c:88:_gst_memory_free: free memory 0xffffa400a970
0:00:00.559874375 8744 0x3d233140 LOG adapter gstadapter.c:656:gst_adapter_flush_unchecked:<GstAdapter at 0x3d20c120> flushing out head buffer
0:00:00.559893375 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:725:_gst_buffer_free: finalize 0xffffa4017950
0:00:00.559913875 8744 0x3d233140 DEBUG GST_MEMORY gstmemory.c:88:_gst_memory_free: free memory 0xffffa401b170
0:00:00.559943250 8744 0x3d233140 LOG adapter gstadapter.c:656:gst_adapter_flush_unchecked:<GstAdapter at 0x3d20c120> flushing out head buffer
0:00:00.559962250 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:725:_gst_buffer_free: finalize 0xffffa4017b70
0:00:00.559983000 8744 0x3d233140 DEBUG GST_MEMORY gstmemory.c:88:_gst_memory_free: free memory 0x3d1da620
0:00:00.560011500 8744 0x3d233140 LOG adapter gstadapter.c:656:gst_adapter_flush_unchecked:<GstAdapter at 0x3d20c120> flushing out head buffer
0:00:00.560030250 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:725:_gst_buffer_free: finalize 0xffffa4017c80
0:00:00.560050875 8744 0x3d233140 DEBUG GST_MEMORY gstmemory.c:88:_gst_memory_free: free memory 0xffffa4027080
0:00:00.560079500 8744 0x3d233140 LOG adapter gstadapter.c:668:gst_adapter_flush_unchecked:<GstAdapter at 0x3d20c120> adapter empty now
0:00:00.560099375 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:515:gst_buffer_copy_into: copy 0xffffa4017400 to 0xffffa4017d90, offset 0-259/259
0:00:00.560135750 8744 0x3d233140 LOG baseparse gstbaseparse.c:2637:gst_base_parse_finish_frame:<my_h264parse> finished frame at offset 2717, flushing size 259
0:00:00.560167500 8744 0x3d233140 LOG adapter gstadapter.c:634:gst_adapter_flush_unchecked:<GstAdapter at 0x3d20c000> flushing 259 bytes
0:00:00.560195000 8744 0x3d233140 LOG adapter gstadapter.c:656:gst_adapter_flush_unchecked:<GstAdapter at 0x3d20c000> flushing out head buffer
0:00:00.560213750 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:725:_gst_buffer_free: finalize 0xffffa40172f0
0:00:00.560241625 8744 0x3d233140 LOG adapter gstadapter.c:668:gst_adapter_flush_unchecked:<GstAdapter at 0x3d20c000> adapter empty now
0:00:00.560260875 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:725:_gst_buffer_free: finalize 0xffffa4017400
0:00:00.560281500 8744 0x3d233140 DEBUG GST_MEMORY gstmemory.c:88:_gst_memory_free: free memory 0xffffa4018310
(free_data, 133)
0:00:00.560320750 8744 0x3d233140 DEBUG baseparse gstbaseparse.c:2333:gst_base_parse_handle_and_push_frame:<my_h264parse> no next fallback timestamp
0:00:00.560346875 8744 0x3d233140 LOG baseparse gstbaseparse.c:2392:gst_base_parse_push_frame:<my_h264parse> processing buffer of size 261 with dts 99:99:99.999999999, pts 0:00:00.500000000, duration 0:00:00.500000000
0:00:00.560413125 8744 0x3d233140 DEBUG GST_CAPS gstpad.c:2705:gst_pad_has_current_caps:<my_h264parse:src> check current pad caps video/x-h264, stream-format=(string)byte-stream, alignment=(string)au, framerate=(fraction)0/1, width=(int)176, height=(int)144, interlace-mode=(string)progressive, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8, parsed=(boolean)true, profile=(string)constrained-baseline, level=(string)1.2
0:00:00.560500750 8744 0x3d233140 LOG baseparse gstbaseparse.c:1851:gst_base_parse_update_bitrates:<my_h264parse> frame bitrate 4176, avg bitrate 46944
0:00:00.560532500 8744 0x3d233140 DEBUG h264parse gsth264parse.c:186:gst_h264_parse_reset_frame:<my_h264parse> reset frame
0:00:00.560557125 8744 0x3d233140 LOG baseparse gstbaseparse.c:2535:gst_base_parse_push_frame:<my_h264parse> pushing frame (261 bytes) now..
0:00:00.560591125 8744 0x3d233140 DEBUG GST_SCHEDULING gstpad.c:4277:gst_pad_chain_data_unchecked:<my_vdec:sink> calling chainfunction &gst_video_decoder_chain with buffer buffer: 0xffffa4017d90, pts 0:00:00.500000000, dts 99:99:99.999999999, dur 0:00:00.500000000, size 261, offset 2717, offset_end none, flags 0x2400
0:00:00.560666250 8744 0x3d233140 LOG videodecoder gstvideodecoder.c:2438:gst_video_decoder_chain:<my_vdec> chain PTS 0:00:00.500000000, DTS 99:99:99.999999999 duration 0:00:00.500000000 size 261 flags 2400
0:00:00.560717375 8744 0x3d233140 LOG videodecoder gstvideodecoder.c:2595:gst_video_decoder_new_frame:<my_vdec> Created new frame 0xffffa4017ea0 (sfn:1)
0:00:00.560748250 8744 0x3d233140 LOG videodecoder gstvideodecoder.c:3410:gst_video_decoder_decode_frame:<my_vdec> PTS 0:00:00.500000000, DTS 99:99:99.999999999, dist 1
0:00:00.560794000 8744 0x3d233140 DEBUG v4l2videodec gstv4l2videodec.c:704:gst_v4l2_video_dec_handle_frame:<my_vdec> Handling frame 1
0:00:00.560826375 8744 0x3d233140 DEBUG v4l2bufferpool gstv4l2bufferpool.c:1745:gst_v4l2_buffer_pool_process:<my_vdec:pool:sink> process buffer 0xffffa4017ed8
0:00:00.560852750 8744 0x3d233140 LOG v4l2bufferpool gstv4l2bufferpool.c:1923:gst_v4l2_buffer_pool_process:<my_vdec:pool:sink> alloc buffer from our pool
0:00:00.560877125 8744 0x3d233140 DEBUG v4l2bufferpool gstv4l2bufferpool.c:1342:gst_v4l2_buffer_pool_acquire_buffer:<my_vdec:pool:sink> acquire
0:00:00.560903125 8744 0x3d233140 LOG bufferpool gstbufferpool.c:1128:default_acquire_buffer:<my_vdec:pool:sink> acquired buffer 0xffffa4017840
0:00:00.560930625 8744 0x3d233140 LOG v4l2bufferpool gstv4l2bufferpool.c:116:gst_v4l2_buffer_pool_copy_buffer:<my_vdec:pool:sink> copying buffer
0:00:00.560954000 8744 0x3d233140 DEBUG v4l2bufferpool gstv4l2bufferpool.c:141:gst_v4l2_buffer_pool_copy_buffer:<my_vdec:pool:sink> copy raw bytes
0:00:00.560973000 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1721:gst_buffer_map_range: buffer 0xffffa4017d90, idx 0, length -1, flags 0001
0:00:00.561001000 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:213:_get_merged_memory: buffer 0xffffa4017d90, idx 0, length 1
0:00:00.561027500 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1826:gst_buffer_fill: buffer 0xffffa4017840, offset 0, size 261
0:00:00.561078500 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1582:gst_buffer_resize_range: trim 0xffffa4017840 0-261 size:6291456 offs:0 max:6291456
0:00:00.561111375 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:515:gst_buffer_copy_into: copy 0xffffa4017d90 to 0xffffa4017840, offset 0-261/261
0:00:00.561145250 8744 0x3d233140 LOG GST_PERFORMANCE gstv4l2bufferpool.c:155:gst_v4l2_buffer_pool_copy_buffer:<my_vdec:pool:sink> slow copy into buffer 0xffffa4017840
0:00:00.561178750 8744 0x3d233140 LOG v4l2bufferpool gstv4l2bufferpool.c:1059:gst_v4l2_buffer_pool_qbuf:<my_vdec:pool:sink> queuing buffer 1
0:00:00.561271625 8744 0x3d233140 LOG v4l2allocator gstv4l2allocator.c:1265:gst_v4l2_allocator_qbuf:<my_vdec:pool:sink:allocator> queued buffer 1 (flags 0x4003)
0:00:00.561301500 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:710:_gst_buffer_dispose: release 0xffffa4017840 to pool 0xffffa4012410
0:00:00.561331750 8744 0x3d233140 DEBUG v4l2bufferpool gstv4l2bufferpool.c:1420:gst_v4l2_buffer_pool_release_buffer:<my_vdec:pool:sink> release buffer 0xffffa4017840
0:00:00.561359375 8744 0x3d233140 LOG v4l2bufferpool gstv4l2bufferpool.c:1503:gst_v4l2_buffer_pool_release_buffer:<my_vdec:pool:sink> buffer 1 is queued
0:00:00.561387500 8744 0x3d233140 LOG v4l2bufferpool gstv4l2bufferpool.c:999:gst_v4l2_buffer_pool_poll:<my_vdec:pool:sink> polling device
0:00:00.561407625 8744 0x3d233140 DEBUG GST_POLL gstpoll.c:1369:gst_poll_wait: 0xffffa4005cf0: timeout :99:99:99.999999999
0:00:00.561451000 8744 0x3d233140 DEBUG GST_POLL gstpoll.c:1188:gst_poll_fd_has_error: 0xffffa4005cf0: fd (fd:18, idx:1) 0
0:00:00.561480750 8744 0x3d233140 DEBUG GST_POLL gstpoll.c:1265:gst_poll_fd_can_read_pri_unlocked: 0xffffa4005cf0: fd (fd:18, idx:1) 0
0:00:00.561512125 8744 0x3d233140 LOG v4l2bufferpool gstv4l2bufferpool.c:1322:gst_v4l2_buffer_pool_dequeue:<my_vdec:pool:sink> dequeueing a buffer
0:00:00.561547000 8744 0x3d233140 LOG v4l2allocator gstv4l2allocator.c:1312:gst_v4l2_allocator_dqbuf:<my_vdec:pool:sink:allocator> dequeued buffer 0 (flags 0x4001)
0:00:00.561604500 8744 0x3d233140 DEBUG GST_META gstmeta.c:198:gst_meta_register: register "GstVideoMeta" implementing "GstVideoMetaAPI" of size 112
0:00:00.561644250 8744 0x3d233140 LOG v4l2bufferpool gstv4l2bufferpool.c:1194:gst_v4l2_buffer_pool_dqbuf:<my_vdec:pool:sink> dequeued buffer 0xffffa40170d0 seq:0 (ix=0), mem 0xffffa40181f0 used 2679, plane=0, flags 00004001, ts 0:00:00.000000000, pool-queued=1, buffer=0xffffa40170d0
0:00:00.561693375 8744 0x3d233140 DEBUG v4l2bufferpool gstv4l2bufferpool.c:1420:gst_v4l2_buffer_pool_release_buffer:<my_vdec:pool:sink> release buffer 0xffffa40170d0
0:00:00.561720125 8744 0x3d233140 LOG v4l2bufferpool gstv4l2bufferpool.c:1488:gst_v4l2_buffer_pool_release_buffer:<my_vdec:pool:sink> buffer 0 not queued, putting on free list
0:00:00.561748625 8744 0x3d233140 LOG bufferpool gstbufferpool.c:1284:default_release_buffer:<my_vdec:pool:sink> released buffer 0xffffa40170d0 0
0:00:00.561774000 8744 0x3d233140 DEBUG GST_BUFFER gstbuffer.c:1375:gst_buffer_is_memory_range_writable: idx 0, length -1
0:00:00.561800625 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:799:gst_buffer_new: new 0xffffa4028020
0:00:00.561821375 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:515:gst_buffer_copy_into: copy 0xffffa4017d90 to 0xffffa4028020, offset 0-0/261
0:00:00.561850000 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:725:_gst_buffer_free: finalize 0xffffa4017d90
0:00:00.561870125 8744 0x3d233140 DEBUG GST_MEMORY gstmemory.c:88:_gst_memory_free: free memory 0xffffa40183a0
0:00:00.561901500 8744 0x3d233140 DEBUG GST_SCHEDULING gstpad.c:4283:gst_pad_chain_data_unchecked:<my_vdec:sink> called chainfunction &gst_video_decoder_chain with buffer 0xffffa4017d90, returned ok
0:00:00.561933500 8744 0x3d233140 LOG baseparse gstbaseparse.c:2537:gst_base_parse_push_frame:<my_h264parse> frame pushed, flow ok
0:00:00.561959250 8744 0x3d233140 LOG baseparse gstbaseparse.c:2166:gst_base_parse_handle_buffer:<my_h264parse> handle_frame skipped 0, flushed 259
0:00:00.561988125 8744 0x3d233140 DEBUG baseparse gstbaseparse.c:3215:gst_base_parse_chain:<my_h264parse> not enough data available (only 0 bytes)
0:00:00.562013250 8744 0x3d233140 LOG baseparse gstbaseparse.c:3277:gst_base_parse_chain:<my_h264parse> chain leaving
0:00:00.562055250 8744 0x3d233140 DEBUG GST_SCHEDULING gstpad.c:4283:gst_pad_chain_data_unchecked:<my_h264parse:sink> called chainfunction &gst_base_parse_chain with buffer 0xffffa40172f0, returned ok
0:00:00.562089375 8744 0x3d233140 LOG basesrc gstbasesrc.c:2828:gst_base_src_loop:<my_appsrc> next_ts 0:00:00.000002976 size 4096
0:00:00.562124125 8744 0x3d233140 DEBUG basesrc gstbasesrc.c:2399:gst_base_src_update_length:<my_appsrc> reading offset 2976, length 4096, size -1, segment.stop -1, maxsize -1
0:00:00.562158625 8744 0x3d233140 DEBUG basesrc gstbasesrc.c:2506:gst_base_src_get_range:<my_appsrc> calling create offset 2976 length 4096, time 0
(get_data, 99)
(get_data, 108)read_ret: 8, target frame num: 2, read frame num: 2
0:00:00.562215875 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:799:gst_buffer_new: new 0xffffa4017400
0:00:00.562238000 8744 0x3d233140 DEBUG GST_MEMORY gstmemory.c:139:gst_memory_init: new memory 0xffffa40183a0, maxsize:538 offset:0 size:538
0:00:00.562265625 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:414:_memory_add: buffer 0xffffa4017400, idx -1, mem 0xffffa40183a0
0:00:00.562310750 8744 0x3d233140 DEBUG appsrc gstappsrc.c:1863:gst_app_src_push_internal:<my_appsrc> queueing buffer 0xffffa4017400
0:00:00.562346875 8744 0x3d233140 LOG appsrc gstappsrc.c:1221:gst_app_src_create:<my_appsrc> have buffer 0xffffa4017400 of size 538
0:00:00.562379500 8744 0x3d233140 DEBUG basesrc gstbasesrc.c:2360:gst_base_src_do_sync:<my_appsrc> no sync needed
0:00:00.562403375 8744 0x3d233140 DEBUG basesrc gstbasesrc.c:2597:gst_base_src_get_range:<my_appsrc> buffer ok
0:00:00.562431750 8744 0x3d233140 DEBUG GST_SCHEDULING gstpad.c:4277:gst_pad_chain_data_unchecked:<my_h264parse:sink> calling chainfunction &gst_base_parse_chain with buffer buffer: 0xffffa4017400, pts 0:00:01.000000000, dts 99:99:99.999999999, dur 0:00:00.500000000, size 538, offset none, offset_end none, flags 0x0
0:00:00.562490500 8744 0x3d233140 DEBUG baseparse gstbaseparse.c:3030:gst_base_parse_chain:<my_h264parse> chain
0:00:00.562514000 8744 0x3d233140 LOG baseparse gstbaseparse.c:3150:gst_base_parse_chain:<my_h264parse> buffer size: 538, offset = -1, dts 99:99:99.999999999, pts 0:00:01.000000000
0:00:00.562559000 8744 0x3d233140 LOG adapter gstadapter.c:389:gst_adapter_push:<GstAdapter at 0x3d20c000> pushing 0xffffa4017400 first 538 bytes
0:00:00.562590000 8744 0x3d233140 LOG adapter gstadapter.c:290:update_timestamps_and_offset:<GstAdapter at 0x3d20c000> new pts 0:00:01.000000000
0:00:00.562624125 8744 0x3d233140 LOG adapter gstadapter.c:974:gst_adapter_get_buffer:<GstAdapter at 0x3d20c000> getting buffer of 538 bytes
0:00:00.562652000 8744 0x3d233140 LOG adapter gstadapter.c:989:gst_adapter_get_buffer:<GstAdapter at 0x3d20c000> providing buffer of 538 bytes as head buffer
0:00:00.562678375 8744 0x3d233140 LOG baseparse gstbaseparse.c:2148:gst_base_parse_handle_buffer:<my_h264parse> handling buffer of size 538 with dts 99:99:99.999999999, pts 0:00:01.000000000, duration 0:00:00.500000000
0:00:00.562720000 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:799:gst_buffer_new: new 0xffffa40172f0
0:00:00.562740875 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:515:gst_buffer_copy_into: copy 0xffffa4017400 to 0xffffa40172f0, offset 0-538/538
0:00:00.562769375 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:414:_memory_add: buffer 0xffffa40172f0, idx -1, mem 0xffffa40183a0
0:00:00.562795125 8744 0x3d233140 DEBUG GST_PERFORMANCE gstminiobject.c:317:gst_mini_object_make_writable: copy GstBuffer miniobject 0xffffa4017400 -> 0xffffa40172f0
0:00:00.562826000 8744 0x3d233140 LOG baseparse gstbaseparse.c:2110:gst_base_parse_prepare_frame:<my_h264parse> preparing frame at offset 18446744073709551615 (0xffffffffffffffff) of size 538
0:00:00.562874125 8744 0x3d233140 LOG baseparse gstbaseparse.c:764:gst_base_parse_update_frame:<my_h264parse> marking as new frame
0:00:00.562894000 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1721:gst_buffer_map_range: buffer 0xffffa40172f0, idx 0, length -1, flags 0001
0:00:00.562921250 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:213:_get_merged_memory: buffer 0xffffa40172f0, idx 0, length 1
0:00:00.562950250 8744 0x3d233140 LOG h264parse gsth264parse.c:1097:gst_h264_parse_handle_frame:<my_h264parse> parsing new frame
0:00:00.562973750 8744 0x3d233140 DEBUG h264parse gsth264parse.c:186:gst_h264_parse_reset_frame:<my_h264parse> reset frame
0:00:00.562996375 8744 0x3d233140 DEBUG h264parse gsth264parse.c:1112:gst_h264_parse_handle_frame:<my_h264parse> last parse position 0
0:00:00.563018375 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:242:gst_h264_parse_nalu_header: Nal type 9, ref_idc 0
0:00:00.563041375 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:242:gst_h264_parse_nalu_header: Nal type 9, ref_idc 0
0:00:00.563063500 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:1366:gst_h264_parser_identify_nalu: Complete nal found. Off: 4, Size: 2
0:00:00.563090625 8744 0x3d233140 DEBUG h264parse gsth264parse.c:1162:gst_h264_parse_handle_frame:<my_h264parse> complete nal (offset, size): (4, 2)
0:00:00.563117625 8744 0x3d233140 DEBUG h264parse gsth264parse.c:1219:gst_h264_parse_handle_frame:<my_h264parse> 0xffffa401f600 complete nal found. Off: 4, Size: 2
0:00:00.563147375 8744 0x3d233140 DEBUG h264parse gsth264parse.c:721:gst_h264_parse_process_nal:<my_h264parse> processing nal of type 9 AU delimiter, size 2
0:00:00.563175875 8744 0x3d233140 LOG h264parse gsth264parse.c:895:gst_h264_parse_process_nal:<my_h264parse> collecting NAL in AVC frame
0:00:00.563199000 8744 0x3d233140 DEBUG h264parse gsth264parse.c:428:gst_h264_parse_wrap_nal:<my_h264parse> nal length 2
0:00:00.563220375 8744 0x3d233140 DEBUG GST_MEMORY gstmemory.c:139:gst_memory_init: new memory 0xffffa400aa10, maxsize:13 offset:0 size:6
0:00:00.563247875 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:799:gst_buffer_new: new 0xffffa4017c80
0:00:00.563268875 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:414:_memory_add: buffer 0xffffa4017c80, idx -1, mem 0xffffa400aa10
0:00:00.563294375 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:855:gst_buffer_new_allocate: new buffer 0xffffa4017c80 of size 6 from allocator (nil)
0:00:00.563319750 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1826:gst_buffer_fill: buffer 0xffffa4017c80, offset 0, size 4
0:00:00.563345000 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1826:gst_buffer_fill: buffer 0xffffa4017c80, offset 4, size 2
0:00:00.563370250 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1582:gst_buffer_resize_range: trim 0xffffa4017c80 0-6 size:6 offs:0 max:13
0:00:00.563406250 8744 0x3d233140 LOG adapter gstadapter.c:389:gst_adapter_push:<GstAdapter at 0x3d20c120> pushing 0xffffa4017c80 first 6 bytes
0:00:00.563434875 8744 0x3d233140 DEBUG h264parse gsth264parse.c:914:gst_h264_parse_collect_nal:<my_h264parse> parsing collected nal
0:00:00.563454250 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:242:gst_h264_parse_nalu_header: Nal type 6, ref_idc 0
0:00:00.563481625 8744 0x3d233140 LOG h264parse gsth264parse.c:922:gst_h264_parse_collect_nal:<my_h264parse> nal type: 9 AU delimiter
0:00:00.563509625 8744 0x3d233140 LOG h264parse gsth264parse.c:941:gst_h264_parse_collect_nal:<my_h264parse> next nal type: 6 SEI
0:00:00.563537125 8744 0x3d233140 LOG h264parse gsth264parse.c:948:gst_h264_parse_collect_nal:<my_h264parse> au complete: 0
0:00:00.563579125 8744 0x3d233140 DEBUG h264parse gsth264parse.c:1264:gst_h264_parse_handle_frame:<my_h264parse> Looking for more
0:00:00.563598625 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:242:gst_h264_parse_nalu_header: Nal type 6, ref_idc 0
0:00:00.563621875 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:1366:gst_h264_parser_identify_nalu: Complete nal found. Off: 10, Size: 21
0:00:00.563649375 8744 0x3d233140 DEBUG h264parse gsth264parse.c:1162:gst_h264_parse_handle_frame:<my_h264parse> complete nal (offset, size): (10, 21)
0:00:00.563676625 8744 0x3d233140 DEBUG h264parse gsth264parse.c:1219:gst_h264_parse_handle_frame:<my_h264parse> 0xffffa401f600 complete nal found. Off: 10, Size: 21
0:00:00.563707125 8744 0x3d233140 DEBUG h264parse gsth264parse.c:721:gst_h264_parse_process_nal:<my_h264parse> processing nal of type 6 SEI, size 21
0:00:00.563731875 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:2292:gst_h264_parser_parse_sei: parsing SEI nal
0:00:00.563751750 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:1127:gst_h264_parser_parse_sei_message: parsing "Sei message"
0:00:00.563771625 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:1147:gst_h264_parser_parse_sei_message: SEI message received: payloadType 5, payloadSize = 136 bits
0:00:00.563804500 8744 0x3d233140 DEBUG h264parse gsth264parse.c:807:gst_h264_parse_process_nal:<my_h264parse> marking SEI in frame at offset 6
0:00:00.563830750 8744 0x3d233140 LOG h264parse gsth264parse.c:895:gst_h264_parse_process_nal:<my_h264parse> collecting NAL in AVC frame
0:00:00.563853625 8744 0x3d233140 DEBUG h264parse gsth264parse.c:428:gst_h264_parse_wrap_nal:<my_h264parse> nal length 21
0:00:00.563874875 8744 0x3d233140 DEBUG GST_MEMORY gstmemory.c:139:gst_memory_init: new memory 0xffffa401b220, maxsize:32 offset:0 size:25
0:00:00.563903500 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:799:gst_buffer_new: new 0xffffa4017b70
0:00:00.563924500 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:414:_memory_add: buffer 0xffffa4017b70, idx -1, mem 0xffffa401b220
0:00:00.563949500 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:855:gst_buffer_new_allocate: new buffer 0xffffa4017b70 of size 25 from allocator (nil)
0:00:00.563974500 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1826:gst_buffer_fill: buffer 0xffffa4017b70, offset 0, size 4
0:00:00.563999750 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1826:gst_buffer_fill: buffer 0xffffa4017b70, offset 4, size 21
0:00:00.564024500 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1582:gst_buffer_resize_range: trim 0xffffa4017b70 0-25 size:25 offs:0 max:32
0:00:00.564061375 8744 0x3d233140 LOG adapter gstadapter.c:395:gst_adapter_push:<GstAdapter at 0x3d20c120> pushing 0xffffa4017b70 25 bytes at end, size now 31
0:00:00.564092875 8744 0x3d233140 DEBUG h264parse gsth264parse.c:914:gst_h264_parse_collect_nal:<my_h264parse> parsing collected nal
0:00:00.564113000 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:242:gst_h264_parse_nalu_header: Nal type 1, ref_idc 1
0:00:00.564140625 8744 0x3d233140 LOG h264parse gsth264parse.c:922:gst_h264_parse_collect_nal:<my_h264parse> nal type: 6 SEI
0:00:00.564167750 8744 0x3d233140 LOG h264parse gsth264parse.c:941:gst_h264_parse_collect_nal:<my_h264parse> next nal type: 1 Slice
0:00:00.564195375 8744 0x3d233140 LOG h264parse gsth264parse.c:948:gst_h264_parse_collect_nal:<my_h264parse> au complete: 0
0:00:00.564220750 8744 0x3d233140 DEBUG h264parse gsth264parse.c:1264:gst_h264_parse_handle_frame:<my_h264parse> Looking for more
0:00:00.564239250 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:242:gst_h264_parse_nalu_header: Nal type 1, ref_idc 1
0:00:00.564278625 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:1366:gst_h264_parser_identify_nalu: Complete nal found. Off: 34, Size: 100
0:00:00.564308375 8744 0x3d233140 DEBUG h264parse gsth264parse.c:1162:gst_h264_parse_handle_frame:<my_h264parse> complete nal (offset, size): (34, 100)
0:00:00.564335750 8744 0x3d233140 DEBUG h264parse gsth264parse.c:1219:gst_h264_parse_handle_frame:<my_h264parse> 0xffffa401f600 complete nal found. Off: 34, Size: 100
0:00:00.564365875 8744 0x3d233140 DEBUG h264parse gsth264parse.c:721:gst_h264_parse_process_nal:<my_h264parse> processing nal of type 1 Slice, size 100
0:00:00.564395125 8744 0x3d233140 DEBUG h264parse gsth264parse.c:827:gst_h264_parse_process_nal:<my_h264parse> first_mb_in_slice = 0
0:00:00.564419125 8744 0x3d233140 DEBUG h264parse gsth264parse.c:830:gst_h264_parse_process_nal:<my_h264parse> frame start: 1
0:00:00.564442500 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:2079:gst_h264_parser_parse_slice_hdr: parsing "Slice header", slice type 0
0:00:00.564469375 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:700:gst_h264_slice_parse_dec_ref_pic_marking: parsing "Decoded reference picture marking"
0:00:00.564494250 8744 0x3d233140 DEBUG h264parse gsth264parse.c:840:gst_h264_parse_process_nal:<my_h264parse> parse result 0, first MB: 0, slice type: 0
0:00:00.564523250 8744 0x3d233140 LOG h264parse gsth264parse.c:895:gst_h264_parse_process_nal:<my_h264parse> collecting NAL in AVC frame
0:00:00.564546250 8744 0x3d233140 DEBUG h264parse gsth264parse.c:428:gst_h264_parse_wrap_nal:<my_h264parse> nal length 100
0:00:00.564601875 8744 0x3d233140 DEBUG GST_MEMORY gstmemory.c:139:gst_memory_init: new memory 0xffffa402a0a0, maxsize:111 offset:0 size:104
0:00:00.564632000 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:799:gst_buffer_new: new 0xffffa4017950
0:00:00.564653125 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:414:_memory_add: buffer 0xffffa4017950, idx -1, mem 0xffffa402a0a0
0:00:00.564678625 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:855:gst_buffer_new_allocate: new buffer 0xffffa4017950 of size 104 from allocator (nil)
0:00:00.564704000 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1826:gst_buffer_fill: buffer 0xffffa4017950, offset 0, size 4
0:00:00.564729625 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1826:gst_buffer_fill: buffer 0xffffa4017950, offset 4, size 100
0:00:00.564756250 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1582:gst_buffer_resize_range: trim 0xffffa4017950 0-104 size:104 offs:0 max:111
0:00:00.564794750 8744 0x3d233140 LOG adapter gstadapter.c:395:gst_adapter_push:<GstAdapter at 0x3d20c120> pushing 0xffffa4017950 104 bytes at end, size now 135
0:00:00.564826000 8744 0x3d233140 DEBUG h264parse gsth264parse.c:914:gst_h264_parse_collect_nal:<my_h264parse> parsing collected nal
0:00:00.564845375 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:242:gst_h264_parse_nalu_header: Nal type 1, ref_idc 1
0:00:00.564873250 8744 0x3d233140 LOG h264parse gsth264parse.c:922:gst_h264_parse_collect_nal:<my_h264parse> nal type: 1 Slice
0:00:00.564900375 8744 0x3d233140 LOG h264parse gsth264parse.c:941:gst_h264_parse_collect_nal:<my_h264parse> next nal type: 1 Slice
0:00:00.564927250 8744 0x3d233140 LOG h264parse gsth264parse.c:948:gst_h264_parse_collect_nal:<my_h264parse> au complete: 0
0:00:00.564951875 8744 0x3d233140 DEBUG h264parse gsth264parse.c:1264:gst_h264_parse_handle_frame:<my_h264parse> Looking for more
0:00:00.564970750 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:242:gst_h264_parse_nalu_header: Nal type 1, ref_idc 1
0:00:00.565013875 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:1351:gst_h264_parser_identify_nalu: Nal start 137, No end found
0:00:00.565084125 8744 0x3d233140 DEBUG h264parse gsth264parse.c:1166:gst_h264_parse_handle_frame:<my_h264parse> not a complete nal found at offset 137
0:00:00.565117500 8744 0x3d233140 DEBUG h264parse gsth264parse.c:1172:gst_h264_parse_handle_frame:<my_h264parse> draining, accepting with size 401
0:00:00.565144375 8744 0x3d233140 DEBUG h264parse gsth264parse.c:1219:gst_h264_parse_handle_frame:<my_h264parse> 0xffffa401f600 complete nal found. Off: 137, Size: 401
0:00:00.565175125 8744 0x3d233140 DEBUG h264parse gsth264parse.c:721:gst_h264_parse_process_nal:<my_h264parse> processing nal of type 1 Slice, size 401
0:00:00.565205750 8744 0x3d233140 DEBUG h264parse gsth264parse.c:830:gst_h264_parse_process_nal:<my_h264parse> frame start: 1
0:00:00.565228750 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:2079:gst_h264_parser_parse_slice_hdr: parsing "Slice header", slice type 0
0:00:00.565253500 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:700:gst_h264_slice_parse_dec_ref_pic_marking: parsing "Decoded reference picture marking"
0:00:00.565279375 8744 0x3d233140 DEBUG h264parse gsth264parse.c:840:gst_h264_parse_process_nal:<my_h264parse> parse result 0, first MB: 49, slice type: 0
0:00:00.565310750 8744 0x3d233140 LOG h264parse gsth264parse.c:895:gst_h264_parse_process_nal:<my_h264parse> collecting NAL in AVC frame
0:00:00.565335375 8744 0x3d233140 DEBUG h264parse gsth264parse.c:428:gst_h264_parse_wrap_nal:<my_h264parse> nal length 401
0:00:00.565406250 8744 0x3d233140 DEBUG GST_MEMORY gstmemory.c:139:gst_memory_init: new memory 0xffffa402c0c0, maxsize:412 offset:0 size:405
0:00:00.565438500 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:799:gst_buffer_new: new 0xffffa4017a60
0:00:00.565459625 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:414:_memory_add: buffer 0xffffa4017a60, idx -1, mem 0xffffa402c0c0
0:00:00.565485625 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:855:gst_buffer_new_allocate: new buffer 0xffffa4017a60 of size 405 from allocator (nil)
0:00:00.565511875 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1826:gst_buffer_fill: buffer 0xffffa4017a60, offset 0, size 4
0:00:00.565537625 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1826:gst_buffer_fill: buffer 0xffffa4017a60, offset 4, size 401
0:00:00.565563250 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1582:gst_buffer_resize_range: trim 0xffffa4017a60 0-405 size:405 offs:0 max:412
0:00:00.565601500 8744 0x3d233140 LOG adapter gstadapter.c:395:gst_adapter_push:<GstAdapter at 0x3d20c120> pushing 0xffffa4017a60 405 bytes at end, size now 540
0:00:00.565650375 8744 0x3d233140 DEBUG GST_CAPS gstpad.c:2705:gst_pad_has_current_caps:<my_h264parse:src> check current pad caps video/x-h264, stream-format=(string)byte-stream, alignment=(string)au, framerate=(fraction)0/1, width=(int)176, height=(int)144, interlace-mode=(string)progressive, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8, parsed=(boolean)true, profile=(string)constrained-baseline, level=(string)1.2
0:00:00.565756250 8744 0x3d233140 LOG h264parse gsth264parse.c:2016:gst_h264_parse_get_timestamp:<my_h264parse> Upstream ts 0:00:01.000000000
0:00:00.565789500 8744 0x3d233140 DEBUG h264parse gsth264parse.c:2035:gst_h264_parse_get_timestamp:<my_h264parse> unable to compute timestamp: timing info not present
0:00:00.565820000 8744 0x3d233140 LOG adapter gstadapter.c:974:gst_adapter_get_buffer:<GstAdapter at 0x3d20c120> getting buffer of 540 bytes
0:00:00.565851750 8744 0x3d233140 LOG adapter gstadapter.c:736:gst_adapter_get_internal:<GstAdapter at 0x3d20c120> allocating 540 bytes
0:00:00.565895125 8744 0x3d233140 DEBUG adapter gstadapter.c:344:copy_into_unchecked: bsize 6, skip 0, csize 6
0:00:00.565929250 8744 0x3d233140 LOG GST_PERFORMANCE gstadapter.c:346:copy_into_unchecked:<GstAdapter at 0x3d20c120> extract 6 bytes
0:00:00.565954375 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1876:gst_buffer_extract: buffer 0xffffa4017c80, offset 0, size 6
0:00:00.565991500 8744 0x3d233140 LOG GST_PERFORMANCE gstadapter.c:359:copy_into_unchecked:<GstAdapter at 0x3d20c120> extract 25 bytes
0:00:00.566014250 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1876:gst_buffer_extract: buffer 0xffffa4017b70, offset 0, size 25
0:00:00.566047500 8744 0x3d233140 LOG GST_PERFORMANCE gstadapter.c:359:copy_into_unchecked:<GstAdapter at 0x3d20c120> extract 104 bytes
0:00:00.566068250 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1876:gst_buffer_extract: buffer 0xffffa4017950, offset 0, size 104
0:00:00.566100750 8744 0x3d233140 LOG GST_PERFORMANCE gstadapter.c:359:copy_into_unchecked:<GstAdapter at 0x3d20c120> extract 405 bytes
0:00:00.566121500 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1876:gst_buffer_extract: buffer 0xffffa4017a60, offset 0, size 405
0:00:00.566150125 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:799:gst_buffer_new: new 0xffffa4017d90
0:00:00.566175125 8744 0x3d233140 DEBUG GST_MEMORY gstmemory.c:139:gst_memory_init: new memory 0xffffa4018310, maxsize:540 offset:0 size:540
0:00:00.566202500 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:414:_memory_add: buffer 0xffffa4017d90, idx -1, mem 0xffffa4018310
0:00:00.566238875 8744 0x3d233140 LOG adapter gstadapter.c:634:gst_adapter_flush_unchecked:<GstAdapter at 0x3d20c120> flushing 540 bytes
0:00:00.566268500 8744 0x3d233140 LOG adapter gstadapter.c:656:gst_adapter_flush_unchecked:<GstAdapter at 0x3d20c120> flushing out head buffer
0:00:00.566288500 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:725:_gst_buffer_free: finalize 0xffffa4017c80
0:00:00.566310125 8744 0x3d233140 DEBUG GST_MEMORY gstmemory.c:88:_gst_memory_free: free memory 0xffffa400aa10
0:00:00.566346125 8744 0x3d233140 LOG adapter gstadapter.c:656:gst_adapter_flush_unchecked:<GstAdapter at 0x3d20c120> flushing out head buffer
0:00:00.566364875 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:725:_gst_buffer_free: finalize 0xffffa4017b70
0:00:00.566385500 8744 0x3d233140 DEBUG GST_MEMORY gstmemory.c:88:_gst_memory_free: free memory 0xffffa401b220
0:00:00.566415000 8744 0x3d233140 LOG adapter gstadapter.c:656:gst_adapter_flush_unchecked:<GstAdapter at 0x3d20c120> flushing out head buffer
0:00:00.566434375 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:725:_gst_buffer_free: finalize 0xffffa4017950
0:00:00.566455875 8744 0x3d233140 DEBUG GST_MEMORY gstmemory.c:88:_gst_memory_free: free memory 0xffffa402a0a0
0:00:00.566485250 8744 0x3d233140 LOG adapter gstadapter.c:656:gst_adapter_flush_unchecked:<GstAdapter at 0x3d20c120> flushing out head buffer
0:00:00.566504375 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:725:_gst_buffer_free: finalize 0xffffa4017a60
0:00:00.566525125 8744 0x3d233140 DEBUG GST_MEMORY gstmemory.c:88:_gst_memory_free: free memory 0xffffa402c0c0
0:00:00.566554500 8744 0x3d233140 LOG adapter gstadapter.c:668:gst_adapter_flush_unchecked:<GstAdapter at 0x3d20c120> adapter empty now
0:00:00.566575750 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:515:gst_buffer_copy_into: copy 0xffffa40172f0 to 0xffffa4017d90, offset 0-538/538
0:00:00.566614125 8744 0x3d233140 LOG baseparse gstbaseparse.c:2637:gst_base_parse_finish_frame:<my_h264parse> finished frame at offset 2976, flushing size 538
0:00:00.566662500 8744 0x3d233140 LOG adapter gstadapter.c:634:gst_adapter_flush_unchecked:<GstAdapter at 0x3d20c000> flushing 538 bytes
0:00:00.566692000 8744 0x3d233140 LOG adapter gstadapter.c:656:gst_adapter_flush_unchecked:<GstAdapter at 0x3d20c000> flushing out head buffer
0:00:00.566710750 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:725:_gst_buffer_free: finalize 0xffffa4017400
0:00:00.566738625 8744 0x3d233140 LOG adapter gstadapter.c:668:gst_adapter_flush_unchecked:<GstAdapter at 0x3d20c000> adapter empty now
0:00:00.566758250 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:725:_gst_buffer_free: finalize 0xffffa40172f0
0:00:00.566778875 8744 0x3d233140 DEBUG GST_MEMORY gstmemory.c:88:_gst_memory_free: free memory 0xffffa40183a0
(free_data, 133)
0:00:00.566818750 8744 0x3d233140 DEBUG baseparse gstbaseparse.c:2333:gst_base_parse_handle_and_push_frame:<my_h264parse> no next fallback timestamp
0:00:00.566844750 8744 0x3d233140 LOG baseparse gstbaseparse.c:2392:gst_base_parse_push_frame:<my_h264parse> processing buffer of size 540 with dts 99:99:99.999999999, pts 0:00:01.000000000, duration 0:00:00.500000000
0:00:00.566897125 8744 0x3d233140 DEBUG GST_CAPS gstpad.c:2705:gst_pad_has_current_caps:<my_h264parse:src> check current pad caps video/x-h264, stream-format=(string)byte-stream, alignment=(string)au, framerate=(fraction)0/1, width=(int)176, height=(int)144, interlace-mode=(string)progressive, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8, parsed=(boolean)true, profile=(string)constrained-baseline, level=(string)1.2
0:00:00.566978625 8744 0x3d233140 LOG baseparse gstbaseparse.c:1851:gst_base_parse_update_bitrates:<my_h264parse> frame bitrate 8640, avg bitrate 27792
0:00:00.567009875 8744 0x3d233140 DEBUG h264parse gsth264parse.c:186:gst_h264_parse_reset_frame:<my_h264parse> reset frame
0:00:00.567036500 8744 0x3d233140 LOG baseparse gstbaseparse.c:2535:gst_base_parse_push_frame:<my_h264parse> pushing frame (540 bytes) now..
0:00:00.567074375 8744 0x3d233140 DEBUG GST_SCHEDULING gstpad.c:4277:gst_pad_chain_data_unchecked:<my_vdec:sink> calling chainfunction &gst_video_decoder_chain with buffer buffer: 0xffffa4017d90, pts 0:00:01.000000000, dts 99:99:99.999999999, dur 0:00:00.500000000, size 540, offset 2976, offset_end none, flags 0x2400
0:00:00.567146750 8744 0x3d233140 LOG videodecoder gstvideodecoder.c:2438:gst_video_decoder_chain:<my_vdec> chain PTS 0:00:01.000000000, DTS 99:99:99.999999999 duration 0:00:00.500000000 size 540 flags 2400
0:00:00.567197500 8744 0x3d233140 LOG videodecoder gstvideodecoder.c:2595:gst_video_decoder_new_frame:<my_vdec> Created new frame 0xffffa4028130 (sfn:2)
0:00:00.567228250 8744 0x3d233140 LOG videodecoder gstvideodecoder.c:3410:gst_video_decoder_decode_frame:<my_vdec> PTS 0:00:01.000000000, DTS 99:99:99.999999999, dist 2
0:00:00.567272625 8744 0x3d233140 DEBUG v4l2videodec gstv4l2videodec.c:704:gst_v4l2_video_dec_handle_frame:<my_vdec> Handling frame 2
0:00:00.567306125 8744 0x3d233140 DEBUG v4l2bufferpool gstv4l2bufferpool.c:1745:gst_v4l2_buffer_pool_process:<my_vdec:pool:sink> process buffer 0xffffa4028168
0:00:00.567332625 8744 0x3d233140 LOG v4l2bufferpool gstv4l2bufferpool.c:1923:gst_v4l2_buffer_pool_process:<my_vdec:pool:sink> alloc buffer from our pool
0:00:00.567357875 8744 0x3d233140 DEBUG v4l2bufferpool gstv4l2bufferpool.c:1342:gst_v4l2_buffer_pool_acquire_buffer:<my_vdec:pool:sink> acquire
0:00:00.567383750 8744 0x3d233140 LOG bufferpool gstbufferpool.c:1128:default_acquire_buffer:<my_vdec:pool:sink> acquired buffer 0xffffa40170d0
0:00:00.567410750 8744 0x3d233140 LOG v4l2bufferpool gstv4l2bufferpool.c:116:gst_v4l2_buffer_pool_copy_buffer:<my_vdec:pool:sink> copying buffer
0:00:00.567450750 8744 0x3d233140 DEBUG v4l2bufferpool gstv4l2bufferpool.c:141:gst_v4l2_buffer_pool_copy_buffer:<my_vdec:pool:sink> copy raw bytes
0:00:00.567471250 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1721:gst_buffer_map_range: buffer 0xffffa4017d90, idx 0, length -1, flags 0001
0:00:00.567500750 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:213:_get_merged_memory: buffer 0xffffa4017d90, idx 0, length 1
0:00:00.567528000 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1826:gst_buffer_fill: buffer 0xffffa40170d0, offset 0, size 540
0:00:00.567558000 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1582:gst_buffer_resize_range: trim 0xffffa40170d0 0-540 size:6291456 offs:0 max:6291456
0:00:00.567589875 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:515:gst_buffer_copy_into: copy 0xffffa4017d90 to 0xffffa40170d0, offset 0-540/540
0:00:00.567623875 8744 0x3d233140 LOG GST_PERFORMANCE gstv4l2bufferpool.c:155:gst_v4l2_buffer_pool_copy_buffer:<my_vdec:pool:sink> slow copy into buffer 0xffffa40170d0
0:00:00.567656500 8744 0x3d233140 LOG v4l2bufferpool gstv4l2bufferpool.c:1059:gst_v4l2_buffer_pool_qbuf:<my_vdec:pool:sink> queuing buffer 0
0:00:00.567733000 8744 0x3d233140 LOG v4l2allocator gstv4l2allocator.c:1265:gst_v4l2_allocator_qbuf:<my_vdec:pool:sink:allocator> queued buffer 0 (flags 0x4003)
0:00:00.567761625 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:710:_gst_buffer_dispose: release 0xffffa40170d0 to pool 0xffffa4012410
0:00:00.567791250 8744 0x3d233140 DEBUG v4l2bufferpool gstv4l2bufferpool.c:1420:gst_v4l2_buffer_pool_release_buffer:<my_vdec:pool:sink> release buffer 0xffffa40170d0
0:00:00.567818125 8744 0x3d233140 LOG v4l2bufferpool gstv4l2bufferpool.c:1503:gst_v4l2_buffer_pool_release_buffer:<my_vdec:pool:sink> buffer 0 is queued
0:00:00.567845625 8744 0x3d233140 LOG v4l2bufferpool gstv4l2bufferpool.c:999:gst_v4l2_buffer_pool_poll:<my_vdec:pool:sink> polling device
0:00:00.567865500 8744 0x3d233140 DEBUG GST_POLL gstpoll.c:1369:gst_poll_wait: 0xffffa4005cf0: timeout :99:99:99.999999999
0:00:00.567910125 8744 0x3d233140 DEBUG GST_POLL gstpoll.c:1188:gst_poll_fd_has_error: 0xffffa4005cf0: fd (fd:18, idx:1) 0
0:00:00.567939500 8744 0x3d233140 DEBUG GST_POLL gstpoll.c:1265:gst_poll_fd_can_read_pri_unlocked: 0xffffa4005cf0: fd (fd:18, idx:1) 0
0:00:00.567971000 8744 0x3d233140 LOG v4l2bufferpool gstv4l2bufferpool.c:1322:gst_v4l2_buffer_pool_dequeue:<my_vdec:pool:sink> dequeueing a buffer
0:00:00.568005125 8744 0x3d233140 LOG v4l2allocator gstv4l2allocator.c:1312:gst_v4l2_allocator_dqbuf:<my_vdec:pool:sink:allocator> dequeued buffer 1 (flags 0x4001)
0:00:00.568038625 8744 0x3d233140 LOG v4l2bufferpool gstv4l2bufferpool.c:1194:gst_v4l2_buffer_pool_dqbuf:<my_vdec:pool:sink> dequeued buffer 0xffffa4017840 seq:0 (ix=1), mem 0xffffa4018280 used 261, plane=0, flags 00004001, ts 0:00:00.500000000, pool-queued=1, buffer=0xffffa4017840
0:00:00.568084000 8744 0x3d233140 DEBUG v4l2bufferpool gstv4l2bufferpool.c:1420:gst_v4l2_buffer_pool_release_buffer:<my_vdec:pool:sink> release buffer 0xffffa4017840
0:00:00.568110125 8744 0x3d233140 LOG v4l2bufferpool gstv4l2bufferpool.c:1488:gst_v4l2_buffer_pool_release_buffer:<my_vdec:pool:sink> buffer 1 not queued, putting on free list
0:00:00.568138375 8744 0x3d233140 LOG bufferpool gstbufferpool.c:1284:default_release_buffer:<my_vdec:pool:sink> released buffer 0xffffa4017840 0
0:00:00.568163750 8744 0x3d233140 DEBUG GST_BUFFER gstbuffer.c:1375:gst_buffer_is_memory_range_writable: idx 0, length -1
0:00:00.568189750 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:799:gst_buffer_new: new 0xffffa4028240
0:00:00.568210375 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:515:gst_buffer_copy_into: copy 0xffffa4017d90 to 0xffffa4028240, offset 0-0/540
0:00:00.568255625 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:725:_gst_buffer_free: finalize 0xffffa4017d90
0:00:00.568277000 8744 0x3d233140 DEBUG GST_MEMORY gstmemory.c:88:_gst_memory_free: free memory 0xffffa4018310
0:00:00.568308875 8744 0x3d233140 DEBUG GST_SCHEDULING gstpad.c:4283:gst_pad_chain_data_unchecked:<my_vdec:sink> called chainfunction &gst_video_decoder_chain with buffer 0xffffa4017d90, returned ok
0:00:00.568341250 8744 0x3d233140 LOG baseparse gstbaseparse.c:2537:gst_base_parse_push_frame:<my_h264parse> frame pushed, flow ok
0:00:00.568367750 8744 0x3d233140 LOG baseparse gstbaseparse.c:2166:gst_base_parse_handle_buffer:<my_h264parse> handle_frame skipped 0, flushed 538
0:00:00.568355625 8744 0x3d233770 DEBUG GST_POLL gstpoll.c:1188:gst_poll_fd_has_error: 0x3d21fed0: fd (fd:17, idx:1) 0
0:00:00.568398500 8744 0x3d233140 DEBUG baseparse gstbaseparse.c:3215:gst_base_parse_chain:<my_h264parse> not enough data available (only 0 bytes)
0:00:00.568457250 8744 0x3d233770 DEBUG v4l2videodec gstv4l2videodec.c:525:gst_v4l2_video_dec_loop:<my_vdec> Received source change event
0:00:00.568475500 8744 0x3d233140 LOG baseparse gstbaseparse.c:3277:gst_base_parse_chain:<my_h264parse> chain leaving
0:00:00.568540500 8744 0x3d233140 DEBUG GST_SCHEDULING gstpad.c:4283:gst_pad_chain_data_unchecked:<my_h264parse:sink> called chainfunction &gst_base_parse_chain with buffer 0xffffa4017400, returned ok
0:00:00.568539750 8744 0x3d233770 DEBUG v4l2 gstv4l2object.c:3211:gst_v4l2_object_save_format:<my_vdec:src> Got sizeimage 98304
0:00:00.568590875 8744 0x3d233140 LOG basesrc gstbasesrc.c:2828:gst_base_src_loop:<my_appsrc> next_ts 0:00:00.000003514 size 4096
0:00:00.568642625 8744 0x3d233140 DEBUG basesrc gstbasesrc.c:2399:gst_base_src_update_length:<my_appsrc> reading offset 3514, length 4096, size -1, segment.stop -1, maxsize -1
0:00:00.568680125 8744 0x3d233140 DEBUG basesrc gstbasesrc.c:2506:gst_base_src_get_range:<my_appsrc> calling create offset 3514 length 4096, time 0
(get_data, 99)
(get_data, 108)read_ret: 8, target frame num: 3, read frame num: 3
0:00:00.568810125 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:799:gst_buffer_new: new 0xffffa40172f0
0:00:00.568753125 8744 0x3d233770 DEBUG v4l2videodec gstv4l2videodec.c:546:gst_v4l2_video_dec_loop:<my_vdec> Acquired caps: video/x-raw, format=(string)NV12, width=(int)176, height=(int)144, interlace-mode=(string)progressive, pixel-aspect-ratio=(fraction)1/1, chroma-site=(string)jpeg, colorimetry=(string)bt709, framerate=(fraction)0/1
0:00:00.568844125 8744 0x3d233140 DEBUG GST_MEMORY gstmemory.c:139:gst_memory_init: new memory 0xffffa40180d0, maxsize:2034 offset:0 size:2034
0:00:00.568920500 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:414:_memory_add: buffer 0xffffa40172f0, idx -1, mem 0xffffa40180d0
0:00:00.568933750 8744 0x3d233770 DEBUG v4l2 gstv4l2object.c:2665:gst_v4l2_object_probe_caps_for_format:<my_vdec:src> Enumerating frame sizes for NV12
0:00:00.568984000 8744 0x3d233140 DEBUG appsrc gstappsrc.c:1863:gst_app_src_push_internal:<my_appsrc> queueing buffer 0xffffa40172f0
0:00:00.569031500 8744 0x3d233140 LOG appsrc gstappsrc.c:1221:gst_app_src_create:<my_appsrc> have buffer 0xffffa40172f0 of size 2034
0:00:00.569109125 8744 0x3d233140 DEBUG basesrc gstbasesrc.c:2360:gst_base_src_do_sync:<my_appsrc> no sync needed
0:00:00.569103125 8744 0x3d233770 DEBUG v4l2 gstv4l2object.c:2792:gst_v4l2_object_probe_caps_for_format:<my_vdec:src> Failed to enumerate frame sizes for pixelformat NV12 (Inappropriate ioctl for device)
0:00:00.569136625 8744 0x3d233140 DEBUG basesrc gstbasesrc.c:2597:gst_base_src_get_range:<my_appsrc> buffer ok
0:00:00.569198250 8744 0x3d233770 LOG v4l2 gstv4l2object.c:2903:gst_v4l2_object_get_nearest_size:<my_vdec:src> getting nearest size to 1x1 with format NV12
0:00:00.569221250 8744 0x3d233140 DEBUG GST_SCHEDULING gstpad.c:4277:gst_pad_chain_data_unchecked:<my_h264parse:sink> calling chainfunction &gst_base_parse_chain with buffer buffer: 0xffffa40172f0, pts 0:00:01.500000000, dts 99:99:99.999999999, dur 0:00:00.500000000, size 2034, offset none, offset_end none, flags 0x0
0:00:00.569270250 8744 0x3d233770 LOG v4l2 gstv4l2object.c:2919:gst_v4l2_object_get_nearest_size:<my_vdec:src> got nearest size 1x1
0:00:00.569315500 8744 0x3d233140 DEBUG baseparse gstbaseparse.c:3030:gst_base_parse_chain:<my_h264parse> chain
0:00:00.569355500 8744 0x3d233770 WARN v4l2 gstv4l2object.c:1986:gst_v4l2_object_get_interlace_mode: Driver bug detected - check driver with v4l2-compliance from http://git.linuxtv.org/v4l-utils.git
0:00:00.569394000 8744 0x3d233140 LOG baseparse gstbaseparse.c:3150:gst_base_parse_chain:<my_h264parse> buffer size: 2034, offset = -1, dts 99:99:99.999999999, pts 0:00:01.500000000
0:00:00.569457125 8744 0x3d233140 LOG adapter gstadapter.c:389:gst_adapter_push:<GstAdapter at 0x3d20c000> pushing 0xffffa40172f0 first 2034 bytes
0:00:00.569478875 8744 0x3d233770 LOG v4l2 gstv4l2object.c:2903:gst_v4l2_object_get_nearest_size:<my_vdec:src> getting nearest size to 32768x32768 with format NV12
0:00:00.569489875 8744 0x3d233140 LOG adapter gstadapter.c:290:update_timestamps_and_offset:<GstAdapter at 0x3d20c000> new pts 0:00:01.500000000
0:00:00.569555875 8744 0x3d233770 LOG v4l2 gstv4l2object.c:2919:gst_v4l2_object_get_nearest_size:<my_vdec:src> got nearest size 32768x32768
0:00:00.569572375 8744 0x3d233140 LOG adapter gstadapter.c:974:gst_adapter_get_buffer:<GstAdapter at 0x3d20c000> getting buffer of 2034 bytes
0:00:00.569604250 8744 0x3d233770 WARN v4l2 gstv4l2object.c:1986:gst_v4l2_object_get_interlace_mode: Driver bug detected - check driver with v4l2-compliance from http://git.linuxtv.org/v4l-utils.git
0:00:00.569643625 8744 0x3d233140 LOG adapter gstadapter.c:989:gst_adapter_get_buffer:<GstAdapter at 0x3d20c000> providing buffer of 2034 bytes as head buffer
0:00:00.569718750 8744 0x3d233140 LOG baseparse gstbaseparse.c:2148:gst_base_parse_handle_buffer:<my_h264parse> handling buffer of size 2034 with dts 99:99:99.999999999, pts 0:00:01.500000000, duration 0:00:00.500000000
0:00:00.569770500 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:799:gst_buffer_new: new 0xffffa4017400
0:00:00.569732375 8744 0x3d233770 DEBUG v4l2 gstv4l2object.c:2085:gst_v4l2_object_get_colorspace: Unknown enum v4l2_colorspace 0
0:00:00.569800125 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:515:gst_buffer_copy_into: copy 0xffffa40172f0 to 0xffffa4017400, offset 0-2034/2034
0:00:00.569869000 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:414:_memory_add: buffer 0xffffa4017400, idx -1, mem 0xffffa40180d0
0:00:00.569898000 8744 0x3d233140 DEBUG GST_PERFORMANCE gstminiobject.c:317:gst_mini_object_make_writable: copy GstBuffer miniobject 0xffffa40172f0 -> 0xffffa4017400
0:00:00.569930375 8744 0x3d233140 LOG baseparse gstbaseparse.c:2110:gst_base_parse_prepare_frame:<my_h264parse> preparing frame at offset 18446744073709551615 (0xffffffffffffffff) of size 2034
0:00:00.569963375 8744 0x3d233140 LOG baseparse gstbaseparse.c:764:gst_base_parse_update_frame:<my_h264parse> marking as new frame
0:00:00.569984000 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1721:gst_buffer_map_range: buffer 0xffffa4017400, idx 0, length -1, flags 0001
0:00:00.570011875 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:213:_get_merged_memory: buffer 0xffffa4017400, idx 0, length 1
0:00:00.570009750 8744 0x3d233770 DEBUG v4l2 gstv4l2object.c:1589:gst_v4l2_object_v4l2fourcc_to_bare_struct: Unsupported fourcc 0x3231544e NT12
0:00:00.570067250 8744 0x3d233140 LOG h264parse gsth264parse.c:1097:gst_h264_parse_handle_frame:<my_h264parse> parsing new frame
0:00:00.570121875 8744 0x3d233770 DEBUG v4l2 gstv4l2object.c:4263:gst_v4l2_object_probe_caps:<my_vdec:src> unknown format NT12
0:00:00.570140000 8744 0x3d233140 DEBUG h264parse gsth264parse.c:186:gst_h264_parse_reset_frame:<my_h264parse> reset frame
0:00:00.570208000 8744 0x3d233140 DEBUG h264parse gsth264parse.c:1112:gst_h264_parse_handle_frame:<my_h264parse> last parse position 0
0:00:00.570235125 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:242:gst_h264_parse_nalu_header: Nal type 9, ref_idc 0
0:00:00.570188000 8744 0x3d233770 INFO v4l2 gstv4l2object.c:4298:gst_v4l2_object_probe_caps:<my_vdec:src> probed caps: video/x-raw, format=(string)NV12, framerate=(fraction)[ 0/1, 2147483647/1 ], width=(int)[ 1, 32768 ], height=(int)[ 1, 32768 ], interlace-mode=(string){ progressive, interleaved }, colorimetry=(string){ bt601, smpte240m, bt709, 2:4:5:2, 2:4:5:3, 1:4:7:1, 2:4:7:1, 2:4:12:8, bt2020, 2:0:0:0 }
0:00:00.570260375 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:242:gst_h264_parse_nalu_header: Nal type 9, ref_idc 0
0:00:00.570325875 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:1366:gst_h264_parser_identify_nalu: Complete nal found. Off: 4, Size: 2
0:00:00.570356375 8744 0x3d233140 DEBUG h264parse gsth264parse.c:1162:gst_h264_parse_handle_frame:<my_h264parse> complete nal (offset, size): (4, 2)
0:00:00.570308000 8744 0x3d233770 DEBUG v4l2videodec gstv4l2videodec.c:553:gst_v4l2_video_dec_loop:<my_vdec> Available caps: video/x-raw, format=(string)NV12, framerate=(fraction)[ 0/1, 2147483647/1 ], width=(int)[ 1, 32768 ], height=(int)[ 1, 32768 ], interlace-mode=(string){ progressive, interleaved }, colorimetry=(string){ bt601, smpte240m, bt709, 2:4:5:2, 2:4:5:3, 1:4:7:1, 2:4:7:1, 2:4:12:8, bt2020, 2:0:0:0 }
0:00:00.570386000 8744 0x3d233140 DEBUG h264parse gsth264parse.c:1219:gst_h264_parse_handle_frame:<my_h264parse> 0xffffa402b000 complete nal found. Off: 4, Size: 2
0:00:00.570447625 8744 0x3d233140 DEBUG h264parse gsth264parse.c:721:gst_h264_parse_process_nal:<my_h264parse> processing nal of type 9 AU delimiter, size 2
0:00:00.570478250 8744 0x3d233140 LOG h264parse gsth264parse.c:895:gst_h264_parse_process_nal:<my_h264parse> collecting NAL in AVC frame
0:00:00.570502125 8744 0x3d233140 DEBUG h264parse gsth264parse.c:428:gst_h264_parse_wrap_nal:<my_h264parse> nal length 2
0:00:00.570470125 8744 0x3d233770 DEBUG v4l2videodec gstv4l2videodec.c:561:gst_v4l2_video_dec_loop:<my_vdec> Filtered caps: video/x-raw, format=(string)NV12, framerate=(fraction)0/1, width=(int)176, height=(int)144, interlace-mode=(string)progressive, colorimetry=(string)bt709, pixel-aspect-ratio=(fraction)1/1, chroma-site=(string)jpeg
0:00:00.570524875 8744 0x3d233140 DEBUG GST_MEMORY gstmemory.c:139:gst_memory_init: new memory 0xffffa400aab0, maxsize:13 offset:0 size:6
0:00:00.570589375 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:799:gst_buffer_new: new 0xffffa4017a60
0:00:00.570612125 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:414:_memory_add: buffer 0xffffa4017a60, idx -1, mem 0xffffa400aab0
0:00:00.570587875 8744 0x3d233770 DEBUG GST_CAPS gstutils.c:3086:gst_pad_peer_query_caps:<my_vdec:src> get pad peer caps with filter video/x-raw, format=(string)NV12, framerate=(fraction)0/1, width=(int)176, height=(int)144, interlace-mode=(string)progressive, colorimetry=(string)bt709, pixel-aspect-ratio=(fraction)1/1, chroma-site=(string)jpeg
0:00:00.570639500 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:855:gst_buffer_new_allocate: new buffer 0xffffa4017a60 of size 6 from allocator (nil)
0:00:00.570733250 8744 0x3d233770 DEBUG query gstquery.c:675:gst_query_new_custom: creating new query 0xffffa4006680 caps
0:00:00.570750750 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1826:gst_buffer_fill: buffer 0xffffa4017a60, offset 0, size 4
0:00:00.570822500 8744 0x3d233770 DEBUG GST_PADS gstpad.c:4133:gst_pad_peer_query:<my_vdec:src> peer query 0xffffa4006680 (caps)
0:00:00.570836375 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1826:gst_buffer_fill: buffer 0xffffa4017a60, offset 4, size 2
0:00:00.570892500 8744 0x3d233770 DEBUG GST_PADS gstpad.c:4006:gst_pad_query:<my_sink:sink> doing query 0xffffa4006680 (caps)
0:00:00.570904250 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1582:gst_buffer_resize_range: trim 0xffffa4017a60 0-6 size:6 offs:0 max:13
0:00:00.570976500 8744 0x3d233140 LOG adapter gstadapter.c:389:gst_adapter_push:<GstAdapter at 0x3d20c120> pushing 0xffffa4017a60 first 6 bytes
0:00:00.571006625 8744 0x3d233140 DEBUG h264parse gsth264parse.c:914:gst_h264_parse_collect_nal:<my_h264parse> parsing collected nal
0:00:00.571027500 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:242:gst_h264_parse_nalu_header: Nal type 6, ref_idc 0
0:00:00.571058500 8744 0x3d233140 LOG h264parse gsth264parse.c:922:gst_h264_parse_collect_nal:<my_h264parse> nal type: 9 AU delimiter
0:00:00.571112125 8744 0x3d233770 DEBUG GST_PERFORMANCE gstcaps.c:179:_gst_caps_copy:video/x-raw, format=(string){ BGRx, BGRA, RGBx, xBGR, xRGB, RGBA, ABGR, ARGB, RGB, BGR, RGB16, BGR16, YUY2, YVYU, UYVY, AYUV, NV12, NV21, NV16, YUV9, YVU9, Y41B, I420, YV12, Y42B, v308 }, width=(int)[ 1, 2147483647 ], height=(int)[ 1, 2147483647 ], framerate=(fraction)[ 0/1, 2147483647/1 ]; video/x-raw(memory:DMABuf), format=(string){ BGRx, BGRA, RGBx, xBGR, xRGB, RGBA, ABGR, ARGB, RGB, BGR, RGB16, BGR16, YUY2, YVYU, UYVY, AYUV, NV12, NV21, NV16, YUV9, YVU9, Y41B, I420, YV12, Y42B, v308 }, width=(int)[ 1, 2147483647 ], height=(int)[ 1, 2147483647 ], framerate=(fraction)[ 0/1, 2147483647/1 ] doing copy 0x3d21fe30 -> 0xffffa40066d0
0:00:00.571120125 8744 0x3d233140 LOG h264parse gsth264parse.c:941:gst_h264_parse_collect_nal:<my_h264parse> next nal type: 6 SEI
0:00:00.571195000 8744 0x3d233140 LOG h264parse gsth264parse.c:948:gst_h264_parse_collect_nal:<my_h264parse> au complete: 0
0:00:00.571221250 8744 0x3d233140 DEBUG h264parse gsth264parse.c:1264:gst_h264_parse_handle_frame:<my_h264parse> Looking for more
0:00:00.571240375 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:242:gst_h264_parse_nalu_header: Nal type 6, ref_idc 0
0:00:00.571274250 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:1366:gst_h264_parser_identify_nalu: Complete nal found. Off: 10, Size: 21
0:00:00.571231375 8744 0x3d233770 DEBUG GST_PERFORMANCE gstminiobject.c:317:gst_mini_object_make_writable: copy GstCaps miniobject 0x3d21fe30 -> 0xffffa40066d0
0:00:00.571309375 8744 0x3d233140 DEBUG h264parse gsth264parse.c:1162:gst_h264_parse_handle_frame:<my_h264parse> complete nal (offset, size): (10, 21)
0:00:00.571382250 8744 0x3d233140 DEBUG h264parse gsth264parse.c:1219:gst_h264_parse_handle_frame:<my_h264parse> 0xffffa402b000 complete nal found. Off: 10, Size: 21
0:00:00.571414750 8744 0x3d233140 DEBUG h264parse gsth264parse.c:721:gst_h264_parse_process_nal:<my_h264parse> processing nal of type 6 SEI, size 21
0:00:00.571441000 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:2292:gst_h264_parser_parse_sei: parsing SEI nal
0:00:00.571461500 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:1127:gst_h264_parser_parse_sei_message: parsing "Sei message"
0:00:00.571501500 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:1147:gst_h264_parser_parse_sei_message: SEI message received: payloadType 5, payloadSize = 136 bits
0:00:00.571422250 8744 0x3d233770 DEBUG waylandsink gstwaylandsink.c:569:gst_wayland_sink_get_caps:<my_sink> display caps: video/x-raw, format=(string){ BGRA, BGRx, RGB16, I420, NV12, YUY2 }, width=(int)[ 1, 2147483647 ], height=(int)[ 1, 2147483647 ], framerate=(fraction)[ 0/1, 2147483647/1 ]; video/x-raw(memory:DMABuf), format=(string){ RGB16, BGRx, RGBx, xBGR, ARGB, BGRA, RGBA, ABGR, YUY2, NV12, I420 }, width=(int)[ 1, 2147483647 ], height=(int)[ 1, 2147483647 ], framerate=(fraction)[ 0/1, 2147483647/1 ]
0:00:00.571541375 8744 0x3d233140 DEBUG h264parse gsth264parse.c:807:gst_h264_parse_process_nal:<my_h264parse> marking SEI in frame at offset 6
0:00:00.571599000 8744 0x3d233140 LOG h264parse gsth264parse.c:895:gst_h264_parse_process_nal:<my_h264parse> collecting NAL in AVC frame
0:00:00.571623250 8744 0x3d233140 DEBUG h264parse gsth264parse.c:428:gst_h264_parse_wrap_nal:<my_h264parse> nal length 21
0:00:00.571623500 8744 0x3d233770 DEBUG GST_PADS gstpad.c:4029:gst_pad_query:<my_sink:sink> sent query 0xffffa4006680 (caps), result 1
0:00:00.571645750 8744 0x3d233140 DEBUG GST_MEMORY gstmemory.c:139:gst_memory_init: new memory 0xffffa401b2d0, maxsize:32 offset:0 size:25
0:00:00.571705500 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:799:gst_buffer_new: new 0xffffa4017950
0:00:00.571727875 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:414:_memory_add: buffer 0xffffa4017950, idx -1, mem 0xffffa401b2d0
0:00:00.571694500 8744 0x3d233770 DEBUG GST_CAPS gstutils.c:3093:gst_pad_peer_query_caps:<my_vdec:src> peer query returned video/x-raw, format=(string)NV12, framerate=(fraction)0/1, width=(int)176, height=(int)144, interlace-mode=(string)progressive, colorimetry=(string)bt709, pixel-aspect-ratio=(fraction)1/1, chroma-site=(string)jpeg
0:00:00.571754625 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:855:gst_buffer_new_allocate: new buffer 0xffffa4017950 of size 25 from allocator (nil)
0:00:00.571812000 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1826:gst_buffer_fill: buffer 0xffffa4017950, offset 0, size 4
0:00:00.571838625 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1826:gst_buffer_fill: buffer 0xffffa4017950, offset 4, size 21
0:00:00.571802625 8744 0x3d233770 DEBUG v4l2videodec gstv4l2videodec.c:567:gst_v4l2_video_dec_loop:<my_vdec> Possible decoded caps: video/x-raw, format=(string)NV12, framerate=(fraction)0/1, width=(int)176, height=(int)144, interlace-mode=(string)progressive, colorimetry=(string)bt709, pixel-aspect-ratio=(fraction)1/1, chroma-site=(string)jpeg
0:00:00.571876875 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1582:gst_buffer_resize_range: trim 0xffffa4017950 0-25 size:25 offs:0 max:32
0:00:00.571958500 8744 0x3d233140 LOG adapter gstadapter.c:395:gst_adapter_push:<GstAdapter at 0x3d20c120> pushing 0xffffa4017950 25 bytes at end, size now 31
0:00:00.571942250 8744 0x3d233770 DEBUG v4l2videodec gstv4l2videodec.c:576:gst_v4l2_video_dec_loop:<my_vdec> Chosen decoded caps: video/x-raw, format=(string)NV12, framerate=(fraction)0/1, width=(int)176, height=(int)144, interlace-mode=(string)progressive, colorimetry=(string)bt709, pixel-aspect-ratio=(fraction)1/1, chroma-site=(string)jpeg
0:00:00.571990625 8744 0x3d233140 DEBUG h264parse gsth264parse.c:914:gst_h264_parse_collect_nal:<my_h264parse> parsing collected nal
0:00:00.572057250 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:242:gst_h264_parse_nalu_header: Nal type 1, ref_idc 1
0:00:00.572041500 8744 0x3d233770 DEBUG v4l2 gstv4l2object.c:3882:gst_v4l2_object_set_format:<my_vdec:src> Setting format to video/x-raw, format=(string)NV12, framerate=(fraction)0/1, width=(int)176, height=(int)144, interlace-mode=(string)progressive, colorimetry=(string)bt709, pixel-aspect-ratio=(fraction)1/1, chroma-site=(string)jpeg
0:00:00.572086375 8744 0x3d233140 LOG h264parse gsth264parse.c:922:gst_h264_parse_collect_nal:<my_h264parse> nal type: 6 SEI
0:00:00.572184750 8744 0x3d233140 LOG h264parse gsth264parse.c:941:gst_h264_parse_collect_nal:<my_h264parse> next nal type: 1 Slice
0:00:00.572160125 8744 0x3d233770 DEBUG video-info video-info.c:357:gst_video_info_from_caps: parsing caps video/x-raw, format=(string)NV12, framerate=(fraction)0/1, width=(int)176, height=(int)144, interlace-mode=(string)progressive, colorimetry=(string)bt709, pixel-aspect-ratio=(fraction)1/1, chroma-site=(string)jpeg
0:00:00.572213625 8744 0x3d233140 LOG h264parse gsth264parse.c:948:gst_h264_parse_collect_nal:<my_h264parse> au complete: 0
0:00:00.572279750 8744 0x3d233140 DEBUG h264parse gsth264parse.c:1264:gst_h264_parse_handle_frame:<my_h264parse> Looking for more
0:00:00.572292125 8744 0x3d233770 DEBUG v4l2 gstv4l2object.c:3320:gst_v4l2_object_set_format_full:<my_vdec:src> progressive video
0:00:00.572299875 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:242:gst_h264_parse_nalu_header: Nal type 1, ref_idc 1
0:00:00.572362250 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:1366:gst_h264_parser_identify_nalu: Complete nal found. Off: 34, Size: 571
0:00:00.572345750 8744 0x3d233770 DEBUG v4l2 gstv4l2object.c:3458:gst_v4l2_object_set_format_full:<my_vdec:src> Desired format 176x144, format NV12 stride: 176
0:00:00.572393000 8744 0x3d233140 DEBUG h264parse gsth264parse.c:1162:gst_h264_parse_handle_frame:<my_h264parse> complete nal (offset, size): (34, 571)
0:00:00.572431000 8744 0x3d233770 DEBUG v4l2 gstv4l2object.c:3510:gst_v4l2_object_set_format_full:<my_vdec:src> Desired format is 176x144, format NV12, nb planes 2
0:00:00.572449750 8744 0x3d233140 DEBUG h264parse gsth264parse.c:1219:gst_h264_parse_handle_frame:<my_h264parse> 0xffffa402b000 complete nal found. Off: 34, Size: 571
0:00:00.572497375 8744 0x3d233770 DEBUG v4l2 gstv4l2object.c:3516:gst_v4l2_object_set_format_full:<my_vdec:src> stride 176
0:00:00.572550000 8744 0x3d233770 DEBUG v4l2 gstv4l2object.c:3516:gst_v4l2_object_set_format_full:<my_vdec:src> stride 176
0:00:00.572555500 8744 0x3d233140 DEBUG h264parse gsth264parse.c:721:gst_h264_parse_process_nal:<my_h264parse> processing nal of type 1 Slice, size 571
0:00:00.572622375 8744 0x3d233140 DEBUG h264parse gsth264parse.c:827:gst_h264_parse_process_nal:<my_h264parse> first_mb_in_slice = 0
0:00:00.572612875 8744 0x3d233770 DEBUG v4l2 gstv4l2object.c:3553:gst_v4l2_object_set_format_full:<my_vdec:src> Got format of 176x144, format NV12, nb planes 2, colorspace 3
0:00:00.572647375 8744 0x3d233140 DEBUG h264parse gsth264parse.c:830:gst_h264_parse_process_nal:<my_h264parse> frame start: 1
0:00:00.572682875 8744 0x3d233770 DEBUG v4l2 gstv4l2object.c:3560:gst_v4l2_object_set_format_full:<my_vdec:src> stride 256, sizeimage 65536
0:00:00.572699875 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:2079:gst_h264_parser_parse_slice_hdr: parsing "Slice header", slice type 0
0:00:00.572737750 8744 0x3d233770 DEBUG v4l2 gstv4l2object.c:3560:gst_v4l2_object_set_format_full:<my_vdec:src> stride 256, sizeimage 32768
0:00:00.572758750 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:700:gst_h264_slice_parse_dec_ref_pic_marking: parsing "Decoded reference picture marking"
0:00:00.572800500 8744 0x3d233770 DEBUG v4l2 gstv4l2object.c:3633:gst_v4l2_object_set_format_full:<my_vdec:src> Desired framerate: 0/1
0:00:00.572815500 8744 0x3d233140 DEBUG h264parse gsth264parse.c:840:gst_h264_parse_process_nal:<my_h264parse> parse result 0, first MB: 0, slice type: 0
0:00:00.572904375 8744 0x3d233140 LOG h264parse gsth264parse.c:895:gst_h264_parse_process_nal:<my_h264parse> collecting NAL in AVC frame
0:00:00.572935750 8744 0x3d233140 DEBUG h264parse gsth264parse.c:428:gst_h264_parse_wrap_nal:<my_h264parse> nal length 571
0:00:00.572864750 8744 0x3d233770 DEBUG v4l2 gstv4l2object.c:3211:gst_v4l2_object_save_format:<my_vdec:src> Got sizeimage 98304
0:00:00.572986750 8744 0x3d233140 DEBUG GST_MEMORY gstmemory.c:139:gst_memory_init: new memory 0xffffa402e000, maxsize:582 offset:0 size:575
0:00:00.573017125 8744 0x3d233770 DEBUG v4l2 gstv4l2object.c:2967:gst_v4l2_object_setup_pool:<my_vdec:src> initializing the capture system
0:00:00.573029375 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:799:gst_buffer_new: new 0xffffa4017b70
0:00:00.573127500 8744 0x3d233770 INFO v4l2 gstv4l2object.c:2997:gst_v4l2_object_setup_pool:<my_vdec:src> accessing buffers via mode 4
0:00:00.573137375 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:414:_memory_add: buffer 0xffffa4017b70, idx -1, mem 0xffffa402e000
0:00:00.573194375 8744 0x3d233770 DEBUG v4l2 gstv4l2object.c:840:gst_v4l2_get_driver_min_buffers:<my_vdec:src> driver requires a minimum of 18 buffers
0:00:00.573200250 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:855:gst_buffer_new_allocate: new buffer 0xffffa4017b70 of size 575 from allocator (nil)
0:00:00.573250125 8744 0x3d233770 LOG v4l2 gstv4l2object.c:3006:gst_v4l2_object_setup_pool:<my_vdec:src> initiating buffer pool
0:00:00.573302375 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1826:gst_buffer_fill: buffer 0xffffa4017b70, offset 0, size 4
0:00:00.573336000 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1826:gst_buffer_fill: buffer 0xffffa4017b70, offset 4, size 571
0:00:00.573331125 8744 0x3d233770 DEBUG GST_POLL gstpoll.c:681:gst_poll_new: 0xffffa4006770: new controllable : 1
0:00:00.573362125 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1582:gst_buffer_resize_range: trim 0xffffa4017b70 0-575 size:575 offs:0 max:582
0:00:00.573432875 8744 0x3d233140 LOG adapter gstadapter.c:395:gst_adapter_push:<GstAdapter at 0x3d20c120> pushing 0xffffa4017b70 575 bytes at end, size now 606
0:00:00.573434375 8744 0x3d233770 DEBUG GST_POLL gstpoll.c:848:gst_poll_add_fd_unlocked: 0xffffa4006770: fd (fd:24, idx:0)
0:00:00.573465875 8744 0x3d233140 DEBUG h264parse gsth264parse.c:914:gst_h264_parse_collect_nal:<my_h264parse> parsing collected nal
0:00:00.573493000 8744 0x3d233770 DEBUG GST_POLL gstpoll.c:1015:gst_poll_fd_ctl_read_unlocked: 0xffffa4006770: fd (fd:24, idx:0), active : 1
0:00:00.573518250 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:242:gst_h264_parse_nalu_header: Nal type 1, ref_idc 1
0:00:00.573579875 8744 0x3d233140 LOG h264parse gsth264parse.c:922:gst_h264_parse_collect_nal:<my_h264parse> nal type: 1 Slice
0:00:00.573576625 8744 0x3d233770 LOG GST_POLL gstpoll.c:290:raise_wakeup: 0xffffa4006770: raise
0:00:00.573618250 8744 0x3d233140 LOG h264parse gsth264parse.c:941:gst_h264_parse_collect_nal:<my_h264parse> next nal type: 1 Slice
0:00:00.573690875 8744 0x3d233770 DEBUG bufferpool gstbufferpool.c:185:gst_buffer_pool_init:<GstBufferPool at 0xffffa4012e90> created
0:00:00.573691625 8744 0x3d233140 LOG h264parse gsth264parse.c:948:gst_h264_parse_collect_nal:<my_h264parse> au complete: 0
0:00:00.573734875 8744 0x3d233770 DEBUG GST_POLL gstpoll.c:681:gst_poll_new: 0xffff9c007400: new controllable : 1
0:00:00.573763750 8744 0x3d233140 DEBUG h264parse gsth264parse.c:1264:gst_h264_parse_handle_frame:<my_h264parse> Looking for more
0:00:00.573813125 8744 0x3d233770 DEBUG GST_POLL gstpoll.c:848:gst_poll_add_fd_unlocked: 0xffff9c007400: fd (fd:26, idx:0)
0:00:00.573831000 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:242:gst_h264_parse_nalu_header: Nal type 1, ref_idc 1
0:00:00.573871000 8744 0x3d233770 DEBUG GST_POLL gstpoll.c:1015:gst_poll_fd_ctl_read_unlocked: 0xffff9c007400: fd (fd:26, idx:0), active : 1
0:00:00.573898500 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:1351:gst_h264_parser_identify_nalu: Nal start 608, No end found
0:00:00.573967125 8744 0x3d233140 DEBUG h264parse gsth264parse.c:1166:gst_h264_parse_handle_frame:<my_h264parse> not a complete nal found at offset 608
0:00:00.573994750 8744 0x3d233140 DEBUG h264parse gsth264parse.c:1172:gst_h264_parse_handle_frame:<my_h264parse> draining, accepting with size 1426
0:00:00.573982375 8744 0x3d233770 DEBUG GST_POLL gstpoll.c:848:gst_poll_add_fd_unlocked: 0xffff9c007400: fd (fd:23, idx:-1)
0:00:00.574030750 8744 0x3d233140 DEBUG h264parse gsth264parse.c:1219:gst_h264_parse_handle_frame:<my_h264parse> 0xffffa402b000 complete nal found. Off: 608, Size: 1426
0:00:00.574076750 8744 0x3d233770 DEBUG GST_POLL gstpoll.c:1015:gst_poll_fd_ctl_read_unlocked: 0xffff9c007400: fd (fd:23, idx:1), active : 1
0:00:00.574106250 8744 0x3d233140 DEBUG h264parse gsth264parse.c:721:gst_h264_parse_process_nal:<my_h264parse> processing nal of type 1 Slice, size 1426
0:00:00.574152500 8744 0x3d233140 DEBUG h264parse gsth264parse.c:830:gst_h264_parse_process_nal:<my_h264parse> frame start: 1
0:00:00.574175250 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:2079:gst_h264_parser_parse_slice_hdr: parsing "Slice header", slice type 0
0:00:00.574198875 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:700:gst_h264_slice_parse_dec_ref_pic_marking: parsing "Decoded reference picture marking"
0:00:00.574224125 8744 0x3d233140 DEBUG h264parse gsth264parse.c:840:gst_h264_parse_process_nal:<my_h264parse> parse result 0, first MB: 49, slice type: 0
0:00:00.574253250 8744 0x3d233140 LOG h264parse gsth264parse.c:895:gst_h264_parse_process_nal:<my_h264parse> collecting NAL in AVC frame
0:00:00.574276000 8744 0x3d233140 DEBUG h264parse gsth264parse.c:428:gst_h264_parse_wrap_nal:<my_h264parse> nal length 1426
0:00:00.574300625 8744 0x3d233140 DEBUG GST_MEMORY gstmemory.c:139:gst_memory_init: new memory 0xffffa4030000, maxsize:1437 offset:0 size:1430
0:00:00.574328625 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:799:gst_buffer_new: new 0xffffa4017c80
0:00:00.574349500 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:414:_memory_add: buffer 0xffffa4017c80, idx -1, mem 0xffffa4030000
0:00:00.574374500 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:855:gst_buffer_new_allocate: new buffer 0xffffa4017c80 of size 1430 from allocator (nil)
0:00:00.574403875 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1826:gst_buffer_fill: buffer 0xffffa4017c80, offset 0, size 4
0:00:00.574420875 8744 0x3d233770 WARN structure gststructure.c:1832:priv_gst_structure_append_to_gstring: No value transform to serialize field 'params' of type 'GstAllocationParams'
0:00:00.574429125 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1826:gst_buffer_fill: buffer 0xffffa4017c80, offset 4, size 1426
0:00:00.574310000 8744 0x3d233770 DEBUG v4l2bufferpool gstv4l2bufferpool.c:509:gst_v4l2_buffer_pool_set_config:<my_vdec:pool:src> config GstBufferPoolConfig, caps=(GstCaps)"video/x-raw\,\ format\=\(string\)NV12\,\ framerate\=\(fraction\)0/1\,\ width\=\(int\)176\,\ height\=\(int\)144\,\ interlace-mode\=\(string\)progressive\,\ colorimetry\=\(string\)bt709\,\ pixel-aspect-ratio\=\(fraction\)1/1\,\ chroma-site\=\(string\)jpeg", size=(uint)98304, min-buffers=(uint)0, max-buffers=(uint)0, allocator=(GstAllocator)"NULL", params=(GstAllocationParams)NULL;
0:00:00.574520750 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1582:gst_buffer_resize_range: trim 0xffffa4017c80 0-1430 size:1430 offs:0 max:1437
0:00:00.574610500 8744 0x3d233770 LOG GST_DEBUG gstinfo.c:1595:gst_debug_reset_threshold: category dmabuf matches pattern 0x3d0a0430 - gets set to level 6
0:00:00.574637875 8744 0x3d233140 LOG adapter gstadapter.c:395:gst_adapter_push:<GstAdapter at 0x3d20c120> pushing 0xffffa4017c80 1430 bytes at end, size now 2036
0:00:00.574706125 8744 0x3d233140 DEBUG GST_CAPS gstpad.c:2705:gst_pad_has_current_caps:<my_h264parse:src> check current pad caps video/x-h264, stream-format=(string)byte-stream, alignment=(string)au, framerate=(fraction)0/1, width=(int)176, height=(int)144, interlace-mode=(string)progressive, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8, parsed=(boolean)true, profile=(string)constrained-baseline, level=(string)1.2
0:00:00.574772750 8744 0x3d233770 INFO v4l2bufferpool gstv4l2bufferpool.c:557:gst_v4l2_buffer_pool_set_config:<my_vdec:pool:src> increasing minimum buffers to 2
0:00:00.574780625 8744 0x3d233140 LOG h264parse gsth264parse.c:2016:gst_h264_parse_get_timestamp:<my_h264parse> Upstream ts 0:00:01.500000000
0:00:00.574832000 8744 0x3d233770 INFO v4l2bufferpool gstv4l2bufferpool.c:564:gst_v4l2_buffer_pool_set_config:<my_vdec:pool:src> increasing minimum buffers to 18
0:00:00.574886250 8744 0x3d233770 INFO v4l2bufferpool gstv4l2bufferpool.c:570:gst_v4l2_buffer_pool_set_config:<my_vdec:pool:src> reducing maximum buffers to 32
0:00:00.574893375 8744 0x3d233140 DEBUG h264parse gsth264parse.c:2035:gst_h264_parse_get_timestamp:<my_h264parse> unable to compute timestamp: timing info not present
0:00:00.574935500 8744 0x3d233770 INFO v4l2bufferpool gstv4l2bufferpool.c:581:gst_v4l2_buffer_pool_set_config:<my_vdec:pool:src> can't allocate, setting maximum to minimum
0:00:00.574973750 8744 0x3d233140 LOG adapter gstadapter.c:974:gst_adapter_get_buffer:<GstAdapter at 0x3d20c120> getting buffer of 2036 bytes
0:00:00.575022000 8744 0x3d233770 INFO v4l2bufferpool gstv4l2bufferpool.c:586:gst_v4l2_buffer_pool_set_config:<my_vdec:pool:src> adding needed video meta
0:00:00.575046750 8744 0x3d233140 LOG adapter gstadapter.c:736:gst_adapter_get_internal:<GstAdapter at 0x3d20c120> allocating 2036 bytes
0:00:00.575086875 8744 0x3d233140 DEBUG adapter gstadapter.c:344:copy_into_unchecked: bsize 6, skip 0, csize 6
0:00:00.575120500 8744 0x3d233140 LOG GST_PERFORMANCE gstadapter.c:346:copy_into_unchecked:<GstAdapter at 0x3d20c120> extract 6 bytes
0:00:00.575141750 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1876:gst_buffer_extract: buffer 0xffffa4017a60, offset 0, size 6
0:00:00.575174500 8744 0x3d233140 LOG GST_PERFORMANCE gstadapter.c:359:copy_into_unchecked:<GstAdapter at 0x3d20c120> extract 25 bytes
0:00:00.575203000 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1876:gst_buffer_extract: buffer 0xffffa4017950, offset 0, size 25
0:00:00.575119375 8744 0x3d233770 DEBUG video-info video-info.c:357:gst_video_info_from_caps: parsing caps video/x-raw, format=(string)NV12, framerate=(fraction)0/1, width=(int)176, height=(int)144, interlace-mode=(string)progressive, colorimetry=(string)bt709, pixel-aspect-ratio=(fraction)1/1, chroma-site=(string)jpeg
0:00:00.575242625 8744 0x3d233140 LOG GST_PERFORMANCE gstadapter.c:359:copy_into_unchecked:<GstAdapter at 0x3d20c120> extract 575 bytes
0:00:00.575305625 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1876:gst_buffer_extract: buffer 0xffffa4017b70, offset 0, size 575
0:00:00.575340125 8744 0x3d233140 LOG GST_PERFORMANCE gstadapter.c:359:copy_into_unchecked:<GstAdapter at 0x3d20c120> extract 1430 bytes
0:00:00.575391000 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1876:gst_buffer_extract: buffer 0xffffa4017c80, offset 0, size 1430
0:00:00.575419125 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:799:gst_buffer_new: new 0xffffa4017d90
0:00:00.575414000 8744 0x3d233770 WARN structure gststructure.c:1832:priv_gst_structure_append_to_gstring: No value transform to serialize field 'params' of type 'GstAllocationParams'
0:00:00.575450000 8744 0x3d233140 DEBUG GST_MEMORY gstmemory.c:139:gst_memory_init: new memory 0xffffa4018160, maxsize:2036 offset:0 size:2036
0:00:00.575322000 8744 0x3d233770 DEBUG bufferpool gstbufferpool.c:614:default_set_config:<my_vdec:pool:src> config GstBufferPoolConfig, caps=(GstCaps)"video/x-raw\,\ format\=\(string\)NV12\,\ framerate\=\(fraction\)0/1\,\ width\=\(int\)176\,\ height\=\(int\)144\,\ interlace-mode\=\(string\)progressive\,\ colorimetry\=\(string\)bt709\,\ pixel-aspect-ratio\=\(fraction\)1/1\,\ chroma-site\=\(string\)jpeg", size=(uint)98304, min-buffers=(uint)18, max-buffers=(uint)18, allocator=(GstAllocator)"NULL", params=(GstAllocationParams)NULL, options=(string)< GstBufferPoolOptionVideoMeta >;
0:00:00.575530250 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:414:_memory_add: buffer 0xffffa4017d90, idx -1, mem 0xffffa4018160
0:00:00.575606500 8744 0x3d233140 LOG adapter gstadapter.c:634:gst_adapter_flush_unchecked:<GstAdapter at 0x3d20c120> flushing 2036 bytes
0:00:00.575582625 8744 0x3d233770 DEBUG video-info video-info.c:357:gst_video_info_from_caps: parsing caps video/x-raw, format=(string)NV12, framerate=(fraction)0/1, width=(int)176, height=(int)144, interlace-mode=(string)progressive, colorimetry=(string)bt709, pixel-aspect-ratio=(fraction)1/1, chroma-site=(string)jpeg
0:00:00.575635875 8744 0x3d233140 LOG adapter gstadapter.c:656:gst_adapter_flush_unchecked:<GstAdapter at 0x3d20c120> flushing out head buffer
0:00:00.575701000 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:725:_gst_buffer_free: finalize 0xffffa4017a60
0:00:00.575702500 8744 0x3d233770 DEBUG videodecoder gstvideodecoder.c:3490:gst_video_decoder_set_output_state:<my_vdec> fmt:23, width:176, height:144, reference:0xffffa4010150
0:00:00.575723125 8744 0x3d233140 DEBUG GST_MEMORY gstmemory.c:88:_gst_memory_free: free memory 0xffffa400aab0
0:00:00.575767250 8744 0x3d233770 DEBUG videodecoder gstvideodecoder.c:647:_new_output_state: reference par 1/1 fps 0/1
0:00:00.575796500 8744 0x3d233140 LOG adapter gstadapter.c:656:gst_adapter_flush_unchecked:<GstAdapter at 0x3d20c120> flushing out head buffer
0:00:00.575821125 8744 0x3d233770 DEBUG videodecoder gstvideodecoder.c:669:_new_output_state: reference par 1/1 fps 0/1
0:00:00.575883750 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:725:_gst_buffer_free: finalize 0xffffa4017950
0:00:00.575922750 8744 0x3d233140 DEBUG GST_MEMORY gstmemory.c:88:_gst_memory_free: free memory 0xffffa401b2d0
0:00:00.575892125 8744 0x3d233770 DEBUG GST_PADS gstpad.c:1677:gst_pad_check_reconfigure:<my_vdec:src> remove RECONFIGURE flag
0:00:00.575960750 8744 0x3d233140 LOG adapter gstadapter.c:656:gst_adapter_flush_unchecked:<GstAdapter at 0x3d20c120> flushing out head buffer
0:00:00.576021125 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:725:_gst_buffer_free: finalize 0xffffa4017b70
0:00:00.576050250 8744 0x3d233140 DEBUG GST_MEMORY gstmemory.c:88:_gst_memory_free: free memory 0xffffa402e000
0:00:00.576009500 8744 0x3d233770 DEBUG videodecoder gstvideodecoder.c:3816:gst_video_decoder_negotiate_default:<my_vdec> output_state par 1/1 fps 0/1
0:00:00.576087625 8744 0x3d233140 LOG adapter gstadapter.c:656:gst_adapter_flush_unchecked:<GstAdapter at 0x3d20c120> flushing out head buffer
0:00:00.576166750 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:725:_gst_buffer_free: finalize 0xffffa4017c80
0:00:00.576188750 8744 0x3d233140 DEBUG GST_MEMORY gstmemory.c:88:_gst_memory_free: free memory 0xffffa4030000
0:00:00.576224500 8744 0x3d233140 LOG adapter gstadapter.c:668:gst_adapter_flush_unchecked:<GstAdapter at 0x3d20c120> adapter empty now
0:00:00.576245625 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:515:gst_buffer_copy_into: copy 0xffffa4017400 to 0xffffa4017d90, offset 0-2034/2034
0:00:00.576281875 8744 0x3d233140 LOG baseparse gstbaseparse.c:2637:gst_base_parse_finish_frame:<my_h264parse> finished frame at offset 3514, flushing size 2034
0:00:00.576314000 8744 0x3d233140 LOG adapter gstadapter.c:634:gst_adapter_flush_unchecked:<GstAdapter at 0x3d20c000> flushing 2034 bytes
0:00:00.576369875 8744 0x3d233140 LOG adapter gstadapter.c:656:gst_adapter_flush_unchecked:<GstAdapter at 0x3d20c000> flushing out head buffer
0:00:00.576279250 8744 0x3d233770 DEBUG videodecoder gstvideodecoder.c:3823:gst_video_decoder_negotiate_default:<my_vdec> setting caps video/x-raw, format=(string)NV12, width=(int)176, height=(int)144, 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, chroma-site=(string)jpeg, colorimetry=(string)bt601, framerate=(fraction)0/1
0:00:00.576391000 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:725:_gst_buffer_free: finalize 0xffffa40172f0
0:00:00.576445375 8744 0x3d233770 DEBUG GST_CAPS gstpad.c:2733:gst_pad_get_current_caps:<my_vdec:src> get current pad caps (NULL)
0:00:00.576464500 8744 0x3d233140 LOG adapter gstadapter.c:668:gst_adapter_flush_unchecked:<GstAdapter at 0x3d20c000> adapter empty now
0:00:00.576531375 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:725:_gst_buffer_free: finalize 0xffffa4017400
0:00:00.576560250 8744 0x3d233140 DEBUG GST_MEMORY gstmemory.c:88:_gst_memory_free: free memory 0xffffa40180d0
(free_data, 133)
0:00:00.576502250 8744 0x3d233770 DEBUG videodecoder gstvideodecoder.c:3855:gst_video_decoder_negotiate_default:<my_vdec> decoder src pad has currently NULL caps
0:00:00.576607375 8744 0x3d233140 DEBUG baseparse gstbaseparse.c:2333:gst_base_parse_handle_and_push_frame:<my_h264parse> no next fallback timestamp
0:00:00.576665750 8744 0x3d233140 LOG baseparse gstbaseparse.c:2392:gst_base_parse_push_frame:<my_h264parse> processing buffer of size 2036 with dts 99:99:99.999999999, pts 0:00:01.500000000, duration 0:00:00.500000000
0:00:00.576640125 8744 0x3d233770 INFO GST_EVENT gstevent.c:814:gst_event_new_caps: creating caps event video/x-raw, format=(string)NV12, width=(int)176, height=(int)144, 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, chroma-site=(string)jpeg, colorimetry=(string)bt601, framerate=(fraction)0/1
0:00:00.576719750 8744 0x3d233140 DEBUG GST_CAPS gstpad.c:2705:gst_pad_has_current_caps:<my_h264parse:src> check current pad caps video/x-h264, stream-format=(string)byte-stream, alignment=(string)au, framerate=(fraction)0/1, width=(int)176, height=(int)144, interlace-mode=(string)progressive, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8, parsed=(boolean)true, profile=(string)constrained-baseline, level=(string)1.2
0:00:00.576771625 8744 0x3d233770 DEBUG GST_EVENT gstevent.c:306:gst_event_new_custom: creating new event 0xffffa4008510 caps 12814
0:00:00.576800125 8744 0x3d233140 LOG baseparse gstbaseparse.c:1851:gst_base_parse_update_bitrates:<my_h264parse> frame bitrate 32576, avg bitrate 29386
0:00:00.576875750 8744 0x3d233770 LOG GST_PADS gstpad.c:5176:store_sticky_event:<my_vdec:src> stored sticky event caps
0:00:00.576889750 8744 0x3d233140 DEBUG h264parse gsth264parse.c:186:gst_h264_parse_reset_frame:<my_h264parse> reset frame
0:00:00.576934250 8744 0x3d233770 DEBUG GST_PADS gstpad.c:5182:store_sticky_event:<my_vdec:src> notify caps
0:00:00.576992375 8744 0x3d233140 LOG baseparse gstbaseparse.c:2535:gst_base_parse_push_frame:<my_h264parse> pushing frame (2036 bytes) now..
0:00:00.576995250 8744 0x3d233770 LOG GST_PROPERTIES gstobject.c:448:gst_object_dispatch_properties_changed:<my_vdec> deep notification from src (caps)
0:00:00.577067750 8744 0x3d233140 DEBUG GST_SCHEDULING gstpad.c:4277:gst_pad_chain_data_unchecked:<my_vdec:sink> calling chainfunction &gst_video_decoder_chain with buffer buffer: 0xffffa4017d90, pts 0:00:01.500000000, dts 99:99:99.999999999, dur 0:00:00.500000000, size 2036, offset 3514, offset_end none, flags 0x2400
0:00:00.577127500 8744 0x3d233770 LOG GST_PROPERTIES gstobject.c:448:gst_object_dispatch_properties_changed:<my_pipeline> deep notification from src (caps)
0:00:00.577143625 8744 0x3d233140 LOG videodecoder gstvideodecoder.c:2438:gst_video_decoder_chain:<my_vdec> chain PTS 0:00:01.500000000, DTS 99:99:99.999999999 duration 0:00:00.500000000 size 2036 flags 2400
0:00:00.577187000 8744 0x3d233770 DEBUG GST_PADS gstpad.c:3937:check_sticky:<my_vdec:src> pushing all sticky events
0:00:00.577231750 8744 0x3d233770 DEBUG GST_PADS gstpad.c:3867:push_sticky:<my_vdec:src> event stream-start was already received
0:00:00.577279250 8744 0x3d233770 LOG GST_PADS gstpad.c:5351:gst_pad_push_event_unchecked:<my_vdec:src> sending event 0xffffa4008510 (caps) to peerpad <my_sink:sink>
0:00:00.577337125 8744 0x3d233770 DEBUG GST_EVENT gstpad.c:5638:gst_pad_send_event_unchecked:<my_sink:sink> have event type caps event: 0xffffa4008510, time 99:99:99.999999999, seq-num 37, GstEventCaps, caps=(GstCaps)"video/x-raw\,\ format\=\(string\)NV12\,\ width\=\(int\)176\,\ height\=\(int\)144\,\ 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\,\ chroma-site\=\(string\)jpeg\,\ colorimetry\=\(string\)bt601\,\ framerate\=\(fraction\)0/1";
0:00:00.577504250 8744 0x3d233770 DEBUG GST_CAPS gstutils.c:3123:gst_pad_query_accept_caps:<my_sink:sink> accept caps of video/x-raw, format=(string)NV12, width=(int)176, height=(int)144, 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, chroma-site=(string)jpeg, colorimetry=(string)bt601, framerate=(fraction)0/1
0:00:00.577612875 8744 0x3d233770 DEBUG query gstquery.c:675:gst_query_new_custom: creating new query 0xffff9c0074a0 accept-caps
0:00:00.577665875 8744 0x3d233770 DEBUG GST_PADS gstpad.c:4006:gst_pad_query:<my_sink:sink> doing query 0xffff9c0074a0 (accept-caps)
0:00:00.577852000 8744 0x3d233770 DEBUG GST_PERFORMANCE gstcaps.c:179:_gst_caps_copy:video/x-raw, format=(string){ BGRx, BGRA, RGBx, xBGR, xRGB, RGBA, ABGR, ARGB, RGB, BGR, RGB16, BGR16, YUY2, YVYU, UYVY, AYUV, NV12, NV21, NV16, YUV9, YVU9, Y41B, I420, YV12, Y42B, v308 }, width=(int)[ 1, 2147483647 ], height=(int)[ 1, 2147483647 ], framerate=(fraction)[ 0/1, 2147483647/1 ]; video/x-raw(memory:DMABuf), format=(string){ BGRx, BGRA, RGBx, xBGR, xRGB, RGBA, ABGR, ARGB, RGB, BGR, RGB16, BGR16, YUY2, YVYU, UYVY, AYUV, NV12, NV21, NV16, YUV9, YVU9, Y41B, I420, YV12, Y42B, v308 }, width=(int)[ 1, 2147483647 ], height=(int)[ 1, 2147483647 ], framerate=(fraction)[ 0/1, 2147483647/1 ] doing copy 0x3d21fe30 -> 0xffff9c0074f0
0:00:00.577990500 8744 0x3d233770 DEBUG GST_PERFORMANCE gstminiobject.c:317:gst_mini_object_make_writable: copy GstCaps miniobject 0x3d21fe30 -> 0xffff9c0074f0
0:00:00.578109250 8744 0x3d233770 DEBUG waylandsink gstwaylandsink.c:569:gst_wayland_sink_get_caps:<my_sink> display caps: video/x-raw, format=(string){ BGRA, BGRx, RGB16, I420, NV12, YUY2 }, width=(int)[ 1, 2147483647 ], height=(int)[ 1, 2147483647 ], framerate=(fraction)[ 0/1, 2147483647/1 ]; video/x-raw(memory:DMABuf), format=(string){ RGB16, BGRx, RGBx, xBGR, ARGB, BGRA, RGBA, ABGR, YUY2, NV12, I420 }, width=(int)[ 1, 2147483647 ], height=(int)[ 1, 2147483647 ], framerate=(fraction)[ 0/1, 2147483647/1 ]
0:00:00.578276500 8744 0x3d233770 DEBUG basesink gstbasesink.c:4999:gst_base_sink_default_query:<my_sink> Checking if requested caps video/x-raw, format=(string)NV12, width=(int)176, height=(int)144, 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, chroma-site=(string)jpeg, colorimetry=(string)bt601, framerate=(fraction)0/1 are a subset of pad caps video/x-raw, format=(string){ BGRA, BGRx, RGB16, I420, NV12, YUY2 }, width=(int)[ 1, 2147483647 ], height=(int)[ 1, 2147483647 ], framerate=(fraction)[ 0/1, 2147483647/1 ]; video/x-raw(memory:DMABuf), format=(string){ RGB16, BGRx, RGBx, xBGR, ARGB, BGRA, RGBA, ABGR, YUY2, NV12, I420 }, width=(int)[ 1, 2147483647 ], height=(int)[ 1, 2147483647 ], framerate=(fraction)[ 0/1, 2147483647/1 ] result 1
0:00:00.578496875 8744 0x3d233770 DEBUG GST_PADS gstpad.c:4029:gst_pad_query:<my_sink:sink> sent query 0xffff9c0074a0 (accept-caps), result 1
0:00:00.578550750 8744 0x3d233770 DEBUG default gstutils.c:3128:gst_pad_query_accept_caps:<my_sink:sink> query returned 1
0:00:00.578596375 8744 0x3d233770 DEBUG basesink gstbasesink.c:3252:gst_base_sink_event:<my_sink> received event 0xffffa4008510 caps event: 0xffffa4008510, time 99:99:99.999999999, seq-num 37, GstEventCaps, caps=(GstCaps)"video/x-raw\,\ format\=\(string\)NV12\,\ width\=\(int\)176\,\ height\=\(int\)144\,\ 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\,\ chroma-site\=\(string\)jpeg\,\ colorimetry\=\(string\)bt601\,\ framerate\=\(fraction\)0/1";
0:00:00.578762625 8744 0x3d233770 DEBUG basesink gstbasesink.c:3155:gst_base_sink_default_event:<my_sink> caps 0xffffa4008510
0:00:00.578809500 8744 0x3d233770 DEBUG GST_CAPS gstpad.c:2733:gst_pad_get_current_caps:<my_sink:sink> get current pad caps (NULL)
0:00:00.578853625 8744 0x3d233770 DEBUG waylandsink gstwaylandsink.c:647:gst_wayland_sink_set_caps:<my_sink> set caps video/x-raw, format=(string)NV12, width=(int)176, height=(int)144, 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, chroma-site=(string)jpeg, colorimetry=(string)bt601, framerate=(fraction)0/1
0:00:00.578952125 8744 0x3d233770 DEBUG video-info video-info.c:357:gst_video_info_from_caps: parsing caps video/x-raw, format=(string)NV12, width=(int)176, height=(int)144, 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, chroma-site=(string)jpeg, colorimetry=(string)bt601, framerate=(fraction)0/1
0:00:00.579143000 8744 0x3d233770 LOG GST_DEBUG gstinfo.c:1595:gst_debug_reset_threshold: category videopool matches pattern 0x3d0a0430 - gets set to level 6
0:00:00.579223875 8744 0x3d233770 DEBUG GST_POLL gstpoll.c:681:gst_poll_new: 0xffff9c007540: new controllable : 1
0:00:00.579299500 8744 0x3d233770 DEBUG GST_POLL gstpoll.c:848:gst_poll_add_fd_unlocked: 0xffff9c007540: fd (fd:28, idx:0)
0:00:00.579344875 8744 0x3d233770 DEBUG GST_POLL gstpoll.c:1015:gst_poll_fd_ctl_read_unlocked: 0xffff9c007540: fd (fd:28, idx:0), active : 1
0:00:00.579401250 8744 0x3d233770 LOG GST_POLL gstpoll.c:290:raise_wakeup: 0xffff9c007540: raise
0:00:00.579463250 8744 0x3d233770 DEBUG bufferpool gstbufferpool.c:185:gst_buffer_pool_init:<GstBufferPool at 0xffffa402cb20> created
0:00:00.579540750 8744 0x3d233770 DEBUG video-info video-info.c:357:gst_video_info_from_caps: parsing caps video/x-raw, format=(string)NV12, width=(int)176, height=(int)144, 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, chroma-site=(string)jpeg, colorimetry=(string)bt601, framerate=(fraction)0/1
0:00:00.579740250 8744 0x3d233770 LOG GST_DEBUG gstinfo.c:1595:gst_debug_reset_threshold: category ionmemory matches pattern 0x3d0a0430 - gets set to level 6
0:00:00.579918625 8744 0x3d233770 DEBUG GST_MEMORY gstallocator.c:211:gst_allocator_register: registering allocator 0xffff9c012020 with name "ionmem"
0:00:00.580003875 8744 0x3d233770 DEBUG video-info video-info.c:357:gst_video_info_from_caps: parsing caps video/x-raw, format=(string)NV12, width=(int)176, height=(int)144, 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, chroma-site=(string)jpeg, colorimetry=(string)bt601, framerate=(fraction)0/1
0:00:00.580152750 8744 0x3d233770 LOG videopool gstvideopool.c:155:video_buffer_pool_set_config:<waylandpool0> 176x144, caps video/x-raw, format=(string)NV12, width=(int)176, height=(int)144, 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, chroma-site=(string)jpeg, colorimetry=(string)bt601, framerate=(fraction)0/1
0:00:00.580392750 8744 0x3d233770 WARN structure gststructure.c:1832:priv_gst_structure_append_to_gstring: No value transform to serialize field 'params' of type 'GstAllocationParams'
0:00:00.580276750 8744 0x3d233770 DEBUG bufferpool gstbufferpool.c:614:default_set_config:<waylandpool0> config GstBufferPoolConfig, caps=(GstCaps)"video/x-raw\,\ format\=\(string\)NV12\,\ width\=\(int\)176\,\ height\=\(int\)144\,\ 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\,\ chroma-site\=\(string\)jpeg\,\ colorimetry\=\(string\)bt601\,\ framerate\=\(fraction\)0/1", size=(uint)38016, min-buffers=(uint)2, max-buffers=(uint)0, allocator=(GstAllocator)"\(GstIONAllocator\)\ ionallocator0", params=(GstAllocationParams)NULL;
0:00:00.580499125 8744 0x3d233770 DEBUG GST_PADS gstpad.c:5712:gst_pad_send_event_unchecked:<my_sink:sink> sent event, ret ok
0:00:00.580581750 8744 0x3d233770 LOG GST_PADS gstpad.c:5176:store_sticky_event:<my_sink:sink> stored sticky event caps
0:00:00.580628125 8744 0x3d233770 DEBUG GST_PADS gstpad.c:5182:store_sticky_event:<my_sink:sink> notify caps
0:00:00.580672750 8744 0x3d233770 LOG GST_PROPERTIES gstobject.c:448:gst_object_dispatch_properties_changed:<my_sink> deep notification from sink (caps)
0:00:00.580725875 8744 0x3d233770 LOG GST_PROPERTIES gstobject.c:448:gst_object_dispatch_properties_changed:<my_pipeline> deep notification from sink (caps)
0:00:00.580782875 8744 0x3d233770 LOG GST_PADS gstpad.c:5359:gst_pad_push_event_unchecked:<my_vdec:src> sent event 0xffffa4008510 (caps) to peerpad <my_sink:sink>, ret ok
0:00:00.580843750 8744 0x3d233770 DEBUG GST_PADS gstpad.c:3889:push_sticky:<my_vdec:src> event caps marked received
0:00:00.580888125 8744 0x3d233770 DEBUG query gstquery.c:675:gst_query_new_custom: creating new query 0xffff9c007590 allocation
0:00:00.580934500 8744 0x3d233770 DEBUG videodecoder gstvideodecoder.c:3717:gst_video_decoder_negotiate_pool:<my_vdec> do query ALLOCATION
0:00:00.580973750 8744 0x3d233770 DEBUG GST_PADS gstpad.c:4133:gst_pad_peer_query:<my_vdec:src> peer query 0xffff9c007590 (allocation)
0:00:00.581020250 8744 0x3d233770 DEBUG GST_PADS gstpad.c:4006:gst_pad_query:<my_sink:sink> doing query 0xffff9c007590 (allocation)
0:00:00.581124500 8744 0x3d233770 DEBUG structure gststructure.c:1964:gst_structure_parse_field: trying field name 'dmabuf.drm_modifier'
0:00:00.581175000 8744 0x3d233770 DEBUG default gstvalue.c:2548:_priv_gst_value_parse_value: trying type name 'guint64'
0:00:00.581238750 8744 0x3d233770 DEBUG GST_POLL gstpoll.c:681:gst_poll_new: 0xffff9c0075e0: new controllable : 1
0:00:00.581308875 8744 0x3d233770 DEBUG GST_POLL gstpoll.c:848:gst_poll_add_fd_unlocked: 0xffff9c0075e0: fd (fd:31, idx:0)
0:00:00.581353625 8744 0x3d233770 DEBUG GST_POLL gstpoll.c:1015:gst_poll_fd_ctl_read_unlocked: 0xffff9c0075e0: fd (fd:31, idx:0), active : 1
0:00:00.581406000 8744 0x3d233770 LOG GST_POLL gstpoll.c:290:raise_wakeup: 0xffff9c0075e0: raise
0:00:00.581465250 8744 0x3d233770 DEBUG bufferpool gstbufferpool.c:185:gst_buffer_pool_init:<GstBufferPool at 0xffffa402cd50> created
0:00:00.581535875 8744 0x3d233770 DEBUG video-info video-info.c:357:gst_video_info_from_caps: parsing caps video/x-raw, format=(string)NV12, width=(int)176, height=(int)144, 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, chroma-site=(string)jpeg, colorimetry=(string)bt601, framerate=(fraction)0/1
0:00:00.581683875 8744 0x3d233770 DEBUG video-info video-info.c:357:gst_video_info_from_caps: parsing caps video/x-raw, format=(string)NV12, width=(int)176, height=(int)144, 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, chroma-site=(string)jpeg, colorimetry=(string)bt601, framerate=(fraction)0/1
0:00:00.581811750 8744 0x3d233770 LOG videopool gstvideopool.c:155:video_buffer_pool_set_config:<waylandpool1> 176x144, caps video/x-raw, format=(string)NV12, width=(int)176, height=(int)144, 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, chroma-site=(string)jpeg, colorimetry=(string)bt601, framerate=(fraction)0/1
0:00:00.582095750 8744 0x3d233770 WARN structure gststructure.c:1832:priv_gst_structure_append_to_gstring: No value transform to serialize field 'params' of type 'GstAllocationParams'
0:00:00.581957875 8744 0x3d233770 DEBUG bufferpool gstbufferpool.c:614:default_set_config:<waylandpool1> config GstBufferPoolConfig, caps=(GstCaps)"video/x-raw\,\ format\=\(string\)NV12\,\ width\=\(int\)176\,\ height\=\(int\)144\,\ 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\,\ chroma-site\=\(string\)jpeg\,\ colorimetry\=\(string\)bt601\,\ framerate\=\(fraction\)0/1", size=(uint)38016, min-buffers=(uint)2, max-buffers=(uint)0, allocator=(GstAllocator)"\(GstIONAllocator\)\ ionallocator0", params=(GstAllocationParams)NULL;
0:00:00.582215875 8744 0x3d233770 DEBUG GST_PADS gstpad.c:4029:gst_pad_query:<my_sink:sink> sent query 0xffff9c007590 (allocation), result 1
0:00:00.582275500 8744 0x3d233770 DEBUG v4l2 gstv4l2object.c:4334:gst_v4l2_object_decide_allocation:<my_vdec:src> decide allocation
0:00:00.582324500 8744 0x3d233770 DEBUG v4l2 gstv4l2object.c:4360:gst_v4l2_object_decide_allocation:<my_vdec:src> allocation: size:38016 min:2 max:0 pool:<waylandpool1>
0:00:00.582395875 8744 0x3d233770 DEBUG v4l2 gstv4l2object.c:840:gst_v4l2_get_driver_min_buffers:<my_vdec:src> driver requires a minimum of 18 buffers
0:00:00.582443625 8744 0x3d233770 DEBUG v4l2 gstv4l2object.c:4418:gst_v4l2_object_decide_allocation:<my_vdec:src> streaming mode: using our own pool <my_vdec:pool:src>
0:00:00.582512000 8744 0x3d233770 DEBUG v4l2 gstv4l2object.c:4485:gst_v4l2_object_decide_allocation:<my_vdec:src> activate Video Meta
0:00:00.582698625 8744 0x3d233770 WARN structure gststructure.c:1832:priv_gst_structure_append_to_gstring: No value transform to serialize field 'params' of type 'GstAllocationParams'
0:00:00.582578875 8744 0x3d233770 DEBUG v4l2 gstv4l2object.c:4494:gst_v4l2_object_decide_allocation:<my_vdec:src> setting own pool config to GstBufferPoolConfig, caps=(GstCaps)"video/x-raw\,\ format\=\(string\)NV12\,\ width\=\(int\)176\,\ height\=\(int\)144\,\ 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\,\ chroma-site\=\(string\)jpeg\,\ colorimetry\=\(string\)bt601\,\ framerate\=\(fraction\)0/1", size=(uint)98304, min-buffers=(uint)22, max-buffers=(uint)0, allocator=(GstAllocator)"\(GstIONAllocator\)\ ionallocator0", params=(GstAllocationParams)NULL, options=(string)< GstBufferPoolOptionVideoMeta >;
0:00:00.582933625 8744 0x3d233770 WARN structure gststructure.c:1832:priv_gst_structure_append_to_gstring: No value transform to serialize field 'params' of type 'GstAllocationParams'
0:00:00.582813625 8744 0x3d233770 DEBUG v4l2bufferpool gstv4l2bufferpool.c:509:gst_v4l2_buffer_pool_set_config:<my_vdec:pool:src> config GstBufferPoolConfig, caps=(GstCaps)"video/x-raw\,\ format\=\(string\)NV12\,\ width\=\(int\)176\,\ height\=\(int\)144\,\ 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\,\ chroma-site\=\(string\)jpeg\,\ colorimetry\=\(string\)bt601\,\ framerate\=\(fraction\)0/1", size=(uint)98304, min-buffers=(uint)22, max-buffers=(uint)0, allocator=(GstAllocator)"\(GstIONAllocator\)\ ionallocator0", params=(GstAllocationParams)NULL, options=(string)< GstBufferPoolOptionVideoMeta >;
0:00:00.583105500 8744 0x3d233770 INFO v4l2bufferpool gstv4l2bufferpool.c:570:gst_v4l2_buffer_pool_set_config:<my_vdec:pool:src> reducing maximum buffers to 32
0:00:00.583155250 8744 0x3d233770 INFO v4l2bufferpool gstv4l2bufferpool.c:581:gst_v4l2_buffer_pool_set_config:<my_vdec:pool:src> can't allocate, setting maximum to minimum
0:00:00.583194000 8744 0x3d233770 DEBUG video-info video-info.c:357:gst_video_info_from_caps: parsing caps video/x-raw, format=(string)NV12, width=(int)176, height=(int)144, 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, chroma-site=(string)jpeg, colorimetry=(string)bt601, framerate=(fraction)0/1
0:00:00.583449375 8744 0x3d233770 WARN structure gststructure.c:1832:priv_gst_structure_append_to_gstring: No value transform to serialize field 'params' of type 'GstAllocationParams'
0:00:00.583337625 8744 0x3d233770 DEBUG bufferpool gstbufferpool.c:614:default_set_config:<my_vdec:pool:src> config GstBufferPoolConfig, caps=(GstCaps)"video/x-raw\,\ format\=\(string\)NV12\,\ width\=\(int\)176\,\ height\=\(int\)144\,\ 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\,\ chroma-site\=\(string\)jpeg\,\ colorimetry\=\(string\)bt601\,\ framerate\=\(fraction\)0/1", size=(uint)98304, min-buffers=(uint)22, max-buffers=(uint)22, allocator=(GstAllocator)"\(GstIONAllocator\)\ ionallocator0", params=(GstAllocationParams)NULL, options=(string)< GstBufferPoolOptionVideoMeta >;
0:00:00.583686875 8744 0x3d233770 WARN structure gststructure.c:1832:priv_gst_structure_append_to_gstring: No value transform to serialize field 'params' of type 'GstAllocationParams'
0:00:00.583570750 8744 0x3d233770 DEBUG v4l2 gstv4l2object.c:4501:gst_v4l2_object_decide_allocation:<my_vdec:src> own pool config changed to GstBufferPoolConfig, caps=(GstCaps)"video/x-raw\,\ format\=\(string\)NV12\,\ width\=\(int\)176\,\ height\=\(int\)144\,\ 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\,\ chroma-site\=\(string\)jpeg\,\ colorimetry\=\(string\)bt601\,\ framerate\=\(fraction\)0/1", size=(uint)98304, min-buffers=(uint)22, max-buffers=(uint)22, allocator=(GstAllocator)"\(GstIONAllocator\)\ ionallocator0", params=(GstAllocationParams)NULL, options=(string)< GstBufferPoolOptionVideoMeta >;
0:00:00.583911375 8744 0x3d233770 WARN structure gststructure.c:1832:priv_gst_structure_append_to_gstring: No value transform to serialize field 'params' of type 'GstAllocationParams'
0:00:00.583797875 8744 0x3d233770 DEBUG v4l2bufferpool gstv4l2bufferpool.c:509:gst_v4l2_buffer_pool_set_config:<my_vdec:pool:src> config GstBufferPoolConfig, caps=(GstCaps)"video/x-raw\,\ format\=\(string\)NV12\,\ width\=\(int\)176\,\ height\=\(int\)144\,\ 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\,\ chroma-site\=\(string\)jpeg\,\ colorimetry\=\(string\)bt601\,\ framerate\=\(fraction\)0/1", size=(uint)98304, min-buffers=(uint)22, max-buffers=(uint)22, allocator=(GstAllocator)"\(GstIONAllocator\)\ ionallocator0", params=(GstAllocationParams)NULL, options=(string)< GstBufferPoolOptionVideoMeta >;
0:00:00.584044500 8744 0x3d233770 DEBUG video-info video-info.c:357:gst_video_info_from_caps: parsing caps video/x-raw, format=(string)NV12, width=(int)176, height=(int)144, 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, chroma-site=(string)jpeg, colorimetry=(string)bt601, framerate=(fraction)0/1
0:00:00.584324000 8744 0x3d233770 WARN structure gststructure.c:1832:priv_gst_structure_append_to_gstring: No value transform to serialize field 'params' of type 'GstAllocationParams'
0:00:00.584204000 8744 0x3d233770 DEBUG bufferpool gstbufferpool.c:614:default_set_config:<my_vdec:pool:src> config GstBufferPoolConfig, caps=(GstCaps)"video/x-raw\,\ format\=\(string\)NV12\,\ width\=\(int\)176\,\ height\=\(int\)144\,\ 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\,\ chroma-site\=\(string\)jpeg\,\ colorimetry\=\(string\)bt601\,\ framerate\=\(fraction\)0/1", size=(uint)98304, min-buffers=(uint)22, max-buffers=(uint)22, allocator=(GstAllocator)"\(GstIONAllocator\)\ ionallocator0", params=(GstAllocationParams)NULL, options=(string)< GstBufferPoolOptionVideoMeta >;
0:00:00.584452875 8744 0x3d233770 LOG videopool gstvideopool.c:328:gst_video_buffer_pool_finalize:<waylandpool1> finalize video buffer pool 0xffffa402cd50
0:00:00.584501000 8744 0x3d233770 DEBUG bufferpool gstbufferpool.c:197:gst_buffer_pool_finalize:<waylandpool1> 0xffffa402cd50 finalize
0:00:00.584541625 8744 0x3d233770 LOG bufferpool gstbufferpool.c:506:gst_buffer_pool_set_active:<waylandpool1> active 0
0:00:00.584580625 8744 0x3d233770 DEBUG bufferpool gstbufferpool.c:552:gst_buffer_pool_set_active:<waylandpool1> pool was in the right state
0:00:00.584611125 8744 0x3d233770 DEBUG GST_POLL gstpoll.c:772:gst_poll_free: 0xffff9c0075e0: freeing
0:00:00.584716375 8744 0x3d233770 DEBUG video-info video-info.c:357:gst_video_info_from_caps: parsing caps video/x-raw, format=(string)NV12, width=(int)176, height=(int)144, 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, chroma-site=(string)jpeg, colorimetry=(string)bt601, framerate=(fraction)0/1
0:00:00.585001375 8744 0x3d233770 WARN structure gststructure.c:1832:priv_gst_structure_append_to_gstring: No value transform to serialize field 'params' of type 'GstAllocationParams'
0:00:00.584880250 8744 0x3d233770 DEBUG videodecoder gstvideodecoder.c:3649:gst_video_decoder_decide_allocation_default:<my_vdec> setting config GstBufferPoolConfig, caps=(GstCaps)"video/x-raw\,\ format\=\(string\)NV12\,\ width\=\(int\)176\,\ height\=\(int\)144\,\ 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\,\ chroma-site\=\(string\)jpeg\,\ colorimetry\=\(string\)bt601\,\ framerate\=\(fraction\)0/1", size=(uint)98304, min-buffers=(uint)22, max-buffers=(uint)22, allocator=(GstAllocator)"\(GstIONAllocator\)\ ionallocator0", params=(GstAllocationParams)NULL, options=(string)< GstBufferPoolOptionVideoMeta >; in pool <my_vdec:pool:src>
0:00:00.585179000 8744 0x3d233770 WARN v4l2videodec gstv4l2videodec.c:870:gst_v4l2_video_dec_decide_allocation:<my_vdec> Duration invalid, not setting latency
0:00:00.585314750 8744 0x3d233770 WARN structure gststructure.c:1832:priv_gst_structure_append_to_gstring: No value transform to serialize field 'meta' of type 'GArray'
0:00:00.585392250 8744 0x3d233770 WARN structure gststructure.c:1832:priv_gst_structure_append_to_gstring: No value transform to serialize field 'pool' of type 'GArray'
0:00:00.585440375 8744 0x3d233770 WARN structure gststructure.c:1832:priv_gst_structure_append_to_gstring: No value transform to serialize field 'allocator' of type 'GArray'
0:00:00.585221000 8744 0x3d233770 DEBUG videodecoder gstvideodecoder.c:3727:gst_video_decoder_negotiate_pool:<my_vdec> ALLOCATION (1) params: allocation query: 0xffff9c007590, GstQueryAllocation, caps=(GstCaps)"video/x-raw\,\ format\=\(string\)NV12\,\ width\=\(int\)176\,\ height\=\(int\)144\,\ 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\,\ chroma-site\=\(string\)jpeg\,\ colorimetry\=\(string\)bt601\,\ framerate\=\(fraction\)0/1", need-pool=(boolean)true, meta=(GArray)NULL, pool=(GArray)NULL, allocator=(GArray)NULL;
0:00:00.585567375 8744 0x3d233770 DEBUG videodecoder gstvideodecoder.c:3769:gst_video_decoder_negotiate_pool:<my_vdec> activate pool <my_vdec:pool:src>
0:00:00.585616125 8744 0x3d233770 LOG bufferpool gstbufferpool.c:506:gst_buffer_pool_set_active:<my_vdec:pool:src> active 1
0:00:00.585656750 8744 0x3d233770 LOG bufferpool gstbufferpool.c:359:do_start:<my_vdec:pool:src> starting
0:00:00.585692750 8744 0x3d233770 DEBUG v4l2bufferpool gstv4l2bufferpool.c:747:gst_v4l2_buffer_pool_start:<my_vdec:pool:src> activating pool
0:00:00.585749500 8744 0x3d233770 DEBUG v4l2bufferpool gstv4l2bufferpool.c:777:gst_v4l2_buffer_pool_start:<my_vdec:pool:src> requesting 22 MMAP buffers
0:00:00.657786250 8744 0x3d233770 DEBUG v4l2allocator gstv4l2allocator.c:692:gst_v4l2_allocator_start:<my_vdec:pool:src:allocator> allocated 22 mmap buffers out of 22 requested
0:00:00.657870000 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:303:gst_v4l2_memory_group_new:<my_vdec:pool:src:allocator> Got mmap buffer
0:00:00.657887875 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:304:gst_v4l2_memory_group_new:<my_vdec:pool:src:allocator> index: 0
0:00:00.657903250 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:305:gst_v4l2_memory_group_new:<my_vdec:pool:src:allocator> type: 9
0:00:00.657918250 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:306:gst_v4l2_memory_group_new:<my_vdec:pool:src:allocator> flags: 00004000
0:00:00.657933500 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:307:gst_v4l2_memory_group_new:<my_vdec:pool:src:allocator> field: 0
0:00:00.657948375 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:308:gst_v4l2_memory_group_new:<my_vdec:pool:src:allocator> memory: 1
0:00:00.657963000 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:309:gst_v4l2_memory_group_new:<my_vdec:pool:src:allocator> planes: 2
0:00:00.657977750 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:318:gst_v4l2_memory_group_new:<my_vdec:pool:src:allocator> [0] bytesused: 0, length: 65536, offset: 0
0:00:00.657997250 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:320:gst_v4l2_memory_group_new:<my_vdec:pool:src:allocator> [0] MMAP offset: 268435456
0:00:00.658013750 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:318:gst_v4l2_memory_group_new:<my_vdec:pool:src:allocator> [1] bytesused: 0, length: 32768, offset: 0
0:00:00.658032250 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:320:gst_v4l2_memory_group_new:<my_vdec:pool:src:allocator> [1] MMAP offset: 268500992
0:00:00.658054375 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:303:gst_v4l2_memory_group_new:<my_vdec:pool:src:allocator> Got mmap buffer
0:00:00.658100125 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:304:gst_v4l2_memory_group_new:<my_vdec:pool:src:allocator> index: 1
0:00:00.658116625 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:305:gst_v4l2_memory_group_new:<my_vdec:pool:src:allocator> type: 9
0:00:00.658131750 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:306:gst_v4l2_memory_group_new:<my_vdec:pool:src:allocator> flags: 00004000
0:00:00.658146875 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:307:gst_v4l2_memory_group_new:<my_vdec:pool:src:allocator> field: 0
0:00:00.658161500 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:308:gst_v4l2_memory_group_new:<my_vdec:pool:src:allocator> memory: 1
0:00:00.658176125 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:309:gst_v4l2_memory_group_new:<my_vdec:pool:src:allocator> planes: 2
0:00:00.658190750 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:318:gst_v4l2_memory_group_new:<my_vdec:pool:src:allocator> [0] bytesused: 0, length: 65536, offset: 0
0:00:00.658208375 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:320:gst_v4l2_memory_group_new:<my_vdec:pool:src:allocator> [0] MMAP offset: 268533760
0:00:00.658224250 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:318:gst_v4l2_memory_group_new:<my_vdec:pool:src:allocator> [1] bytesused: 0, length: 32768, offset: 0
0:00:00.658241625 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:320:gst_v4l2_memory_group_new:<my_vdec:pool:src:allocator> [1] MMAP offset: 268599296
0:00:00.658261750 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:303:gst_v4l2_memory_group_new:<my_vdec:pool:src:allocator> Got mmap buffer
0:00:00.658277625 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:304:gst_v4l2_memory_group_new:<my_vdec:pool:src:allocator> index: 2
0:00:00.658292500 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:305:gst_v4l2_memory_group_new:<my_vdec:pool:src:allocator> type: 9
0:00:00.658307250 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:306:gst_v4l2_memory_group_new:<my_vdec:pool:src:allocator> flags: 00004000
0:00:00.658322250 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:307:gst_v4l2_memory_group_new:<my_vdec:pool:src:allocator> field: 0
0:00:00.658337000 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:308:gst_v4l2_memory_group_new:<my_vdec:pool:src:allocator> memory: 1
0:00:00.658351625 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:309:gst_v4l2_memory_group_new:<my_vdec:pool:src:allocator> planes: 2
0:00:00.658366375 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:318:gst_v4l2_memory_group_new:<my_vdec:pool:src:allocator> [0] bytesused: 0, length: 65536, offset: 0
0:00:00.658383875 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:320:gst_v4l2_memory_group_new:<my_vdec:pool:src:allocator> [0] MMAP offset: 268632064
0:00:00.658399625 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:318:gst_v4l2_memory_group_new:<my_vdec:pool:src:allocator> [1] bytesused: 0, length: 32768, offset: 0
0:00:00.658416750 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:320:gst_v4l2_memory_group_new:<my_vdec:pool:src:allocator> [1] MMAP offset: 268697600
0:00:00.658436750 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:303:gst_v4l2_memory_group_new:<my_vdec:pool:src:allocator> Got mmap buffer
0:00:00.658452625 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:304:gst_v4l2_memory_group_new:<my_vdec:pool:src:allocator> index: 3
0:00:00.658467625 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:305:gst_v4l2_memory_group_new:<my_vdec:pool:src:allocator> type: 9
0:00:00.658493250 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:306:gst_v4l2_memory_group_new:<my_vdec:pool:src:allocator> flags: 00004000
0:00:00.658508875 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:307:gst_v4l2_memory_group_new:<my_vdec:pool:src:allocator> field: 0
0:00:00.658523500 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:308:gst_v4l2_memory_group_new:<my_vdec:pool:src:allocator> memory: 1
0:00:00.658538125 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:309:gst_v4l2_memory_group_new:<my_vdec:pool:src:allocator> planes: 2
0:00:00.658552750 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:318:gst_v4l2_memory_group_new:<my_vdec:pool:src:allocator> [0] bytesused: 0, length: 65536, offset: 0
0:00:00.658570250 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:320:gst_v4l2_memory_group_new:<my_vdec:pool:src:allocator> [0] MMAP offset: 268730368
0:00:00.658586000 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:318:gst_v4l2_memory_group_new:<my_vdec:pool:src:allocator> [1] bytesused: 0, length: 32768, offset: 0
0:00:00.658603250 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:320:gst_v4l2_memory_group_new:<my_vdec:pool:src:allocator> [1] MMAP offset: 268795904
0:00:00.658648625 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:303:gst_v4l2_memory_group_new:<my_vdec:pool:src:allocator> Got mmap buffer
0:00:00.658665750 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:304:gst_v4l2_memory_group_new:<my_vdec:pool:src:allocator> index: 4
0:00:00.658680875 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:305:gst_v4l2_memory_group_new:<my_vdec:pool:src:allocator> type: 9
0:00:00.658695500 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:306:gst_v4l2_memory_group_new:<my_vdec:pool:src:allocator> flags: 00004000
0:00:00.658710500 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:307:gst_v4l2_memory_group_new:<my_vdec:pool:src:allocator> field: 0
0:00:00.658725125 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:308:gst_v4l2_memory_group_new:<my_vdec:pool:src:allocator> memory: 1
0:00:00.658739625 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:309:gst_v4l2_memory_group_new:<my_vdec:pool:src:allocator> planes: 2
0:00:00.658754250 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:318:gst_v4l2_memory_group_new:<my_vdec:pool:src:allocator> [0] bytesused: 0, length: 65536, offset: 0
0:00:00.658771875 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:320:gst_v4l2_memory_group_new:<my_vdec:pool:src:allocator> [0] MMAP offset: 268828672
0:00:00.658787875 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:318:gst_v4l2_memory_group_new:<my_vdec:pool:src:allocator> [1] bytesused: 0, length: 32768, offset: 0
0:00:00.658805125 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:320:gst_v4l2_memory_group_new:<my_vdec:pool:src:allocator> [1] MMAP offset: 268894208
0:00:00.658824875 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:303:gst_v4l2_memory_group_new:<my_vdec:pool:src:allocator> Got mmap buffer
0:00:00.658840625 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:304:gst_v4l2_memory_group_new:<my_vdec:pool:src:allocator> index: 5
0:00:00.658855375 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:305:gst_v4l2_memory_group_new:<my_vdec:pool:src:allocator> type: 9
0:00:00.658870000 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:306:gst_v4l2_memory_group_new:<my_vdec:pool:src:allocator> flags: 00004000
0:00:00.658884750 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:307:gst_v4l2_memory_group_new:<my_vdec:pool:src:allocator> field: 0
0:00:00.658910875 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:308:gst_v4l2_memory_group_new:<my_vdec:pool:src:allocator> memory: 1
0:00:00.658926125 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:309:gst_v4l2_memory_group_new:<my_vdec:pool:src:allocator> planes: 2
0:00:00.658940875 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:318:gst_v4l2_memory_group_new:<my_vdec:pool:src:allocator> [0] bytesused: 0, length: 65536, offset: 0
0:00:00.658958000 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:320:gst_v4l2_memory_group_new:<my_vdec:pool:src:allocator> [0] MMAP offset: 268926976
0:00:00.658973875 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:318:gst_v4l2_memory_group_new:<my_vdec:pool:src:allocator> [1] bytesused: 0, length: 32768, offset: 0
0:00:00.658991000 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:320:gst_v4l2_memory_group_new:<my_vdec:pool:src:allocator> [1] MMAP offset: 268992512
0:00:00.659011250 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:303:gst_v4l2_memory_group_new:<my_vdec:pool:src:allocator> Got mmap buffer
0:00:00.659026875 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:304:gst_v4l2_memory_group_new:<my_vdec:pool:src:allocator> index: 6
0:00:00.659041750 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:305:gst_v4l2_memory_group_new:<my_vdec:pool:src:allocator> type: 9
0:00:00.659056375 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:306:gst_v4l2_memory_group_new:<my_vdec:pool:src:allocator> flags: 00004000
0:00:00.659071250 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:307:gst_v4l2_memory_group_new:<my_vdec:pool:src:allocator> field: 0
0:00:00.659085875 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:308:gst_v4l2_memory_group_new:<my_vdec:pool:src:allocator> memory: 1
0:00:00.659100375 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:309:gst_v4l2_memory_group_new:<my_vdec:pool:src:allocator> planes: 2
0:00:00.659115125 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:318:gst_v4l2_memory_group_new:<my_vdec:pool:src:allocator> [0] bytesused: 0, length: 65536, offset: 0
0:00:00.659132125 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:320:gst_v4l2_memory_group_new:<my_vdec:pool:src:allocator> [0] MMAP offset: 269025280
0:00:00.659148000 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:318:gst_v4l2_memory_group_new:<my_vdec:pool:src:allocator> [1] bytesused: 0, length: 32768, offset: 0
0:00:00.659165250 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:320:gst_v4l2_memory_group_new:<my_vdec:pool:src:allocator> [1] MMAP offset: 269090816
0:00:00.659185250 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:303:gst_v4l2_memory_group_new:<my_vdec:pool:src:allocator> Got mmap buffer
0:00:00.659200875 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:304:gst_v4l2_memory_group_new:<my_vdec:pool:src:allocator> index: 7
0:00:00.659215750 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:305:gst_v4l2_memory_group_new:<my_vdec:pool:src:allocator> type: 9
0:00:00.659230500 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:306:gst_v4l2_memory_group_new:<my_vdec:pool:src:allocator> flags: 00004000
0:00:00.659245250 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:307:gst_v4l2_memory_group_new:<my_vdec:pool:src:allocator> field: 0
0:00:00.659259875 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:308:gst_v4l2_memory_group_new:<my_vdec:pool:src:allocator> memory: 1
0:00:00.659274375 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:309:gst_v4l2_memory_group_new:<my_vdec:pool:src:allocator> planes: 2
0:00:00.659289125 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:318:gst_v4l2_memory_group_new:<my_vdec:pool:src:allocator> [0] bytesused: 0, length: 65536, offset: 0
0:00:00.659316625 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:320:gst_v4l2_memory_group_new:<my_vdec:pool:src:allocator> [0] MMAP offset: 269123584
0:00:00.659333250 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:318:gst_v4l2_memory_group_new:<my_vdec:pool:src:allocator> [1] bytesused: 0, length: 32768, offset: 0
0:00:00.659350250 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:320:gst_v4l2_memory_group_new:<my_vdec:pool:src:allocator> [1] MMAP offset: 269189120
0:00:00.659371125 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:303:gst_v4l2_memory_group_new:<my_vdec:pool:src:allocator> Got mmap buffer
0:00:00.659387250 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:304:gst_v4l2_memory_group_new:<my_vdec:pool:src:allocator> index: 8
0:00:00.659402000 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:305:gst_v4l2_memory_group_new:<my_vdec:pool:src:allocator> type: 9
0:00:00.659416750 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:306:gst_v4l2_memory_group_new:<my_vdec:pool:src:allocator> flags: 00004000
0:00:00.659431750 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:307:gst_v4l2_memory_group_new:<my_vdec:pool:src:allocator> field: 0
0:00:00.659446375 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:308:gst_v4l2_memory_group_new:<my_vdec:pool:src:allocator> memory: 1
0:00:00.659460875 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:309:gst_v4l2_memory_group_new:<my_vdec:pool:src:allocator> planes: 2
0:00:00.659475625 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:318:gst_v4l2_memory_group_new:<my_vdec:pool:src:allocator> [0] bytesused: 0, length: 65536, offset: 0
0:00:00.659492625 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:320:gst_v4l2_memory_group_new:<my_vdec:pool:src:allocator> [0] MMAP offset: 269221888
0:00:00.659508500 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:318:gst_v4l2_memory_group_new:<my_vdec:pool:src:allocator> [1] bytesused: 0, length: 32768, offset: 0
0:00:00.659525500 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:320:gst_v4l2_memory_group_new:<my_vdec:pool:src:allocator> [1] MMAP offset: 269287424
0:00:00.659545250 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:303:gst_v4l2_memory_group_new:<my_vdec:pool:src:allocator> Got mmap buffer
0:00:00.659560875 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:304:gst_v4l2_memory_group_new:<my_vdec:pool:src:allocator> index: 9
0:00:00.659575875 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:305:gst_v4l2_memory_group_new:<my_vdec:pool:src:allocator> type: 9
0:00:00.659590500 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:306:gst_v4l2_memory_group_new:<my_vdec:pool:src:allocator> flags: 00004000
0:00:00.659605500 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:307:gst_v4l2_memory_group_new:<my_vdec:pool:src:allocator> field: 0
0:00:00.659620000 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:308:gst_v4l2_memory_group_new:<my_vdec:pool:src:allocator> memory: 1
0:00:00.659634500 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:309:gst_v4l2_memory_group_new:<my_vdec:pool:src:allocator> planes: 2
0:00:00.659649000 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:318:gst_v4l2_memory_group_new:<my_vdec:pool:src:allocator> [0] bytesused: 0, length: 65536, offset: 0
0:00:00.659666125 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:320:gst_v4l2_memory_group_new:<my_vdec:pool:src:allocator> [0] MMAP offset: 269320192
0:00:00.659692500 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:318:gst_v4l2_memory_group_new:<my_vdec:pool:src:allocator> [1] bytesused: 0, length: 32768, offset: 0
0:00:00.659710250 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:320:gst_v4l2_memory_group_new:<my_vdec:pool:src:allocator> [1] MMAP offset: 269385728
0:00:00.659730625 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:303:gst_v4l2_memory_group_new:<my_vdec:pool:src:allocator> Got mmap buffer
0:00:00.659746500 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:304:gst_v4l2_memory_group_new:<my_vdec:pool:src:allocator> index: 10
0:00:00.659761375 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:305:gst_v4l2_memory_group_new:<my_vdec:pool:src:allocator> type: 9
0:00:00.659776250 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:306:gst_v4l2_memory_group_new:<my_vdec:pool:src:allocator> flags: 00004000
0:00:00.659791125 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:307:gst_v4l2_memory_group_new:<my_vdec:pool:src:allocator> field: 0
0:00:00.659805750 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:308:gst_v4l2_memory_group_new:<my_vdec:pool:src:allocator> memory: 1
0:00:00.659820250 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:309:gst_v4l2_memory_group_new:<my_vdec:pool:src:allocator> planes: 2
0:00:00.659834875 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:318:gst_v4l2_memory_group_new:<my_vdec:pool:src:allocator> [0] bytesused: 0, length: 65536, offset: 0
0:00:00.659851875 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:320:gst_v4l2_memory_group_new:<my_vdec:pool:src:allocator> [0] MMAP offset: 269418496
0:00:00.659867750 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:318:gst_v4l2_memory_group_new:<my_vdec:pool:src:allocator> [1] bytesused: 0, length: 32768, offset: 0
0:00:00.659884750 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:320:gst_v4l2_memory_group_new:<my_vdec:pool:src:allocator> [1] MMAP offset: 269484032
0:00:00.659904625 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:303:gst_v4l2_memory_group_new:<my_vdec:pool:src:allocator> Got mmap buffer
0:00:00.659920375 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:304:gst_v4l2_memory_group_new:<my_vdec:pool:src:allocator> index: 11
0:00:00.659935375 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:305:gst_v4l2_memory_group_new:<my_vdec:pool:src:allocator> type: 9
0:00:00.659950125 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:306:gst_v4l2_memory_group_new:<my_vdec:pool:src:allocator> flags: 00004000
0:00:00.659965000 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:307:gst_v4l2_memory_group_new:<my_vdec:pool:src:allocator> field: 0
0:00:00.659979625 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:308:gst_v4l2_memory_group_new:<my_vdec:pool:src:allocator> memory: 1
0:00:00.659994250 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:309:gst_v4l2_memory_group_new:<my_vdec:pool:src:allocator> planes: 2
0:00:00.660008875 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:318:gst_v4l2_memory_group_new:<my_vdec:pool:src:allocator> [0] bytesused: 0, length: 65536, offset: 0
0:00:00.660026000 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:320:gst_v4l2_memory_group_new:<my_vdec:pool:src:allocator> [0] MMAP offset: 269516800
0:00:00.660041875 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:318:gst_v4l2_memory_group_new:<my_vdec:pool:src:allocator> [1] bytesused: 0, length: 32768, offset: 0
0:00:00.660058750 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:320:gst_v4l2_memory_group_new:<my_vdec:pool:src:allocator> [1] MMAP offset: 269582336
0:00:00.660090000 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:303:gst_v4l2_memory_group_new:<my_vdec:pool:src:allocator> Got mmap buffer
0:00:00.660106500 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:304:gst_v4l2_memory_group_new:<my_vdec:pool:src:allocator> index: 12
0:00:00.660121375 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:305:gst_v4l2_memory_group_new:<my_vdec:pool:src:allocator> type: 9
0:00:00.660136000 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:306:gst_v4l2_memory_group_new:<my_vdec:pool:src:allocator> flags: 00004000
0:00:00.660150875 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:307:gst_v4l2_memory_group_new:<my_vdec:pool:src:allocator> field: 0
0:00:00.660165500 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:308:gst_v4l2_memory_group_new:<my_vdec:pool:src:allocator> memory: 1
0:00:00.660180125 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:309:gst_v4l2_memory_group_new:<my_vdec:pool:src:allocator> planes: 2
0:00:00.660194750 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:318:gst_v4l2_memory_group_new:<my_vdec:pool:src:allocator> [0] bytesused: 0, length: 65536, offset: 0
0:00:00.660211875 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:320:gst_v4l2_memory_group_new:<my_vdec:pool:src:allocator> [0] MMAP offset: 269615104
0:00:00.660227625 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:318:gst_v4l2_memory_group_new:<my_vdec:pool:src:allocator> [1] bytesused: 0, length: 32768, offset: 0
0:00:00.660244625 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:320:gst_v4l2_memory_group_new:<my_vdec:pool:src:allocator> [1] MMAP offset: 269680640
0:00:00.660264375 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:303:gst_v4l2_memory_group_new:<my_vdec:pool:src:allocator> Got mmap buffer
0:00:00.660280000 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:304:gst_v4l2_memory_group_new:<my_vdec:pool:src:allocator> index: 13
0:00:00.660294750 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:305:gst_v4l2_memory_group_new:<my_vdec:pool:src:allocator> type: 9
0:00:00.660309375 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:306:gst_v4l2_memory_group_new:<my_vdec:pool:src:allocator> flags: 00004000
0:00:00.660324250 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:307:gst_v4l2_memory_group_new:<my_vdec:pool:src:allocator> field: 0
0:00:00.660338750 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:308:gst_v4l2_memory_group_new:<my_vdec:pool:src:allocator> memory: 1
0:00:00.660353375 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:309:gst_v4l2_memory_group_new:<my_vdec:pool:src:allocator> planes: 2
0:00:00.660368000 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:318:gst_v4l2_memory_group_new:<my_vdec:pool:src:allocator> [0] bytesused: 0, length: 65536, offset: 0
0:00:00.660385125 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:320:gst_v4l2_memory_group_new:<my_vdec:pool:src:allocator> [0] MMAP offset: 269713408
0:00:00.660401000 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:318:gst_v4l2_memory_group_new:<my_vdec:pool:src:allocator> [1] bytesused: 0, length: 32768, offset: 0
0:00:00.660417875 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:320:gst_v4l2_memory_group_new:<my_vdec:pool:src:allocator> [1] MMAP offset: 269778944
0:00:00.660437500 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:303:gst_v4l2_memory_group_new:<my_vdec:pool:src:allocator> Got mmap buffer
0:00:00.660453000 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:304:gst_v4l2_memory_group_new:<my_vdec:pool:src:allocator> index: 14
0:00:00.660467875 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:305:gst_v4l2_memory_group_new:<my_vdec:pool:src:allocator> type: 9
0:00:00.660493375 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:306:gst_v4l2_memory_group_new:<my_vdec:pool:src:allocator> flags: 00004000
0:00:00.660509000 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:307:gst_v4l2_memory_group_new:<my_vdec:pool:src:allocator> field: 0
0:00:00.660523750 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:308:gst_v4l2_memory_group_new:<my_vdec:pool:src:allocator> memory: 1
0:00:00.660538375 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:309:gst_v4l2_memory_group_new:<my_vdec:pool:src:allocator> planes: 2
0:00:00.660553000 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:318:gst_v4l2_memory_group_new:<my_vdec:pool:src:allocator> [0] bytesused: 0, length: 65536, offset: 0
0:00:00.660570250 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:320:gst_v4l2_memory_group_new:<my_vdec:pool:src:allocator> [0] MMAP offset: 269811712
0:00:00.660586125 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:318:gst_v4l2_memory_group_new:<my_vdec:pool:src:allocator> [1] bytesused: 0, length: 32768, offset: 0
0:00:00.660603125 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:320:gst_v4l2_memory_group_new:<my_vdec:pool:src:allocator> [1] MMAP offset: 269877248
0:00:00.660623125 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:303:gst_v4l2_memory_group_new:<my_vdec:pool:src:allocator> Got mmap buffer
0:00:00.660638750 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:304:gst_v4l2_memory_group_new:<my_vdec:pool:src:allocator> index: 15
0:00:00.660653500 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:305:gst_v4l2_memory_group_new:<my_vdec:pool:src:allocator> type: 9
0:00:00.660668125 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:306:gst_v4l2_memory_group_new:<my_vdec:pool:src:allocator> flags: 00004000
0:00:00.660683000 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:307:gst_v4l2_memory_group_new:<my_vdec:pool:src:allocator> field: 0
0:00:00.660697750 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:308:gst_v4l2_memory_group_new:<my_vdec:pool:src:allocator> memory: 1
0:00:00.660712375 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:309:gst_v4l2_memory_group_new:<my_vdec:pool:src:allocator> planes: 2
0:00:00.660727000 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:318:gst_v4l2_memory_group_new:<my_vdec:pool:src:allocator> [0] bytesused: 0, length: 65536, offset: 0
0:00:00.660744125 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:320:gst_v4l2_memory_group_new:<my_vdec:pool:src:allocator> [0] MMAP offset: 269910016
0:00:00.660759750 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:318:gst_v4l2_memory_group_new:<my_vdec:pool:src:allocator> [1] bytesused: 0, length: 32768, offset: 0
0:00:00.660776875 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:320:gst_v4l2_memory_group_new:<my_vdec:pool:src:allocator> [1] MMAP offset: 269975552
0:00:00.660806750 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:303:gst_v4l2_memory_group_new:<my_vdec:pool:src:allocator> Got mmap buffer
0:00:00.660823750 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:304:gst_v4l2_memory_group_new:<my_vdec:pool:src:allocator> index: 16
0:00:00.660838500 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:305:gst_v4l2_memory_group_new:<my_vdec:pool:src:allocator> type: 9
0:00:00.660853125 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:306:gst_v4l2_memory_group_new:<my_vdec:pool:src:allocator> flags: 00004000
0:00:00.660867875 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:307:gst_v4l2_memory_group_new:<my_vdec:pool:src:allocator> field: 0
0:00:00.660897500 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:308:gst_v4l2_memory_group_new:<my_vdec:pool:src:allocator> memory: 1
0:00:00.660912875 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:309:gst_v4l2_memory_group_new:<my_vdec:pool:src:allocator> planes: 2
0:00:00.660927625 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:318:gst_v4l2_memory_group_new:<my_vdec:pool:src:allocator> [0] bytesused: 0, length: 65536, offset: 0
0:00:00.660944875 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:320:gst_v4l2_memory_group_new:<my_vdec:pool:src:allocator> [0] MMAP offset: 270008320
0:00:00.660960625 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:318:gst_v4l2_memory_group_new:<my_vdec:pool:src:allocator> [1] bytesused: 0, length: 32768, offset: 0
0:00:00.660977625 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:320:gst_v4l2_memory_group_new:<my_vdec:pool:src:allocator> [1] MMAP offset: 270073856
0:00:00.660997875 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:303:gst_v4l2_memory_group_new:<my_vdec:pool:src:allocator> Got mmap buffer
0:00:00.661013750 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:304:gst_v4l2_memory_group_new:<my_vdec:pool:src:allocator> index: 17
0:00:00.661028500 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:305:gst_v4l2_memory_group_new:<my_vdec:pool:src:allocator> type: 9
0:00:00.661060625 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:306:gst_v4l2_memory_group_new:<my_vdec:pool:src:allocator> flags: 00004000
0:00:00.661079375 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:307:gst_v4l2_memory_group_new:<my_vdec:pool:src:allocator> field: 0
0:00:00.661094250 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:308:gst_v4l2_memory_group_new:<my_vdec:pool:src:allocator> memory: 1
0:00:00.661108875 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:309:gst_v4l2_memory_group_new:<my_vdec:pool:src:allocator> planes: 2
0:00:00.661123625 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:318:gst_v4l2_memory_group_new:<my_vdec:pool:src:allocator> [0] bytesused: 0, length: 65536, offset: 0
0:00:00.661140875 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:320:gst_v4l2_memory_group_new:<my_vdec:pool:src:allocator> [0] MMAP offset: 270106624
0:00:00.661156750 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:318:gst_v4l2_memory_group_new:<my_vdec:pool:src:allocator> [1] bytesused: 0, length: 32768, offset: 0
0:00:00.661173750 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:320:gst_v4l2_memory_group_new:<my_vdec:pool:src:allocator> [1] MMAP offset: 270172160
0:00:00.661193750 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:303:gst_v4l2_memory_group_new:<my_vdec:pool:src:allocator> Got mmap buffer
0:00:00.661209375 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:304:gst_v4l2_memory_group_new:<my_vdec:pool:src:allocator> index: 18
0:00:00.661224500 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:305:gst_v4l2_memory_group_new:<my_vdec:pool:src:allocator> type: 9
0:00:00.661239125 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:306:gst_v4l2_memory_group_new:<my_vdec:pool:src:allocator> flags: 00004000
0:00:00.661254000 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:307:gst_v4l2_memory_group_new:<my_vdec:pool:src:allocator> field: 0
0:00:00.661268625 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:308:gst_v4l2_memory_group_new:<my_vdec:pool:src:allocator> memory: 1
0:00:00.661283250 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:309:gst_v4l2_memory_group_new:<my_vdec:pool:src:allocator> planes: 2
0:00:00.661308750 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:318:gst_v4l2_memory_group_new:<my_vdec:pool:src:allocator> [0] bytesused: 0, length: 65536, offset: 0
0:00:00.661326500 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:320:gst_v4l2_memory_group_new:<my_vdec:pool:src:allocator> [0] MMAP offset: 270204928
0:00:00.661342375 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:318:gst_v4l2_memory_group_new:<my_vdec:pool:src:allocator> [1] bytesused: 0, length: 32768, offset: 0
0:00:00.661359500 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:320:gst_v4l2_memory_group_new:<my_vdec:pool:src:allocator> [1] MMAP offset: 270270464
0:00:00.661379625 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:303:gst_v4l2_memory_group_new:<my_vdec:pool:src:allocator> Got mmap buffer
0:00:00.661395375 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:304:gst_v4l2_memory_group_new:<my_vdec:pool:src:allocator> index: 19
0:00:00.661410250 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:305:gst_v4l2_memory_group_new:<my_vdec:pool:src:allocator> type: 9
0:00:00.661425000 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:306:gst_v4l2_memory_group_new:<my_vdec:pool:src:allocator> flags: 00004000
0:00:00.661439875 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:307:gst_v4l2_memory_group_new:<my_vdec:pool:src:allocator> field: 0
0:00:00.661454500 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:308:gst_v4l2_memory_group_new:<my_vdec:pool:src:allocator> memory: 1
0:00:00.661469125 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:309:gst_v4l2_memory_group_new:<my_vdec:pool:src:allocator> planes: 2
0:00:00.661483625 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:318:gst_v4l2_memory_group_new:<my_vdec:pool:src:allocator> [0] bytesused: 0, length: 65536, offset: 0
0:00:00.661500875 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:320:gst_v4l2_memory_group_new:<my_vdec:pool:src:allocator> [0] MMAP offset: 270303232
0:00:00.661516625 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:318:gst_v4l2_memory_group_new:<my_vdec:pool:src:allocator> [1] bytesused: 0, length: 32768, offset: 0
0:00:00.661533500 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:320:gst_v4l2_memory_group_new:<my_vdec:pool:src:allocator> [1] MMAP offset: 270368768
0:00:00.661554500 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:303:gst_v4l2_memory_group_new:<my_vdec:pool:src:allocator> Got mmap buffer
0:00:00.661570500 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:304:gst_v4l2_memory_group_new:<my_vdec:pool:src:allocator> index: 20
0:00:00.661585375 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:305:gst_v4l2_memory_group_new:<my_vdec:pool:src:allocator> type: 9
0:00:00.661600125 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:306:gst_v4l2_memory_group_new:<my_vdec:pool:src:allocator> flags: 00004000
0:00:00.661614875 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:307:gst_v4l2_memory_group_new:<my_vdec:pool:src:allocator> field: 0
0:00:00.661629500 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:308:gst_v4l2_memory_group_new:<my_vdec:pool:src:allocator> memory: 1
0:00:00.661644125 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:309:gst_v4l2_memory_group_new:<my_vdec:pool:src:allocator> planes: 2
0:00:00.661658625 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:318:gst_v4l2_memory_group_new:<my_vdec:pool:src:allocator> [0] bytesused: 0, length: 65536, offset: 0
0:00:00.661675750 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:320:gst_v4l2_memory_group_new:<my_vdec:pool:src:allocator> [0] MMAP offset: 270401536
0:00:00.661702125 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:318:gst_v4l2_memory_group_new:<my_vdec:pool:src:allocator> [1] bytesused: 0, length: 32768, offset: 0
0:00:00.661719875 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:320:gst_v4l2_memory_group_new:<my_vdec:pool:src:allocator> [1] MMAP offset: 270467072
0:00:00.661740000 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:303:gst_v4l2_memory_group_new:<my_vdec:pool:src:allocator> Got mmap buffer
0:00:00.661755625 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:304:gst_v4l2_memory_group_new:<my_vdec:pool:src:allocator> index: 21
0:00:00.661770500 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:305:gst_v4l2_memory_group_new:<my_vdec:pool:src:allocator> type: 9
0:00:00.661785125 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:306:gst_v4l2_memory_group_new:<my_vdec:pool:src:allocator> flags: 00004000
0:00:00.661800000 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:307:gst_v4l2_memory_group_new:<my_vdec:pool:src:allocator> field: 0
0:00:00.661814625 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:308:gst_v4l2_memory_group_new:<my_vdec:pool:src:allocator> memory: 1
0:00:00.661829125 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:309:gst_v4l2_memory_group_new:<my_vdec:pool:src:allocator> planes: 2
0:00:00.661843750 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:318:gst_v4l2_memory_group_new:<my_vdec:pool:src:allocator> [0] bytesused: 0, length: 65536, offset: 0
0:00:00.661860875 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:320:gst_v4l2_memory_group_new:<my_vdec:pool:src:allocator> [0] MMAP offset: 270499840
0:00:00.661876750 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:318:gst_v4l2_memory_group_new:<my_vdec:pool:src:allocator> [1] bytesused: 0, length: 32768, offset: 0
0:00:00.661893750 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:320:gst_v4l2_memory_group_new:<my_vdec:pool:src:allocator> [1] MMAP offset: 270565376
0:00:00.662016750 8744 0x3d233770 WARN structure gststructure.c:1832:priv_gst_structure_append_to_gstring: No value transform to serialize field 'params' of type 'GstAllocationParams'
0:00:00.661933625 8744 0x3d233770 DEBUG bufferpool gstbufferpool.c:614:default_set_config:<my_vdec:pool:src> config GstBufferPoolConfig, caps=(GstCaps)"video/x-raw\,\ format\=\(string\)NV12\,\ width\=\(int\)176\,\ height\=\(int\)144\,\ 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\,\ chroma-site\=\(string\)jpeg\,\ colorimetry\=\(string\)bt601\,\ framerate\=\(fraction\)0/1", size=(uint)98304, min-buffers=(uint)22, max-buffers=(uint)22, allocator=(GstAllocator)"\(GstIONAllocator\)\ ionallocator0", params=(GstAllocationParams)NULL, options=(string)< GstBufferPoolOptionVideoMeta >;
0:00:00.662080750 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:869:gst_v4l2_allocator_alloc_dmabuf:<my_vdec:pool:src:allocator> exported DMABUF as fd 31 plane 0
0:00:00.662103750 8744 0x3d233770 DEBUG GST_MEMORY gstmemory.c:139:gst_memory_init: new memory 0xffffa4018430, maxsize:65536 offset:0 size:65536
0:00:00.662127250 8744 0x3d233770 DEBUG GST_MEMORY gstmemory.c:139:gst_memory_init: new memory 0xffffa40184c0, maxsize:65536 offset:0 size:65536
0:00:00.662146000 8744 0x3d233770 DEBUG fdmemory gstfdmemory.c:294:gst_fd_allocator_alloc: 0xffffa40184c0: fd: 32 size 65536
0:00:00.662177125 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:869:gst_v4l2_allocator_alloc_dmabuf:<my_vdec:pool:src:allocator> exported DMABUF as fd 33 plane 1
0:00:00.662205000 8744 0x3d233770 DEBUG GST_MEMORY gstmemory.c:139:gst_memory_init: new memory 0xffffa4018550, maxsize:32768 offset:0 size:32768
0:00:00.662223625 8744 0x3d233770 DEBUG GST_MEMORY gstmemory.c:139:gst_memory_init: new memory 0xffffa40185e0, maxsize:32768 offset:0 size:32768
0:00:00.662239875 8744 0x3d233770 DEBUG fdmemory gstfdmemory.c:294:gst_fd_allocator_alloc: 0xffffa40185e0: fd: 34 size 32768
0:00:00.662258625 8744 0x3d233770 LOG GST_BUFFER gstbuffer.c:799:gst_buffer_new: new 0xffffa4028460
0:00:00.662273125 8744 0x3d233770 LOG GST_BUFFER gstbuffer.c:414:_memory_add: buffer 0xffffa4028460, idx -1, mem 0xffffa40184c0
0:00:00.662288625 8744 0x3d233770 LOG GST_BUFFER gstbuffer.c:414:_memory_add: buffer 0xffffa4028460, idx -1, mem 0xffffa40185e0
0:00:00.662305875 8744 0x3d233770 DEBUG GST_BUFFER gstbuffer.c:2201:gst_buffer_add_meta: alloc metadata 0xffffa4018678 (GstVideoMeta) of size 112
0:00:00.662326000 8744 0x3d233770 LOG GST_DEBUG gstinfo.c:1595:gst_debug_reset_threshold: category videometa matches pattern 0x3d0a0430 - gets set to level 6
0:00:00.662357500 8744 0x3d233770 LOG videometa gstvideometa.c:325:gst_buffer_add_video_meta_full: plane 0, offset 0, stride 256
0:00:00.662372250 8744 0x3d233770 LOG videometa gstvideometa.c:325:gst_buffer_add_video_meta_full: plane 1, offset 65536, stride 256
0:00:00.662389750 8744 0x3d233770 DEBUG bufferpool gstbufferpool.c:250:mark_meta_pooled:<my_vdec:pool:src> marking meta 0xffffa4018678 as POOLED in buffer 0xffffa4028460
0:00:00.662406750 8744 0x3d233770 LOG bufferpool gstbufferpool.c:292:do_alloc_buffer:<my_vdec:pool:src> allocated buffer 0/22, 0xffffa4028460
0:00:00.662424750 8744 0x3d233770 DEBUG v4l2bufferpool gstv4l2bufferpool.c:1420:gst_v4l2_buffer_pool_release_buffer:<my_vdec:pool:src> release buffer 0xffffa4028460
0:00:00.662444500 8744 0x3d233770 LOG v4l2bufferpool gstv4l2bufferpool.c:1059:gst_v4l2_buffer_pool_qbuf:<my_vdec:pool:src> queuing buffer 0
0:00:00.662475625 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:1265:gst_v4l2_allocator_qbuf:<my_vdec:pool:src:allocator> queued buffer 0 (flags 0x4003)
0:00:00.662502375 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:869:gst_v4l2_allocator_alloc_dmabuf:<my_vdec:pool:src:allocator> exported DMABUF as fd 35 plane 0
0:00:00.662517500 8744 0x3d233770 DEBUG GST_MEMORY gstmemory.c:139:gst_memory_init: new memory 0xffffa4018700, maxsize:65536 offset:0 size:65536
0:00:00.662535000 8744 0x3d233770 DEBUG GST_MEMORY gstmemory.c:139:gst_memory_init: new memory 0xffff9c018820, maxsize:65536 offset:0 size:65536
0:00:00.662551000 8744 0x3d233770 DEBUG fdmemory gstfdmemory.c:294:gst_fd_allocator_alloc: 0xffff9c018820: fd: 36 size 65536
0:00:00.662574625 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:869:gst_v4l2_allocator_alloc_dmabuf:<my_vdec:pool:src:allocator> exported DMABUF as fd 37 plane 1
0:00:00.662589625 8744 0x3d233770 DEBUG GST_MEMORY gstmemory.c:139:gst_memory_init: new memory 0xffff9c0188b0, maxsize:32768 offset:0 size:32768
0:00:00.662606000 8744 0x3d233770 DEBUG GST_MEMORY gstmemory.c:139:gst_memory_init: new memory 0xffff9c018940, maxsize:32768 offset:0 size:32768
0:00:00.662621625 8744 0x3d233770 DEBUG fdmemory gstfdmemory.c:294:gst_fd_allocator_alloc: 0xffff9c018940: fd: 38 size 32768
0:00:00.662636750 8744 0x3d233770 LOG GST_BUFFER gstbuffer.c:799:gst_buffer_new: new 0xffffa4028570
0:00:00.662649250 8744 0x3d233770 LOG GST_BUFFER gstbuffer.c:414:_memory_add: buffer 0xffffa4028570, idx -1, mem 0xffff9c018820
0:00:00.662663750 8744 0x3d233770 LOG GST_BUFFER gstbuffer.c:414:_memory_add: buffer 0xffffa4028570, idx -1, mem 0xffff9c018940
0:00:00.662690000 8744 0x3d233770 DEBUG GST_BUFFER gstbuffer.c:2201:gst_buffer_add_meta: alloc metadata 0xffff9c0189d8 (GstVideoMeta) of size 112
0:00:00.662705500 8744 0x3d233770 LOG videometa gstvideometa.c:325:gst_buffer_add_video_meta_full: plane 0, offset 0, stride 256
0:00:00.662719250 8744 0x3d233770 LOG videometa gstvideometa.c:325:gst_buffer_add_video_meta_full: plane 1, offset 65536, stride 256
0:00:00.662736250 8744 0x3d233770 DEBUG bufferpool gstbufferpool.c:250:mark_meta_pooled:<my_vdec:pool:src> marking meta 0xffff9c0189d8 as POOLED in buffer 0xffffa4028570
0:00:00.662753750 8744 0x3d233770 LOG bufferpool gstbufferpool.c:292:do_alloc_buffer:<my_vdec:pool:src> allocated buffer 1/22, 0xffffa4028570
0:00:00.662770500 8744 0x3d233770 DEBUG v4l2bufferpool gstv4l2bufferpool.c:1420:gst_v4l2_buffer_pool_release_buffer:<my_vdec:pool:src> release buffer 0xffffa4028570
0:00:00.662787250 8744 0x3d233770 LOG v4l2bufferpool gstv4l2bufferpool.c:1059:gst_v4l2_buffer_pool_qbuf:<my_vdec:pool:src> queuing buffer 1
0:00:00.662811375 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:1265:gst_v4l2_allocator_qbuf:<my_vdec:pool:src:allocator> queued buffer 1 (flags 0x4003)
0:00:00.662836750 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:869:gst_v4l2_allocator_alloc_dmabuf:<my_vdec:pool:src:allocator> exported DMABUF as fd 39 plane 0
0:00:00.662851625 8744 0x3d233770 DEBUG GST_MEMORY gstmemory.c:139:gst_memory_init: new memory 0xffff9c018a60, maxsize:65536 offset:0 size:65536
0:00:00.662884000 8744 0x3d233770 DEBUG GST_MEMORY gstmemory.c:139:gst_memory_init: new memory 0xffff9c018af0, maxsize:65536 offset:0 size:65536
0:00:00.662902875 8744 0x3d233770 DEBUG fdmemory gstfdmemory.c:294:gst_fd_allocator_alloc: 0xffff9c018af0: fd: 40 size 65536
0:00:00.662927500 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:869:gst_v4l2_allocator_alloc_dmabuf:<my_vdec:pool:src:allocator> exported DMABUF as fd 41 plane 1
0:00:00.662942625 8744 0x3d233770 DEBUG GST_MEMORY gstmemory.c:139:gst_memory_init: new memory 0xffff9c018b80, maxsize:32768 offset:0 size:32768
0:00:00.662959625 8744 0x3d233770 DEBUG GST_MEMORY gstmemory.c:139:gst_memory_init: new memory 0xffff9c018c10, maxsize:32768 offset:0 size:32768
0:00:00.662975625 8744 0x3d233770 DEBUG fdmemory gstfdmemory.c:294:gst_fd_allocator_alloc: 0xffff9c018c10: fd: 42 size 32768
0:00:00.662990625 8744 0x3d233770 LOG GST_BUFFER gstbuffer.c:799:gst_buffer_new: new 0xffffa4028680
0:00:00.663003250 8744 0x3d233770 LOG GST_BUFFER gstbuffer.c:414:_memory_add: buffer 0xffffa4028680, idx -1, mem 0xffff9c018af0
0:00:00.663017750 8744 0x3d233770 LOG GST_BUFFER gstbuffer.c:414:_memory_add: buffer 0xffffa4028680, idx -1, mem 0xffff9c018c10
0:00:00.663032250 8744 0x3d233770 DEBUG GST_BUFFER gstbuffer.c:2201:gst_buffer_add_meta: alloc metadata 0xffff9c018ca8 (GstVideoMeta) of size 112
0:00:00.663046375 8744 0x3d233770 LOG videometa gstvideometa.c:325:gst_buffer_add_video_meta_full: plane 0, offset 0, stride 256
0:00:00.663059875 8744 0x3d233770 LOG videometa gstvideometa.c:325:gst_buffer_add_video_meta_full: plane 1, offset 65536, stride 256
0:00:00.663076500 8744 0x3d233770 DEBUG bufferpool gstbufferpool.c:250:mark_meta_pooled:<my_vdec:pool:src> marking meta 0xffff9c018ca8 as POOLED in buffer 0xffffa4028680
0:00:00.663093625 8744 0x3d233770 LOG bufferpool gstbufferpool.c:292:do_alloc_buffer:<my_vdec:pool:src> allocated buffer 2/22, 0xffffa4028680
0:00:00.663110250 8744 0x3d233770 DEBUG v4l2bufferpool gstv4l2bufferpool.c:1420:gst_v4l2_buffer_pool_release_buffer:<my_vdec:pool:src> release buffer 0xffffa4028680
0:00:00.663138500 8744 0x3d233770 LOG v4l2bufferpool gstv4l2bufferpool.c:1059:gst_v4l2_buffer_pool_qbuf:<my_vdec:pool:src> queuing buffer 2
0:00:00.663164375 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:1265:gst_v4l2_allocator_qbuf:<my_vdec:pool:src:allocator> queued buffer 2 (flags 0x4003)
0:00:00.663189500 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:869:gst_v4l2_allocator_alloc_dmabuf:<my_vdec:pool:src:allocator> exported DMABUF as fd 43 plane 0
0:00:00.663204375 8744 0x3d233770 DEBUG GST_MEMORY gstmemory.c:139:gst_memory_init: new memory 0xffff9c018d30, maxsize:65536 offset:0 size:65536
0:00:00.663221750 8744 0x3d233770 DEBUG GST_MEMORY gstmemory.c:139:gst_memory_init: new memory 0xffff9c018dc0, maxsize:65536 offset:0 size:65536
0:00:00.663237750 8744 0x3d233770 DEBUG fdmemory gstfdmemory.c:294:gst_fd_allocator_alloc: 0xffff9c018dc0: fd: 44 size 65536
0:00:00.663269875 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:869:gst_v4l2_allocator_alloc_dmabuf:<my_vdec:pool:src:allocator> exported DMABUF as fd 45 plane 1
0:00:00.663286500 8744 0x3d233770 DEBUG GST_MEMORY gstmemory.c:139:gst_memory_init: new memory 0xffff9c018e50, maxsize:32768 offset:0 size:32768
0:00:00.663303500 8744 0x3d233770 DEBUG GST_MEMORY gstmemory.c:139:gst_memory_init: new memory 0xffff9c018ee0, maxsize:32768 offset:0 size:32768
0:00:00.663319375 8744 0x3d233770 DEBUG fdmemory gstfdmemory.c:294:gst_fd_allocator_alloc: 0xffff9c018ee0: fd: 46 size 32768
0:00:00.663334750 8744 0x3d233770 LOG GST_BUFFER gstbuffer.c:799:gst_buffer_new: new 0xffffa4028790
0:00:00.663347250 8744 0x3d233770 LOG GST_BUFFER gstbuffer.c:414:_memory_add: buffer 0xffffa4028790, idx -1, mem 0xffff9c018dc0
0:00:00.663361750 8744 0x3d233770 LOG GST_BUFFER gstbuffer.c:414:_memory_add: buffer 0xffffa4028790, idx -1, mem 0xffff9c018ee0
0:00:00.663376375 8744 0x3d233770 DEBUG GST_BUFFER gstbuffer.c:2201:gst_buffer_add_meta: alloc metadata 0xffff9c01e038 (GstVideoMeta) of size 112
0:00:00.663390750 8744 0x3d233770 LOG videometa gstvideometa.c:325:gst_buffer_add_video_meta_full: plane 0, offset 0, stride 256
0:00:00.663404500 8744 0x3d233770 LOG videometa gstvideometa.c:325:gst_buffer_add_video_meta_full: plane 1, offset 65536, stride 256
0:00:00.663421250 8744 0x3d233770 DEBUG bufferpool gstbufferpool.c:250:mark_meta_pooled:<my_vdec:pool:src> marking meta 0xffff9c01e038 as POOLED in buffer 0xffffa4028790
0:00:00.663438000 8744 0x3d233770 LOG bufferpool gstbufferpool.c:292:do_alloc_buffer:<my_vdec:pool:src> allocated buffer 3/22, 0xffffa4028790
0:00:00.663455000 8744 0x3d233770 DEBUG v4l2bufferpool gstv4l2bufferpool.c:1420:gst_v4l2_buffer_pool_release_buffer:<my_vdec:pool:src> release buffer 0xffffa4028790
0:00:00.663471750 8744 0x3d233770 LOG v4l2bufferpool gstv4l2bufferpool.c:1059:gst_v4l2_buffer_pool_qbuf:<my_vdec:pool:src> queuing buffer 3
0:00:00.663494625 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:1265:gst_v4l2_allocator_qbuf:<my_vdec:pool:src:allocator> queued buffer 3 (flags 0x4003)
0:00:00.663519375 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:869:gst_v4l2_allocator_alloc_dmabuf:<my_vdec:pool:src:allocator> exported DMABUF as fd 47 plane 0
0:00:00.663534375 8744 0x3d233770 DEBUG GST_MEMORY gstmemory.c:139:gst_memory_init: new memory 0xffff9c01e0c0, maxsize:65536 offset:0 size:65536
0:00:00.663551250 8744 0x3d233770 DEBUG GST_MEMORY gstmemory.c:139:gst_memory_init: new memory 0xffff9c01e150, maxsize:65536 offset:0 size:65536
0:00:00.663567375 8744 0x3d233770 DEBUG fdmemory gstfdmemory.c:294:gst_fd_allocator_alloc: 0xffff9c01e150: fd: 48 size 65536
0:00:00.663591750 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:869:gst_v4l2_allocator_alloc_dmabuf:<my_vdec:pool:src:allocator> exported DMABUF as fd 49 plane 1
0:00:00.663622125 8744 0x3d233770 DEBUG GST_MEMORY gstmemory.c:139:gst_memory_init: new memory 0xffff9c01e1e0, maxsize:32768 offset:0 size:32768
0:00:00.663641250 8744 0x3d233770 DEBUG GST_MEMORY gstmemory.c:139:gst_memory_init: new memory 0xffff9c01e270, maxsize:32768 offset:0 size:32768
0:00:00.663657750 8744 0x3d233770 DEBUG fdmemory gstfdmemory.c:294:gst_fd_allocator_alloc: 0xffff9c01e270: fd: 50 size 32768
0:00:00.663672625 8744 0x3d233770 LOG GST_BUFFER gstbuffer.c:799:gst_buffer_new: new 0xffffa40288a0
0:00:00.663685125 8744 0x3d233770 LOG GST_BUFFER gstbuffer.c:414:_memory_add: buffer 0xffffa40288a0, idx -1, mem 0xffff9c01e150
0:00:00.663699500 8744 0x3d233770 LOG GST_BUFFER gstbuffer.c:414:_memory_add: buffer 0xffffa40288a0, idx -1, mem 0xffff9c01e270
0:00:00.663714000 8744 0x3d233770 DEBUG GST_BUFFER gstbuffer.c:2201:gst_buffer_add_meta: alloc metadata 0xffff9c01e308 (GstVideoMeta) of size 112
0:00:00.663728375 8744 0x3d233770 LOG videometa gstvideometa.c:325:gst_buffer_add_video_meta_full: plane 0, offset 0, stride 256
0:00:00.663742125 8744 0x3d233770 LOG videometa gstvideometa.c:325:gst_buffer_add_video_meta_full: plane 1, offset 65536, stride 256
0:00:00.663759000 8744 0x3d233770 DEBUG bufferpool gstbufferpool.c:250:mark_meta_pooled:<my_vdec:pool:src> marking meta 0xffff9c01e308 as POOLED in buffer 0xffffa40288a0
0:00:00.663775625 8744 0x3d233770 LOG bufferpool gstbufferpool.c:292:do_alloc_buffer:<my_vdec:pool:src> allocated buffer 4/22, 0xffffa40288a0
0:00:00.663792375 8744 0x3d233770 DEBUG v4l2bufferpool gstv4l2bufferpool.c:1420:gst_v4l2_buffer_pool_release_buffer:<my_vdec:pool:src> release buffer 0xffffa40288a0
0:00:00.663808875 8744 0x3d233770 LOG v4l2bufferpool gstv4l2bufferpool.c:1059:gst_v4l2_buffer_pool_qbuf:<my_vdec:pool:src> queuing buffer 4
0:00:00.663832875 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:1265:gst_v4l2_allocator_qbuf:<my_vdec:pool:src:allocator> queued buffer 4 (flags 0x4003)
0:00:00.663858250 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:869:gst_v4l2_allocator_alloc_dmabuf:<my_vdec:pool:src:allocator> exported DMABUF as fd 51 plane 0
0:00:00.663873250 8744 0x3d233770 DEBUG GST_MEMORY gstmemory.c:139:gst_memory_init: new memory 0xffff9c01e390, maxsize:65536 offset:0 size:65536
0:00:00.663890625 8744 0x3d233770 DEBUG GST_MEMORY gstmemory.c:139:gst_memory_init: new memory 0xffff9c01e420, maxsize:65536 offset:0 size:65536
0:00:00.663906625 8744 0x3d233770 DEBUG fdmemory gstfdmemory.c:294:gst_fd_allocator_alloc: 0xffff9c01e420: fd: 52 size 65536
0:00:00.663934375 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:869:gst_v4l2_allocator_alloc_dmabuf:<my_vdec:pool:src:allocator> exported DMABUF as fd 53 plane 1
0:00:00.663949500 8744 0x3d233770 DEBUG GST_MEMORY gstmemory.c:139:gst_memory_init: new memory 0xffff9c01e4b0, maxsize:32768 offset:0 size:32768
0:00:00.663966250 8744 0x3d233770 DEBUG GST_MEMORY gstmemory.c:139:gst_memory_init: new memory 0xffff9c01e540, maxsize:32768 offset:0 size:32768
0:00:00.663982250 8744 0x3d233770 DEBUG fdmemory gstfdmemory.c:294:gst_fd_allocator_alloc: 0xffff9c01e540: fd: 54 size 32768
0:00:00.663997250 8744 0x3d233770 LOG GST_BUFFER gstbuffer.c:799:gst_buffer_new: new 0xffffa40289b0
0:00:00.664009875 8744 0x3d233770 LOG GST_BUFFER gstbuffer.c:414:_memory_add: buffer 0xffffa40289b0, idx -1, mem 0xffff9c01e420
0:00:00.664024625 8744 0x3d233770 LOG GST_BUFFER gstbuffer.c:414:_memory_add: buffer 0xffffa40289b0, idx -1, mem 0xffff9c01e540
0:00:00.664039500 8744 0x3d233770 DEBUG GST_BUFFER gstbuffer.c:2201:gst_buffer_add_meta: alloc metadata 0xffff9c01e5d8 (GstVideoMeta) of size 112
0:00:00.664064500 8744 0x3d233770 LOG videometa gstvideometa.c:325:gst_buffer_add_video_meta_full: plane 0, offset 0, stride 256
0:00:00.664079125 8744 0x3d233770 LOG videometa gstvideometa.c:325:gst_buffer_add_video_meta_full: plane 1, offset 65536, stride 256
0:00:00.664095750 8744 0x3d233770 DEBUG bufferpool gstbufferpool.c:250:mark_meta_pooled:<my_vdec:pool:src> marking meta 0xffff9c01e5d8 as POOLED in buffer 0xffffa40289b0
0:00:00.664112500 8744 0x3d233770 LOG bufferpool gstbufferpool.c:292:do_alloc_buffer:<my_vdec:pool:src> allocated buffer 5/22, 0xffffa40289b0
0:00:00.664128875 8744 0x3d233770 DEBUG v4l2bufferpool gstv4l2bufferpool.c:1420:gst_v4l2_buffer_pool_release_buffer:<my_vdec:pool:src> release buffer 0xffffa40289b0
0:00:00.664145500 8744 0x3d233770 LOG v4l2bufferpool gstv4l2bufferpool.c:1059:gst_v4l2_buffer_pool_qbuf:<my_vdec:pool:src> queuing buffer 5
0:00:00.664169875 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:1265:gst_v4l2_allocator_qbuf:<my_vdec:pool:src:allocator> queued buffer 5 (flags 0x4003)
0:00:00.664195750 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:869:gst_v4l2_allocator_alloc_dmabuf:<my_vdec:pool:src:allocator> exported DMABUF as fd 55 plane 0
0:00:00.664210625 8744 0x3d233770 DEBUG GST_MEMORY gstmemory.c:139:gst_memory_init: new memory 0xffff9c01e660, maxsize:65536 offset:0 size:65536
0:00:00.664227625 8744 0x3d233770 DEBUG GST_MEMORY gstmemory.c:139:gst_memory_init: new memory 0xffff9c01e6f0, maxsize:65536 offset:0 size:65536
0:00:00.664243625 8744 0x3d233770 DEBUG fdmemory gstfdmemory.c:294:gst_fd_allocator_alloc: 0xffff9c01e6f0: fd: 56 size 65536
0:00:00.664268875 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:869:gst_v4l2_allocator_alloc_dmabuf:<my_vdec:pool:src:allocator> exported DMABUF as fd 57 plane 1
0:00:00.664283750 8744 0x3d233770 DEBUG GST_MEMORY gstmemory.c:139:gst_memory_init: new memory 0xffff9c01e840, maxsize:32768 offset:0 size:32768
0:00:00.664301375 8744 0x3d233770 DEBUG GST_MEMORY gstmemory.c:139:gst_memory_init: new memory 0xffff9c01e8d0, maxsize:32768 offset:0 size:32768
0:00:00.664317500 8744 0x3d233770 DEBUG fdmemory gstfdmemory.c:294:gst_fd_allocator_alloc: 0xffff9c01e8d0: fd: 58 size 32768
0:00:00.664361500 8744 0x3d233770 LOG GST_BUFFER gstbuffer.c:799:gst_buffer_new: new 0xffffa4028ac0
0:00:00.664376625 8744 0x3d233770 LOG GST_BUFFER gstbuffer.c:414:_memory_add: buffer 0xffffa4028ac0, idx -1, mem 0xffff9c01e6f0
0:00:00.664391500 8744 0x3d233770 LOG GST_BUFFER gstbuffer.c:414:_memory_add: buffer 0xffffa4028ac0, idx -1, mem 0xffff9c01e8d0
0:00:00.664406500 8744 0x3d233770 DEBUG GST_BUFFER gstbuffer.c:2201:gst_buffer_add_meta: alloc metadata 0xffff9c01e968 (GstVideoMeta) of size 112
0:00:00.664420750 8744 0x3d233770 LOG videometa gstvideometa.c:325:gst_buffer_add_video_meta_full: plane 0, offset 0, stride 256
0:00:00.664434625 8744 0x3d233770 LOG videometa gstvideometa.c:325:gst_buffer_add_video_meta_full: plane 1, offset 65536, stride 256
0:00:00.664451625 8744 0x3d233770 DEBUG bufferpool gstbufferpool.c:250:mark_meta_pooled:<my_vdec:pool:src> marking meta 0xffff9c01e968 as POOLED in buffer 0xffffa4028ac0
0:00:00.664468500 8744 0x3d233770 LOG bufferpool gstbufferpool.c:292:do_alloc_buffer:<my_vdec:pool:src> allocated buffer 6/22, 0xffffa4028ac0
0:00:00.664485125 8744 0x3d233770 DEBUG v4l2bufferpool gstv4l2bufferpool.c:1420:gst_v4l2_buffer_pool_release_buffer:<my_vdec:pool:src> release buffer 0xffffa4028ac0
0:00:00.664501625 8744 0x3d233770 LOG v4l2bufferpool gstv4l2bufferpool.c:1059:gst_v4l2_buffer_pool_qbuf:<my_vdec:pool:src> queuing buffer 6
0:00:00.664536500 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:1265:gst_v4l2_allocator_qbuf:<my_vdec:pool:src:allocator> queued buffer 6 (flags 0x4003)
0:00:00.664563875 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:869:gst_v4l2_allocator_alloc_dmabuf:<my_vdec:pool:src:allocator> exported DMABUF as fd 59 plane 0
0:00:00.664579000 8744 0x3d233770 DEBUG GST_MEMORY gstmemory.c:139:gst_memory_init: new memory 0xffff9c01e9f0, maxsize:65536 offset:0 size:65536
0:00:00.664596500 8744 0x3d233770 DEBUG GST_MEMORY gstmemory.c:139:gst_memory_init: new memory 0xffff9c01ea80, maxsize:65536 offset:0 size:65536
0:00:00.664612625 8744 0x3d233770 DEBUG fdmemory gstfdmemory.c:294:gst_fd_allocator_alloc: 0xffff9c01ea80: fd: 60 size 65536
0:00:00.664636500 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:869:gst_v4l2_allocator_alloc_dmabuf:<my_vdec:pool:src:allocator> exported DMABUF as fd 61 plane 1
0:00:00.664651500 8744 0x3d233770 DEBUG GST_MEMORY gstmemory.c:139:gst_memory_init: new memory 0xffff9c01eb10, maxsize:32768 offset:0 size:32768
0:00:00.664668375 8744 0x3d233770 DEBUG GST_MEMORY gstmemory.c:139:gst_memory_init: new memory 0xffff9c01eba0, maxsize:32768 offset:0 size:32768
0:00:00.664684250 8744 0x3d233770 DEBUG fdmemory gstfdmemory.c:294:gst_fd_allocator_alloc: 0xffff9c01eba0: fd: 62 size 32768
0:00:00.664699125 8744 0x3d233770 LOG GST_BUFFER gstbuffer.c:799:gst_buffer_new: new 0xffffa4028bd0
0:00:00.664711500 8744 0x3d233770 LOG GST_BUFFER gstbuffer.c:414:_memory_add: buffer 0xffffa4028bd0, idx -1, mem 0xffff9c01ea80
0:00:00.664725625 8744 0x3d233770 LOG GST_BUFFER gstbuffer.c:414:_memory_add: buffer 0xffffa4028bd0, idx -1, mem 0xffff9c01eba0
0:00:00.664740375 8744 0x3d233770 DEBUG GST_BUFFER gstbuffer.c:2201:gst_buffer_add_meta: alloc metadata 0xffff9c01ec38 (GstVideoMeta) of size 112
0:00:00.664754500 8744 0x3d233770 LOG videometa gstvideometa.c:325:gst_buffer_add_video_meta_full: plane 0, offset 0, stride 256
0:00:00.664768125 8744 0x3d233770 LOG videometa gstvideometa.c:325:gst_buffer_add_video_meta_full: plane 1, offset 65536, stride 256
0:00:00.664784500 8744 0x3d233770 DEBUG bufferpool gstbufferpool.c:250:mark_meta_pooled:<my_vdec:pool:src> marking meta 0xffff9c01ec38 as POOLED in buffer 0xffffa4028bd0
0:00:00.664801250 8744 0x3d233770 LOG bufferpool gstbufferpool.c:292:do_alloc_buffer:<my_vdec:pool:src> allocated buffer 7/22, 0xffffa4028bd0
0:00:00.664817750 8744 0x3d233770 DEBUG v4l2bufferpool gstv4l2bufferpool.c:1420:gst_v4l2_buffer_pool_release_buffer:<my_vdec:pool:src> release buffer 0xffffa4028bd0
0:00:00.664834125 8744 0x3d233770 LOG v4l2bufferpool gstv4l2bufferpool.c:1059:gst_v4l2_buffer_pool_qbuf:<my_vdec:pool:src> queuing buffer 7
0:00:00.664858250 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:1265:gst_v4l2_allocator_qbuf:<my_vdec:pool:src:allocator> queued buffer 7 (flags 0x4003)
0:00:00.664882625 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:869:gst_v4l2_allocator_alloc_dmabuf:<my_vdec:pool:src:allocator> exported DMABUF as fd 63 plane 0
0:00:00.664897375 8744 0x3d233770 DEBUG GST_MEMORY gstmemory.c:139:gst_memory_init: new memory 0xffff9c01ecc0, maxsize:65536 offset:0 size:65536
0:00:00.677102500 8744 0x3d233770 DEBUG GST_MEMORY gstmemory.c:139:gst_memory_init: new memory 0xffff9c01ed50, maxsize:65536 offset:0 size:65536
0:00:00.677174000 8744 0x3d233770 DEBUG fdmemory gstfdmemory.c:294:gst_fd_allocator_alloc: 0xffff9c01ed50: fd: 64 size 65536
0:00:00.677245750 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:869:gst_v4l2_allocator_alloc_dmabuf:<my_vdec:pool:src:allocator> exported DMABUF as fd 65 plane 1
0:00:00.677318375 8744 0x3d233770 DEBUG GST_MEMORY gstmemory.c:139:gst_memory_init: new memory 0xffff9c01ede0, maxsize:32768 offset:0 size:32768
0:00:00.677367500 8744 0x3d233770 DEBUG GST_MEMORY gstmemory.c:139:gst_memory_init: new memory 0xffff9c01ee70, maxsize:32768 offset:0 size:32768
0:00:00.677410250 8744 0x3d233770 DEBUG fdmemory gstfdmemory.c:294:gst_fd_allocator_alloc: 0xffff9c01ee70: fd: 66 size 32768
0:00:00.677450750 8744 0x3d233770 LOG GST_BUFFER gstbuffer.c:799:gst_buffer_new: new 0xffffa4028ce0
0:00:00.677485750 8744 0x3d233770 LOG GST_BUFFER gstbuffer.c:414:_memory_add: buffer 0xffffa4028ce0, idx -1, mem 0xffff9c01ed50
0:00:00.677524125 8744 0x3d233770 LOG GST_BUFFER gstbuffer.c:414:_memory_add: buffer 0xffffa4028ce0, idx -1, mem 0xffff9c01ee70
0:00:00.677574500 8744 0x3d233770 DEBUG GST_BUFFER gstbuffer.c:2201:gst_buffer_add_meta: alloc metadata 0xffff9c01ef08 (GstVideoMeta) of size 112
0:00:00.677616250 8744 0x3d233770 LOG videometa gstvideometa.c:325:gst_buffer_add_video_meta_full: plane 0, offset 0, stride 256
0:00:00.677653250 8744 0x3d233770 LOG videometa gstvideometa.c:325:gst_buffer_add_video_meta_full: plane 1, offset 65536, stride 256
0:00:00.677698625 8744 0x3d233770 DEBUG bufferpool gstbufferpool.c:250:mark_meta_pooled:<my_vdec:pool:src> marking meta 0xffff9c01ef08 as POOLED in buffer 0xffffa4028ce0
0:00:00.677743375 8744 0x3d233770 LOG bufferpool gstbufferpool.c:292:do_alloc_buffer:<my_vdec:pool:src> allocated buffer 8/22, 0xffffa4028ce0
0:00:00.677787875 8744 0x3d233770 DEBUG v4l2bufferpool gstv4l2bufferpool.c:1420:gst_v4l2_buffer_pool_release_buffer:<my_vdec:pool:src> release buffer 0xffffa4028ce0
0:00:00.677833250 8744 0x3d233770 LOG v4l2bufferpool gstv4l2bufferpool.c:1059:gst_v4l2_buffer_pool_qbuf:<my_vdec:pool:src> queuing buffer 8
0:00:00.677898125 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:1265:gst_v4l2_allocator_qbuf:<my_vdec:pool:src:allocator> queued buffer 8 (flags 0x4003)
0:00:00.677965250 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:869:gst_v4l2_allocator_alloc_dmabuf:<my_vdec:pool:src:allocator> exported DMABUF as fd 67 plane 0
0:00:00.678005500 8744 0x3d233770 DEBUG GST_MEMORY gstmemory.c:139:gst_memory_init: new memory 0xffff9c020060, maxsize:65536 offset:0 size:65536
0:00:00.678051625 8744 0x3d233770 DEBUG GST_MEMORY gstmemory.c:139:gst_memory_init: new memory 0xffff9c0200f0, maxsize:65536 offset:0 size:65536
0:00:00.678094500 8744 0x3d233770 DEBUG fdmemory gstfdmemory.c:294:gst_fd_allocator_alloc: 0xffff9c0200f0: fd: 68 size 65536
0:00:00.678158625 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:869:gst_v4l2_allocator_alloc_dmabuf:<my_vdec:pool:src:allocator> exported DMABUF as fd 69 plane 1
0:00:00.678200750 8744 0x3d233770 DEBUG GST_MEMORY gstmemory.c:139:gst_memory_init: new memory 0xffff9c020180, maxsize:32768 offset:0 size:32768
0:00:00.678246250 8744 0x3d233770 DEBUG GST_MEMORY gstmemory.c:139:gst_memory_init: new memory 0xffff9c020210, maxsize:32768 offset:0 size:32768
0:00:00.678289125 8744 0x3d233770 DEBUG fdmemory gstfdmemory.c:294:gst_fd_allocator_alloc: 0xffff9c020210: fd: 70 size 32768
0:00:00.678328500 8744 0x3d233770 LOG GST_BUFFER gstbuffer.c:799:gst_buffer_new: new 0xffffa4028df0
0:00:00.678361750 8744 0x3d233770 LOG GST_BUFFER gstbuffer.c:414:_memory_add: buffer 0xffffa4028df0, idx -1, mem 0xffff9c0200f0
0:00:00.678399375 8744 0x3d233770 LOG GST_BUFFER gstbuffer.c:414:_memory_add: buffer 0xffffa4028df0, idx -1, mem 0xffff9c020210
0:00:00.678437875 8744 0x3d233770 DEBUG GST_BUFFER gstbuffer.c:2201:gst_buffer_add_meta: alloc metadata 0xffff9c0202a8 (GstVideoMeta) of size 112
0:00:00.678503625 8744 0x3d233770 LOG videometa gstvideometa.c:325:gst_buffer_add_video_meta_full: plane 0, offset 0, stride 256
0:00:00.678543500 8744 0x3d233770 LOG videometa gstvideometa.c:325:gst_buffer_add_video_meta_full: plane 1, offset 65536, stride 256
0:00:00.678589250 8744 0x3d233770 DEBUG bufferpool gstbufferpool.c:250:mark_meta_pooled:<my_vdec:pool:src> marking meta 0xffff9c0202a8 as POOLED in buffer 0xffffa4028df0
0:00:00.678634375 8744 0x3d233770 LOG bufferpool gstbufferpool.c:292:do_alloc_buffer:<my_vdec:pool:src> allocated buffer 9/22, 0xffffa4028df0
0:00:00.678678375 8744 0x3d233770 DEBUG v4l2bufferpool gstv4l2bufferpool.c:1420:gst_v4l2_buffer_pool_release_buffer:<my_vdec:pool:src> release buffer 0xffffa4028df0
0:00:00.678723125 8744 0x3d233770 LOG v4l2bufferpool gstv4l2bufferpool.c:1059:gst_v4l2_buffer_pool_qbuf:<my_vdec:pool:src> queuing buffer 9
0:00:00.678783750 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:1265:gst_v4l2_allocator_qbuf:<my_vdec:pool:src:allocator> queued buffer 9 (flags 0x4003)
0:00:00.678849375 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:869:gst_v4l2_allocator_alloc_dmabuf:<my_vdec:pool:src:allocator> exported DMABUF as fd 71 plane 0
0:00:00.678889750 8744 0x3d233770 DEBUG GST_MEMORY gstmemory.c:139:gst_memory_init: new memory 0xffff9c020330, maxsize:65536 offset:0 size:65536
0:00:00.678935125 8744 0x3d233770 DEBUG GST_MEMORY gstmemory.c:139:gst_memory_init: new memory 0xffff9c0203c0, maxsize:65536 offset:0 size:65536
0:00:00.678978500 8744 0x3d233770 DEBUG fdmemory gstfdmemory.c:294:gst_fd_allocator_alloc: 0xffff9c0203c0: fd: 72 size 65536
0:00:00.679043000 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:869:gst_v4l2_allocator_alloc_dmabuf:<my_vdec:pool:src:allocator> exported DMABUF as fd 73 plane 1
0:00:00.679083250 8744 0x3d233770 DEBUG GST_MEMORY gstmemory.c:139:gst_memory_init: new memory 0xffff9c020450, maxsize:32768 offset:0 size:32768
0:00:00.679127000 8744 0x3d233770 DEBUG GST_MEMORY gstmemory.c:139:gst_memory_init: new memory 0xffff9c0204e0, maxsize:32768 offset:0 size:32768
0:00:00.679169000 8744 0x3d233770 DEBUG fdmemory gstfdmemory.c:294:gst_fd_allocator_alloc: 0xffff9c0204e0: fd: 74 size 32768
0:00:00.679208375 8744 0x3d233770 LOG GST_BUFFER gstbuffer.c:799:gst_buffer_new: new 0xffff9c01f020
0:00:00.679241625 8744 0x3d233770 LOG GST_BUFFER gstbuffer.c:414:_memory_add: buffer 0xffff9c01f020, idx -1, mem 0xffff9c0203c0
0:00:00.679279625 8744 0x3d233770 LOG GST_BUFFER gstbuffer.c:414:_memory_add: buffer 0xffff9c01f020, idx -1, mem 0xffff9c0204e0
0:00:00.679318250 8744 0x3d233770 DEBUG GST_BUFFER gstbuffer.c:2201:gst_buffer_add_meta: alloc metadata 0xffff9c020578 (GstVideoMeta) of size 112
0:00:00.679356125 8744 0x3d233770 LOG videometa gstvideometa.c:325:gst_buffer_add_video_meta_full: plane 0, offset 0, stride 256
0:00:00.679392000 8744 0x3d233770 LOG videometa gstvideometa.c:325:gst_buffer_add_video_meta_full: plane 1, offset 65536, stride 256
0:00:00.679435750 8744 0x3d233770 DEBUG bufferpool gstbufferpool.c:250:mark_meta_pooled:<my_vdec:pool:src> marking meta 0xffff9c020578 as POOLED in buffer 0xffff9c01f020
0:00:00.679480500 8744 0x3d233770 LOG bufferpool gstbufferpool.c:292:do_alloc_buffer:<my_vdec:pool:src> allocated buffer 10/22, 0xffff9c01f020
0:00:00.679524750 8744 0x3d233770 DEBUG v4l2bufferpool gstv4l2bufferpool.c:1420:gst_v4l2_buffer_pool_release_buffer:<my_vdec:pool:src> release buffer 0xffff9c01f020
0:00:00.679569000 8744 0x3d233770 LOG v4l2bufferpool gstv4l2bufferpool.c:1059:gst_v4l2_buffer_pool_qbuf:<my_vdec:pool:src> queuing buffer 10
0:00:00.679628125 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:1265:gst_v4l2_allocator_qbuf:<my_vdec:pool:src:allocator> queued buffer 10 (flags 0x4003)
0:00:00.679732625 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:869:gst_v4l2_allocator_alloc_dmabuf:<my_vdec:pool:src:allocator> exported DMABUF as fd 75 plane 0
0:00:00.679783000 8744 0x3d233770 DEBUG GST_MEMORY gstmemory.c:139:gst_memory_init: new memory 0xffff9c020600, maxsize:65536 offset:0 size:65536
0:00:00.679830625 8744 0x3d233770 DEBUG GST_MEMORY gstmemory.c:139:gst_memory_init: new memory 0xffff9c020690, maxsize:65536 offset:0 size:65536
0:00:00.679874000 8744 0x3d233770 DEBUG fdmemory gstfdmemory.c:294:gst_fd_allocator_alloc: 0xffff9c020690: fd: 76 size 65536
0:00:00.679937125 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:869:gst_v4l2_allocator_alloc_dmabuf:<my_vdec:pool:src:allocator> exported DMABUF as fd 77 plane 1
0:00:00.679977500 8744 0x3d233770 DEBUG GST_MEMORY gstmemory.c:139:gst_memory_init: new memory 0xffff9c020720, maxsize:32768 offset:0 size:32768
0:00:00.680021875 8744 0x3d233770 DEBUG GST_MEMORY gstmemory.c:139:gst_memory_init: new memory 0xffff9c020870, maxsize:32768 offset:0 size:32768
0:00:00.680063375 8744 0x3d233770 DEBUG fdmemory gstfdmemory.c:294:gst_fd_allocator_alloc: 0xffff9c020870: fd: 78 size 32768
0:00:00.680104125 8744 0x3d233770 LOG GST_BUFFER gstbuffer.c:799:gst_buffer_new: new 0xffff9c01f130
0:00:00.680137500 8744 0x3d233770 LOG GST_BUFFER gstbuffer.c:414:_memory_add: buffer 0xffff9c01f130, idx -1, mem 0xffff9c020690
0:00:00.680175375 8744 0x3d233770 LOG GST_BUFFER gstbuffer.c:414:_memory_add: buffer 0xffff9c01f130, idx -1, mem 0xffff9c020870
0:00:00.680213875 8744 0x3d233770 DEBUG GST_BUFFER gstbuffer.c:2201:gst_buffer_add_meta: alloc metadata 0xffff9c020908 (GstVideoMeta) of size 112
0:00:00.680251875 8744 0x3d233770 LOG videometa gstvideometa.c:325:gst_buffer_add_video_meta_full: plane 0, offset 0, stride 256
0:00:00.680288250 8744 0x3d233770 LOG videometa gstvideometa.c:325:gst_buffer_add_video_meta_full: plane 1, offset 65536, stride 256
0:00:00.680333000 8744 0x3d233770 DEBUG bufferpool gstbufferpool.c:250:mark_meta_pooled:<my_vdec:pool:src> marking meta 0xffff9c020908 as POOLED in buffer 0xffff9c01f130
0:00:00.680377250 8744 0x3d233770 LOG bufferpool gstbufferpool.c:292:do_alloc_buffer:<my_vdec:pool:src> allocated buffer 11/22, 0xffff9c01f130
0:00:00.680422125 8744 0x3d233770 DEBUG v4l2bufferpool gstv4l2bufferpool.c:1420:gst_v4l2_buffer_pool_release_buffer:<my_vdec:pool:src> release buffer 0xffff9c01f130
0:00:00.680466000 8744 0x3d233770 LOG v4l2bufferpool gstv4l2bufferpool.c:1059:gst_v4l2_buffer_pool_qbuf:<my_vdec:pool:src> queuing buffer 11
0:00:00.680527125 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:1265:gst_v4l2_allocator_qbuf:<my_vdec:pool:src:allocator> queued buffer 11 (flags 0x4003)
0:00:00.680591000 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:869:gst_v4l2_allocator_alloc_dmabuf:<my_vdec:pool:src:allocator> exported DMABUF as fd 79 plane 0
0:00:00.680630000 8744 0x3d233770 DEBUG GST_MEMORY gstmemory.c:139:gst_memory_init: new memory 0xffff9c020990, maxsize:65536 offset:0 size:65536
0:00:00.680675250 8744 0x3d233770 DEBUG GST_MEMORY gstmemory.c:139:gst_memory_init: new memory 0xffff9c020a20, maxsize:65536 offset:0 size:65536
0:00:00.680717375 8744 0x3d233770 DEBUG fdmemory gstfdmemory.c:294:gst_fd_allocator_alloc: 0xffff9c020a20: fd: 80 size 65536
0:00:00.680779250 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:869:gst_v4l2_allocator_alloc_dmabuf:<my_vdec:pool:src:allocator> exported DMABUF as fd 81 plane 1
0:00:00.680820000 8744 0x3d233770 DEBUG GST_MEMORY gstmemory.c:139:gst_memory_init: new memory 0xffff9c020ab0, maxsize:32768 offset:0 size:32768
0:00:00.680894875 8744 0x3d233770 DEBUG GST_MEMORY gstmemory.c:139:gst_memory_init: new memory 0xffff9c020b40, maxsize:32768 offset:0 size:32768
0:00:00.680939625 8744 0x3d233770 DEBUG fdmemory gstfdmemory.c:294:gst_fd_allocator_alloc: 0xffff9c020b40: fd: 82 size 32768
0:00:00.680981125 8744 0x3d233770 LOG GST_BUFFER gstbuffer.c:799:gst_buffer_new: new 0xffff9c01f240
0:00:00.681015375 8744 0x3d233770 LOG GST_BUFFER gstbuffer.c:414:_memory_add: buffer 0xffff9c01f240, idx -1, mem 0xffff9c020a20
0:00:00.681093500 8744 0x3d233770 LOG GST_BUFFER gstbuffer.c:414:_memory_add: buffer 0xffff9c01f240, idx -1, mem 0xffff9c020b40
0:00:00.681142875 8744 0x3d233770 DEBUG GST_BUFFER gstbuffer.c:2201:gst_buffer_add_meta: alloc metadata 0xffff9c020bd8 (GstVideoMeta) of size 112
0:00:00.681180750 8744 0x3d233770 LOG videometa gstvideometa.c:325:gst_buffer_add_video_meta_full: plane 0, offset 0, stride 256
0:00:00.681216750 8744 0x3d233770 LOG videometa gstvideometa.c:325:gst_buffer_add_video_meta_full: plane 1, offset 65536, stride 256
0:00:00.681261500 8744 0x3d233770 DEBUG bufferpool gstbufferpool.c:250:mark_meta_pooled:<my_vdec:pool:src> marking meta 0xffff9c020bd8 as POOLED in buffer 0xffff9c01f240
0:00:00.681305000 8744 0x3d233770 LOG bufferpool gstbufferpool.c:292:do_alloc_buffer:<my_vdec:pool:src> allocated buffer 12/22, 0xffff9c01f240
0:00:00.681348750 8744 0x3d233770 DEBUG v4l2bufferpool gstv4l2bufferpool.c:1420:gst_v4l2_buffer_pool_release_buffer:<my_vdec:pool:src> release buffer 0xffff9c01f240
0:00:00.681392750 8744 0x3d233770 LOG v4l2bufferpool gstv4l2bufferpool.c:1059:gst_v4l2_buffer_pool_qbuf:<my_vdec:pool:src> queuing buffer 12
0:00:00.681454500 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:1265:gst_v4l2_allocator_qbuf:<my_vdec:pool:src:allocator> queued buffer 12 (flags 0x4003)
0:00:00.681521750 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:869:gst_v4l2_allocator_alloc_dmabuf:<my_vdec:pool:src:allocator> exported DMABUF as fd 83 plane 0
0:00:00.681561625 8744 0x3d233770 DEBUG GST_MEMORY gstmemory.c:139:gst_memory_init: new memory 0xffff9c020c60, maxsize:65536 offset:0 size:65536
0:00:00.681641625 8744 0x3d233770 DEBUG GST_MEMORY gstmemory.c:139:gst_memory_init: new memory 0xffff9c020cf0, maxsize:65536 offset:0 size:65536
0:00:00.681691625 8744 0x3d233770 DEBUG fdmemory gstfdmemory.c:294:gst_fd_allocator_alloc: 0xffff9c020cf0: fd: 84 size 65536
0:00:00.681756125 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:869:gst_v4l2_allocator_alloc_dmabuf:<my_vdec:pool:src:allocator> exported DMABUF as fd 85 plane 1
0:00:00.681797000 8744 0x3d233770 DEBUG GST_MEMORY gstmemory.c:139:gst_memory_init: new memory 0xffff9c020d80, maxsize:32768 offset:0 size:32768
0:00:00.681841500 8744 0x3d233770 DEBUG GST_MEMORY gstmemory.c:139:gst_memory_init: new memory 0xffff9c020e10, maxsize:32768 offset:0 size:32768
0:00:00.681884000 8744 0x3d233770 DEBUG fdmemory gstfdmemory.c:294:gst_fd_allocator_alloc: 0xffff9c020e10: fd: 86 size 32768
0:00:00.681924000 8744 0x3d233770 LOG GST_BUFFER gstbuffer.c:799:gst_buffer_new: new 0xffff9c01f350
0:00:00.681957250 8744 0x3d233770 LOG GST_BUFFER gstbuffer.c:414:_memory_add: buffer 0xffff9c01f350, idx -1, mem 0xffff9c020cf0
0:00:00.681996375 8744 0x3d233770 LOG GST_BUFFER gstbuffer.c:414:_memory_add: buffer 0xffff9c01f350, idx -1, mem 0xffff9c020e10
0:00:00.682035000 8744 0x3d233770 DEBUG GST_BUFFER gstbuffer.c:2201:gst_buffer_add_meta: alloc metadata 0xffff9c020ea8 (GstVideoMeta) of size 112
0:00:00.682072500 8744 0x3d233770 LOG videometa gstvideometa.c:325:gst_buffer_add_video_meta_full: plane 0, offset 0, stride 256
0:00:00.682151625 8744 0x3d233770 LOG videometa gstvideometa.c:325:gst_buffer_add_video_meta_full: plane 1, offset 65536, stride 256
0:00:00.682200250 8744 0x3d233770 DEBUG bufferpool gstbufferpool.c:250:mark_meta_pooled:<my_vdec:pool:src> marking meta 0xffff9c020ea8 as POOLED in buffer 0xffff9c01f350
0:00:00.682244875 8744 0x3d233770 LOG bufferpool gstbufferpool.c:292:do_alloc_buffer:<my_vdec:pool:src> allocated buffer 13/22, 0xffff9c01f350
0:00:00.682289125 8744 0x3d233770 DEBUG v4l2bufferpool gstv4l2bufferpool.c:1420:gst_v4l2_buffer_pool_release_buffer:<my_vdec:pool:src> release buffer 0xffff9c01f350
0:00:00.682333000 8744 0x3d233770 LOG v4l2bufferpool gstv4l2bufferpool.c:1059:gst_v4l2_buffer_pool_qbuf:<my_vdec:pool:src> queuing buffer 13
0:00:00.682392375 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:1265:gst_v4l2_allocator_qbuf:<my_vdec:pool:src:allocator> queued buffer 13 (flags 0x4003)
0:00:00.682458375 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:869:gst_v4l2_allocator_alloc_dmabuf:<my_vdec:pool:src:allocator> exported DMABUF as fd 87 plane 0
0:00:00.682498500 8744 0x3d233770 DEBUG GST_MEMORY gstmemory.c:139:gst_memory_init: new memory 0xffff9c020f30, maxsize:65536 offset:0 size:65536
0:00:00.682543625 8744 0x3d233770 DEBUG GST_MEMORY gstmemory.c:139:gst_memory_init: new memory 0xffff9c021000, maxsize:65536 offset:0 size:65536
0:00:00.682584875 8744 0x3d233770 DEBUG fdmemory gstfdmemory.c:294:gst_fd_allocator_alloc: 0xffff9c021000: fd: 88 size 65536
0:00:00.682649125 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:869:gst_v4l2_allocator_alloc_dmabuf:<my_vdec:pool:src:allocator> exported DMABUF as fd 89 plane 1
0:00:00.682689125 8744 0x3d233770 DEBUG GST_MEMORY gstmemory.c:139:gst_memory_init: new memory 0xffff9c021090, maxsize:32768 offset:0 size:32768
0:00:00.682732625 8744 0x3d233770 DEBUG GST_MEMORY gstmemory.c:139:gst_memory_init: new memory 0xffff9c021120, maxsize:32768 offset:0 size:32768
0:00:00.682773500 8744 0x3d233770 DEBUG fdmemory gstfdmemory.c:294:gst_fd_allocator_alloc: 0xffff9c021120: fd: 90 size 32768
0:00:00.682813375 8744 0x3d233770 LOG GST_BUFFER gstbuffer.c:799:gst_buffer_new: new 0xffff9c01f460
0:00:00.682846500 8744 0x3d233770 LOG GST_BUFFER gstbuffer.c:414:_memory_add: buffer 0xffff9c01f460, idx -1, mem 0xffff9c021000
0:00:00.682884875 8744 0x3d233770 LOG GST_BUFFER gstbuffer.c:414:_memory_add: buffer 0xffff9c01f460, idx -1, mem 0xffff9c021120
0:00:00.682924000 8744 0x3d233770 DEBUG GST_BUFFER gstbuffer.c:2201:gst_buffer_add_meta: alloc metadata 0xffff9c0211b8 (GstVideoMeta) of size 112
0:00:00.682961875 8744 0x3d233770 LOG videometa gstvideometa.c:325:gst_buffer_add_video_meta_full: plane 0, offset 0, stride 256
0:00:00.682997625 8744 0x3d233770 LOG videometa gstvideometa.c:325:gst_buffer_add_video_meta_full: plane 1, offset 65536, stride 256
0:00:00.683041375 8744 0x3d233770 DEBUG bufferpool gstbufferpool.c:250:mark_meta_pooled:<my_vdec:pool:src> marking meta 0xffff9c0211b8 as POOLED in buffer 0xffff9c01f460
0:00:00.683085875 8744 0x3d233770 LOG bufferpool gstbufferpool.c:292:do_alloc_buffer:<my_vdec:pool:src> allocated buffer 14/22, 0xffff9c01f460
0:00:00.683129625 8744 0x3d233770 DEBUG v4l2bufferpool gstv4l2bufferpool.c:1420:gst_v4l2_buffer_pool_release_buffer:<my_vdec:pool:src> release buffer 0xffff9c01f460
0:00:00.683173125 8744 0x3d233770 LOG v4l2bufferpool gstv4l2bufferpool.c:1059:gst_v4l2_buffer_pool_qbuf:<my_vdec:pool:src> queuing buffer 14
0:00:00.683232500 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:1265:gst_v4l2_allocator_qbuf:<my_vdec:pool:src:allocator> queued buffer 14 (flags 0x4003)
0:00:00.683325250 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:869:gst_v4l2_allocator_alloc_dmabuf:<my_vdec:pool:src:allocator> exported DMABUF as fd 91 plane 0
0:00:00.683365625 8744 0x3d233770 DEBUG GST_MEMORY gstmemory.c:139:gst_memory_init: new memory 0xffff9c021240, maxsize:65536 offset:0 size:65536
0:00:00.683410375 8744 0x3d233770 DEBUG GST_MEMORY gstmemory.c:139:gst_memory_init: new memory 0xffff9c0212d0, maxsize:65536 offset:0 size:65536
0:00:00.683451500 8744 0x3d233770 DEBUG fdmemory gstfdmemory.c:294:gst_fd_allocator_alloc: 0xffff9c0212d0: fd: 92 size 65536
0:00:00.683512750 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:869:gst_v4l2_allocator_alloc_dmabuf:<my_vdec:pool:src:allocator> exported DMABUF as fd 93 plane 1
0:00:00.683562250 8744 0x3d233770 DEBUG GST_MEMORY gstmemory.c:139:gst_memory_init: new memory 0xffff9c021360, maxsize:32768 offset:0 size:32768
0:00:00.683610250 8744 0x3d233770 DEBUG GST_MEMORY gstmemory.c:139:gst_memory_init: new memory 0xffff9c0213f0, maxsize:32768 offset:0 size:32768
0:00:00.683653125 8744 0x3d233770 DEBUG fdmemory gstfdmemory.c:294:gst_fd_allocator_alloc: 0xffff9c0213f0: fd: 94 size 32768
0:00:00.683694250 8744 0x3d233770 LOG GST_BUFFER gstbuffer.c:799:gst_buffer_new: new 0xffff9c01f570
0:00:00.683727625 8744 0x3d233770 LOG GST_BUFFER gstbuffer.c:414:_memory_add: buffer 0xffff9c01f570, idx -1, mem 0xffff9c0212d0
0:00:00.683765625 8744 0x3d233770 LOG GST_BUFFER gstbuffer.c:414:_memory_add: buffer 0xffff9c01f570, idx -1, mem 0xffff9c0213f0
0:00:00.683804125 8744 0x3d233770 DEBUG GST_BUFFER gstbuffer.c:2201:gst_buffer_add_meta: alloc metadata 0xffff9c021488 (GstVideoMeta) of size 112
0:00:00.683842250 8744 0x3d233770 LOG videometa gstvideometa.c:325:gst_buffer_add_video_meta_full: plane 0, offset 0, stride 256
0:00:00.683878875 8744 0x3d233770 LOG videometa gstvideometa.c:325:gst_buffer_add_video_meta_full: plane 1, offset 65536, stride 256
0:00:00.683923500 8744 0x3d233770 DEBUG bufferpool gstbufferpool.c:250:mark_meta_pooled:<my_vdec:pool:src> marking meta 0xffff9c021488 as POOLED in buffer 0xffff9c01f570
0:00:00.683967625 8744 0x3d233770 LOG bufferpool gstbufferpool.c:292:do_alloc_buffer:<my_vdec:pool:src> allocated buffer 15/22, 0xffff9c01f570
0:00:00.684011875 8744 0x3d233770 DEBUG v4l2bufferpool gstv4l2bufferpool.c:1420:gst_v4l2_buffer_pool_release_buffer:<my_vdec:pool:src> release buffer 0xffff9c01f570
0:00:00.684055625 8744 0x3d233770 LOG v4l2bufferpool gstv4l2bufferpool.c:1059:gst_v4l2_buffer_pool_qbuf:<my_vdec:pool:src> queuing buffer 15
0:00:00.684114625 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:1265:gst_v4l2_allocator_qbuf:<my_vdec:pool:src:allocator> queued buffer 15 (flags 0x4003)
0:00:00.684177875 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:869:gst_v4l2_allocator_alloc_dmabuf:<my_vdec:pool:src:allocator> exported DMABUF as fd 95 plane 0
0:00:00.684217625 8744 0x3d233770 DEBUG GST_MEMORY gstmemory.c:139:gst_memory_init: new memory 0xffff9c021510, maxsize:65536 offset:0 size:65536
0:00:00.684262500 8744 0x3d233770 DEBUG GST_MEMORY gstmemory.c:139:gst_memory_init: new memory 0xffff9c0215a0, maxsize:65536 offset:0 size:65536
0:00:00.684304125 8744 0x3d233770 DEBUG fdmemory gstfdmemory.c:294:gst_fd_allocator_alloc: 0xffff9c0215a0: fd: 96 size 65536
0:00:00.684365000 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:869:gst_v4l2_allocator_alloc_dmabuf:<my_vdec:pool:src:allocator> exported DMABUF as fd 97 plane 1
0:00:00.684404000 8744 0x3d233770 DEBUG GST_MEMORY gstmemory.c:139:gst_memory_init: new memory 0xffff9c021630, maxsize:32768 offset:0 size:32768
0:00:00.684448375 8744 0x3d233770 DEBUG GST_MEMORY gstmemory.c:139:gst_memory_init: new memory 0xffff9c0216c0, maxsize:32768 offset:0 size:32768
0:00:00.684517500 8744 0x3d233770 DEBUG fdmemory gstfdmemory.c:294:gst_fd_allocator_alloc: 0xffff9c0216c0: fd: 98 size 32768
0:00:00.684560375 8744 0x3d233770 LOG GST_BUFFER gstbuffer.c:799:gst_buffer_new: new 0xffff9c01f680
0:00:00.684593875 8744 0x3d233770 LOG GST_BUFFER gstbuffer.c:414:_memory_add: buffer 0xffff9c01f680, idx -1, mem 0xffff9c0215a0
0:00:00.684631125 8744 0x3d233770 LOG GST_BUFFER gstbuffer.c:414:_memory_add: buffer 0xffff9c01f680, idx -1, mem 0xffff9c0216c0
0:00:00.684669125 8744 0x3d233770 DEBUG GST_BUFFER gstbuffer.c:2201:gst_buffer_add_meta: alloc metadata 0xffff9c022018 (GstVideoMeta) of size 112
0:00:00.684706750 8744 0x3d233770 LOG videometa gstvideometa.c:325:gst_buffer_add_video_meta_full: plane 0, offset 0, stride 256
0:00:00.684742500 8744 0x3d233770 LOG videometa gstvideometa.c:325:gst_buffer_add_video_meta_full: plane 1, offset 65536, stride 256
0:00:00.684786500 8744 0x3d233770 DEBUG bufferpool gstbufferpool.c:250:mark_meta_pooled:<my_vdec:pool:src> marking meta 0xffff9c022018 as POOLED in buffer 0xffff9c01f680
0:00:00.684829500 8744 0x3d233770 LOG bufferpool gstbufferpool.c:292:do_alloc_buffer:<my_vdec:pool:src> allocated buffer 16/22, 0xffff9c01f680
0:00:00.684873125 8744 0x3d233770 DEBUG v4l2bufferpool gstv4l2bufferpool.c:1420:gst_v4l2_buffer_pool_release_buffer:<my_vdec:pool:src> release buffer 0xffff9c01f680
0:00:00.684917125 8744 0x3d233770 LOG v4l2bufferpool gstv4l2bufferpool.c:1059:gst_v4l2_buffer_pool_qbuf:<my_vdec:pool:src> queuing buffer 16
0:00:00.684976500 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:1265:gst_v4l2_allocator_qbuf:<my_vdec:pool:src:allocator> queued buffer 16 (flags 0x4003)
0:00:00.685075625 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:869:gst_v4l2_allocator_alloc_dmabuf:<my_vdec:pool:src:allocator> exported DMABUF as fd 99 plane 0
0:00:00.685125125 8744 0x3d233770 DEBUG GST_MEMORY gstmemory.c:139:gst_memory_init: new memory 0xffff9c0220a0, maxsize:65536 offset:0 size:65536
0:00:00.685170500 8744 0x3d233770 DEBUG GST_MEMORY gstmemory.c:139:gst_memory_init: new memory 0xffff9c022130, maxsize:65536 offset:0 size:65536
0:00:00.685212375 8744 0x3d233770 DEBUG fdmemory gstfdmemory.c:294:gst_fd_allocator_alloc: 0xffff9c022130: fd: 100 size 65536
0:00:00.685274250 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:869:gst_v4l2_allocator_alloc_dmabuf:<my_vdec:pool:src:allocator> exported DMABUF as fd 101 plane 1
0:00:00.685313625 8744 0x3d233770 DEBUG GST_MEMORY gstmemory.c:139:gst_memory_init: new memory 0xffff9c0221c0, maxsize:32768 offset:0 size:32768
0:00:00.685386500 8744 0x3d233770 DEBUG GST_MEMORY gstmemory.c:139:gst_memory_init: new memory 0xffff9c022250, maxsize:32768 offset:0 size:32768
0:00:00.685434625 8744 0x3d233770 DEBUG fdmemory gstfdmemory.c:294:gst_fd_allocator_alloc: 0xffff9c022250: fd: 102 size 32768
0:00:00.685475125 8744 0x3d233770 LOG GST_BUFFER gstbuffer.c:799:gst_buffer_new: new 0xffff9c01f790
0:00:00.685508500 8744 0x3d233770 LOG GST_BUFFER gstbuffer.c:414:_memory_add: buffer 0xffff9c01f790, idx -1, mem 0xffff9c022130
0:00:00.685546875 8744 0x3d233770 LOG GST_BUFFER gstbuffer.c:414:_memory_add: buffer 0xffff9c01f790, idx -1, mem 0xffff9c022250
0:00:00.685585625 8744 0x3d233770 DEBUG GST_BUFFER gstbuffer.c:2201:gst_buffer_add_meta: alloc metadata 0xffff9c0222e8 (GstVideoMeta) of size 112
0:00:00.685623375 8744 0x3d233770 LOG videometa gstvideometa.c:325:gst_buffer_add_video_meta_full: plane 0, offset 0, stride 256
0:00:00.685659000 8744 0x3d233770 LOG videometa gstvideometa.c:325:gst_buffer_add_video_meta_full: plane 1, offset 65536, stride 256
0:00:00.685731250 8744 0x3d233770 DEBUG bufferpool gstbufferpool.c:250:mark_meta_pooled:<my_vdec:pool:src> marking meta 0xffff9c0222e8 as POOLED in buffer 0xffff9c01f790
0:00:00.685777500 8744 0x3d233770 LOG bufferpool gstbufferpool.c:292:do_alloc_buffer:<my_vdec:pool:src> allocated buffer 17/22, 0xffff9c01f790
0:00:00.685821500 8744 0x3d233770 DEBUG v4l2bufferpool gstv4l2bufferpool.c:1420:gst_v4l2_buffer_pool_release_buffer:<my_vdec:pool:src> release buffer 0xffff9c01f790
0:00:00.685865625 8744 0x3d233770 LOG v4l2bufferpool gstv4l2bufferpool.c:1059:gst_v4l2_buffer_pool_qbuf:<my_vdec:pool:src> queuing buffer 17
0:00:00.685925125 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:1265:gst_v4l2_allocator_qbuf:<my_vdec:pool:src:allocator> queued buffer 17 (flags 0x4003)
0:00:00.685990625 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:869:gst_v4l2_allocator_alloc_dmabuf:<my_vdec:pool:src:allocator> exported DMABUF as fd 103 plane 0
0:00:00.686029875 8744 0x3d233770 DEBUG GST_MEMORY gstmemory.c:139:gst_memory_init: new memory 0xffff9c022370, maxsize:65536 offset:0 size:65536
0:00:00.686074750 8744 0x3d233770 DEBUG GST_MEMORY gstmemory.c:139:gst_memory_init: new memory 0xffff9c022400, maxsize:65536 offset:0 size:65536
0:00:00.686116000 8744 0x3d233770 DEBUG fdmemory gstfdmemory.c:294:gst_fd_allocator_alloc: 0xffff9c022400: fd: 104 size 65536
0:00:00.686178000 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:869:gst_v4l2_allocator_alloc_dmabuf:<my_vdec:pool:src:allocator> exported DMABUF as fd 105 plane 1
0:00:00.686217125 8744 0x3d233770 DEBUG GST_MEMORY gstmemory.c:139:gst_memory_init: new memory 0xffff9c022490, maxsize:32768 offset:0 size:32768
0:00:00.686259625 8744 0x3d233770 DEBUG GST_MEMORY gstmemory.c:139:gst_memory_init: new memory 0xffff9c022520, maxsize:32768 offset:0 size:32768
0:00:00.686300250 8744 0x3d233770 DEBUG fdmemory gstfdmemory.c:294:gst_fd_allocator_alloc: 0xffff9c022520: fd: 106 size 32768
0:00:00.686341125 8744 0x3d233770 LOG GST_BUFFER gstbuffer.c:799:gst_buffer_new: new 0xffff9c01f8a0
0:00:00.686374875 8744 0x3d233770 LOG GST_BUFFER gstbuffer.c:414:_memory_add: buffer 0xffff9c01f8a0, idx -1, mem 0xffff9c022400
0:00:00.686412500 8744 0x3d233770 LOG GST_BUFFER gstbuffer.c:414:_memory_add: buffer 0xffff9c01f8a0, idx -1, mem 0xffff9c022520
0:00:00.686451250 8744 0x3d233770 DEBUG GST_BUFFER gstbuffer.c:2201:gst_buffer_add_meta: alloc metadata 0xffff9c0225b8 (GstVideoMeta) of size 112
0:00:00.686488875 8744 0x3d233770 LOG videometa gstvideometa.c:325:gst_buffer_add_video_meta_full: plane 0, offset 0, stride 256
0:00:00.686524500 8744 0x3d233770 LOG videometa gstvideometa.c:325:gst_buffer_add_video_meta_full: plane 1, offset 65536, stride 256
0:00:00.686568375 8744 0x3d233770 DEBUG bufferpool gstbufferpool.c:250:mark_meta_pooled:<my_vdec:pool:src> marking meta 0xffff9c0225b8 as POOLED in buffer 0xffff9c01f8a0
0:00:00.686612125 8744 0x3d233770 LOG bufferpool gstbufferpool.c:292:do_alloc_buffer:<my_vdec:pool:src> allocated buffer 18/22, 0xffff9c01f8a0
0:00:00.686655625 8744 0x3d233770 DEBUG v4l2bufferpool gstv4l2bufferpool.c:1420:gst_v4l2_buffer_pool_release_buffer:<my_vdec:pool:src> release buffer 0xffff9c01f8a0
0:00:00.686699125 8744 0x3d233770 LOG v4l2bufferpool gstv4l2bufferpool.c:1059:gst_v4l2_buffer_pool_qbuf:<my_vdec:pool:src> queuing buffer 18
0:00:00.686757500 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:1265:gst_v4l2_allocator_qbuf:<my_vdec:pool:src:allocator> queued buffer 18 (flags 0x4003)
0:00:00.686823000 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:869:gst_v4l2_allocator_alloc_dmabuf:<my_vdec:pool:src:allocator> exported DMABUF as fd 107 plane 0
0:00:00.686889625 8744 0x3d233770 DEBUG GST_MEMORY gstmemory.c:139:gst_memory_init: new memory 0xffff9c022640, maxsize:65536 offset:0 size:65536
0:00:00.686937125 8744 0x3d233770 DEBUG GST_MEMORY gstmemory.c:139:gst_memory_init: new memory 0xffff9c0226d0, maxsize:65536 offset:0 size:65536
0:00:00.686978125 8744 0x3d233770 DEBUG fdmemory gstfdmemory.c:294:gst_fd_allocator_alloc: 0xffff9c0226d0: fd: 108 size 65536
0:00:00.687040000 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:869:gst_v4l2_allocator_alloc_dmabuf:<my_vdec:pool:src:allocator> exported DMABUF as fd 109 plane 1
0:00:00.687079250 8744 0x3d233770 DEBUG GST_MEMORY gstmemory.c:139:gst_memory_init: new memory 0xffff9c022820, maxsize:32768 offset:0 size:32768
0:00:00.687122125 8744 0x3d233770 DEBUG GST_MEMORY gstmemory.c:139:gst_memory_init: new memory 0xffff9c0228b0, maxsize:32768 offset:0 size:32768
0:00:00.687162750 8744 0x3d233770 DEBUG fdmemory gstfdmemory.c:294:gst_fd_allocator_alloc: 0xffff9c0228b0: fd: 110 size 32768
0:00:00.687202250 8744 0x3d233770 LOG GST_BUFFER gstbuffer.c:799:gst_buffer_new: new 0xffff9c01f9b0
0:00:00.687235500 8744 0x3d233770 LOG GST_BUFFER gstbuffer.c:414:_memory_add: buffer 0xffff9c01f9b0, idx -1, mem 0xffff9c0226d0
0:00:00.687273000 8744 0x3d233770 LOG GST_BUFFER gstbuffer.c:414:_memory_add: buffer 0xffff9c01f9b0, idx -1, mem 0xffff9c0228b0
0:00:00.687313625 8744 0x3d233770 DEBUG GST_BUFFER gstbuffer.c:2201:gst_buffer_add_meta: alloc metadata 0xffff9c022948 (GstVideoMeta) of size 112
0:00:00.687352125 8744 0x3d233770 LOG videometa gstvideometa.c:325:gst_buffer_add_video_meta_full: plane 0, offset 0, stride 256
0:00:00.687387500 8744 0x3d233770 LOG videometa gstvideometa.c:325:gst_buffer_add_video_meta_full: plane 1, offset 65536, stride 256
0:00:00.687431125 8744 0x3d233770 DEBUG bufferpool gstbufferpool.c:250:mark_meta_pooled:<my_vdec:pool:src> marking meta 0xffff9c022948 as POOLED in buffer 0xffff9c01f9b0
0:00:00.687475375 8744 0x3d233770 LOG bufferpool gstbufferpool.c:292:do_alloc_buffer:<my_vdec:pool:src> allocated buffer 19/22, 0xffff9c01f9b0
0:00:00.687519500 8744 0x3d233770 DEBUG v4l2bufferpool gstv4l2bufferpool.c:1420:gst_v4l2_buffer_pool_release_buffer:<my_vdec:pool:src> release buffer 0xffff9c01f9b0
0:00:00.687563500 8744 0x3d233770 LOG v4l2bufferpool gstv4l2bufferpool.c:1059:gst_v4l2_buffer_pool_qbuf:<my_vdec:pool:src> queuing buffer 19
0:00:00.687622375 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:1265:gst_v4l2_allocator_qbuf:<my_vdec:pool:src:allocator> queued buffer 19 (flags 0x4003)
0:00:00.687687000 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:869:gst_v4l2_allocator_alloc_dmabuf:<my_vdec:pool:src:allocator> exported DMABUF as fd 111 plane 0
0:00:00.687726250 8744 0x3d233770 DEBUG GST_MEMORY gstmemory.c:139:gst_memory_init: new memory 0xffff9c0229d0, maxsize:65536 offset:0 size:65536
0:00:00.687770000 8744 0x3d233770 DEBUG GST_MEMORY gstmemory.c:139:gst_memory_init: new memory 0xffff9c022a60, maxsize:65536 offset:0 size:65536
0:00:00.687810625 8744 0x3d233770 DEBUG fdmemory gstfdmemory.c:294:gst_fd_allocator_alloc: 0xffff9c022a60: fd: 112 size 65536
0:00:00.687874125 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:869:gst_v4l2_allocator_alloc_dmabuf:<my_vdec:pool:src:allocator> exported DMABUF as fd 113 plane 1
0:00:00.687913375 8744 0x3d233770 DEBUG GST_MEMORY gstmemory.c:139:gst_memory_init: new memory 0xffff9c022af0, maxsize:32768 offset:0 size:32768
0:00:00.687956500 8744 0x3d233770 DEBUG GST_MEMORY gstmemory.c:139:gst_memory_init: new memory 0xffff9c022b80, maxsize:32768 offset:0 size:32768
0:00:00.688024125 8744 0x3d233770 DEBUG fdmemory gstfdmemory.c:294:gst_fd_allocator_alloc: 0xffff9c022b80: fd: 114 size 32768
0:00:00.688067375 8744 0x3d233770 LOG GST_BUFFER gstbuffer.c:799:gst_buffer_new: new 0xffff9c01fac0
0:00:00.688100750 8744 0x3d233770 LOG GST_BUFFER gstbuffer.c:414:_memory_add: buffer 0xffff9c01fac0, idx -1, mem 0xffff9c022a60
0:00:00.688138625 8744 0x3d233770 LOG GST_BUFFER gstbuffer.c:414:_memory_add: buffer 0xffff9c01fac0, idx -1, mem 0xffff9c022b80
0:00:00.688177000 8744 0x3d233770 DEBUG GST_BUFFER gstbuffer.c:2201:gst_buffer_add_meta: alloc metadata 0xffff9c022c18 (GstVideoMeta) of size 112
0:00:00.688214500 8744 0x3d233770 LOG videometa gstvideometa.c:325:gst_buffer_add_video_meta_full: plane 0, offset 0, stride 256
0:00:00.688250125 8744 0x3d233770 LOG videometa gstvideometa.c:325:gst_buffer_add_video_meta_full: plane 1, offset 65536, stride 256
0:00:00.688294125 8744 0x3d233770 DEBUG bufferpool gstbufferpool.c:250:mark_meta_pooled:<my_vdec:pool:src> marking meta 0xffff9c022c18 as POOLED in buffer 0xffff9c01fac0
0:00:00.688338250 8744 0x3d233770 LOG bufferpool gstbufferpool.c:292:do_alloc_buffer:<my_vdec:pool:src> allocated buffer 20/22, 0xffff9c01fac0
0:00:00.688381875 8744 0x3d233770 DEBUG v4l2bufferpool gstv4l2bufferpool.c:1420:gst_v4l2_buffer_pool_release_buffer:<my_vdec:pool:src> release buffer 0xffff9c01fac0
0:00:00.688425500 8744 0x3d233770 LOG v4l2bufferpool gstv4l2bufferpool.c:1059:gst_v4l2_buffer_pool_qbuf:<my_vdec:pool:src> queuing buffer 20
0:00:00.688484000 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:1265:gst_v4l2_allocator_qbuf:<my_vdec:pool:src:allocator> queued buffer 20 (flags 0x4003)
0:00:00.688550875 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:869:gst_v4l2_allocator_alloc_dmabuf:<my_vdec:pool:src:allocator> exported DMABUF as fd 115 plane 0
0:00:00.688590625 8744 0x3d233770 DEBUG GST_MEMORY gstmemory.c:139:gst_memory_init: new memory 0xffff9c022ca0, maxsize:65536 offset:0 size:65536
0:00:00.688634625 8744 0x3d233770 DEBUG GST_MEMORY gstmemory.c:139:gst_memory_init: new memory 0xffff9c022d30, maxsize:65536 offset:0 size:65536
0:00:00.688675625 8744 0x3d233770 DEBUG fdmemory gstfdmemory.c:294:gst_fd_allocator_alloc: 0xffff9c022d30: fd: 116 size 65536
0:00:00.688738750 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:869:gst_v4l2_allocator_alloc_dmabuf:<my_vdec:pool:src:allocator> exported DMABUF as fd 117 plane 1
0:00:00.688780750 8744 0x3d233770 DEBUG GST_MEMORY gstmemory.c:139:gst_memory_init: new memory 0xffff9c022dc0, maxsize:32768 offset:0 size:32768
0:00:00.688824750 8744 0x3d233770 DEBUG GST_MEMORY gstmemory.c:139:gst_memory_init: new memory 0xffff9c022e50, maxsize:32768 offset:0 size:32768
0:00:00.688865125 8744 0x3d233770 DEBUG fdmemory gstfdmemory.c:294:gst_fd_allocator_alloc: 0xffff9c022e50: fd: 118 size 32768
0:00:00.688904875 8744 0x3d233770 LOG GST_BUFFER gstbuffer.c:799:gst_buffer_new: new 0xffff9c01fbd0
0:00:00.688938125 8744 0x3d233770 LOG GST_BUFFER gstbuffer.c:414:_memory_add: buffer 0xffff9c01fbd0, idx -1, mem 0xffff9c022d30
0:00:00.688975875 8744 0x3d233770 LOG GST_BUFFER gstbuffer.c:414:_memory_add: buffer 0xffff9c01fbd0, idx -1, mem 0xffff9c022e50
0:00:00.689014500 8744 0x3d233770 DEBUG GST_BUFFER gstbuffer.c:2201:gst_buffer_add_meta: alloc metadata 0xffff9c022ee8 (GstVideoMeta) of size 112
0:00:00.689080125 8744 0x3d233770 LOG videometa gstvideometa.c:325:gst_buffer_add_video_meta_full: plane 0, offset 0, stride 256
0:00:00.689125500 8744 0x3d233770 LOG videometa gstvideometa.c:325:gst_buffer_add_video_meta_full: plane 1, offset 65536, stride 256
0:00:00.689171000 8744 0x3d233770 DEBUG bufferpool gstbufferpool.c:250:mark_meta_pooled:<my_vdec:pool:src> marking meta 0xffff9c022ee8 as POOLED in buffer 0xffff9c01fbd0
0:00:00.689243375 8744 0x3d233770 LOG bufferpool gstbufferpool.c:292:do_alloc_buffer:<my_vdec:pool:src> allocated buffer 21/22, 0xffff9c01fbd0
0:00:00.689289625 8744 0x3d233770 DEBUG v4l2bufferpool gstv4l2bufferpool.c:1420:gst_v4l2_buffer_pool_release_buffer:<my_vdec:pool:src> release buffer 0xffff9c01fbd0
0:00:00.689333625 8744 0x3d233770 LOG v4l2bufferpool gstv4l2bufferpool.c:1059:gst_v4l2_buffer_pool_qbuf:<my_vdec:pool:src> queuing buffer 21
0:00:00.689393375 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:1265:gst_v4l2_allocator_qbuf:<my_vdec:pool:src:allocator> queued buffer 21 (flags 0x4003)
0:00:00.689464375 8744 0x3d233770 DEBUG v4l2bufferpool gstv4l2bufferpool.c:620:gst_v4l2_buffer_pool_resurect_buffer:<my_vdec:pool:src> A buffer was lost, reallocating it
0:00:00.689509875 8744 0x3d233770 DEBUG v4l2bufferpool gstv4l2bufferpool.c:1342:gst_v4l2_buffer_pool_acquire_buffer:<my_vdec:pool:src> acquire
0:00:00.689548750 8744 0x3d233770 DEBUG bufferpool gstbufferpool.c:1185:default_acquire_buffer:<my_vdec:pool:src> we are flushing
0:00:00.689631375 8744 0x3d233770 DEBUG v4l2bufferpool gstv4l2bufferpool.c:666:gst_v4l2_buffer_pool_streamon:<my_vdec:pool:src> Started streaming
0:00:00.689672875 8744 0x3d233770 DEBUG v4l2bufferpool gstv4l2bufferpool.c:974:gst_v4l2_buffer_pool_flush_stop:<my_vdec:pool:src> stop flushing
0:00:00.689702875 8744 0x3d233770 LOG GST_POLL gstpoll.c:1673:gst_poll_set_flushing: 0xffff9c007400: flushing: 0
0:00:00.689785375 8744 0x3d233770 LOG bufferpool gstbufferpool.c:506:gst_buffer_pool_set_active:<my_vdec:pool:src> active 1
0:00:00.689829875 8744 0x3d233770 DEBUG bufferpool gstbufferpool.c:552:gst_buffer_pool_set_active:<my_vdec:pool:src> pool was in the right state
0:00:00.689868250 8744 0x3d233770 LOG v4l2videodec gstv4l2videodec.c:605:gst_v4l2_video_dec_loop:<my_vdec> Allocate output buffer
0:00:00.689859375 8744 0x3d233140 LOG videodecoder gstvideodecoder.c:2595:gst_video_decoder_new_frame:<my_vdec> Created new frame 0xffffa4028350 (sfn:3)
0:00:00.689909875 8744 0x3d233770 DEBUG v4l2bufferpool gstv4l2bufferpool.c:1342:gst_v4l2_buffer_pool_acquire_buffer:<my_vdec:pool:src> acquire
0:00:00.689979250 8744 0x3d233140 LOG videodecoder gstvideodecoder.c:3410:gst_video_decoder_decode_frame:<my_vdec> PTS 0:00:01.500000000, DTS 99:99:99.999999999, dist 3
0:00:00.690043875 8744 0x3d233770 LOG v4l2bufferpool gstv4l2bufferpool.c:999:gst_v4l2_buffer_pool_poll:<my_vdec:pool:src> polling device
0:00:00.690097625 8744 0x3d233140 DEBUG v4l2videodec gstv4l2videodec.c:704:gst_v4l2_video_dec_handle_frame:<my_vdec> Handling frame 3
0:00:00.690182625 8744 0x3d233140 DEBUG v4l2bufferpool gstv4l2bufferpool.c:1745:gst_v4l2_buffer_pool_process:<my_vdec:pool:sink> process buffer 0xffffa4028388
0:00:00.690237625 8744 0x3d233140 LOG v4l2bufferpool gstv4l2bufferpool.c:1923:gst_v4l2_buffer_pool_process:<my_vdec:pool:sink> alloc buffer from our pool
0:00:00.690190500 8744 0x3d233770 DEBUG GST_POLL gstpoll.c:1369:gst_poll_wait: 0xffff9c007400: timeout :99:99:99.999999999
0:00:00.690298500 8744 0x3d233140 DEBUG v4l2bufferpool gstv4l2bufferpool.c:1342:gst_v4l2_buffer_pool_acquire_buffer:<my_vdec:pool:sink> acquire
0:00:00.690403125 8744 0x3d233140 LOG bufferpool gstbufferpool.c:1128:default_acquire_buffer:<my_vdec:pool:sink> acquired buffer 0xffffa4017840
0:00:00.690461000 8744 0x3d233140 LOG v4l2bufferpool gstv4l2bufferpool.c:116:gst_v4l2_buffer_pool_copy_buffer:<my_vdec:pool:sink> copying buffer
0:00:00.690508625 8744 0x3d233140 DEBUG v4l2bufferpool gstv4l2bufferpool.c:141:gst_v4l2_buffer_pool_copy_buffer:<my_vdec:pool:sink> copy raw bytes
0:00:00.690609125 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1721:gst_buffer_map_range: buffer 0xffffa4017d90, idx 0, length -1, flags 0001
0:00:00.690671500 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:213:_get_merged_memory: buffer 0xffffa4017d90, idx 0, length 1
0:00:00.690730125 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1826:gst_buffer_fill: buffer 0xffffa4017840, offset 0, size 2036
0:00:00.690794875 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1582:gst_buffer_resize_range: trim 0xffffa4017840 0-2036 size:6291456 offs:0 max:6291456
0:00:00.690860500 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:515:gst_buffer_copy_into: copy 0xffffa4017d90 to 0xffffa4017840, offset 0-2036/2036
0:00:00.690930375 8744 0x3d233140 LOG GST_PERFORMANCE gstv4l2bufferpool.c:155:gst_v4l2_buffer_pool_copy_buffer:<my_vdec:pool:sink> slow copy into buffer 0xffffa4017840
0:00:00.690990750 8744 0x3d233140 LOG v4l2bufferpool gstv4l2bufferpool.c:1059:gst_v4l2_buffer_pool_qbuf:<my_vdec:pool:sink> queuing buffer 1
0:00:00.691135125 8744 0x3d233140 LOG v4l2allocator gstv4l2allocator.c:1265:gst_v4l2_allocator_qbuf:<my_vdec:pool:sink:allocator> queued buffer 1 (flags 0x4003)
0:00:00.691190000 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:710:_gst_buffer_dispose: release 0xffffa4017840 to pool 0xffffa4012410
0:00:00.691250750 8744 0x3d233140 DEBUG v4l2bufferpool gstv4l2bufferpool.c:1420:gst_v4l2_buffer_pool_release_buffer:<my_vdec:pool:sink> release buffer 0xffffa4017840
0:00:00.691304250 8744 0x3d233140 LOG v4l2bufferpool gstv4l2bufferpool.c:1503:gst_v4l2_buffer_pool_release_buffer:<my_vdec:pool:sink> buffer 1 is queued
0:00:00.691359125 8744 0x3d233140 LOG v4l2bufferpool gstv4l2bufferpool.c:999:gst_v4l2_buffer_pool_poll:<my_vdec:pool:sink> polling device
0:00:00.691398375 8744 0x3d233140 DEBUG GST_POLL gstpoll.c:1369:gst_poll_wait: 0xffffa4005cf0: timeout :99:99:99.999999999
0:00:00.691477375 8744 0x3d233140 DEBUG GST_POLL gstpoll.c:1188:gst_poll_fd_has_error: 0xffffa4005cf0: fd (fd:18, idx:1) 0
0:00:00.691535000 8744 0x3d233140 DEBUG GST_POLL gstpoll.c:1265:gst_poll_fd_can_read_pri_unlocked: 0xffffa4005cf0: fd (fd:18, idx:1) 0
0:00:00.691598125 8744 0x3d233140 LOG v4l2bufferpool gstv4l2bufferpool.c:1322:gst_v4l2_buffer_pool_dequeue:<my_vdec:pool:sink> dequeueing a buffer
0:00:00.691662125 8744 0x3d233140 LOG v4l2allocator gstv4l2allocator.c:1312:gst_v4l2_allocator_dqbuf:<my_vdec:pool:sink:allocator> dequeued buffer 0 (flags 0x4001)
0:00:00.691726750 8744 0x3d233140 LOG v4l2bufferpool gstv4l2bufferpool.c:1194:gst_v4l2_buffer_pool_dqbuf:<my_vdec:pool:sink> dequeued buffer 0xffffa40170d0 seq:0 (ix=0), mem 0xffffa40181f0 used 540, plane=0, flags 00004001, ts 0:00:01.000000000, pool-queued=1, buffer=0xffffa40170d0
0:00:00.691824875 8744 0x3d233140 DEBUG v4l2bufferpool gstv4l2bufferpool.c:1420:gst_v4l2_buffer_pool_release_buffer:<my_vdec:pool:sink> release buffer 0xffffa40170d0
0:00:00.691878250 8744 0x3d233140 LOG v4l2bufferpool gstv4l2bufferpool.c:1488:gst_v4l2_buffer_pool_release_buffer:<my_vdec:pool:sink> buffer 0 not queued, putting on free list
0:00:00.691934000 8744 0x3d233140 LOG bufferpool gstbufferpool.c:1284:default_release_buffer:<my_vdec:pool:sink> released buffer 0xffffa40170d0 0
0:00:00.691983250 8744 0x3d233140 DEBUG GST_BUFFER gstbuffer.c:1375:gst_buffer_is_memory_range_writable: idx 0, length -1
0:00:00.692035250 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:799:gst_buffer_new: new 0xffffa4017400
0:00:00.692077875 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:515:gst_buffer_copy_into: copy 0xffffa4017d90 to 0xffffa4017400, offset 0-0/2036
0:00:00.692137125 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:725:_gst_buffer_free: finalize 0xffffa4017d90
0:00:00.692214500 8744 0x3d233140 DEBUG GST_MEMORY gstmemory.c:88:_gst_memory_free: free memory 0xffffa4018160
0:00:00.692288875 8744 0x3d233140 DEBUG GST_SCHEDULING gstpad.c:4283:gst_pad_chain_data_unchecked:<my_vdec:sink> called chainfunction &gst_video_decoder_chain with buffer 0xffffa4017d90, returned ok
0:00:00.692360875 8744 0x3d233140 LOG baseparse gstbaseparse.c:2537:gst_base_parse_push_frame:<my_h264parse> frame pushed, flow ok
0:00:00.692415000 8744 0x3d233140 LOG baseparse gstbaseparse.c:2166:gst_base_parse_handle_buffer:<my_h264parse> handle_frame skipped 0, flushed 2034
0:00:00.692477000 8744 0x3d233140 DEBUG baseparse gstbaseparse.c:3215:gst_base_parse_chain:<my_h264parse> not enough data available (only 0 bytes)
0:00:00.692527625 8744 0x3d233140 LOG baseparse gstbaseparse.c:3277:gst_base_parse_chain:<my_h264parse> chain leaving
0:00:00.692579625 8744 0x3d233140 DEBUG GST_SCHEDULING gstpad.c:4283:gst_pad_chain_data_unchecked:<my_h264parse:sink> called chainfunction &gst_base_parse_chain with buffer 0xffffa40172f0, returned ok
0:00:00.692653750 8744 0x3d233140 LOG basesrc gstbasesrc.c:2828:gst_base_src_loop:<my_appsrc> next_ts 0:00:00.000005548 size 4096
0:00:00.692724125 8744 0x3d233140 DEBUG basesrc gstbasesrc.c:2399:gst_base_src_update_length:<my_appsrc> reading offset 5548, length 4096, size -1, segment.stop -1, maxsize -1
0:00:00.692794750 8744 0x3d233140 DEBUG basesrc gstbasesrc.c:2506:gst_base_src_get_range:<my_appsrc> calling create offset 5548 length 4096, time 0
(get_data, 99)
(get_data, 108)read_ret: 8, target frame num: 4, read frame num: 4
0:00:00.692923875 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:799:gst_buffer_new: new 0xffffa40172f0
0:00:00.692970125 8744 0x3d233140 DEBUG GST_MEMORY gstmemory.c:139:gst_memory_init: new memory 0xffffa4018040, maxsize:1533 offset:0 size:1533
0:00:00.693027750 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:414:_memory_add: buffer 0xffffa40172f0, idx -1, mem 0xffffa4018040
0:00:00.693176625 8744 0x3d233140 DEBUG appsrc gstappsrc.c:1863:gst_app_src_push_internal:<my_appsrc> queueing buffer 0xffffa40172f0
0:00:00.693249375 8744 0x3d233140 LOG appsrc gstappsrc.c:1221:gst_app_src_create:<my_appsrc> have buffer 0xffffa40172f0 of size 1533
0:00:00.693313875 8744 0x3d233140 DEBUG basesrc gstbasesrc.c:2360:gst_base_src_do_sync:<my_appsrc> no sync needed
0:00:00.693360875 8744 0x3d233140 DEBUG basesrc gstbasesrc.c:2597:gst_base_src_get_range:<my_appsrc> buffer ok
0:00:00.693422250 8744 0x3d233140 DEBUG GST_SCHEDULING gstpad.c:4277:gst_pad_chain_data_unchecked:<my_h264parse:sink> calling chainfunction &gst_base_parse_chain with buffer buffer: 0xffffa40172f0, pts 0:00:02.000000000, dts 99:99:99.999999999, dur 0:00:00.500000000, size 1533, offset none, offset_end none, flags 0x0
0:00:00.693544000 8744 0x3d233140 DEBUG baseparse gstbaseparse.c:3030:gst_base_parse_chain:<my_h264parse> chain
0:00:00.693591375 8744 0x3d233140 LOG baseparse gstbaseparse.c:3150:gst_base_parse_chain:<my_h264parse> buffer size: 1533, offset = -1, dts 99:99:99.999999999, pts 0:00:02.000000000
0:00:00.693685875 8744 0x3d233140 LOG adapter gstadapter.c:389:gst_adapter_push:<GstAdapter at 0x3d20c000> pushing 0xffffa40172f0 first 1533 bytes
0:00:00.693749250 8744 0x3d233140 LOG adapter gstadapter.c:290:update_timestamps_and_offset:<GstAdapter at 0x3d20c000> new pts 0:00:02.000000000
0:00:00.693819250 8744 0x3d233140 LOG adapter gstadapter.c:974:gst_adapter_get_buffer:<GstAdapter at 0x3d20c000> getting buffer of 1533 bytes
0:00:00.693876250 8744 0x3d233140 LOG adapter gstadapter.c:989:gst_adapter_get_buffer:<GstAdapter at 0x3d20c000> providing buffer of 1533 bytes as head buffer
0:00:00.693963750 8744 0x3d233140 LOG baseparse gstbaseparse.c:2148:gst_base_parse_handle_buffer:<my_h264parse> handling buffer of size 1533 with dts 99:99:99.999999999, pts 0:00:02.000000000, duration 0:00:00.500000000
0:00:00.694049250 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:799:gst_buffer_new: new 0xffffa4017c80
0:00:00.694091625 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:515:gst_buffer_copy_into: copy 0xffffa40172f0 to 0xffffa4017c80, offset 0-1533/1533
0:00:00.694150000 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:414:_memory_add: buffer 0xffffa4017c80, idx -1, mem 0xffffa4018040
0:00:00.694202000 8744 0x3d233140 DEBUG GST_PERFORMANCE gstminiobject.c:317:gst_mini_object_make_writable: copy GstBuffer miniobject 0xffffa40172f0 -> 0xffffa4017c80
0:00:00.694264000 8744 0x3d233140 LOG baseparse gstbaseparse.c:2110:gst_base_parse_prepare_frame:<my_h264parse> preparing frame at offset 18446744073709551615 (0xffffffffffffffff) of size 1533
0:00:00.694328375 8744 0x3d233140 LOG baseparse gstbaseparse.c:764:gst_base_parse_update_frame:<my_h264parse> marking as new frame
0:00:00.694368125 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1721:gst_buffer_map_range: buffer 0xffffa4017c80, idx 0, length -1, flags 0001
0:00:00.694422625 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:213:_get_merged_memory: buffer 0xffffa4017c80, idx 0, length 1
0:00:00.694482625 8744 0x3d233140 LOG h264parse gsth264parse.c:1097:gst_h264_parse_handle_frame:<my_h264parse> parsing new frame
0:00:00.694529625 8744 0x3d233140 DEBUG h264parse gsth264parse.c:186:gst_h264_parse_reset_frame:<my_h264parse> reset frame
0:00:00.694578875 8744 0x3d233140 DEBUG h264parse gsth264parse.c:1112:gst_h264_parse_handle_frame:<my_h264parse> last parse position 0
0:00:00.694627750 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:242:gst_h264_parse_nalu_header: Nal type 9, ref_idc 0
0:00:00.694675500 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:242:gst_h264_parse_nalu_header: Nal type 9, ref_idc 0
0:00:00.694720750 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:1366:gst_h264_parser_identify_nalu: Complete nal found. Off: 4, Size: 2
0:00:00.694776250 8744 0x3d233140 DEBUG h264parse gsth264parse.c:1162:gst_h264_parse_handle_frame:<my_h264parse> complete nal (offset, size): (4, 2)
0:00:00.694831625 8744 0x3d233140 DEBUG h264parse gsth264parse.c:1219:gst_h264_parse_handle_frame:<my_h264parse> 0xffffa4030640 complete nal found. Off: 4, Size: 2
0:00:00.694892875 8744 0x3d233140 DEBUG h264parse gsth264parse.c:721:gst_h264_parse_process_nal:<my_h264parse> processing nal of type 9 AU delimiter, size 2
0:00:00.694951750 8744 0x3d233140 LOG h264parse gsth264parse.c:895:gst_h264_parse_process_nal:<my_h264parse> collecting NAL in AVC frame
0:00:00.694998000 8744 0x3d233140 DEBUG h264parse gsth264parse.c:428:gst_h264_parse_wrap_nal:<my_h264parse> nal length 2
0:00:00.695044250 8744 0x3d233140 DEBUG GST_MEMORY gstmemory.c:139:gst_memory_init: new memory 0xffffa400ab50, maxsize:13 offset:0 size:6
0:00:00.695098875 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:799:gst_buffer_new: new 0xffffa4017b70
0:00:00.695140375 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:414:_memory_add: buffer 0xffffa4017b70, idx -1, mem 0xffffa400ab50
0:00:00.695191750 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:855:gst_buffer_new_allocate: new buffer 0xffffa4017b70 of size 6 from allocator (nil)
0:00:00.695244000 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1826:gst_buffer_fill: buffer 0xffffa4017b70, offset 0, size 4
0:00:00.695294750 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1826:gst_buffer_fill: buffer 0xffffa4017b70, offset 4, size 2
0:00:00.695377500 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1582:gst_buffer_resize_range: trim 0xffffa4017b70 0-6 size:6 offs:0 max:13
0:00:00.695453750 8744 0x3d233140 LOG adapter gstadapter.c:389:gst_adapter_push:<GstAdapter at 0x3d20c120> pushing 0xffffa4017b70 first 6 bytes
0:00:00.695510875 8744 0x3d233140 DEBUG h264parse gsth264parse.c:914:gst_h264_parse_collect_nal:<my_h264parse> parsing collected nal
0:00:00.695549750 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:242:gst_h264_parse_nalu_header: Nal type 6, ref_idc 0
0:00:00.695604125 8744 0x3d233140 LOG h264parse gsth264parse.c:922:gst_h264_parse_collect_nal:<my_h264parse> nal type: 9 AU delimiter
0:00:00.695658750 8744 0x3d233140 LOG h264parse gsth264parse.c:941:gst_h264_parse_collect_nal:<my_h264parse> next nal type: 6 SEI
0:00:00.695712125 8744 0x3d233140 LOG h264parse gsth264parse.c:948:gst_h264_parse_collect_nal:<my_h264parse> au complete: 0
0:00:00.695762000 8744 0x3d233140 DEBUG h264parse gsth264parse.c:1264:gst_h264_parse_handle_frame:<my_h264parse> Looking for more
0:00:00.695799375 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:242:gst_h264_parse_nalu_header: Nal type 6, ref_idc 0
0:00:00.695844250 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:1366:gst_h264_parser_identify_nalu: Complete nal found. Off: 10, Size: 21
0:00:00.695898250 8744 0x3d233140 DEBUG h264parse gsth264parse.c:1162:gst_h264_parse_handle_frame:<my_h264parse> complete nal (offset, size): (10, 21)
0:00:00.695952250 8744 0x3d233140 DEBUG h264parse gsth264parse.c:1219:gst_h264_parse_handle_frame:<my_h264parse> 0xffffa4030640 complete nal found. Off: 10, Size: 21
0:00:00.696011375 8744 0x3d233140 DEBUG h264parse gsth264parse.c:721:gst_h264_parse_process_nal:<my_h264parse> processing nal of type 6 SEI, size 21
0:00:00.696060000 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:2292:gst_h264_parser_parse_sei: parsing SEI nal
0:00:00.696099750 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:1127:gst_h264_parser_parse_sei_message: parsing "Sei message"
0:00:00.696138750 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:1147:gst_h264_parser_parse_sei_message: SEI message received: payloadType 5, payloadSize = 136 bits
0:00:00.696202875 8744 0x3d233140 DEBUG h264parse gsth264parse.c:807:gst_h264_parse_process_nal:<my_h264parse> marking SEI in frame at offset 6
0:00:00.696254625 8744 0x3d233140 LOG h264parse gsth264parse.c:895:gst_h264_parse_process_nal:<my_h264parse> collecting NAL in AVC frame
0:00:00.696300125 8744 0x3d233140 DEBUG h264parse gsth264parse.c:428:gst_h264_parse_wrap_nal:<my_h264parse> nal length 21
0:00:00.696343000 8744 0x3d233140 DEBUG GST_MEMORY gstmemory.c:139:gst_memory_init: new memory 0xffffa401b380, maxsize:32 offset:0 size:25
0:00:00.696397375 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:799:gst_buffer_new: new 0xffffa4017950
0:00:00.696438250 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:414:_memory_add: buffer 0xffffa4017950, idx -1, mem 0xffffa401b380
0:00:00.696488375 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:855:gst_buffer_new_allocate: new buffer 0xffffa4017950 of size 25 from allocator (nil)
0:00:00.696538625 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1826:gst_buffer_fill: buffer 0xffffa4017950, offset 0, size 4
0:00:00.696588500 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1826:gst_buffer_fill: buffer 0xffffa4017950, offset 4, size 21
0:00:00.696638625 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1582:gst_buffer_resize_range: trim 0xffffa4017950 0-25 size:25 offs:0 max:32
0:00:00.696711000 8744 0x3d233140 LOG adapter gstadapter.c:395:gst_adapter_push:<GstAdapter at 0x3d20c120> pushing 0xffffa4017950 25 bytes at end, size now 31
0:00:00.696803875 8744 0x3d233140 DEBUG h264parse gsth264parse.c:914:gst_h264_parse_collect_nal:<my_h264parse> parsing collected nal
0:00:00.696843250 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:242:gst_h264_parse_nalu_header: Nal type 1, ref_idc 1
0:00:00.696898125 8744 0x3d233140 LOG h264parse gsth264parse.c:922:gst_h264_parse_collect_nal:<my_h264parse> nal type: 6 SEI
0:00:00.696951625 8744 0x3d233140 LOG h264parse gsth264parse.c:941:gst_h264_parse_collect_nal:<my_h264parse> next nal type: 1 Slice
0:00:00.697005000 8744 0x3d233140 LOG h264parse gsth264parse.c:948:gst_h264_parse_collect_nal:<my_h264parse> au complete: 0
0:00:00.697102250 8744 0x3d233140 DEBUG h264parse gsth264parse.c:1264:gst_h264_parse_handle_frame:<my_h264parse> Looking for more
0:00:00.697149875 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:242:gst_h264_parse_nalu_header: Nal type 1, ref_idc 1
0:00:00.697197000 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:1366:gst_h264_parser_identify_nalu: Complete nal found. Off: 34, Size: 371
0:00:00.697251625 8744 0x3d233140 DEBUG h264parse gsth264parse.c:1162:gst_h264_parse_handle_frame:<my_h264parse> complete nal (offset, size): (34, 371)
0:00:00.697306125 8744 0x3d233140 DEBUG h264parse gsth264parse.c:1219:gst_h264_parse_handle_frame:<my_h264parse> 0xffffa4030640 complete nal found. Off: 34, Size: 371
0:00:00.697365750 8744 0x3d233140 DEBUG h264parse gsth264parse.c:721:gst_h264_parse_process_nal:<my_h264parse> processing nal of type 1 Slice, size 371
0:00:00.697423125 8744 0x3d233140 DEBUG h264parse gsth264parse.c:827:gst_h264_parse_process_nal:<my_h264parse> first_mb_in_slice = 0
0:00:00.697468750 8744 0x3d233140 DEBUG h264parse gsth264parse.c:830:gst_h264_parse_process_nal:<my_h264parse> frame start: 1
0:00:00.697513625 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:2079:gst_h264_parser_parse_slice_hdr: parsing "Slice header", slice type 0
0:00:00.697564125 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:700:gst_h264_slice_parse_dec_ref_pic_marking: parsing "Decoded reference picture marking"
0:00:00.697613875 8744 0x3d233140 DEBUG h264parse gsth264parse.c:840:gst_h264_parse_process_nal:<my_h264parse> parse result 0, first MB: 0, slice type: 0
0:00:00.697673250 8744 0x3d233140 LOG h264parse gsth264parse.c:895:gst_h264_parse_process_nal:<my_h264parse> collecting NAL in AVC frame
0:00:00.697718750 8744 0x3d233140 DEBUG h264parse gsth264parse.c:428:gst_h264_parse_wrap_nal:<my_h264parse> nal length 371
0:00:00.697830750 8744 0x3d233140 DEBUG GST_MEMORY gstmemory.c:139:gst_memory_init: new memory 0xffffa4032030, maxsize:382 offset:0 size:375
0:00:00.697890625 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:799:gst_buffer_new: new 0xffffa4017a60
0:00:00.697932375 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:414:_memory_add: buffer 0xffffa4017a60, idx -1, mem 0xffffa4032030
0:00:00.697982875 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:855:gst_buffer_new_allocate: new buffer 0xffffa4017a60 of size 375 from allocator (nil)
0:00:00.698033250 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1826:gst_buffer_fill: buffer 0xffffa4017a60, offset 0, size 4
0:00:00.698084000 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1826:gst_buffer_fill: buffer 0xffffa4017a60, offset 4, size 371
0:00:00.698134500 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1582:gst_buffer_resize_range: trim 0xffffa4017a60 0-375 size:375 offs:0 max:382
0:00:00.698210000 8744 0x3d233140 LOG adapter gstadapter.c:395:gst_adapter_push:<GstAdapter at 0x3d20c120> pushing 0xffffa4017a60 375 bytes at end, size now 406
0:00:00.698303875 8744 0x3d233140 DEBUG h264parse gsth264parse.c:914:gst_h264_parse_collect_nal:<my_h264parse> parsing collected nal
0:00:00.698343625 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:242:gst_h264_parse_nalu_header: Nal type 1, ref_idc 1
0:00:00.698400000 8744 0x3d233140 LOG h264parse gsth264parse.c:922:gst_h264_parse_collect_nal:<my_h264parse> nal type: 1 Slice
0:00:00.698454375 8744 0x3d233140 LOG h264parse gsth264parse.c:941:gst_h264_parse_collect_nal:<my_h264parse> next nal type: 1 Slice
0:00:00.698509375 8744 0x3d233140 LOG h264parse gsth264parse.c:948:gst_h264_parse_collect_nal:<my_h264parse> au complete: 0
0:00:00.698559000 8744 0x3d233140 DEBUG h264parse gsth264parse.c:1264:gst_h264_parse_handle_frame:<my_h264parse> Looking for more
0:00:00.698596625 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:242:gst_h264_parse_nalu_header: Nal type 1, ref_idc 1
0:00:00.698645500 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:1351:gst_h264_parser_identify_nalu: Nal start 408, No end found
0:00:00.698696625 8744 0x3d233140 DEBUG h264parse gsth264parse.c:1166:gst_h264_parse_handle_frame:<my_h264parse> not a complete nal found at offset 408
0:00:00.698747875 8744 0x3d233140 DEBUG h264parse gsth264parse.c:1172:gst_h264_parse_handle_frame:<my_h264parse> draining, accepting with size 1125
0:00:00.698799000 8744 0x3d233140 DEBUG h264parse gsth264parse.c:1219:gst_h264_parse_handle_frame:<my_h264parse> 0xffffa4030640 complete nal found. Off: 408, Size: 1125
0:00:00.698858750 8744 0x3d233140 DEBUG h264parse gsth264parse.c:721:gst_h264_parse_process_nal:<my_h264parse> processing nal of type 1 Slice, size 1125
0:00:00.698916375 8744 0x3d233140 DEBUG h264parse gsth264parse.c:830:gst_h264_parse_process_nal:<my_h264parse> frame start: 1
0:00:00.698959625 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:2079:gst_h264_parser_parse_slice_hdr: parsing "Slice header", slice type 0
0:00:00.699004750 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:700:gst_h264_slice_parse_dec_ref_pic_marking: parsing "Decoded reference picture marking"
0:00:00.699054000 8744 0x3d233140 DEBUG h264parse gsth264parse.c:840:gst_h264_parse_process_nal:<my_h264parse> parse result 0, first MB: 49, slice type: 0
0:00:00.699111750 8744 0x3d233140 LOG h264parse gsth264parse.c:895:gst_h264_parse_process_nal:<my_h264parse> collecting NAL in AVC frame
0:00:00.699157125 8744 0x3d233140 DEBUG h264parse gsth264parse.c:428:gst_h264_parse_wrap_nal:<my_h264parse> nal length 1125
0:00:00.699205750 8744 0x3d233140 DEBUG GST_MEMORY gstmemory.c:139:gst_memory_init: new memory 0xffffa4031250, maxsize:1136 offset:0 size:1129
0:00:00.699263625 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:799:gst_buffer_new: new 0xffffa4017d90
0:00:00.699304250 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:414:_memory_add: buffer 0xffffa4017d90, idx -1, mem 0xffffa4031250
0:00:00.699354375 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:855:gst_buffer_new_allocate: new buffer 0xffffa4017d90 of size 1129 from allocator (nil)
0:00:00.699404750 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1826:gst_buffer_fill: buffer 0xffffa4017d90, offset 0, size 4
0:00:00.699454750 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1826:gst_buffer_fill: buffer 0xffffa4017d90, offset 4, size 1125
0:00:00.699506000 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1582:gst_buffer_resize_range: trim 0xffffa4017d90 0-1129 size:1129 offs:0 max:1136
0:00:00.699580875 8744 0x3d233140 LOG adapter gstadapter.c:395:gst_adapter_push:<GstAdapter at 0x3d20c120> pushing 0xffffa4017d90 1129 bytes at end, size now 1535
0:00:00.699689500 8744 0x3d233140 DEBUG GST_CAPS gstpad.c:2705:gst_pad_has_current_caps:<my_h264parse:src> check current pad caps video/x-h264, stream-format=(string)byte-stream, alignment=(string)au, framerate=(fraction)0/1, width=(int)176, height=(int)144, interlace-mode=(string)progressive, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8, parsed=(boolean)true, profile=(string)constrained-baseline, level=(string)1.2
0:00:00.699864875 8744 0x3d233140 LOG h264parse gsth264parse.c:2016:gst_h264_parse_get_timestamp:<my_h264parse> Upstream ts 0:00:02.000000000
0:00:00.699930750 8744 0x3d233140 DEBUG h264parse gsth264parse.c:2035:gst_h264_parse_get_timestamp:<my_h264parse> unable to compute timestamp: timing info not present
0:00:00.699984125 8744 0x3d233140 LOG adapter gstadapter.c:974:gst_adapter_get_buffer:<GstAdapter at 0x3d20c120> getting buffer of 1535 bytes
0:00:00.700041125 8744 0x3d233140 LOG adapter gstadapter.c:736:gst_adapter_get_internal:<GstAdapter at 0x3d20c120> allocating 1535 bytes
0:00:00.700090375 8744 0x3d233140 DEBUG adapter gstadapter.c:344:copy_into_unchecked: bsize 6, skip 0, csize 6
0:00:00.700153750 8744 0x3d233140 LOG GST_PERFORMANCE gstadapter.c:346:copy_into_unchecked:<GstAdapter at 0x3d20c120> extract 6 bytes
0:00:00.700196375 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1876:gst_buffer_extract: buffer 0xffffa4017b70, offset 0, size 6
0:00:00.700261500 8744 0x3d233140 LOG GST_PERFORMANCE gstadapter.c:359:copy_into_unchecked:<GstAdapter at 0x3d20c120> extract 25 bytes
0:00:00.700303250 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1876:gst_buffer_extract: buffer 0xffffa4017950, offset 0, size 25
0:00:00.700367625 8744 0x3d233140 LOG GST_PERFORMANCE gstadapter.c:359:copy_into_unchecked:<GstAdapter at 0x3d20c120> extract 375 bytes
0:00:00.700409125 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1876:gst_buffer_extract: buffer 0xffffa4017a60, offset 0, size 375
0:00:00.700473750 8744 0x3d233140 LOG GST_PERFORMANCE gstadapter.c:359:copy_into_unchecked:<GstAdapter at 0x3d20c120> extract 1129 bytes
0:00:00.700515500 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1876:gst_buffer_extract: buffer 0xffffa4017d90, offset 0, size 1129
0:00:00.700603500 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:799:gst_buffer_new: new 0xffffa4034090
0:00:00.700650250 8744 0x3d233140 DEBUG GST_MEMORY gstmemory.c:139:gst_memory_init: new memory 0x3d227580, maxsize:1535 offset:0 size:1535
0:00:00.700707000 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:414:_memory_add: buffer 0xffffa4034090, idx -1, mem 0x3d227580
0:00:00.700773750 8744 0x3d233140 LOG adapter gstadapter.c:634:gst_adapter_flush_unchecked:<GstAdapter at 0x3d20c120> flushing 1535 bytes
0:00:00.700830500 8744 0x3d233140 LOG adapter gstadapter.c:656:gst_adapter_flush_unchecked:<GstAdapter at 0x3d20c120> flushing out head buffer
0:00:00.700868375 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:725:_gst_buffer_free: finalize 0xffffa4017b70
0:00:00.700909375 8744 0x3d233140 DEBUG GST_MEMORY gstmemory.c:88:_gst_memory_free: free memory 0xffffa400ab50
0:00:00.700970500 8744 0x3d233140 LOG adapter gstadapter.c:656:gst_adapter_flush_unchecked:<GstAdapter at 0x3d20c120> flushing out head buffer
0:00:00.701009000 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:725:_gst_buffer_free: finalize 0xffffa4017950
0:00:00.701081875 8744 0x3d233140 DEBUG GST_MEMORY gstmemory.c:88:_gst_memory_free: free memory 0xffffa401b380
0:00:00.701152750 8744 0x3d233140 LOG adapter gstadapter.c:656:gst_adapter_flush_unchecked:<GstAdapter at 0x3d20c120> flushing out head buffer
0:00:00.701191250 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:725:_gst_buffer_free: finalize 0xffffa4017a60
0:00:00.701263375 8744 0x3d233140 DEBUG GST_MEMORY gstmemory.c:88:_gst_memory_free: free memory 0xffffa4032030
0:00:00.701324875 8744 0x3d233140 LOG adapter gstadapter.c:656:gst_adapter_flush_unchecked:<GstAdapter at 0x3d20c120> flushing out head buffer
0:00:00.701363000 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:725:_gst_buffer_free: finalize 0xffffa4017d90
0:00:00.701404000 8744 0x3d233140 DEBUG GST_MEMORY gstmemory.c:88:_gst_memory_free: free memory 0xffffa4031250
0:00:00.701462500 8744 0x3d233140 LOG adapter gstadapter.c:668:gst_adapter_flush_unchecked:<GstAdapter at 0x3d20c120> adapter empty now
0:00:00.701501875 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:515:gst_buffer_copy_into: copy 0xffffa4017c80 to 0xffffa4034090, offset 0-1533/1533
0:00:00.701573125 8744 0x3d233140 LOG baseparse gstbaseparse.c:2637:gst_base_parse_finish_frame:<my_h264parse> finished frame at offset 5548, flushing size 1533
0:00:00.701635375 8744 0x3d233140 LOG adapter gstadapter.c:634:gst_adapter_flush_unchecked:<GstAdapter at 0x3d20c000> flushing 1533 bytes
0:00:00.701689875 8744 0x3d233140 LOG adapter gstadapter.c:656:gst_adapter_flush_unchecked:<GstAdapter at 0x3d20c000> flushing out head buffer
0:00:00.701727125 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:725:_gst_buffer_free: finalize 0xffffa40172f0
0:00:00.701782625 8744 0x3d233140 LOG adapter gstadapter.c:668:gst_adapter_flush_unchecked:<GstAdapter at 0x3d20c000> adapter empty now
0:00:00.701821875 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:725:_gst_buffer_free: finalize 0xffffa4017c80
0:00:00.701861750 8744 0x3d233140 DEBUG GST_MEMORY gstmemory.c:88:_gst_memory_free: free memory 0xffffa4018040
(free_data, 133)
0:00:00.701939500 8744 0x3d233140 DEBUG baseparse gstbaseparse.c:2333:gst_base_parse_handle_and_push_frame:<my_h264parse> no next fallback timestamp
0:00:00.701990125 8744 0x3d233140 LOG baseparse gstbaseparse.c:2392:gst_base_parse_push_frame:<my_h264parse> processing buffer of size 1535 with dts 99:99:99.999999999, pts 0:00:02.000000000, duration 0:00:00.500000000
0:00:00.702093125 8744 0x3d233140 DEBUG GST_CAPS gstpad.c:2705:gst_pad_has_current_caps:<my_h264parse:src> check current pad caps video/x-h264, stream-format=(string)byte-stream, alignment=(string)au, framerate=(fraction)0/1, width=(int)176, height=(int)144, interlace-mode=(string)progressive, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8, parsed=(boolean)true, profile=(string)constrained-baseline, level=(string)1.2
0:00:00.702242250 8744 0x3d233140 LOG baseparse gstbaseparse.c:1851:gst_base_parse_update_bitrates:<my_h264parse> frame bitrate 24560, avg bitrate 28180
0:00:00.702304375 8744 0x3d233140 DEBUG h264parse gsth264parse.c:186:gst_h264_parse_reset_frame:<my_h264parse> reset frame
0:00:00.702354250 8744 0x3d233140 LOG baseparse gstbaseparse.c:2535:gst_base_parse_push_frame:<my_h264parse> pushing frame (1535 bytes) now..
0:00:00.702422000 8744 0x3d233140 DEBUG GST_SCHEDULING gstpad.c:4277:gst_pad_chain_data_unchecked:<my_vdec:sink> calling chainfunction &gst_video_decoder_chain with buffer buffer: 0xffffa4034090, pts 0:00:02.000000000, dts 99:99:99.999999999, dur 0:00:00.500000000, size 1535, offset 5548, offset_end none, flags 0x2400
0:00:00.702555375 8744 0x3d233140 LOG videodecoder gstvideodecoder.c:2438:gst_video_decoder_chain:<my_vdec> chain PTS 0:00:02.000000000, DTS 99:99:99.999999999 duration 0:00:00.500000000 size 1535 flags 2400
0:00:00.702658500 8744 0x3d233140 LOG videodecoder gstvideodecoder.c:2595:gst_video_decoder_new_frame:<my_vdec> Created new frame 0xffffa40341a0 (sfn:4)
0:00:00.702722125 8744 0x3d233140 LOG videodecoder gstvideodecoder.c:3410:gst_video_decoder_decode_frame:<my_vdec> PTS 0:00:02.000000000, DTS 99:99:99.999999999, dist 4
0:00:00.702852500 8744 0x3d233140 DEBUG v4l2videodec gstv4l2videodec.c:704:gst_v4l2_video_dec_handle_frame:<my_vdec> Handling frame 4
0:00:00.702917750 8744 0x3d233140 DEBUG v4l2bufferpool gstv4l2bufferpool.c:1745:gst_v4l2_buffer_pool_process:<my_vdec:pool:sink> process buffer 0xffffa40341d8
0:00:00.702970500 8744 0x3d233140 LOG v4l2bufferpool gstv4l2bufferpool.c:1923:gst_v4l2_buffer_pool_process:<my_vdec:pool:sink> alloc buffer from our pool
0:00:00.703019000 8744 0x3d233140 DEBUG v4l2bufferpool gstv4l2bufferpool.c:1342:gst_v4l2_buffer_pool_acquire_buffer:<my_vdec:pool:sink> acquire
0:00:00.703070500 8744 0x3d233140 LOG bufferpool gstbufferpool.c:1128:default_acquire_buffer:<my_vdec:pool:sink> acquired buffer 0xffffa40170d0
0:00:00.703125750 8744 0x3d233140 LOG v4l2bufferpool gstv4l2bufferpool.c:116:gst_v4l2_buffer_pool_copy_buffer:<my_vdec:pool:sink> copying buffer
0:00:00.703173125 8744 0x3d233140 DEBUG v4l2bufferpool gstv4l2bufferpool.c:141:gst_v4l2_buffer_pool_copy_buffer:<my_vdec:pool:sink> copy raw bytes
0:00:00.703211000 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1721:gst_buffer_map_range: buffer 0xffffa4034090, idx 0, length -1, flags 0001
0:00:00.703268375 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:213:_get_merged_memory: buffer 0xffffa4034090, idx 0, length 1
0:00:00.703322250 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1826:gst_buffer_fill: buffer 0xffffa40170d0, offset 0, size 1535
0:00:00.703380250 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1582:gst_buffer_resize_range: trim 0xffffa40170d0 0-1535 size:6291456 offs:0 max:6291456
0:00:00.703444000 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:515:gst_buffer_copy_into: copy 0xffffa4034090 to 0xffffa40170d0, offset 0-1535/1535
0:00:00.703511750 8744 0x3d233140 LOG GST_PERFORMANCE gstv4l2bufferpool.c:155:gst_v4l2_buffer_pool_copy_buffer:<my_vdec:pool:sink> slow copy into buffer 0xffffa40170d0
0:00:00.703572000 8744 0x3d233140 LOG v4l2bufferpool gstv4l2bufferpool.c:1059:gst_v4l2_buffer_pool_qbuf:<my_vdec:pool:sink> queuing buffer 0
0:00:00.703706000 8744 0x3d233140 LOG v4l2allocator gstv4l2allocator.c:1265:gst_v4l2_allocator_qbuf:<my_vdec:pool:sink:allocator> queued buffer 0 (flags 0x4003)
0:00:00.703761500 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:710:_gst_buffer_dispose: release 0xffffa40170d0 to pool 0xffffa4012410
0:00:00.703820375 8744 0x3d233140 DEBUG v4l2bufferpool gstv4l2bufferpool.c:1420:gst_v4l2_buffer_pool_release_buffer:<my_vdec:pool:sink> release buffer 0xffffa40170d0
0:00:00.703874125 8744 0x3d233140 LOG v4l2bufferpool gstv4l2bufferpool.c:1503:gst_v4l2_buffer_pool_release_buffer:<my_vdec:pool:sink> buffer 0 is queued
0:00:00.703927250 8744 0x3d233140 LOG v4l2bufferpool gstv4l2bufferpool.c:999:gst_v4l2_buffer_pool_poll:<my_vdec:pool:sink> polling device
0:00:00.703966625 8744 0x3d233140 DEBUG GST_POLL gstpoll.c:1369:gst_poll_wait: 0xffffa4005cf0: timeout :99:99:99.999999999
0:00:00.704044625 8744 0x3d233140 DEBUG GST_POLL gstpoll.c:1188:gst_poll_fd_has_error: 0xffffa4005cf0: fd (fd:18, idx:1) 0
0:00:00.704102250 8744 0x3d233140 DEBUG GST_POLL gstpoll.c:1265:gst_poll_fd_can_read_pri_unlocked: 0xffffa4005cf0: fd (fd:18, idx:1) 0
0:00:00.704117500 8744 0x3d233770 DEBUG GST_POLL gstpoll.c:1188:gst_poll_fd_has_error: 0xffff9c007400: fd (fd:23, idx:1) 0
0:00:00.704167250 8744 0x3d233140 LOG v4l2bufferpool gstv4l2bufferpool.c:1322:gst_v4l2_buffer_pool_dequeue:<my_vdec:pool:sink> dequeueing a buffer
0:00:00.704221125 8744 0x3d233770 DEBUG GST_POLL gstpoll.c:1265:gst_poll_fd_can_read_pri_unlocked: 0xffff9c007400: fd (fd:23, idx:1) 0
0:00:00.704317875 8744 0x3d233140 LOG v4l2allocator gstv4l2allocator.c:1312:gst_v4l2_allocator_dqbuf:<my_vdec:pool:sink:allocator> dequeued buffer 1 (flags 0x4001)
0:00:00.704410125 8744 0x3d233770 LOG v4l2bufferpool gstv4l2bufferpool.c:1322:gst_v4l2_buffer_pool_dequeue:<my_vdec:pool:src> dequeueing a buffer
0:00:00.704473500 8744 0x3d233140 LOG v4l2bufferpool gstv4l2bufferpool.c:1194:gst_v4l2_buffer_pool_dqbuf:<my_vdec:pool:sink> dequeued buffer 0xffffa4017840 seq:0 (ix=1), mem 0xffffa4018280 used 2036, plane=0, flags 00004001, ts 0:00:01.500000000, pool-queued=1, buffer=0xffffa4017840
0:00:00.704527250 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:1312:gst_v4l2_allocator_dqbuf:<my_vdec:pool:src:allocator> dequeued buffer 0 (flags 0x4001)
0:00:00.704590500 8744 0x3d233140 DEBUG v4l2bufferpool gstv4l2bufferpool.c:1420:gst_v4l2_buffer_pool_release_buffer:<my_vdec:pool:sink> release buffer 0xffffa4017840
0:00:00.704663875 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:1341:gst_v4l2_allocator_dqbuf:<my_vdec:pool:src:allocator> Dequeued capture buffer, length: 65536 bytesused: 65536 data_offset: 0
0:00:00.704723500 8744 0x3d233140 LOG v4l2bufferpool gstv4l2bufferpool.c:1488:gst_v4l2_buffer_pool_release_buffer:<my_vdec:pool:sink> buffer 1 not queued, putting on free list
0:00:00.704802250 8744 0x3d233140 LOG bufferpool gstbufferpool.c:1284:default_release_buffer:<my_vdec:pool:sink> released buffer 0xffffa4017840 0
0:00:00.704832375 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:1341:gst_v4l2_allocator_dqbuf:<my_vdec:pool:src:allocator> Dequeued capture buffer, length: 32768 bytesused: 32768 data_offset: 0
0:00:00.704855875 8744 0x3d233140 DEBUG GST_BUFFER gstbuffer.c:1375:gst_buffer_is_memory_range_writable: idx 0, length -1
0:00:00.704931500 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:799:gst_buffer_new: new 0xffffa40342b0
0:00:00.704976625 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:515:gst_buffer_copy_into: copy 0xffffa4034090 to 0xffffa40342b0, offset 0-0/1535
0:00:00.704972750 8744 0x3d233770 LOG v4l2bufferpool gstv4l2bufferpool.c:1194:gst_v4l2_buffer_pool_dqbuf:<my_vdec:pool:src> dequeued buffer 0xffffa4028460 seq:0 (ix=0), mem 0xffffa40184c0 used 65536, plane=0, flags 00004001, ts 0:00:00.000000000, pool-queued=21, buffer=0xffffa4028460
0:00:00.705147000 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:725:_gst_buffer_free: finalize 0xffffa4034090
0:00:00.705213125 8744 0x3d233140 DEBUG GST_MEMORY gstmemory.c:88:_gst_memory_free: free memory 0x3d227580
0:00:00.705138875 8744 0x3d233770 LOG v4l2bufferpool gstv4l2bufferpool.c:1194:gst_v4l2_buffer_pool_dqbuf:<my_vdec:pool:src> dequeued buffer 0xffffa4028460 seq:0 (ix=0), mem 0xffffa40185e0 used 32768, plane=1, flags 00004001, ts 0:00:00.000000000, pool-queued=21, buffer=0xffffa4028460
0:00:00.705293375 8744 0x3d233140 DEBUG GST_SCHEDULING gstpad.c:4283:gst_pad_chain_data_unchecked:<my_vdec:sink> called chainfunction &gst_video_decoder_chain with buffer 0xffffa4034090, returned ok
0:00:00.705326000 8744 0x3d233770 LOG v4l2videodec gstv4l2videodec.c:629:gst_v4l2_video_dec_loop:<my_vdec> Process output buffer
0:00:00.705380625 8744 0x3d233140 LOG baseparse gstbaseparse.c:2537:gst_base_parse_push_frame:<my_h264parse> frame pushed, flow ok
0:00:00.705417625 8744 0x3d233770 DEBUG v4l2bufferpool gstv4l2bufferpool.c:1745:gst_v4l2_buffer_pool_process:<my_vdec:pool:src> process buffer 0xffffb1d697e8
0:00:00.705487000 8744 0x3d233770 LOG v4l2videodec gstv4l2videodec.c:460:gst_v4l2_video_dec_get_oldest_frame:<my_vdec> Oldest frame is 0 0:00:00.000000000 and 4 frames left
0:00:00.705511375 8744 0x3d233140 LOG baseparse gstbaseparse.c:2166:gst_base_parse_handle_buffer:<my_h264parse> handle_frame skipped 0, flushed 1533
0:00:00.705647625 8744 0x3d233140 DEBUG baseparse gstbaseparse.c:3215:gst_base_parse_chain:<my_h264parse> not enough data available (only 0 bytes)
0:00:00.705702250 8744 0x3d233140 LOG baseparse gstbaseparse.c:3277:gst_base_parse_chain:<my_h264parse> chain leaving
0:00:00.705701875 8744 0x3d233770 DEBUG GST_META gstmeta.c:198:gst_meta_register: register "GstDmabufMeta" implementing "GstDmabufMetaAPI" of size 24
0:00:00.705768250 8744 0x3d233140 DEBUG GST_SCHEDULING gstpad.c:4283:gst_pad_chain_data_unchecked:<my_h264parse:sink> called chainfunction &gst_base_parse_chain with buffer 0xffffa40172f0, returned ok
0:00:00.705802875 8744 0x3d233770 DEBUG GST_BUFFER gstbuffer.c:2201:gst_buffer_add_meta: alloc metadata 0xffff9c001e08 (GstDmabufMeta) of size 24
0:00:00.705860000 8744 0x3d233770 DEBUG v4l2videodec gstv4l2videodec.c:647:gst_v4l2_video_dec_loop:<my_vdec> add drm modifier: 576460752303423489
0:00:00.705849625 8744 0x3d233140 LOG basesrc gstbasesrc.c:2828:gst_base_src_loop:<my_appsrc> next_ts 0:00:00.000007081 size 4096
0:00:00.705917000 8744 0x3d233770 LOG videodecoder gstvideodecoder.c:2985:gst_video_decoder_finish_frame:<my_vdec> finish frame 0xffffa4017620
0:00:00.705984375 8744 0x3d233140 DEBUG basesrc gstbasesrc.c:2399:gst_base_src_update_length:<my_appsrc> reading offset 7081, length 4096, size -1, segment.stop -1, maxsize -1
0:00:00.706023375 8744 0x3d233770 LOG videodecoder gstvideodecoder.c:2625:gst_video_decoder_prepare_finish_frame:<my_vdec> n 5 in 0 out 0
0:00:00.706076500 8744 0x3d233140 DEBUG basesrc gstbasesrc.c:2506:gst_base_src_get_range:<my_appsrc> calling create offset 7081 length 4096, time 0
0:00:00.706110250 8744 0x3d233770 LOG videodecoder gstvideodecoder.c:2634:gst_video_decoder_prepare_finish_frame:<my_vdec> finish frame 0xffffa4017620 (#0) sync:1 PTS:0:00:00.000000000 DTS:0:00:00.000000000
(get_data, 99)
(get_data, 108)read_ret: 8, target frame num: 5, read frame num: 5
0:00:00.706189625 8744 0x3d233770 LOG videodecoder gstvideodecoder.c:2607:gst_video_decoder_push_event_list:<my_vdec> pushing segment event
0:00:00.706303625 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:799:gst_buffer_new: new 0xffffa4017c80
0:00:00.706359000 8744 0x3d233140 DEBUG GST_MEMORY gstmemory.c:139:gst_memory_init: new memory 0x3d227730, maxsize:1567 offset:0 size:1567
0:00:00.706321875 8744 0x3d233770 DEBUG videodecoder gstvideodecoder.c:836:gst_video_decoder_push_event:<my_vdec> segment time segment start=0:00:00.000000000, offset=0:00:00.000000000, stop=99:99:99.999999999, 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:00.706417625 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:414:_memory_add: buffer 0xffffa4017c80, idx -1, mem 0x3d227730
0:00:00.706490625 8744 0x3d233770 DEBUG videodecoder gstvideodecoder.c:857:gst_video_decoder_push_event:<my_vdec> pushing event segment
0:00:00.706604000 8744 0x3d233770 LOG GST_PADS gstpad.c:5176:store_sticky_event:<my_vdec:src> stored sticky event segment
0:00:00.706659250 8744 0x3d233770 DEBUG GST_PADS gstpad.c:3937:check_sticky:<my_vdec:src> pushing all sticky events
0:00:00.706596750 8744 0x3d233140 DEBUG appsrc gstappsrc.c:1863:gst_app_src_push_internal:<my_appsrc> queueing buffer 0xffffa4017c80
0:00:00.706708625 8744 0x3d233770 DEBUG GST_PADS gstpad.c:3867:push_sticky:<my_vdec:src> event stream-start was already received
0:00:00.706782500 8744 0x3d233140 LOG appsrc gstappsrc.c:1221:gst_app_src_create:<my_appsrc> have buffer 0xffffa4017c80 of size 1567
0:00:00.706802875 8744 0x3d233770 DEBUG GST_PADS gstpad.c:3867:push_sticky:<my_vdec:src> event caps was already received
0:00:00.706868625 8744 0x3d233140 DEBUG basesrc gstbasesrc.c:2360:gst_base_src_do_sync:<my_appsrc> no sync needed
0:00:00.706953000 8744 0x3d233770 LOG GST_PADS gstpad.c:5351:gst_pad_push_event_unchecked:<my_vdec:src> sending event 0xffffa4007c20 (segment) to peerpad <my_sink:sink>
0:00:00.706995000 8744 0x3d233140 DEBUG basesrc gstbasesrc.c:2597:gst_base_src_get_range:<my_appsrc> buffer ok
0:00:00.707065000 8744 0x3d233140 DEBUG GST_SCHEDULING gstpad.c:4277:gst_pad_chain_data_unchecked:<my_h264parse:sink> calling chainfunction &gst_base_parse_chain with buffer buffer: 0xffffa4017c80, pts 0:00:02.500000000, dts 99:99:99.999999999, dur 0:00:00.500000000, size 1567, offset none, offset_end none, flags 0x0
0:00:00.707190250 8744 0x3d233140 DEBUG baseparse gstbaseparse.c:3030:gst_base_parse_chain:<my_h264parse> chain
0:00:00.707019500 8744 0x3d233770 DEBUG GST_EVENT gstpad.c:5638:gst_pad_send_event_unchecked:<my_sink:sink> have event type segment event: 0xffffa4007c20, time 99:99:99.999999999, seq-num 20, GstEventSegment, segment=(GstSegment)"GstSegment, flags=(GstSegmentFlags)GST_SEGMENT_FLAG_NONE, rate=(double)1, applied-rate=(double)1, format=(GstFormat)GST_FORMAT_TIME, base=(guint64)0, offset=(guint64)0, start=(guint64)0, stop=(guint64)18446744073709551615, time=(guint64)0, position=(guint64)0, duration=(guint64)18446744073709551615;";
0:00:00.707249750 8744 0x3d233140 LOG baseparse gstbaseparse.c:3150:gst_base_parse_chain:<my_h264parse> buffer size: 1567, offset = -1, dts 99:99:99.999999999, pts 0:00:02.500000000
0:00:00.707351625 8744 0x3d233140 LOG adapter gstadapter.c:389:gst_adapter_push:<GstAdapter at 0x3d20c000> pushing 0xffffa4017c80 first 1567 bytes
0:00:00.707296375 8744 0x3d233770 DEBUG basesink gstbasesink.c:3252:gst_base_sink_event:<my_sink> received event 0xffffa4007c20 segment event: 0xffffa4007c20, time 99:99:99.999999999, seq-num 20, GstEventSegment, segment=(GstSegment)"GstSegment, flags=(GstSegmentFlags)GST_SEGMENT_FLAG_NONE, rate=(double)1, applied-rate=(double)1, format=(GstFormat)GST_FORMAT_TIME, base=(guint64)0, offset=(guint64)0, start=(guint64)0, stop=(guint64)18446744073709551615, time=(guint64)0, position=(guint64)0, duration=(guint64)18446744073709551615;";
0:00:00.707416000 8744 0x3d233140 LOG adapter gstadapter.c:290:update_timestamps_and_offset:<GstAdapter at 0x3d20c000> new pts 0:00:02.500000000
0:00:00.707542125 8744 0x3d233140 LOG adapter gstadapter.c:974:gst_adapter_get_buffer:<GstAdapter at 0x3d20c000> getting buffer of 1567 bytes
0:00:00.707502250 8744 0x3d233770 DEBUG basesink gstbasesink.c:3187:gst_base_sink_default_event:<my_sink> configured segment time segment start=0:00:00.000000000, offset=0:00:00.000000000, stop=99:99:99.999999999, 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:00.707601000 8744 0x3d233140 LOG adapter gstadapter.c:989:gst_adapter_get_buffer:<GstAdapter at 0x3d20c000> providing buffer of 1567 bytes as head buffer
0:00:00.707655750 8744 0x3d233770 DEBUG GST_PADS gstpad.c:5712:gst_pad_send_event_unchecked:<my_sink:sink> sent event, ret ok
0:00:00.707753750 8744 0x3d233770 LOG GST_PADS gstpad.c:5176:store_sticky_event:<my_sink:sink> stored sticky event segment
0:00:00.707714500 8744 0x3d233140 LOG baseparse gstbaseparse.c:2148:gst_base_parse_handle_buffer:<my_h264parse> handling buffer of size 1567 with dts 99:99:99.999999999, pts 0:00:02.500000000, duration 0:00:00.500000000
0:00:00.707807625 8744 0x3d233770 LOG GST_PADS gstpad.c:5359:gst_pad_push_event_unchecked:<my_vdec:src> sent event 0xffffa4007c20 (segment) to peerpad <my_sink:sink>, ret ok
0:00:00.707860000 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:799:gst_buffer_new: new 0xffffa40172f0
0:00:00.707914125 8744 0x3d233770 DEBUG GST_PADS gstpad.c:3889:push_sticky:<my_vdec:src> event segment marked received
0:00:00.707996750 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:515:gst_buffer_copy_into: copy 0xffffa4017c80 to 0xffffa40172f0, offset 0-1567/1567
0:00:00.708043125 8744 0x3d233770 LOG videodecoder gstvideodecoder.c:2607:gst_video_decoder_push_event_list:<my_vdec> pushing tag event
0:00:00.708077625 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:414:_memory_add: buffer 0xffffa40172f0, idx -1, mem 0x3d227730
0:00:00.708135125 8744 0x3d233770 DEBUG videodecoder gstvideodecoder.c:857:gst_video_decoder_push_event:<my_vdec> pushing event tag
0:00:00.708189250 8744 0x3d233140 DEBUG GST_PERFORMANCE gstminiobject.c:317:gst_mini_object_make_writable: copy GstBuffer miniobject 0xffffa4017c80 -> 0xffffa40172f0
0:00:00.708237625 8744 0x3d233770 LOG GST_PADS gstpad.c:5176:store_sticky_event:<my_vdec:src> stored sticky event tag
0:00:00.708262000 8744 0x3d233140 LOG baseparse gstbaseparse.c:2110:gst_base_parse_prepare_frame:<my_h264parse> preparing frame at offset 18446744073709551615 (0xffffffffffffffff) of size 1567
0:00:00.708284500 8744 0x3d233770 DEBUG GST_PADS gstpad.c:3937:check_sticky:<my_vdec:src> pushing all sticky events
0:00:00.708345750 8744 0x3d233140 LOG baseparse gstbaseparse.c:764:gst_base_parse_update_frame:<my_h264parse> marking as new frame
0:00:00.708406750 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1721:gst_buffer_map_range: buffer 0xffffa40172f0, idx 0, length -1, flags 0001
0:00:00.708427625 8744 0x3d233770 DEBUG GST_PADS gstpad.c:3867:push_sticky:<my_vdec:src> event stream-start was already received
0:00:00.708474500 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:213:_get_merged_memory: buffer 0xffffa40172f0, idx 0, length 1
0:00:00.708558375 8744 0x3d233140 LOG h264parse gsth264parse.c:1097:gst_h264_parse_handle_frame:<my_h264parse> parsing new frame
0:00:00.708569125 8744 0x3d233770 DEBUG GST_PADS gstpad.c:3867:push_sticky:<my_vdec:src> event caps was already received
0:00:00.708617500 8744 0x3d233140 DEBUG h264parse gsth264parse.c:186:gst_h264_parse_reset_frame:<my_h264parse> reset frame
0:00:00.708666375 8744 0x3d233770 DEBUG GST_PADS gstpad.c:3867:push_sticky:<my_vdec:src> event segment was already received
0:00:00.708729000 8744 0x3d233140 DEBUG h264parse gsth264parse.c:1112:gst_h264_parse_handle_frame:<my_h264parse> last parse position 0
0:00:00.708764000 8744 0x3d233770 LOG GST_PADS gstpad.c:5351:gst_pad_push_event_unchecked:<my_vdec:src> sending event 0xffffa4007d70 (tag) to peerpad <my_sink:sink>
0:00:00.708786875 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:242:gst_h264_parse_nalu_header: Nal type 9, ref_idc 0
0:00:00.708842875 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:242:gst_h264_parse_nalu_header: Nal type 9, ref_idc 0
0:00:00.708824000 8744 0x3d233770 DEBUG GST_EVENT gstpad.c:5638:gst_pad_send_event_unchecked:<my_sink:sink> have event type tag event: 0xffffa4007d70, time 99:99:99.999999999, seq-num 34, GstTagList-stream, taglist=(taglist)"taglist\,\ video-codec\=\(string\)\"H.264\\\ \\\(Constrained\\\ Baseline\\\ Profile\\\)\"\;";
0:00:00.708914500 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:1366:gst_h264_parser_identify_nalu: Complete nal found. Off: 4, Size: 2
0:00:00.708970750 8744 0x3d233770 DEBUG basesink gstbasesink.c:3252:gst_base_sink_event:<my_sink> received event 0xffffa4007d70 tag event: 0xffffa4007d70, time 99:99:99.999999999, seq-num 34, GstTagList-stream, taglist=(taglist)"taglist\,\ video-codec\=\(string\)\"H.264\\\ \\\(Constrained\\\ Baseline\\\ Profile\\\)\"\;";
0:00:00.709022750 8744 0x3d233140 DEBUG h264parse gsth264parse.c:1162:gst_h264_parse_handle_frame:<my_h264parse> complete nal (offset, size): (4, 2)
0:00:00.709166000 8744 0x3d233770 LOG GST_MESSAGE gstmessage.c:301:gst_message_new_custom: source my_sink: creating new message 0xffff9c003180 tag
0:00:00.709203375 8744 0x3d233140 DEBUG h264parse gsth264parse.c:1219:gst_h264_parse_handle_frame:<my_h264parse> 0xffffa4030640 complete nal found. Off: 4, Size: 2
0:00:00.709232250 8744 0x3d233770 DEBUG GST_BUS gstbus.c:318:gst_bus_post:<bus0> [msg 0xffff9c003180] posting on bus tag message: 0xffff9c003180, time 99:99:99.999999999, seq-num 38, element 'my_sink', GstMessageTag, taglist=(taglist)"taglist\,\ video-codec\=\(string\)\"H.264\\\ \\\(Constrained\\\ Baseline\\\ Profile\\\)\"\;";
0:00:00.709276750 8744 0x3d233140 DEBUG h264parse gsth264parse.c:721:gst_h264_parse_process_nal:<my_h264parse> processing nal of type 9 AU delimiter, size 2
0:00:00.709338875 8744 0x3d233770 DEBUG bin gstbin.c:3715:gst_bin_handle_message_func:<my_pipeline> [msg 0xffff9c003180] handling child my_sink message of type tag
0:00:00.709395500 8744 0x3d233140 LOG h264parse gsth264parse.c:895:gst_h264_parse_process_nal:<my_h264parse> collecting NAL in AVC frame
0:00:00.709440875 8744 0x3d233770 DEBUG bin gstbin.c:4052:gst_bin_handle_message_func:<my_pipeline> posting message upward
0:00:00.709501000 8744 0x3d233140 DEBUG h264parse gsth264parse.c:428:gst_h264_parse_wrap_nal:<my_h264parse> nal length 2
0:00:00.709565875 8744 0x3d233140 DEBUG GST_MEMORY gstmemory.c:139:gst_memory_init: new memory 0xffffa400abf0, maxsize:13 offset:0 size:6
0:00:00.709625125 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:799:gst_buffer_new: new 0xffffa4017d90
0:00:00.709587000 8744 0x3d233770 DEBUG GST_BUS gstbus.c:318:gst_bus_post:<bus1> [msg 0xffff9c003180] posting on bus tag message: 0xffff9c003180, time 99:99:99.999999999, seq-num 38, element 'my_sink', GstMessageTag, taglist=(taglist)"taglist\,\ video-codec\=\(string\)\"H.264\\\ \\\(Constrained\\\ Baseline\\\ Profile\\\)\"\;";
0:00:00.709679125 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:414:_memory_add: buffer 0xffffa4017d90, idx -1, mem 0xffffa400abf0
0:00:00.709750875 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:855:gst_buffer_new_allocate: new buffer 0xffffa4017d90 of size 6 from allocator (nil)
0:00:00.709774750 8744 0x3d233770 DEBUG GST_BUS gstbus.c:357:gst_bus_post:<bus1> [msg 0xffff9c003180] pushing on async queue
0:00:00.709816875 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1826:gst_buffer_fill: buffer 0xffffa4017d90, offset 0, size 4
0:00:00.709889000 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1826:gst_buffer_fill: buffer 0xffffa4017d90, offset 4, size 2
0:00:00.709900750 8744 0x3d233770 LOG GST_POLL gstpoll.c:290:raise_wakeup: 0x3d154a30: raise
0:00:00.709952000 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1582:gst_buffer_resize_range: trim 0xffffa4017d90 0-6 size:6 offs:0 max:13
0:00:00.710020375 8744 0x3d233770 DEBUG GST_BUS gstbus.c:360:gst_bus_post:<bus1> [msg 0xffff9c003180] pushed on async queue
0:00:00.710034875 8744 0x3d233140 LOG adapter gstadapter.c:389:gst_adapter_push:<GstAdapter at 0x3d20c120> pushing 0xffffa4017d90 first 6 bytes
0:00:00.710070250 8744 0x3d233770 DEBUG GST_BUS gstbus.c:353:gst_bus_post:<bus0> [msg 0xffff9c003180] dropped
0:00:00.710131000 8744 0x3d233770 DEBUG GST_PADS gstpad.c:5712:gst_pad_send_event_unchecked:<my_sink:sink> sent event, ret ok
0:00:00.710075250 8744 0xffffa4002580 LOG GST_BUS gstbus.c:522:gst_bus_timed_pop_filtered:<bus1> have 1 messages
0:00:00.710163750 8744 0x3d233140 DEBUG h264parse gsth264parse.c:914:gst_h264_parse_collect_nal:<my_h264parse> parsing collected nal
0:00:00.710180250 8744 0x3d233770 LOG GST_PADS gstpad.c:5176:store_sticky_event:<my_sink:sink> stored sticky event tag
0:00:00.710218250 8744 0xffffa4002580 LOG GST_POLL gstpoll.c:314:release_wakeup: 0x3d154a30: release
0:00:00.710363625 8744 0x3d233770 LOG GST_PADS gstpad.c:5359:gst_pad_push_event_unchecked:<my_vdec:src> sent event 0xffffa4007d70 (tag) to peerpad <my_sink:sink>, ret ok
0:00:00.710307250 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:242:gst_h264_parse_nalu_header: Nal type 6, ref_idc 0
0:00:00.710471375 8744 0x3d233140 LOG h264parse gsth264parse.c:922:gst_h264_parse_collect_nal:<my_h264parse> nal type: 9 AU delimiter
0:00:00.710485000 8744 0xffffa4002580 DEBUG GST_BUS gstbus.c:546:gst_bus_timed_pop_filtered:<bus1> got message 0xffff9c003180, tag from my_sink, type mask is 4294967295
0:00:00.710485500 8744 0x3d233770 DEBUG GST_PADS gstpad.c:3889:push_sticky:<my_vdec:src> event tag marked received
0:00:00.710596375 8744 0x3d233140 LOG h264parse gsth264parse.c:941:gst_h264_parse_collect_nal:<my_h264parse> next nal type: 6 SEI
0:00:00.710568625 8744 0xffffa4002580 DEBUG GST_BUS gstbus.c:839:gst_bus_source_dispatch:<bus1> source 0x3d21dc00 calling dispatch with tag message: 0xffff9c003180, time 99:99:99.999999999, seq-num 38, element 'my_sink', GstMessageTag, taglist=(taglist)"taglist\,\ video-codec\=\(string\)\"H.264\\\ \\\(Constrained\\\ Baseline\\\ Profile\\\)\"\;";
0:00:00.710634500 8744 0x3d233770 DEBUG videodecoder gstvideodecoder.c:2676:gst_video_decoder_prepare_finish_frame:<my_vdec> sync timestamp 0:00:00.000000000 diff +0:00:00.000000000
0:00:00.710704750 8744 0xffffa4002580 LOG GST_MESSAGE gstmessage.c:208:_gst_message_free: finalize message 0xffff9c003180, tag from my_sink
0:00:00.710662500 8744 0x3d233140 LOG h264parse gsth264parse.c:948:gst_h264_parse_collect_nal:<my_h264parse> au complete: 0
0:00:00.710805000 8744 0x3d233140 DEBUG h264parse gsth264parse.c:1264:gst_h264_parse_handle_frame:<my_h264parse> Looking for more
0:00:00.710855250 8744 0xffffa4002580 DEBUG GST_BUS gstbus.c:844:gst_bus_source_dispatch:<bus1> source 0x3d21dc00 handler returns 1
0:00:00.710857125 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:242:gst_h264_parse_nalu_header: Nal type 6, ref_idc 0
0:00:00.710878375 8744 0x3d233770 LOG videodecoder gstvideodecoder.c:2686:gst_video_decoder_prepare_finish_frame:<my_vdec> Guessing duration 99:99:99.999999999 for frame...
0:00:00.710972000 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:1366:gst_h264_parser_identify_nalu: Complete nal found. Off: 10, Size: 21
0:00:00.711025625 8744 0x3d233770 DEBUG default gstvideoutils.c:40:_gst_video_codec_frame_free: free frame 0xffffa4017620
0:00:00.711086750 8744 0x3d233140 DEBUG h264parse gsth264parse.c:1162:gst_h264_parse_handle_frame:<my_h264parse> complete nal (offset, size): (10, 21)
0:00:00.711165125 8744 0x3d233770 LOG GST_BUFFER gstbuffer.c:725:_gst_buffer_free: finalize 0xffffa4017730
0:00:00.711161000 8744 0x3d233140 DEBUG h264parse gsth264parse.c:1219:gst_h264_parse_handle_frame:<my_h264parse> 0xffffa4030640 complete nal found. Off: 10, Size: 21
0:00:00.711229750 8744 0x3d233770 LOG videodecoder gstvideodecoder.c:3130:gst_video_decoder_clip_and_push_buf:<my_vdec> accepting buffer inside segment: 0:00:00.000000000 0:00:00.040000000 seg 0:00:00.000000000 to 99:99:99.999999999 time 0:00:00.000000000
0:00:00.711275625 8744 0x3d233140 DEBUG h264parse gsth264parse.c:721:gst_h264_parse_process_nal:<my_h264parse> processing nal of type 6 SEI, size 21
0:00:00.711310125 8744 0x3d233770 DEBUG videodecoder gstvideodecoder.c:3174:gst_video_decoder_clip_and_push_buf:<my_vdec> Setting discont on output buffer
0:00:00.711345250 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:2292:gst_h264_parser_parse_sei: parsing SEI nal
0:00:00.711429125 8744 0x3d233770 DEBUG videodecoder gstvideodecoder.c:3197:gst_video_decoder_clip_and_push_buf:<my_vdec> pushing buffer 0xffffa4028460 of size 98304, PTS 0:00:00.000000000, dur 99:99:99.999999999
0:00:00.711465625 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:1127:gst_h264_parser_parse_sei_message: parsing "Sei message"
0:00:00.711509500 8744 0x3d233770 INFO videodecoder gstvideodecoder.c:3210:gst_video_decoder_clip_and_push_buf:<my_vdec> First buffer since flush took 0:00:00.222606875 to produce
0:00:00.711562000 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:1147:gst_h264_parser_parse_sei_message: SEI message received: payloadType 5, payloadSize = 136 bits
0:00:00.711650875 8744 0x3d233140 DEBUG h264parse gsth264parse.c:807:gst_h264_parse_process_nal:<my_h264parse> marking SEI in frame at offset 6
0:00:00.711705250 8744 0x3d233140 LOG h264parse gsth264parse.c:895:gst_h264_parse_process_nal:<my_h264parse> collecting NAL in AVC frame
0:00:00.711661500 8744 0x3d233770 DEBUG GST_SCHEDULING gstpad.c:4277:gst_pad_chain_data_unchecked:<my_sink:sink> calling chainfunction &gst_base_sink_chain with buffer buffer: 0xffffa4028460, pts 0:00:00.000000000, dts 99:99:99.999999999, dur 99:99:99.999999999, size 98304, offset none, offset_end none, flags 0x40
0:00:00.711762500 8744 0x3d233140 DEBUG h264parse gsth264parse.c:428:gst_h264_parse_wrap_nal:<my_h264parse> nal length 21
0:00:00.711818000 8744 0x3d233770 DEBUG basesink gstbasesink.c:3421:gst_base_sink_chain_unlocked:<my_sink> got times start: 0:00:00.000000000, end: 99:99:99.999999999
0:00:00.711900250 8744 0x3d233770 DEBUG basesink gstbasesink.c:2006:gst_base_sink_get_sync_times:<my_sink> got times start: 0:00:00.000000000, stop: 99:99:99.999999999, do_sync 1
0:00:00.711903750 8744 0x3d233140 DEBUG GST_MEMORY gstmemory.c:139:gst_memory_init: new memory 0xffffa401b430, maxsize:32 offset:0 size:25
0:00:00.711970125 8744 0x3d233770 DEBUG default gstsegment.c:737:gst_segment_to_running_time_full: invalid position (-1)
0:00:00.712021125 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:799:gst_buffer_new: new 0xffffa4017a60
0:00:00.712078250 8744 0x3d233770 DEBUG basesink gstbasesink.c:2312:gst_base_sink_do_preroll:<my_sink> prerolling object 0xffffa4028460
0:00:00.712120125 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:414:_memory_add: buffer 0xffffa4017a60, idx -1, mem 0xffffa401b430
0:00:00.712191750 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:855:gst_buffer_new_allocate: new buffer 0xffffa4017a60 of size 25 from allocator (nil)
0:00:00.712215250 8744 0x3d233770 DEBUG basesink gstbasesink.c:994:gst_base_sink_set_last_buffer_unlocked:<my_sink> setting last buffer to 0xffffa4028460
0:00:00.712255875 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1826:gst_buffer_fill: buffer 0xffffa4017a60, offset 0, size 4
0:00:00.712326875 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1826:gst_buffer_fill: buffer 0xffffa4017a60, offset 4, size 21
0:00:00.712349125 8744 0x3d233770 DEBUG basesink gstbasesink.c:2335:gst_base_sink_do_preroll:<my_sink> preroll buffer 0:00:00.000000000
0:00:00.712391250 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1582:gst_buffer_resize_range: trim 0xffffa4017a60 0-25 size:25 offs:0 max:32
0:00:00.712434125 8744 0x3d233770 LOG GST_DEBUG gstinfo.c:1595:gst_debug_reset_threshold: category videosink matches pattern 0x3d0a0430 - gets set to level 6
0:00:00.712473125 8744 0x3d233140 LOG adapter gstadapter.c:395:gst_adapter_push:<GstAdapter at 0x3d20c120> pushing 0xffffa4017a60 25 bytes at end, size now 31
0:00:00.712509375 8744 0x3d233770 LOG videosink gstvideosink.c:208:gst_video_sink_show_preroll_frame:<my_sink> rendering frame, ts=0:00:00.000000000
0:00:00.712586250 8744 0x3d233140 DEBUG h264parse gsth264parse.c:914:gst_h264_parse_collect_nal:<my_h264parse> parsing collected nal
0:00:00.712634375 8744 0x3d233770 LOG waylandsink gstwaylandsink.c:863:gst_wayland_sink_show_frame:<my_sink> render buffer 0xffffa4028460
0:00:00.712685875 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:242:gst_h264_parse_nalu_header: Nal type 1, ref_idc 1
0:00:00.712741625 8744 0x3d233770 LOG videooverlay videooverlay.c:401:gst_video_overlay_prepare_window_handle:<my_sink> prepare window handle
0:00:00.712800375 8744 0x3d233140 LOG h264parse gsth264parse.c:922:gst_h264_parse_collect_nal:<my_h264parse> nal type: 6 SEI
0:00:00.712836250 8744 0x3d233770 LOG GST_MESSAGE gstmessage.c:301:gst_message_new_custom: source my_sink: creating new message 0xffff9c003200 element
0:00:00.712864625 8744 0x3d233140 LOG h264parse gsth264parse.c:941:gst_h264_parse_collect_nal:<my_h264parse> next nal type: 1 Slice
0:00:00.712893500 8744 0x3d233770 DEBUG GST_BUS gstbus.c:318:gst_bus_post:<bus0> [msg 0xffff9c003200] posting on bus element message: 0xffff9c003200, time 99:99:99.999999999, seq-num 39, element 'my_sink', prepare-window-handle;
0:00:00.712927125 8744 0x3d233140 LOG h264parse gsth264parse.c:948:gst_h264_parse_collect_nal:<my_h264parse> au complete: 0
0:00:00.712981125 8744 0x3d233770 DEBUG bin gstbin.c:3715:gst_bin_handle_message_func:<my_pipeline> [msg 0xffff9c003200] handling child my_sink message of type element
0:00:00.713038250 8744 0x3d233140 DEBUG h264parse gsth264parse.c:1264:gst_h264_parse_handle_frame:<my_h264parse> Looking for more
0:00:00.713144125 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:242:gst_h264_parse_nalu_header: Nal type 1, ref_idc 1
0:00:00.713168000 8744 0x3d233770 DEBUG bin gstbin.c:4052:gst_bin_handle_message_func:<my_pipeline> posting message upward
0:00:00.713204250 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:1366:gst_h264_parser_identify_nalu: Complete nal found. Off: 34, Size: 414
0:00:00.713260750 8744 0x3d233770 DEBUG GST_BUS gstbus.c:318:gst_bus_post:<bus1> [msg 0xffff9c003200] posting on bus element message: 0xffff9c003200, time 99:99:99.999999999, seq-num 39, element 'my_sink', prepare-window-handle;
0:00:00.713311500 8744 0x3d233140 DEBUG h264parse gsth264parse.c:1162:gst_h264_parse_handle_frame:<my_h264parse> complete nal (offset, size): (34, 414)
0:00:00.713341750 8744 0x3d233770 DEBUG GST_BUS gstbus.c:357:gst_bus_post:<bus1> [msg 0xffff9c003200] pushing on async queue
0:00:00.713387625 8744 0x3d233140 DEBUG h264parse gsth264parse.c:1219:gst_h264_parse_handle_frame:<my_h264parse> 0xffffa4030640 complete nal found. Off: 34, Size: 414
0:00:00.713418375 8744 0x3d233770 LOG GST_POLL gstpoll.c:290:raise_wakeup: 0x3d154a30: raise
0:00:00.713467875 8744 0x3d233140 DEBUG h264parse gsth264parse.c:721:gst_h264_parse_process_nal:<my_h264parse> processing nal of type 1 Slice, size 414
0:00:00.713524375 8744 0x3d233770 DEBUG GST_BUS gstbus.c:360:gst_bus_post:<bus1> [msg 0xffff9c003200] pushed on async queue
0:00:00.713562875 8744 0xffffa4002580 LOG GST_BUS gstbus.c:522:gst_bus_timed_pop_filtered:<bus1> have 1 messages
0:00:00.713534500 8744 0x3d233140 DEBUG h264parse gsth264parse.c:827:gst_h264_parse_process_nal:<my_h264parse> first_mb_in_slice = 0
0:00:00.713581875 8744 0x3d233770 DEBUG GST_BUS gstbus.c:353:gst_bus_post:<bus0> [msg 0xffff9c003200] dropped
0:00:00.713684125 8744 0x3d233140 DEBUG h264parse gsth264parse.c:830:gst_h264_parse_process_nal:<my_h264parse> frame start: 1
0:00:00.713783375 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:2079:gst_h264_parser_parse_slice_hdr: parsing "Slice header", slice type 0
0:00:00.713619625 8744 0xffffa4002580 LOG GST_POLL gstpoll.c:314:release_wakeup: 0x3d154a30: release
0:00:00.713806250 8744 0x3d233770 INFO waylandsink wlwindow.c:130:gst_wl_window_new_internal: not-warn: gst_wl_window_new_internal
0:00:00.713916000 8744 0xffffa4002580 DEBUG GST_BUS gstbus.c:546:gst_bus_timed_pop_filtered:<bus1> got message 0xffff9c003200, element from my_sink, type mask is 4294967295
0:00:00.713853250 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:700:gst_h264_slice_parse_dec_ref_pic_marking: parsing "Decoded reference picture marking"
0:00:00.714041000 8744 0x3d233140 DEBUG h264parse gsth264parse.c:840:gst_h264_parse_process_nal:<my_h264parse> parse result 0, first MB: 0, slice type: 0
0:00:00.713986625 8744 0xffffa4002580 DEBUG GST_BUS gstbus.c:839:gst_bus_source_dispatch:<bus1> source 0x3d21dc00 calling dispatch with element message: 0xffff9c003200, time 99:99:99.999999999, seq-num 39, element 'my_sink', prepare-window-handle;
0:00:00.714099875 8744 0x3d233770 WARN waylandsink wlwindow.c:175:gst_wl_window_new_internal: init surface_state fail, fallback to scale=1 fullscreen (1280x768)
0:00:00.714116250 8744 0x3d233140 LOG h264parse gsth264parse.c:895:gst_h264_parse_process_nal:<my_h264parse> collecting NAL in AVC frame
0:00:00.714155000 8744 0xffffa4002580 LOG GST_MESSAGE gstmessage.c:208:_gst_message_free: finalize message 0xffff9c003200, element from my_sink
0:00:00.714262000 8744 0x3d233140 DEBUG h264parse gsth264parse.c:428:gst_h264_parse_wrap_nal:<my_h264parse> nal length 414
0:00:00.714201500 8744 0x3d233770 INFO waylandsink wlwindow.c:206:gst_wl_window_new_toplevel: alios window-manager related: window_manager_add_window
alios window-manager related: window_manager_add_window0:00:00.714354000 8744 0xffffa4002580 DEBUG GST_BUS gstbus.c:844:gst_bus_source_dispatch:<bus1> source 0x3d21dc00 handler returns 1
0:00:00.714391000 8744 0x3d233140 DEBUG GST_MEMORY gstmemory.c:139:gst_memory_init: new memory 0xffffa4036010, maxsize:425 offset:0 size:418
0:00:00.714462000 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:799:gst_buffer_new: new 0xffffa4017950
0:00:00.714504875 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:414:_memory_add: buffer 0xffffa4017950, idx -1, mem 0xffffa4036010
0:00:00.714557625 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:855:gst_buffer_new_allocate: new buffer 0xffffa4017950 of size 418 from allocator (nil)
0:00:00.714609500 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1826:gst_buffer_fill: buffer 0xffffa4017950, offset 0, size 4
0:00:00.714661750 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1826:gst_buffer_fill: buffer 0xffffa4017950, offset 4, size 414
0:00:00.714714875 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1582:gst_buffer_resize_range: trim 0xffffa4017950 0-418 size:418 offs:0 max:425
0:00:00.714792875 8744 0x3d233140 LOG adapter gstadapter.c:395:gst_adapter_push:<GstAdapter at 0x3d20c120> pushing 0xffffa4017950 418 bytes at end, size now 449
0:00:00.714856125 8744 0x3d233140 DEBUG h264parse gsth264parse.c:914:gst_h264_parse_collect_nal:<my_h264parse> parsing collected nal
0:00:00.714895500 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:242:gst_h264_parse_nalu_header: Nal type 1, ref_idc 1
0:00:00.714951500 8744 0x3d233140 LOG h264parse gsth264parse.c:922:gst_h264_parse_collect_nal:<my_h264parse> nal type: 1 Slice
0:00:00.715006375 8744 0x3d233140 LOG h264parse gsth264parse.c:941:gst_h264_parse_collect_nal:<my_h264parse> next nal type: 1 Slice
0:00:00.715097250 8744 0x3d233140 LOG h264parse gsth264parse.c:948:gst_h264_parse_collect_nal:<my_h264parse> au complete: 0
0:00:00.715149500 8744 0x3d233140 DEBUG h264parse gsth264parse.c:1264:gst_h264_parse_handle_frame:<my_h264parse> Looking for more
0:00:00.715187500 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:242:gst_h264_parse_nalu_header: Nal type 1, ref_idc 1
0:00:00.715238375 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:1351:gst_h264_parser_identify_nalu: Nal start 451, No end found
0:00:00.715290625 8744 0x3d233140 DEBUG h264parse gsth264parse.c:1166:gst_h264_parse_handle_frame:<my_h264parse> not a complete nal found at offset 451
0:00:00.715341500 8744 0x3d233140 DEBUG h264parse gsth264parse.c:1172:gst_h264_parse_handle_frame:<my_h264parse> draining, accepting with size 1116
0:00:00.715392625 8744 0x3d233140 DEBUG h264parse gsth264parse.c:1219:gst_h264_parse_handle_frame:<my_h264parse> 0xffffa4030640 complete nal found. Off: 451, Size: 1116
0:00:00.715453750 8744 0x3d233140 DEBUG h264parse gsth264parse.c:721:gst_h264_parse_process_nal:<my_h264parse> processing nal of type 1 Slice, size 1116
0:00:00.715511625 8744 0x3d233140 DEBUG h264parse gsth264parse.c:830:gst_h264_parse_process_nal:<my_h264parse> frame start: 1
0:00:00.715555625 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:2079:gst_h264_parser_parse_slice_hdr: parsing "Slice header", slice type 0
0:00:00.715605125 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:700:gst_h264_slice_parse_dec_ref_pic_marking: parsing "Decoded reference picture marking"
0:00:00.715656125 8744 0x3d233140 DEBUG h264parse gsth264parse.c:840:gst_h264_parse_process_nal:<my_h264parse> parse result 0, first MB: 49, slice type: 0
0:00:00.715715375 8744 0x3d233140 LOG h264parse gsth264parse.c:895:gst_h264_parse_process_nal:<my_h264parse> collecting NAL in AVC frame
0:00:00.715761000 8744 0x3d233140 DEBUG h264parse gsth264parse.c:428:gst_h264_parse_wrap_nal:<my_h264parse> nal length 1116
0:00:00.715811750 8744 0x3d233140 DEBUG GST_MEMORY gstmemory.c:139:gst_memory_init: new memory 0xffffa4031250, maxsize:1127 offset:0 size:1120
0:00:00.715867750 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:799:gst_buffer_new: new 0xffffa4017b70
0:00:00.715909250 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:414:_memory_add: buffer 0xffffa4017b70, idx -1, mem 0xffffa4031250
0:00:00.715959750 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:855:gst_buffer_new_allocate: new buffer 0xffffa4017b70 of size 1120 from allocator (nil)
0:00:00.716010625 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1826:gst_buffer_fill: buffer 0xffffa4017b70, offset 0, size 4
0:00:00.716060625 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1826:gst_buffer_fill: buffer 0xffffa4017b70, offset 4, size 1116
0:00:00.716112250 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1582:gst_buffer_resize_range: trim 0xffffa4017b70 0-1120 size:1120 offs:0 max:1127
0:00:00.716185625 8744 0x3d233140 LOG adapter gstadapter.c:395:gst_adapter_push:<GstAdapter at 0x3d20c120> pushing 0xffffa4017b70 1120 bytes at end, size now 1569
0:00:00.716263125 8744 0x3d233140 DEBUG GST_CAPS gstpad.c:2705:gst_pad_has_current_caps:<my_h264parse:src> check current pad caps video/x-h264, stream-format=(string)byte-stream, alignment=(string)au, framerate=(fraction)0/1, width=(int)176, height=(int)144, interlace-mode=(string)progressive, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8, parsed=(boolean)true, profile=(string)constrained-baseline, level=(string)1.2
0:00:00.716461375 8744 0x3d233140 LOG h264parse gsth264parse.c:2016:gst_h264_parse_get_timestamp:<my_h264parse> Upstream ts 0:00:02.500000000
0:00:00.716563250 8744 0x3d233140 DEBUG h264parse gsth264parse.c:2035:gst_h264_parse_get_timestamp:<my_h264parse> unable to compute timestamp: timing info not present
0:00:00.716620125 8744 0x3d233140 LOG adapter gstadapter.c:974:gst_adapter_get_buffer:<GstAdapter at 0x3d20c120> getting buffer of 1569 bytes
0:00:00.716680000 8744 0x3d233140 LOG adapter gstadapter.c:736:gst_adapter_get_internal:<GstAdapter at 0x3d20c120> allocating 1569 bytes
0:00:00.716733500 8744 0x3d233140 DEBUG adapter gstadapter.c:344:copy_into_unchecked: bsize 6, skip 0, csize 6
0:00:00.716798500 8744 0x3d233140 LOG GST_PERFORMANCE gstadapter.c:346:copy_into_unchecked:<GstAdapter at 0x3d20c120> extract 6 bytes
0:00:00.716841500 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1876:gst_buffer_extract: buffer 0xffffa4017d90, offset 0, size 6
0:00:00.716908750 8744 0x3d233140 LOG GST_PERFORMANCE gstadapter.c:359:copy_into_unchecked:<GstAdapter at 0x3d20c120> extract 25 bytes
0:00:00.716950750 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1876:gst_buffer_extract: buffer 0xffffa4017a60, offset 0, size 25
0:00:00.717017875 8744 0x3d233140 LOG GST_PERFORMANCE gstadapter.c:359:copy_into_unchecked:<GstAdapter at 0x3d20c120> extract 418 bytes
0:00:00.717117625 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1876:gst_buffer_extract: buffer 0xffffa4017950, offset 0, size 418
0:00:00.717196750 8744 0x3d233140 LOG GST_PERFORMANCE gstadapter.c:359:copy_into_unchecked:<GstAdapter at 0x3d20c120> extract 1120 bytes
0:00:00.717239875 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1876:gst_buffer_extract: buffer 0xffffa4017b70, offset 0, size 1120
0:00:00.717295750 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:799:gst_buffer_new: new 0xffffa4034090
0:00:00.717340125 8744 0x3d233140 DEBUG GST_MEMORY gstmemory.c:139:gst_memory_init: new memory 0x3d2276a0, maxsize:1569 offset:0 size:1569
0:00:00.717395250 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:414:_memory_add: buffer 0xffffa4034090, idx -1, mem 0x3d2276a0
0:00:00.717463000 8744 0x3d233140 LOG adapter gstadapter.c:634:gst_adapter_flush_unchecked:<GstAdapter at 0x3d20c120> flushing 1569 bytes
0:00:00.717519625 8744 0x3d233140 LOG adapter gstadapter.c:656:gst_adapter_flush_unchecked:<GstAdapter at 0x3d20c120> flushing out head buffer
0:00:00.717558375 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:725:_gst_buffer_free: finalize 0xffffa4017d90
0:00:00.717600750 8744 0x3d233140 DEBUG GST_MEMORY gstmemory.c:88:_gst_memory_free: free memory 0xffffa400abf0
0:00:00.717663875 8744 0x3d233140 LOG adapter gstadapter.c:656:gst_adapter_flush_unchecked:<GstAdapter at 0x3d20c120> flushing out head buffer
0:00:00.717702125 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:725:_gst_buffer_free: finalize 0xffffa4017a60
0:00:00.717743875 8744 0x3d233140 DEBUG GST_MEMORY gstmemory.c:88:_gst_memory_free: free memory 0xffffa401b430
0:00:00.717804000 8744 0x3d233140 LOG adapter gstadapter.c:656:gst_adapter_flush_unchecked:<GstAdapter at 0x3d20c120> flushing out head buffer
0:00:00.717842250 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:725:_gst_buffer_free: finalize 0xffffa4017950
0:00:00.717883750 8744 0x3d233140 DEBUG GST_MEMORY gstmemory.c:88:_gst_memory_free: free memory 0xffffa4036010
0:00:00.717943000 8744 0x3d233140 LOG adapter gstadapter.c:656:gst_adapter_flush_unchecked:<GstAdapter at 0x3d20c120> flushing out head buffer
0:00:00.717981250 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:725:_gst_buffer_free: finalize 0xffffa4017b70
0:00:00.718022500 8744 0x3d233140 DEBUG GST_MEMORY gstmemory.c:88:_gst_memory_free: free memory 0xffffa4031250
0:00:00.718082000 8744 0x3d233140 LOG adapter gstadapter.c:668:gst_adapter_flush_unchecked:<GstAdapter at 0x3d20c120> adapter empty now
0:00:00.718158500 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:515:gst_buffer_copy_into: copy 0xffffa40172f0 to 0xffffa4034090, offset 0-1567/1567
0:00:00.718232750 8744 0x3d233140 LOG baseparse gstbaseparse.c:2637:gst_base_parse_finish_frame:<my_h264parse> finished frame at offset 7081, flushing size 1567
0:00:00.718296625 8744 0x3d233140 LOG adapter gstadapter.c:634:gst_adapter_flush_unchecked:<GstAdapter at 0x3d20c000> flushing 1567 bytes
0:00:00.718352375 8744 0x3d233140 LOG adapter gstadapter.c:656:gst_adapter_flush_unchecked:<GstAdapter at 0x3d20c000> flushing out head buffer
0:00:00.718390250 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:725:_gst_buffer_free: finalize 0xffffa4017c80
0:00:00.718447000 8744 0x3d233140 LOG adapter gstadapter.c:668:gst_adapter_flush_unchecked:<GstAdapter at 0x3d20c000> adapter empty now
0:00:00.718485875 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:725:_gst_buffer_free: finalize 0xffffa40172f0
0:00:00.718526875 8744 0x3d233140 DEBUG GST_MEMORY gstmemory.c:88:_gst_memory_free: free memory 0x3d227730
(free_data, 133)
0:00:00.718603000 8744 0x3d233140 DEBUG baseparse gstbaseparse.c:2333:gst_base_parse_handle_and_push_frame:<my_h264parse> no next fallback timestamp
0:00:00.718653375 8744 0x3d233140 LOG baseparse gstbaseparse.c:2392:gst_base_parse_push_frame:<my_h264parse> processing buffer of size 1569 with dts 99:99:99.999999999, pts 0:00:02.500000000, duration 0:00:00.500000000
0:00:00.718761500 8744 0x3d233140 DEBUG GST_CAPS gstpad.c:2705:gst_pad_has_current_caps:<my_h264parse:src> check current pad caps video/x-h264, stream-format=(string)byte-stream, alignment=(string)au, framerate=(fraction)0/1, width=(int)176, height=(int)144, interlace-mode=(string)progressive, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8, parsed=(boolean)true, profile=(string)constrained-baseline, level=(string)1.2
0:00:00.718922750 8744 0x3d233140 LOG baseparse gstbaseparse.c:1851:gst_base_parse_update_bitrates:<my_h264parse> frame bitrate 25104, avg bitrate 27564
0:00:00.718984625 8744 0x3d233140 DEBUG h264parse gsth264parse.c:186:gst_h264_parse_reset_frame:<my_h264parse> reset frame
0:00:00.719035000 8744 0x3d233140 LOG baseparse gstbaseparse.c:2535:gst_base_parse_push_frame:<my_h264parse> pushing frame (1569 bytes) now..
0:00:00.719103875 8744 0x3d233140 DEBUG GST_SCHEDULING gstpad.c:4277:gst_pad_chain_data_unchecked:<my_vdec:sink> calling chainfunction &gst_video_decoder_chain with buffer buffer: 0xffffa4034090, pts 0:00:02.500000000, dts 99:99:99.999999999, dur 0:00:00.500000000, size 1569, offset 7081, offset_end none, flags 0x2400
0:00:00.719238250 8744 0x3d233140 LOG videodecoder gstvideodecoder.c:2438:gst_video_decoder_chain:<my_vdec> chain PTS 0:00:02.500000000, DTS 99:99:99.999999999 duration 0:00:00.500000000 size 1569 flags 2400
0:00:00.719515625 8744 0x3d1e1590 DEBUG GST_POLL gstpoll.c:1369:gst_poll_wait: 0x3d21fe80: timeout :99:99:99.999999999
0:00:00.719860500 8744 0x3d233770 DEBUG GST_MEMORY gstmemory.c:139:gst_memory_init: new memory 0xffff9c027070, maxsize:3932160 offset:0 size:3932160
0:00:00.719937125 8744 0x3d233770 DEBUG fdmemory gstfdmemory.c:294:gst_fd_allocator_alloc: 0xffff9c027070: fd: 119 size 3932160
0:00:00.720028375 8744 0x3d233770 DEBUG fdmemory gstfdmemory.c:136:gst_fd_mem_map: 0xffff9c027070: fd 119: mapped 0xffffb11aa000
0:00:00.720147000 8744 0x3d233770 LOG GST_BUFFER gstbuffer.c:799:gst_buffer_new: new 0xffff9c01fce0
0:00:00.720192625 8744 0x3d233770 LOG GST_BUFFER gstbuffer.c:414:_memory_add: buffer 0xffff9c01fce0, idx -1, mem 0xffff9c027070
0:00:00.720306750 8744 0x3d233770 LOG GST_BUFFER gstbuffer.c:855:gst_buffer_new_allocate: new buffer 0xffff9c01fce0 of size 3932160 from allocator 0x3d0a89c0
0:00:00.720362000 8744 0x3d233770 LOG GST_BUFFER gstbuffer.c:1978:gst_buffer_memset: buffer 0xffff9c01fce0, offset 0, val 00, size 3932160
0:00:00.737491750 8744 0x3d1e1590 DEBUG GST_POLL gstpoll.c:1369:gst_poll_wait: 0x3d21fe80: timeout :99:99:99.999999999
0:00:00.745199750 8744 0x3d233770 DEBUG waylandsink wlshmallocator.c:222:gst_wl_shm_memory_construct_wl_buffer:<GstWlDisplay at 0x3d1da380> Creating wl_buffer from SHM of size 3932160 (1280 x 768, stride 5120), format BGRx
0:00:00.745404375 8744 0x3d233770 DEBUG GST_META gstmeta.c:88:gst_meta_api_type_register: register API "GstVideoHdr10MetaAPI"
0:00:00.745475875 8744 0x3d233770 DEBUG GST_META gstmeta.c:95:gst_meta_api_type_register: adding tag "video"
0:00:00.745528750 8744 0x3d233770 DEBUG GST_META gstmeta.c:95:gst_meta_api_type_register: adding tag "orientation"
0:00:00.745578250 8744 0x3d233770 DEBUG GST_META gstmeta.c:95:gst_meta_api_type_register: adding tag "orientation"
0:00:00.745651750 8744 0x3d233770 LOG waylandsink gstwaylandsink.c:917:gst_wayland_sink_show_frame:<my_sink> buffer 0xffffa4028460 does not have a wl_buffer from our display, creating it
0:00:00.745730375 8744 0x3d233770 DEBUG waylandsink wllinuxdmabuf.c:108:gst_wl_linux_dmabuf_construct_wl_buffer:<GstWlDisplay at 0x3d1da380> Creating wl_buffer from DMABuf of size 98304 (176 x 144), format NV12 modifier 0x0800000000000001
0:00:00.745823500 8744 0x3d233770 DEBUG GST_META gstmeta.c:88:gst_meta_api_type_register: register API "GstPhyMemMetaAPI"
0:00:00.745887250 8744 0x3d233770 DEBUG GST_META gstmeta.c:95:gst_meta_api_type_register: adding tag "video"
0:00:00.745935625 8744 0x3d233770 DEBUG GST_META gstmeta.c:95:gst_meta_api_type_register: adding tag "size"
0:00:00.745981875 8744 0x3d233770 DEBUG GST_META gstmeta.c:95:gst_meta_api_type_register: adding tag "orientation"
0:00:00.746974875 8744 0x3d1e1590 DEBUG GST_POLL gstpoll.c:1369:gst_poll_wait: 0x3d21fe80: timeout :99:99:99.999999999
0:00:00.746991375 8744 0x3d233770 DEBUG waylandsink wllinuxdmabuf.c:175:gst_wl_linux_dmabuf_construct_wl_buffer:<dmabufallocator2> created linux_dmabuf wl_buffer (0xffffac002490):176x144, fmt=NV12, 2 planes
0:00:00.747130000 8744 0x3d233770 DEBUG videosink gstvideosink.c:133:gst_video_sink_center_rect: source is 176x144 dest is 1280x768, result is 176x144 with x,y 552x312
0:00:00.747416125 8744 0x3d233770 DEBUG basesink gstbasesink.c:1551:gst_base_sink_commit_state:<my_sink> commiting state to PAUSED
0:00:00.747472000 8744 0x3d233770 DEBUG basesink gstbasesink.c:1576:gst_base_sink_commit_state:<my_sink> posting PAUSED state change message
0:00:00.747549375 8744 0x3d233770 LOG GST_MESSAGE gstmessage.c:301:gst_message_new_custom: source my_sink: creating new message 0xffff9c003280 state-changed
0:00:00.747626500 8744 0x3d233770 DEBUG GST_BUS gstbus.c:318:gst_bus_post:<bus0> [msg 0xffff9c003280] posting on bus state-changed message: 0xffff9c003280, time 99:99:99.999999999, seq-num 40, element 'my_sink', GstMessageStateChanged, old-state=(GstState)GST_STATE_READY, new-state=(GstState)GST_STATE_PAUSED, pending-state=(GstState)GST_STATE_VOID_PENDING;
0:00:00.747809500 8744 0x3d233770 DEBUG bin gstbin.c:3715:gst_bin_handle_message_func:<my_pipeline> [msg 0xffff9c003280] handling child my_sink message of type state-changed
0:00:00.747875125 8744 0x3d233770 DEBUG bin gstbin.c:4052:gst_bin_handle_message_func:<my_pipeline> posting message upward
0:00:00.747928250 8744 0x3d233770 DEBUG GST_BUS gstbus.c:318:gst_bus_post:<bus1> [msg 0xffff9c003280] posting on bus state-changed message: 0xffff9c003280, time 99:99:99.999999999, seq-num 40, element 'my_sink', GstMessageStateChanged, old-state=(GstState)GST_STATE_READY, new-state=(GstState)GST_STATE_PAUSED, pending-state=(GstState)GST_STATE_VOID_PENDING;
0:00:00.748129750 8744 0x3d233770 DEBUG GST_BUS gstbus.c:357:gst_bus_post:<bus1> [msg 0xffff9c003280] pushing on async queue
0:00:00.748179000 8744 0x3d233770 LOG GST_POLL gstpoll.c:290:raise_wakeup: 0x3d154a30: raise
0:00:00.748339000 8744 0xffffa4002580 LOG GST_BUS gstbus.c:522:gst_bus_timed_pop_filtered:<bus1> have 1 messages
0:00:00.749022625 8744 0xffffa4002580 LOG GST_POLL gstpoll.c:314:release_wakeup: 0x3d154a30: release
0:00:00.749024875 8744 0x3d233770 DEBUG GST_BUS gstbus.c:360:gst_bus_post:<bus1> [msg 0xffff9c003280] pushed on async queue
0:00:00.749168500 8744 0x3d233770 DEBUG GST_BUS gstbus.c:353:gst_bus_post:<bus0> [msg 0xffff9c003280] dropped
0:00:00.749166000 8744 0xffffa4002580 DEBUG GST_BUS gstbus.c:546:gst_bus_timed_pop_filtered:<bus1> got message 0xffff9c003280, state-changed from my_sink, type mask is 4294967295
0:00:00.749243250 8744 0x3d233770 DEBUG basesink gstbasesink.c:1582:gst_base_sink_commit_state:<my_sink> posting async-done message
0:00:00.749232000 8744 0xffffa4002580 DEBUG GST_BUS gstbus.c:839:gst_bus_source_dispatch:<bus1> source 0x3d21dc00 calling dispatch with state-changed message: 0xffff9c003280, time 99:99:99.999999999, seq-num 40, element 'my_sink', GstMessageStateChanged, old-state=(GstState)GST_STATE_READY, new-state=(GstState)GST_STATE_PAUSED, pending-state=(GstState)GST_STATE_VOID_PENDING;
(bus_call, 87)my_sink state change, old state: READY, new state: PAUSED
0:00:00.749300375 8744 0x3d233770 LOG GST_MESSAGE gstmessage.c:301:gst_message_new_custom: source my_sink: creating new message 0xffff9c003300 async-done
0:00:00.749372750 8744 0xffffa4002580 LOG GST_MESSAGE gstmessage.c:208:_gst_message_free: finalize message 0xffff9c003280, state-changed from my_sink
0:00:00.749424875 8744 0xffffa4002580 DEBUG GST_BUS gstbus.c:844:gst_bus_source_dispatch:<bus1> source 0x3d21dc00 handler returns 1
0:00:00.749404000 8744 0x3d233770 DEBUG GST_BUS gstbus.c:318:gst_bus_post:<bus0> [msg 0xffff9c003300] posting on bus async-done message: 0xffff9c003300, time 99:99:99.999999999, seq-num 41, element 'my_sink', GstMessageAsyncDone, running-time=(guint64)18446744073709551615;
0:00:00.749511500 8744 0x3d233770 DEBUG bin gstbin.c:3715:gst_bin_handle_message_func:<my_pipeline> [msg 0xffff9c003300] handling child my_sink message of type async-done
0:00:00.749555000 8744 0x3d233770 DEBUG bin gstbin.c:3936:gst_bin_handle_message_func:<my_pipeline> ASYNC_DONE message 0xffff9c003300, my_sink
0:00:00.749599625 8744 0x3d233770 LOG bin gstbin.c:863:message_check: looking at message 0x3d216dc0: 1
0:00:00.749639750 8744 0x3d233770 DEBUG bin gstbin.c:883:find_message:<my_pipeline> we found a message 0x3d216dc0 from my_sink matching types 00100000
0:00:00.749682750 8744 0x3d233770 DEBUG bin gstbin.c:924:bin_replace_message:<my_pipeline> replace old message async-start from my_sink with async-done message
0:00:00.749716625 8744 0x3d233770 LOG GST_MESSAGE gstmessage.c:208:_gst_message_free: finalize message 0x3d216dc0, async-start from my_sink
0:00:00.749751750 8744 0x3d233770 LOG bin gstbin.c:863:message_check: looking at message 0xffff9c003300: 0
0:00:00.749790125 8744 0x3d233770 DEBUG bin gstbin.c:885:find_message:<my_pipeline> no message found matching types 00100000
0:00:00.749827250 8744 0x3d233770 DEBUG bin gstbin.c:892:find_message:<my_pipeline> async-start
0:00:00.749856375 8744 0x3d233770 LOG bin gstbin.c:863:message_check: looking at message 0xffff9c003300: 1
0:00:00.749948375 8744 0x3d233770 DEBUG bin gstbin.c:961:bin_remove_messages:<my_sink> deleting message 0xffff9c003300 of type async-done (types 0x00200000)
0:00:00.749987000 8744 0x3d233770 LOG GST_MESSAGE gstmessage.c:208:_gst_message_free: finalize message 0xffff9c003300, async-done from my_sink
0:00:00.750030500 8744 0x3d233770 DEBUG bin gstbin.c:3955:gst_bin_handle_message_func:<my_pipeline> async elements commited
0:00:00.750063000 8744 0x3d233770 LOG GST_MESSAGE gstmessage.c:301:gst_message_new_custom: source my_pipeline: creating new message 0xffff9c003380 async-done
0:00:00.750106000 8744 0x3d233770 INFO GST_STATES gstbin.c:3422:bin_handle_async_done:<my_pipeline> committing state from READY to PAUSED, old pending PLAYING
0:00:00.750147625 8744 0x3d233770 INFO GST_STATES gstbin.c:3451:bin_handle_async_done:<my_pipeline> continue state change, pending PLAYING
0:00:00.750184750 8744 0x3d233770 INFO GST_STATES gstelement.c:2579:_priv_gst_element_state_changed:<my_pipeline> notifying about state-changed READY to PAUSED (PLAYING pending)
0:00:00.750226375 8744 0x3d233770 LOG GST_MESSAGE gstmessage.c:301:gst_message_new_custom: source my_pipeline: creating new message 0xffff9c003400 state-changed
0:00:00.750270625 8744 0x3d233770 DEBUG GST_BUS gstbus.c:318:gst_bus_post:<bus1> [msg 0xffff9c003400] posting on bus state-changed message: 0xffff9c003400, time 99:99:99.999999999, seq-num 43, element 'my_pipeline', GstMessageStateChanged, old-state=(GstState)GST_STATE_READY, new-state=(GstState)GST_STATE_PAUSED, pending-state=(GstState)GST_STATE_PLAYING;
0:00:00.750371500 8744 0x3d233770 DEBUG GST_BUS gstbus.c:357:gst_bus_post:<bus1> [msg 0xffff9c003400] pushing on async queue
0:00:00.750403500 8744 0x3d233770 LOG GST_POLL gstpoll.c:290:raise_wakeup: 0x3d154a30: raise
0:00:00.750472000 8744 0x3d233770 DEBUG GST_BUS gstbus.c:360:gst_bus_post:<bus1> [msg 0xffff9c003400] pushed on async queue
0:00:00.750491500 8744 0xffffa4002580 LOG GST_BUS gstbus.c:522:gst_bus_timed_pop_filtered:<bus1> have 1 messages
0:00:00.750511000 8744 0x3d233770 DEBUG bin gstbin.c:3477:bin_handle_async_done:<my_pipeline> posting ASYNC_DONE to parent
0:00:00.750525125 8744 0xffffa4002580 LOG GST_POLL gstpoll.c:314:release_wakeup: 0x3d154a30: release
0:00:00.750580000 8744 0xffffa4002580 DEBUG GST_BUS gstbus.c:546:gst_bus_timed_pop_filtered:<bus1> got message 0xffff9c003400, state-changed from my_pipeline, type mask is 4294967295
0:00:00.750545375 8744 0x3d233770 DEBUG GST_BUS gstbus.c:318:gst_bus_post:<bus1> [msg 0xffff9c003380] posting on bus async-done message: 0xffff9c003380, time 99:99:99.999999999, seq-num 42, element 'my_pipeline', GstMessageAsyncDone, running-time=(guint64)18446744073709551615;
0:00:00.750662000 8744 0x3d233770 DEBUG GST_BUS gstbus.c:357:gst_bus_post:<bus1> [msg 0xffff9c003380] pushing on async queue
0:00:00.750693500 8744 0x3d233770 LOG GST_POLL gstpoll.c:290:raise_wakeup: 0x3d154a30: raise
0:00:00.750638375 8744 0xffffa4002580 DEBUG GST_BUS gstbus.c:839:gst_bus_source_dispatch:<bus1> source 0x3d21dc00 calling dispatch with state-changed message: 0xffff9c003400, time 99:99:99.999999999, seq-num 43, element 'my_pipeline', GstMessageStateChanged, old-state=(GstState)GST_STATE_READY, new-state=(GstState)GST_STATE_PAUSED, pending-state=(GstState)GST_STATE_PLAYING;
(bus_call, 87)my_pipeline state change, old state: READY, new state: PAUSED
0:00:00.750744875 8744 0x3d233770 DEBUG GST_BUS gstbus.c:360:gst_bus_post:<bus1> [msg 0xffff9c003380] pushed on async queue
0:00:00.750781500 8744 0xffffa4002580 LOG GST_MESSAGE gstmessage.c:208:_gst_message_free: finalize message 0xffff9c003400, state-changed from my_pipeline
0:00:00.750810750 8744 0x3d233770 DEBUG bin gstbin.c:3484:bin_handle_async_done:<my_pipeline> all async-done, starting state continue
0:00:00.750875750 8744 0xffffa4002580 DEBUG GST_BUS gstbus.c:844:gst_bus_source_dispatch:<bus1> source 0x3d21dc00 handler returns 1
0:00:00.750890750 8744 0x3d233770 DEBUG bin gstbin.c:3289:bin_push_state_continue:<my_pipeline> pushing continue on thread pool
0:00:00.750950875 8744 0xffffa4002580 LOG GST_BUS gstbus.c:522:gst_bus_timed_pop_filtered:<bus1> have 1 messages
0:00:00.750982000 8744 0xffffa4002580 LOG GST_POLL gstpoll.c:314:release_wakeup: 0x3d154a30: release
0:00:00.751025375 8744 0xffffa4002580 DEBUG GST_BUS gstbus.c:546:gst_bus_timed_pop_filtered:<bus1> got message 0xffff9c003380, async-done from my_pipeline, type mask is 4294967295
0:00:00.751072625 8744 0xffffa4002580 DEBUG GST_BUS gstbus.c:839:gst_bus_source_dispatch:<bus1> source 0x3d21dc00 calling dispatch with async-done message: 0xffff9c003380, time 99:99:99.999999999, seq-num 42, element 'my_pipeline', GstMessageAsyncDone, running-time=(guint64)18446744073709551615;
0:00:00.751152000 8744 0xffffa4002580 LOG GST_MESSAGE gstmessage.c:208:_gst_message_free: finalize message 0xffff9c003380, async-done from my_pipeline
0:00:00.751184000 8744 0x3d233770 DEBUG GST_BUS gstbus.c:353:gst_bus_post:<bus0> [msg 0xffff9c003300] dropped
0:00:00.751197000 8744 0xffffa4002580 DEBUG GST_BUS gstbus.c:844:gst_bus_source_dispatch:<bus1> source 0x3d21dc00 handler returns 1
0:00:00.751258000 8744 0x3d233770 DEBUG basesink gstbasesink.c:2265:gst_base_sink_wait_preroll:<my_sink> waiting in preroll for flush or PLAYING
0:00:00.751328500 8744 0xffff9c007680 DEBUG bin gstbin.c:3224:gst_bin_continue_func:<my_pipeline> waiting for state lock
0:00:00.751413500 8744 0xffff9c007680 DEBUG bin gstbin.c:3227:gst_bin_continue_func:<my_pipeline> doing state continue
0:00:00.751454875 8744 0xffff9c007680 INFO GST_STATES gstbin.c:3248:gst_bin_continue_func:<my_pipeline> continue state change PAUSED to PLAYING, final PLAYING
0:00:00.751511250 8744 0xffff9c007680 DEBUG pipeline gstpipeline.c:412:gst_pipeline_change_state:<my_pipeline> selecting clock and base_time
0:00:00.751552375 8744 0xffff9c007680 DEBUG pipeline gstpipeline.c:433:gst_pipeline_change_state:<my_pipeline> Need to update start_time
0:00:00.751589625 8744 0xffff9c007680 DEBUG pipeline gstpipeline.c:438:gst_pipeline_change_state:<my_pipeline> Need to update clock.
0:00:00.751628875 8744 0xffff9c007680 DEBUG bin gstbin.c:837:gst_bin_provide_clock_func:<my_pipeline> returning old clock (nil)
0:00:00.751669875 8744 0xffff9c007680 DEBUG GST_CLOCK gstsystemclock.c:353:gst_system_clock_obtain: creating new static system clock
0:00:00.751782500 8744 0xffff9c007680 DEBUG GST_POLL gstpoll.c:681:gst_poll_new: 0xffffa0003c00: new controllable : 1
0:00:00.751897750 8744 0xffff9c007680 DEBUG GST_POLL gstpoll.c:848:gst_poll_add_fd_unlocked: 0xffffa0003c00: fd (fd:120, idx:0)
0:00:00.751948625 8744 0xffff9c007680 DEBUG GST_POLL gstpoll.c:1015:gst_poll_fd_ctl_read_unlocked: 0xffffa0003c00: fd (fd:120, idx:0), active : 1
0:00:00.752028625 8744 0xffff9c007680 DEBUG GST_CLOCK gstpipeline.c:732:gst_pipeline_provide_clock_func: pipeline obtained system clock: 0xffffa0002160 (GstSystemClock)
0:00:00.752084500 8744 0xffff9c007680 DEBUG GST_CLOCK gstclock.c:1046:gst_clock_get_internal_time:<GstSystemClock> internal time 0:15:45.099030375
0:00:00.752163000 8744 0xffff9c007680 DEBUG GST_CLOCK gstclock.c:1091:gst_clock_get_time:<GstSystemClock> adjusted time 0:15:45.099030375
0:00:00.752213000 8744 0xffff9c007680 DEBUG GST_CLOCK gstelement.c:429:gst_element_set_clock:<my_pipeline> setting clock 0xffffa0002160
0:00:00.752337000 8744 0xffff9c007680 DEBUG GST_CLOCK gstelement.c:429:gst_element_set_clock:<my_sink> setting clock 0xffffa0002160
0:00:00.752399000 8744 0xffff9c007680 DEBUG GST_CLOCK gstelement.c:429:gst_element_set_clock:<my_vdec> setting clock 0xffffa0002160
0:00:00.752453500 8744 0xffff9c007680 DEBUG GST_CLOCK gstelement.c:429:gst_element_set_clock:<my_h264parse> setting clock 0xffffa0002160
0:00:00.752513875 8744 0xffff9c007680 DEBUG GST_CLOCK gstelement.c:429:gst_element_set_clock:<my_appsrc> setting clock 0xffffa0002160
0:00:00.752561125 8744 0xffff9c007680 DEBUG bin gstbin.c:726:gst_bin_set_clock_func:<my_pipeline> iterator done
0:00:00.752634125 8744 0xffff9c007680 LOG GST_MESSAGE gstmessage.c:301:gst_message_new_custom: source my_pipeline: creating new message 0xffff9c003600 new-clock
0:00:00.752697375 8744 0xffff9c007680 DEBUG GST_BUS gstbus.c:318:gst_bus_post:<bus1> [msg 0xffff9c003600] posting on bus new-clock message: 0xffff9c003600, time 99:99:99.999999999, seq-num 44, element 'my_pipeline', GstMessageNewClock, clock=(GstClock)"\(GstSystemClock\)\ GstSystemClock";
0:00:00.752841750 8744 0xffff9c007680 DEBUG GST_BUS gstbus.c:357:gst_bus_post:<bus1> [msg 0xffff9c003600] pushing on async queue
0:00:00.752879750 8744 0xffff9c007680 LOG GST_POLL gstpoll.c:290:raise_wakeup: 0x3d154a30: raise
0:00:00.752974750 8744 0xffff9c007680 DEBUG GST_BUS gstbus.c:360:gst_bus_post:<bus1> [msg 0xffff9c003600] pushed on async queue
0:00:00.753021250 8744 0xffff9c007680 DEBUG pipeline gstpipeline.c:478:gst_pipeline_change_state:<my_pipeline> start_time=0:00:00.000000000, now=0:15:45.099030375, base_time 0:15:45.099030375
0:00:00.753170875 8744 0xffffa4002580 LOG GST_BUS gstbus.c:522:gst_bus_timed_pop_filtered:<bus1> have 1 messages
0:00:00.753178375 8744 0xffff9c007680 DEBUG GST_CLOCK gstelement.c:489:gst_element_set_base_time:<my_pipeline> set base_time=0:15:45.099030375, old 0:00:00.000000000
0:00:00.753262375 8744 0xffff9c007680 DEBUG GST_STATES gstbin.c:2852:gst_bin_change_state_func:<my_pipeline> changing state of children from PAUSED to PLAYING
0:00:00.753345750 8744 0xffff9c007680 DEBUG bin gstbin.c:2755:gst_bin_do_latency_func:<my_pipeline> querying latency
0:00:00.753410125 8744 0xffff9c007680 DEBUG query gstquery.c:675:gst_query_new_custom: creating new query 0xffffa0003c50 latency
0:00:00.753451375 8744 0xffff9c007680 DEBUG GST_ELEMENT_PADS gstelement.c:1962:gst_element_query: send query on element my_pipeline
0:00:00.753514000 8744 0xffff9c007680 DEBUG bin gstbin.c:4373:gst_bin_query:<my_pipeline> Sending query 0xffffa0003c50 (type latency) to sink children
0:00:00.753573750 8744 0xffff9c007680 DEBUG GST_STATES gstbin.c:1969:bin_element_is_sink:<my_pipeline> child my_sink is sink
0:00:00.753617625 8744 0xffff9c007680 DEBUG GST_ELEMENT_PADS gstelement.c:1962:gst_element_query: send query on element my_sink
0:00:00.753665500 8744 0xffff9c007680 DEBUG basesink gstbasesink.c:1168:gst_base_sink_query_latency:<my_sink> we are ready for LATENCY query
0:00:00.753715625 8744 0xffff9c007680 DEBUG query gstquery.c:675:gst_query_new_custom: creating new query 0xffffa0003ca0 latency
0:00:00.753766125 8744 0xffff9c007680 DEBUG GST_PADS gstpad.c:4133:gst_pad_peer_query:<my_sink:sink> peer query 0xffffa0003ca0 (latency)
0:00:00.753815500 8744 0xffff9c007680 DEBUG GST_PADS gstpad.c:4006:gst_pad_query:<my_vdec:src> doing query 0xffffa0003ca0 (latency)
0:00:00.753864125 8744 0xffff9c007680 DEBUG videodecoder gstvideodecoder.c:1733:gst_video_decoder_src_query:<my_vdec> received query 7683, latency
0:00:00.753910500 8744 0xffff9c007680 LOG videodecoder gstvideodecoder.c:1598:gst_video_decoder_src_query_default:<my_vdec> handling query: latency query: 0xffffa0003ca0, GstQueryLatency, live=(boolean)false, min-latency=(guint64)0, max-latency=(guint64)18446744073709551615;
0:00:00.754049875 8744 0xffff9c007680 DEBUG GST_PADS gstpad.c:4133:gst_pad_peer_query:<my_vdec:sink> peer query 0xffffa0003ca0 (latency)
0:00:00.754105875 8744 0xffff9c007680 DEBUG GST_PADS gstpad.c:4006:gst_pad_query:<my_h264parse:src> doing query 0xffffa0003ca0 (latency)
0:00:00.754156875 8744 0xffff9c007680 DEBUG baseparse gstbaseparse.c:1570:gst_base_parse_src_query:<my_h264parse> latency query: latency query: 0xffffa0003ca0, GstQueryLatency, live=(boolean)false, min-latency=(guint64)0, max-latency=(guint64)18446744073709551615;
0:00:00.754244250 8744 0xffff9c007680 DEBUG GST_PADS gstpad.c:4133:gst_pad_peer_query:<my_h264parse:sink> peer query 0xffffa0003ca0 (latency)
0:00:00.754293375 8744 0xffff9c007680 DEBUG GST_PADS gstpad.c:4006:gst_pad_query:<my_appsrc:src> doing query 0xffffa0003ca0 (latency)
0:00:00.754361125 8744 0xffffa4002580 LOG GST_POLL gstpoll.c:314:release_wakeup: 0x3d154a30: release
0:00:00.754356375 8744 0xffff9c007680 LOG basesrc gstbasesrc.c:746:gst_base_src_query_latency:<my_appsrc> latency: live 0, min 0:00:00.000000000, max 0:00:00.000000000
0:00:00.754459125 8744 0xffffa4002580 DEBUG GST_BUS gstbus.c:546:gst_bus_timed_pop_filtered:<bus1> got message 0xffff9c003600, new-clock from my_pipeline, type mask is 4294967295
0:00:00.754502250 8744 0xffff9c007680 DEBUG GST_PADS gstpad.c:4029:gst_pad_query:<my_appsrc:src> sent query 0xffffa0003ca0 (latency), result 1
0:00:00.754568125 8744 0xffff9c007680 DEBUG baseparse gstbaseparse.c:4184:gst_base_parse_src_query_default:<my_h264parse> Peer latency: live 0, min 0:00:00.000000000 max 0:00:00.000000000
0:00:00.754521125 8744 0xffffa4002580 DEBUG GST_BUS gstbus.c:839:gst_bus_source_dispatch:<bus1> source 0x3d21dc00 calling dispatch with new-clock message: 0xffff9c003600, time 99:99:99.999999999, seq-num 44, element 'my_pipeline', GstMessageNewClock, clock=(GstClock)"\(GstSystemClock\)\ GstSystemClock";
0:00:00.754643750 8744 0xffff9c007680 LOG baseparse gstbaseparse.c:1578:gst_base_parse_src_query:<my_h264parse> latency query result: 1 latency query: 0xffffa0003ca0, GstQueryLatency, live=(boolean)false, min-latency=(guint64)0, max-latency=(guint64)0;
0:00:00.754704000 8744 0xffffa4002580 LOG GST_MESSAGE gstmessage.c:208:_gst_message_free: finalize message 0xffff9c003600, new-clock from my_pipeline
0:00:00.754739500 8744 0xffff9c007680 DEBUG GST_PADS gstpad.c:4029:gst_pad_query:<my_h264parse:src> sent query 0xffffa0003ca0 (latency), result 1
0:00:00.754770000 8744 0xffffa4002580 DEBUG GST_BUS gstbus.c:844:gst_bus_source_dispatch:<bus1> source 0x3d21dc00 handler returns 1
0:00:00.754798125 8744 0xffff9c007680 DEBUG videodecoder gstvideodecoder.c:1697:gst_video_decoder_src_query_default:<my_vdec> Peer qlatency: live 0, min 0:00:00.000000000 max 0:00:00.000000000
0:00:00.754883500 8744 0xffff9c007680 DEBUG GST_PADS gstpad.c:4029:gst_pad_query:<my_vdec:src> sent query 0xffffa0003ca0 (latency), result 1
0:00:00.754941250 8744 0xffff9c007680 DEBUG basesink gstbasesink.c:1210:gst_base_sink_query_latency:<my_sink> latency query: live: 1, have_latency 1, upstream: 0, min 0:00:00.000000000, max 99:99:99.999999999
0:00:00.755009750 8744 0xffff9c007680 DEBUG basesink gstbasesink.c:4935:default_element_query:<my_sink> query latency returns 1
0:00:00.755055625 8744 0xffff9c007680 DEBUG bin gstbin.c:4188:bin_query_latency_fold:<my_sink> got latency min 0:00:00.000000000, max 99:99:99.999999999, live 1
0:00:00.755138625 8744 0xffff9c007680 DEBUG GST_STATES gstbin.c:1969:bin_element_is_sink:<my_pipeline> child my_vdec is not sink
0:00:00.755225375 8744 0xffff9c007680 DEBUG GST_STATES gstbin.c:1969:bin_element_is_sink:<my_pipeline> child my_h264parse is not sink
0:00:00.755277875 8744 0xffff9c007680 DEBUG GST_STATES gstbin.c:1969:bin_element_is_sink:<my_pipeline> child my_appsrc is not sink
0:00:00.755330875 8744 0xffff9c007680 DEBUG bin gstbin.c:4219:bin_query_latency_done:<my_pipeline> latency min 0:00:00.000000000, max 99:99:99.999999999, live 1
0:00:00.755395125 8744 0xffff9c007680 DEBUG bin gstbin.c:4395:gst_bin_query:<my_pipeline> query 0xffffa0003c50 result 1
0:00:00.755440000 8744 0xffff9c007680 DEBUG bin gstbin.c:2766:gst_bin_do_latency_func:<my_pipeline> got min latency 0:00:00.000000000, max latency 99:99:99.999999999, live 1
0:00:00.755493625 8744 0xffff9c007680 INFO GST_EVENT gstevent.c:1388:gst_event_new_latency: creating latency event 0:00:00.000000000
0:00:00.755561625 8744 0xffff9c007680 DEBUG GST_EVENT gstevent.c:306:gst_event_new_custom: creating new event 0xffffa000cc00 latency 56321
0:00:00.755611000 8744 0xffff9c007680 DEBUG GST_ELEMENT_PADS gstelement.c:1856:gst_element_send_event: send latency event on element my_pipeline
0:00:00.755668500 8744 0xffff9c007680 DEBUG bin gstbin.c:3137:gst_bin_send_event:<my_pipeline> Sending latency event to sink children
0:00:00.755717125 8744 0xffff9c007680 DEBUG GST_STATES gstbin.c:1969:bin_element_is_sink:<my_pipeline> child my_sink is sink
0:00:00.755763000 8744 0xffff9c007680 DEBUG GST_ELEMENT_PADS gstelement.c:1856:gst_element_send_event: send latency event on element my_sink
0:00:00.755811750 8744 0xffff9c007680 DEBUG basesink gstbasesink.c:4470:gst_base_sink_send_event:<my_sink> handling event 0xffffa000cc00 latency event: 0xffffa000cc00, time 99:99:99.999999999, seq-num 45, GstEventLatency, latency=(guint64)0;
0:00:00.755922375 8744 0xffff9c007680 DEBUG basesink gstbasesink.c:4487:gst_base_sink_send_event:<my_sink> latency set to 0:00:00.000000000
0:00:00.755974625 8744 0xffff9c007680 DEBUG basesink gstbasesink.c:4509:gst_base_sink_send_event:<my_sink> sending event 0xffffa000cc00 latency event: 0xffffa000cc00, time 99:99:99.999999999, seq-num 45, GstEventLatency, latency=(guint64)0;
0:00:00.756067125 8744 0xffff9c007680 LOG GST_PADS gstpad.c:5351:gst_pad_push_event_unchecked:<my_sink:sink> sending event 0xffffa000cc00 (latency) to peerpad <my_vdec:src>
0:00:00.756128250 8744 0xffff9c007680 DEBUG GST_EVENT gstpad.c:5638:gst_pad_send_event_unchecked:<my_vdec:src> have event type latency event: 0xffffa000cc00, time 99:99:99.999999999, seq-num 45, GstEventLatency, latency=(guint64)0;
0:00:00.756212125 8744 0xffff9c007680 DEBUG videodecoder gstvideodecoder.c:1584:gst_video_decoder_src_event:<my_vdec> received event 56321, latency
0:00:00.756257250 8744 0xffff9c007680 DEBUG videodecoder gstvideodecoder.c:1485:gst_video_decoder_src_event_default:<my_vdec> received event 56321, latency
0:00:00.756307625 8744 0xffff9c007680 LOG GST_PADS gstpad.c:5351:gst_pad_push_event_unchecked:<my_vdec:sink> sending event 0xffffa000cc00 (latency) to peerpad <my_h264parse:src>
0:00:00.756364625 8744 0xffff9c007680 DEBUG GST_EVENT gstpad.c:5638:gst_pad_send_event_unchecked:<my_h264parse:src> have event type latency event: 0xffffa000cc00, time 99:99:99.999999999, seq-num 45, GstEventLatency, latency=(guint64)0;
0:00:00.756455625 8744 0xffff9c007680 DEBUG baseparse gstbaseparse.c:1602:gst_base_parse_src_event:<my_h264parse> event 56321, latency
0:00:00.756514500 8744 0xffff9c007680 LOG GST_PADS gstpad.c:3087:gst_pad_event_default:<my_h264parse:src> default event handler for event latency event: 0xffffa000cc00, time 99:99:99.999999999, seq-num 45, GstEventLatency, latency=(guint64)0;
0:00:00.756598875 8744 0xffff9c007680 DEBUG GST_PADS gstpad.c:2897:gst_pad_iterate_internal_links_default:<my_h264parse:src> Making iterator
0:00:00.756691875 8744 0xffff9c007680 LOG GST_PADS gstpad.c:3007:gst_pad_forward:<my_h264parse:src> calling forward function on pad my_h264parse:sink
0:00:00.756742000 8744 0xffff9c007680 LOG GST_PADS gstpad.c:3052:event_forward_func:<my_h264parse:sink> Reffing and pushing event 0xffffa000cc00 (latency) to my_h264parse:sink
0:00:00.756795875 8744 0xffff9c007680 LOG GST_PADS gstpad.c:5351:gst_pad_push_event_unchecked:<my_h264parse:sink> sending event 0xffffa000cc00 (latency) to peerpad <my_appsrc:src>
0:00:00.756871750 8744 0xffff9c007680 DEBUG GST_EVENT gstpad.c:5638:gst_pad_send_event_unchecked:<my_appsrc:src> have event type latency event: 0xffffa000cc00, time 99:99:99.999999999, seq-num 45, GstEventLatency, latency=(guint64)0;
0:00:00.756956375 8744 0xffff9c007680 DEBUG basesrc gstbasesrc.c:2027:gst_base_src_default_event:<my_appsrc> handle event latency event: 0xffffa000cc00, time 99:99:99.999999999, seq-num 45, GstEventLatency, latency=(guint64)0;
0:00:00.757034625 8744 0xffff9c007680 DEBUG GST_PADS gstpad.c:5712:gst_pad_send_event_unchecked:<my_appsrc:src> sent event, ret ok
0:00:00.757129375 8744 0xffff9c007680 LOG GST_PADS gstpad.c:5359:gst_pad_push_event_unchecked:<my_h264parse:sink> sent event 0xffffa000cc00 (latency) to peerpad <my_appsrc:src>, ret ok
0:00:00.757212375 8744 0xffff9c007680 DEBUG GST_PADS gstpad.c:5712:gst_pad_send_event_unchecked:<my_h264parse:src> sent event, ret ok
0:00:00.757257875 8744 0xffff9c007680 LOG GST_PADS gstpad.c:5359:gst_pad_push_event_unchecked:<my_vdec:sink> sent event 0xffffa000cc00 (latency) to peerpad <my_h264parse:src>, ret ok
0:00:00.757317250 8744 0xffff9c007680 DEBUG GST_PADS gstpad.c:5712:gst_pad_send_event_unchecked:<my_vdec:src> sent event, ret ok
0:00:00.757360625 8744 0xffff9c007680 LOG GST_PADS gstpad.c:5359:gst_pad_push_event_unchecked:<my_sink:sink> sent event 0xffffa000cc00 (latency) to peerpad <my_vdec:src>, ret ok
0:00:00.757410750 8744 0x3d1e1590 LOG waylandsink wlbuffer.c:137:buffer_release:<GstWlBuffer at 0xffff9c00b340> wl_buffer::release (GstBuffer: 0xffff9c01fce0)
0:00:00.757417500 8744 0xffff9c007680 DEBUG basesink gstbasesink.c:4518:gst_base_sink_send_event:<my_sink> handled event: 1
0:00:00.757530750 8744 0x3d1e1590 LOG GST_BUFFER gstbuffer.c:725:_gst_buffer_free: finalize 0xffff9c01fce0
0:00:00.757581875 8744 0x3d1e1590 DEBUG GST_MEMORY gstmemory.c:88:_gst_memory_free: free memory 0xffff9c027070
0:00:00.757530375 8744 0xffff9c007680 LOG bin gstbin.c:3150:gst_bin_send_event:<my_sink> After handling latency event: 1
0:00:00.757672625 8744 0xffff9c007680 DEBUG GST_STATES gstbin.c:1969:bin_element_is_sink:<my_pipeline> child my_vdec is not sink
0:00:00.757732000 8744 0xffff9c007680 DEBUG GST_STATES gstbin.c:1969:bin_element_is_sink:<my_pipeline> child my_h264parse is not sink
0:00:00.757784125 8744 0xffff9c007680 DEBUG GST_STATES gstbin.c:1969:bin_element_is_sink:<my_pipeline> child my_appsrc is not sink
0:00:00.757888250 8744 0xffff9c007680 DEBUG bin gstbin.c:3177:gst_bin_send_event:<my_pipeline> Sending latency event to src pads
0:00:00.757929500 8744 0xffff9c007680 LOG GST_EVENT gstevent.c:223:_gst_event_free: freeing event 0xffffa000cc00 type latency
0:00:00.757980250 8744 0xffff9c007680 INFO bin gstbin.c:2781:gst_bin_do_latency_func:<my_pipeline> configured latency of 0:00:00.000000000
0:00:00.758032250 8744 0xffff9c007680 DEBUG bin gstbin.c:328:_gst_boolean_accumulator: invocation 2, 1
0:00:00.758084750 8744 0xffff9c007680 DEBUG bin gstbin.c:2738:gst_bin_recalculate_latency:<my_pipeline> latency returned 1
0:00:00.759814875 8744 0x3d1e1590 DEBUG fdmemory gstfdmemory.c:74:gst_fd_mem_free: 0xffff9c027070: freed
0:00:00.759869125 8744 0xffff9c007680 DEBUG bin gstbin.c:2383:gst_bin_sort_iterator_resync:<my_pipeline> resync
0:00:00.759968625 8744 0x3d1e1590 DEBUG GST_POLL gstpoll.c:1369:gst_poll_wait: 0x3d21fe80: timeout :99:99:99.999999999
0:00:00.760013000 8744 0xffff9c007680 DEBUG bin gstbin.c:2163:add_to_queue:<my_pipeline> adding 'my_sink' to queue
0:00:00.760074750 8744 0xffff9c007680 DEBUG bin gstbin.c:885:find_message:<my_pipeline> no message found matching types 00001000
0:00:00.760120875 8744 0xffff9c007680 DEBUG bin gstbin.c:892:find_message:<my_pipeline> structure-change
0:00:00.760168250 8744 0xffff9c007680 DEBUG bin gstbin.c:2280:update_degree:<my_pipeline> change element my_vdec, degree 0->1, linked to my_sink
0:00:00.760225500 8744 0xffff9c007680 DEBUG bin gstbin.c:885:find_message:<my_pipeline> no message found matching types 00001000
0:00:00.760268500 8744 0xffff9c007680 DEBUG bin gstbin.c:892:find_message:<my_pipeline> structure-change
0:00:00.760312625 8744 0xffff9c007680 DEBUG bin gstbin.c:2280:update_degree:<my_pipeline> change element my_h264parse, degree 0->1, linked to my_vdec
0:00:00.760364875 8744 0xffff9c007680 DEBUG bin gstbin.c:885:find_message:<my_pipeline> no message found matching types 00001000
0:00:00.760406875 8744 0xffff9c007680 DEBUG bin gstbin.c:892:find_message:<my_pipeline> structure-change
0:00:00.760449750 8744 0xffff9c007680 DEBUG bin gstbin.c:2280:update_degree:<my_pipeline> change element my_appsrc, degree 0->1, linked to my_h264parse
0:00:00.760502375 8744 0xffff9c007680 DEBUG bin gstbin.c:2303:update_degree:<my_pipeline> element my_appsrc not linked on any sinkpads
0:00:00.760555125 8744 0xffff9c007680 DEBUG bin gstbin.c:2370:gst_bin_sort_iterator_next:<my_pipeline> queue head gives my_sink
0:00:00.760599375 8744 0xffff9c007680 DEBUG bin gstbin.c:885:find_message:<my_pipeline> no message found matching types 00001000
0:00:00.760640125 8744 0xffff9c007680 DEBUG bin gstbin.c:892:find_message:<my_pipeline> structure-change
0:00:00.760683250 8744 0xffff9c007680 DEBUG bin gstbin.c:2280:update_degree:<my_pipeline> change element my_vdec, degree 1->0, linked to my_sink
0:00:00.760731500 8744 0xffff9c007680 DEBUG bin gstbin.c:2163:add_to_queue:<my_pipeline> adding 'my_vdec' to queue
0:00:00.760779375 8744 0xffff9c007680 INFO GST_STATES gstbin.c:2504:gst_bin_element_set_state:<my_sink> current PAUSED pending VOID_PENDING, desired next PLAYING
0:00:00.760829875 8744 0xffff9c007680 DEBUG bin gstbin.c:885:find_message:<my_pipeline> no message found matching types 00100000
0:00:00.760871375 8744 0xffff9c007680 DEBUG bin gstbin.c:892:find_message:<my_pipeline> async-start
0:00:00.760911250 8744 0xffff9c007680 DEBUG bin gstbin.c:2599:gst_bin_element_set_state:<my_pipeline> setting element my_sink to PLAYING, base_time 0:15:45.099030375
0:00:00.760965500 8744 0xffff9c007680 DEBUG GST_STATES gstelement.c:2827:gst_element_set_state_func:<my_sink> set_state to PLAYING
0:00:00.761006875 8744 0xffff9c007680 DEBUG GST_STATES gstelement.c:2852:gst_element_set_state_func:<my_sink> setting target state to PLAYING
0:00:00.761091625 8744 0xffff9c007680 DEBUG GST_STATES gstelement.c:2865:gst_element_set_state_func:<my_sink> current PAUSED, old_pending VOID_PENDING, next VOID_PENDING, old return SUCCESS
0:00:00.761149875 8744 0xffff9c007680 DEBUG GST_STATES gstelement.c:2899:gst_element_set_state_func:<my_sink> final: setting state from PAUSED to PLAYING
0:00:00.761200500 8744 0xffff9c007680 DEBUG basesink gstbasesink.c:3341:gst_base_sink_needs_preroll:<my_sink> have_preroll: 1, EOS: 0 => needs preroll: 0
0:00:00.761283250 8744 0xffff9c007680 DEBUG basesink gstbasesink.c:5101:gst_base_sink_change_state:<my_sink> PAUSED to PLAYING, don't need preroll
0:00:00.761323375 8744 0xffff9c007680 DEBUG basesink gstbasesink.c:5114:gst_base_sink_change_state:<my_sink> signal preroll
0:00:00.761372125 8744 0xffff9c007680 LOG GST_STATES gstelement.c:3154:gst_element_change_state_func:<my_sink> default handler tries setting state from PAUSED to PLAYING (001c)
0:00:00.761408000 8744 0x3d233770 DEBUG basesink gstbasesink.c:2273:gst_base_sink_wait_preroll:<my_sink> continue after preroll
0:00:00.761424500 8744 0xffff9c007680 DEBUG GST_STATES gstelement.c:2988:gst_element_change_state:<my_sink> element changed state SUCCESS
0:00:00.761469375 8744 0x3d233770 DEBUG basesink gstbasesink.c:2591:gst_base_sink_do_sync:<my_sink> reset rc_time to time 0:00:00.000000000
0:00:00.762055750 8744 0xffff9c007680 INFO GST_STATES gstelement.c:2676:gst_element_continue_state:<my_sink> completed state change to PLAYING
0:00:00.762198250 8744 0x3d233770 DEBUG basesink gstbasesink.c:2603:gst_base_sink_do_sync:<my_sink> possibly waiting for clock to reach 0:00:00.000000000, adjusted 0:00:00.000000000
0:00:00.762275750 8744 0xffff9c007680 INFO GST_STATES gstelement.c:2579:_priv_gst_element_state_changed:<my_sink> notifying about state-changed PAUSED to PLAYING (VOID_PENDING pending)
0:00:00.762294750 8744 0x3d233770 LOG basesink gstbasesink.c:2177:gst_base_sink_wait_clock:<my_sink> time 0:00:00.000000000, base_time 0:15:45.099030375
0:00:00.762346500 8744 0xffff9c007680 LOG GST_MESSAGE gstmessage.c:301:gst_message_new_custom: source my_sink: creating new message 0xffff9c003680 state-changed
0:00:00.762386125 8744 0x3d233770 DEBUG GST_CLOCK gstclock.c:249:gst_clock_entry_new:<GstSystemClock> created entry 0xffffa4008580, time 0:15:45.099030375
0:00:00.762453000 8744 0x3d233770 DEBUG GST_CLOCK gstclock.c:537:gst_clock_id_wait:<GstSystemClock> waiting on clock entry 0xffffa4008580
0:00:00.762487500 8744 0x3d233770 DEBUG GST_CLOCK gstclock.c:1046:gst_clock_get_internal_time:<GstSystemClock> internal time 0:15:45.109439875
0:00:00.762524875 8744 0x3d233770 DEBUG GST_CLOCK gstclock.c:1091:gst_clock_get_time:<GstSystemClock> adjusted time 0:15:45.109439875
0:00:00.762480625 8744 0xffff9c007680 DEBUG GST_BUS gstbus.c:318:gst_bus_post:<bus0> [msg 0xffff9c003680] posting on bus state-changed message: 0xffff9c003680, time 99:99:99.999999999, seq-num 46, element 'my_sink', GstMessageStateChanged, old-state=(GstState)GST_STATE_PAUSED, new-state=(GstState)GST_STATE_PLAYING, pending-state=(GstState)GST_STATE_VOID_PENDING;
0:00:00.762555750 8744 0x3d233770 DEBUG GST_CLOCK gstsystemclock.c:718:gst_system_clock_id_wait_jitter_unlocked: entry 0xffffa4008580 time 0:15:45.099030375 now 0:15:45.109439875 diff (time-now) -10409500
0:00:00.762623250 8744 0xffff9c007680 DEBUG bin gstbin.c:3715:gst_bin_handle_message_func:<my_pipeline> [msg 0xffff9c003680] handling child my_sink message of type state-changed
0:00:00.762642125 8744 0x3d233770 DEBUG GST_CLOCK gstclock.c:547:gst_clock_id_wait:<GstSystemClock> done waiting entry 0xffffa4008580, res: 1 (early)
0:00:00.762686625 8744 0xffff9c007680 DEBUG bin gstbin.c:4052:gst_bin_handle_message_func:<my_pipeline> posting message upward
0:00:00.762721375 8744 0x3d233770 DEBUG basesink gstbasesink.c:2610:gst_base_sink_do_sync:<my_sink> clock returned 1, jitter 0:00:00.010409500
0:00:00.762795125 8744 0x3d233770 DEBUG basesink gstbasesink.c:3538:gst_base_sink_chain_unlocked:<my_sink> rendering object 0xffffa4028460
0:00:00.762830625 8744 0x3d233770 LOG videosink gstvideosink.c:228:gst_video_sink_show_frame:<my_sink> rendering frame, ts=0:00:00.000000000
0:00:00.762774375 8744 0xffff9c007680 DEBUG GST_BUS gstbus.c:318:gst_bus_post:<bus1> [msg 0xffff9c003680] posting on bus state-changed message: 0xffff9c003680, time 99:99:99.999999999, seq-num 46, element 'my_sink', GstMessageStateChanged, old-state=(GstState)GST_STATE_PAUSED, new-state=(GstState)GST_STATE_PLAYING, pending-state=(GstState)GST_STATE_VOID_PENDING;
0:00:00.762906875 8744 0x3d233770 LOG waylandsink gstwaylandsink.c:863:gst_wayland_sink_show_frame:<my_sink> render buffer 0xffffa4028460
0:00:00.762957750 8744 0xffff9c007680 DEBUG GST_BUS gstbus.c:357:gst_bus_post:<bus1> [msg 0xffff9c003680] pushing on async queue
0:00:00.763000125 8744 0xffff9c007680 LOG GST_POLL gstpoll.c:290:raise_wakeup: 0x3d154a30: raise
0:00:00.763071000 8744 0xffff9c007680 DEBUG GST_BUS gstbus.c:360:gst_bus_post:<bus1> [msg 0xffff9c003680] pushed on async queue
0:00:00.763119000 8744 0xffff9c007680 DEBUG GST_BUS gstbus.c:353:gst_bus_post:<bus0> [msg 0xffff9c003680] dropped
0:00:00.763131750 8744 0xffffa4002580 LOG GST_BUS gstbus.c:522:gst_bus_timed_pop_filtered:<bus1> have 1 messages
0:00:00.763163000 8744 0xffff9c007680 LOG GST_STATES gstelement.c:3004:gst_element_change_state:<my_sink> exit state change 1
0:00:00.763221250 8744 0xffff9c007680 DEBUG GST_STATES gstelement.c:2911:gst_element_set_state_func:<my_sink> returned SUCCESS
0:00:00.763241375 8744 0xffffa4002580 LOG GST_POLL gstpoll.c:314:release_wakeup: 0x3d154a30: release
0:00:00.763266000 8744 0xffff9c007680 INFO GST_STATES gstbin.c:2952:gst_bin_change_state_func:<my_pipeline> child 'my_sink' changed state to 4(PLAYING) successfully
0:00:00.763338000 8744 0xffffa4002580 DEBUG GST_BUS gstbus.c:546:gst_bus_timed_pop_filtered:<bus1> got message 0xffff9c003680, state-changed from my_sink, type mask is 4294967295
0:00:00.763364000 8744 0xffff9c007680 DEBUG bin gstbin.c:2370:gst_bin_sort_iterator_next:<my_pipeline> queue head gives my_vdec
0:00:00.763444375 8744 0xffff9c007680 DEBUG bin gstbin.c:885:find_message:<my_pipeline> no message found matching types 00001000
0:00:00.763412500 8744 0xffffa4002580 DEBUG GST_BUS gstbus.c:839:gst_bus_source_dispatch:<bus1> source 0x3d21dc00 calling dispatch with state-changed message: 0xffff9c003680, time 99:99:99.999999999, seq-num 46, element 'my_sink', GstMessageStateChanged, old-state=(GstState)GST_STATE_PAUSED, new-state=(GstState)GST_STATE_PLAYING, pending-state=(GstState)GST_STATE_VOID_PENDING;
(bus_call, 87)my_sink state change, old state: PAUSED, new state: PLAYING
0:00:00.763488750 8744 0xffff9c007680 DEBUG bin gstbin.c:892:find_message:<my_pipeline> structure-change
0:00:00.763561250 8744 0xffffa4002580 LOG GST_MESSAGE gstmessage.c:208:_gst_message_free: finalize message 0xffff9c003680, state-changed from my_sink
0:00:00.763628875 8744 0xffffa4002580 DEBUG GST_BUS gstbus.c:844:gst_bus_source_dispatch:<bus1> source 0x3d21dc00 handler returns 1
0:00:00.763636250 8744 0xffff9c007680 DEBUG bin gstbin.c:2280:update_degree:<my_pipeline> change element my_h264parse, degree 1->0, linked to my_vdec
0:00:00.763716500 8744 0xffff9c007680 DEBUG bin gstbin.c:2163:add_to_queue:<my_pipeline> adding 'my_h264parse' to queue
0:00:00.763767250 8744 0xffff9c007680 INFO GST_STATES gstbin.c:2504:gst_bin_element_set_state:<my_vdec> current PAUSED pending VOID_PENDING, desired next PLAYING
0:00:00.763816750 8744 0xffff9c007680 DEBUG bin gstbin.c:885:find_message:<my_pipeline> no message found matching types 00100000
0:00:00.763858875 8744 0xffff9c007680 DEBUG bin gstbin.c:892:find_message:<my_pipeline> async-start
0:00:00.763899250 8744 0xffff9c007680 DEBUG bin gstbin.c:2599:gst_bin_element_set_state:<my_pipeline> setting element my_vdec to PLAYING, base_time 0:15:45.099030375
0:00:00.763985625 8744 0xffff9c007680 DEBUG GST_STATES gstelement.c:2827:gst_element_set_state_func:<my_vdec> set_state to PLAYING
0:00:00.764029125 8744 0xffff9c007680 DEBUG GST_STATES gstelement.c:2852:gst_element_set_state_func:<my_vdec> setting target state to PLAYING
0:00:00.764069500 8744 0xffff9c007680 DEBUG GST_STATES gstelement.c:2865:gst_element_set_state_func:<my_vdec> current PAUSED, old_pending VOID_PENDING, next VOID_PENDING, old return SUCCESS
0:00:00.764117500 8744 0xffff9c007680 DEBUG GST_STATES gstelement.c:2899:gst_element_set_state_func:<my_vdec> final: setting state from PAUSED to PLAYING
0:00:00.764190125 8744 0xffff9c007680 LOG GST_STATES gstelement.c:3154:gst_element_change_state_func:<my_vdec> default handler tries setting state from PAUSED to PLAYING (001c)
0:00:00.764241375 8744 0xffff9c007680 DEBUG GST_STATES gstelement.c:2988:gst_element_change_state:<my_vdec> element changed state SUCCESS
0:00:00.764279250 8744 0xffff9c007680 INFO GST_STATES gstelement.c:2676:gst_element_continue_state:<my_vdec> completed state change to PLAYING
0:00:00.764320000 8744 0xffff9c007680 INFO GST_STATES gstelement.c:2579:_priv_gst_element_state_changed:<my_vdec> notifying about state-changed PAUSED to PLAYING (VOID_PENDING pending)
0:00:00.764367625 8744 0xffff9c007680 LOG GST_MESSAGE gstmessage.c:301:gst_message_new_custom: source my_vdec: creating new message 0xffff9c003700 state-changed
0:00:00.764417750 8744 0xffff9c007680 DEBUG GST_BUS gstbus.c:318:gst_bus_post:<bus0> [msg 0xffff9c003700] posting on bus state-changed message: 0xffff9c003700, time 99:99:99.999999999, seq-num 47, element 'my_vdec', GstMessageStateChanged, old-state=(GstState)GST_STATE_PAUSED, new-state=(GstState)GST_STATE_PLAYING, pending-state=(GstState)GST_STATE_VOID_PENDING;
0:00:00.764517000 8744 0xffff9c007680 DEBUG bin gstbin.c:3715:gst_bin_handle_message_func:<my_pipeline> [msg 0xffff9c003700] handling child my_vdec message of type state-changed
0:00:00.764564625 8744 0xffff9c007680 DEBUG bin gstbin.c:4052:gst_bin_handle_message_func:<my_pipeline> posting message upward
0:00:00.764602750 8744 0xffff9c007680 DEBUG GST_BUS gstbus.c:318:gst_bus_post:<bus1> [msg 0xffff9c003700] posting on bus state-changed message: 0xffff9c003700, time 99:99:99.999999999, seq-num 47, element 'my_vdec', GstMessageStateChanged, old-state=(GstState)GST_STATE_PAUSED, new-state=(GstState)GST_STATE_PLAYING, pending-state=(GstState)GST_STATE_VOID_PENDING;
0:00:00.764693000 8744 0xffff9c007680 DEBUG GST_BUS gstbus.c:357:gst_bus_post:<bus1> [msg 0xffff9c003700] pushing on async queue
0:00:00.764728125 8744 0xffff9c007680 LOG GST_POLL gstpoll.c:290:raise_wakeup: 0x3d154a30: raise
0:00:00.764790125 8744 0xffff9c007680 DEBUG GST_BUS gstbus.c:360:gst_bus_post:<bus1> [msg 0xffff9c003700] pushed on async queue
0:00:00.764830750 8744 0xffffa4002580 LOG GST_BUS gstbus.c:522:gst_bus_timed_pop_filtered:<bus1> have 1 messages
0:00:00.764836625 8744 0xffff9c007680 DEBUG GST_BUS gstbus.c:353:gst_bus_post:<bus0> [msg 0xffff9c003700] dropped
0:00:00.764892125 8744 0xffffa4002580 LOG GST_POLL gstpoll.c:314:release_wakeup: 0x3d154a30: release
0:00:00.764944250 8744 0xffff9c007680 LOG GST_STATES gstelement.c:3004:gst_element_change_state:<my_vdec> exit state change 1
0:00:00.765002625 8744 0xffffa4002580 DEBUG GST_BUS gstbus.c:546:gst_bus_timed_pop_filtered:<bus1> got message 0xffff9c003700, state-changed from my_vdec, type mask is 4294967295
0:00:00.765018750 8744 0xffff9c007680 DEBUG GST_STATES gstelement.c:2911:gst_element_set_state_func:<my_vdec> returned SUCCESS
0:00:00.765155125 8744 0xffff9c007680 INFO GST_STATES gstbin.c:2952:gst_bin_change_state_func:<my_pipeline> child 'my_vdec' changed state to 4(PLAYING) successfully
0:00:00.765112625 8744 0xffffa4002580 DEBUG GST_BUS gstbus.c:839:gst_bus_source_dispatch:<bus1> source 0x3d21dc00 calling dispatch with state-changed message: 0xffff9c003700, time 99:99:99.999999999, seq-num 47, element 'my_vdec', GstMessageStateChanged, old-state=(GstState)GST_STATE_PAUSED, new-state=(GstState)GST_STATE_PLAYING, pending-state=(GstState)GST_STATE_VOID_PENDING;
0:00:00.765257625 8744 0xffff9c007680 DEBUG bin gstbin.c:2370:gst_bin_sort_iterator_next:<my_pipeline> queue head gives my_h264parse
(bus_call, 87)my_vdec state change, old state: PAUSED, new state: PLAYING
0:00:00.765316500 8744 0xffff9c007680 DEBUG bin gstbin.c:885:find_message:<my_pipeline> no message found matching types 00001000
0:00:00.765368000 8744 0xffffa4002580 LOG GST_MESSAGE gstmessage.c:208:_gst_message_free: finalize message 0xffff9c003700, state-changed from my_vdec
0:00:00.765407000 8744 0xffff9c007680 DEBUG bin gstbin.c:892:find_message:<my_pipeline> structure-change
0:00:00.765434500 8744 0xffffa4002580 DEBUG GST_BUS gstbus.c:844:gst_bus_source_dispatch:<bus1> source 0x3d21dc00 handler returns 1
0:00:00.765454000 8744 0xffff9c007680 DEBUG bin gstbin.c:2280:update_degree:<my_pipeline> change element my_appsrc, degree 1->0, linked to my_h264parse
0:00:00.765503000 8744 0xffff9c007680 DEBUG bin gstbin.c:2163:add_to_queue:<my_pipeline> adding 'my_appsrc' to queue
0:00:00.765550750 8744 0xffff9c007680 INFO GST_STATES gstbin.c:2504:gst_bin_element_set_state:<my_h264parse> current PAUSED pending VOID_PENDING, desired next PLAYING
0:00:00.765599250 8744 0xffff9c007680 DEBUG bin gstbin.c:885:find_message:<my_pipeline> no message found matching types 00100000
0:00:00.765640125 8744 0xffff9c007680 DEBUG bin gstbin.c:892:find_message:<my_pipeline> async-start
0:00:00.765679750 8744 0xffff9c007680 DEBUG bin gstbin.c:2599:gst_bin_element_set_state:<my_pipeline> setting element my_h264parse to PLAYING, base_time 0:15:45.099030375
0:00:00.765731750 8744 0xffff9c007680 DEBUG GST_STATES gstelement.c:2827:gst_element_set_state_func:<my_h264parse> set_state to PLAYING
0:00:00.765772375 8744 0xffff9c007680 DEBUG GST_STATES gstelement.c:2852:gst_element_set_state_func:<my_h264parse> setting target state to PLAYING
0:00:00.765812750 8744 0xffff9c007680 DEBUG GST_STATES gstelement.c:2865:gst_element_set_state_func:<my_h264parse> current PAUSED, old_pending VOID_PENDING, next VOID_PENDING, old return SUCCESS
0:00:00.765857500 8744 0xffff9c007680 DEBUG GST_STATES gstelement.c:2899:gst_element_set_state_func:<my_h264parse> final: setting state from PAUSED to PLAYING
0:00:00.765902875 8744 0xffff9c007680 LOG GST_STATES gstelement.c:3154:gst_element_change_state_func:<my_h264parse> default handler tries setting state from PAUSED to PLAYING (001c)
0:00:00.765948250 8744 0xffff9c007680 DEBUG GST_STATES gstelement.c:2988:gst_element_change_state:<my_h264parse> element changed state SUCCESS
0:00:00.765985625 8744 0xffff9c007680 INFO GST_STATES gstelement.c:2676:gst_element_continue_state:<my_h264parse> completed state change to PLAYING
0:00:00.766026500 8744 0xffff9c007680 INFO GST_STATES gstelement.c:2579:_priv_gst_element_state_changed:<my_h264parse> notifying about state-changed PAUSED to PLAYING (VOID_PENDING pending)
0:00:00.766071250 8744 0xffff9c007680 LOG GST_MESSAGE gstmessage.c:301:gst_message_new_custom: source my_h264parse: creating new message 0xffffa0007000 state-changed
0:00:00.766120125 8744 0xffff9c007680 DEBUG GST_BUS gstbus.c:318:gst_bus_post:<bus0> [msg 0xffffa0007000] posting on bus state-changed message: 0xffffa0007000, time 99:99:99.999999999, seq-num 48, element 'my_h264parse', GstMessageStateChanged, old-state=(GstState)GST_STATE_PAUSED, new-state=(GstState)GST_STATE_PLAYING, pending-state=(GstState)GST_STATE_VOID_PENDING;
0:00:00.766255000 8744 0xffff9c007680 DEBUG bin gstbin.c:3715:gst_bin_handle_message_func:<my_pipeline> [msg 0xffffa0007000] handling child my_h264parse message of type state-changed
0:00:00.766303375 8744 0xffff9c007680 DEBUG bin gstbin.c:4052:gst_bin_handle_message_func:<my_pipeline> posting message upward
0:00:00.766342125 8744 0xffff9c007680 DEBUG GST_BUS gstbus.c:318:gst_bus_post:<bus1> [msg 0xffffa0007000] posting on bus state-changed message: 0xffffa0007000, time 99:99:99.999999999, seq-num 48, element 'my_h264parse', GstMessageStateChanged, old-state=(GstState)GST_STATE_PAUSED, new-state=(GstState)GST_STATE_PLAYING, pending-state=(GstState)GST_STATE_VOID_PENDING;
0:00:00.766433250 8744 0xffff9c007680 DEBUG GST_BUS gstbus.c:357:gst_bus_post:<bus1> [msg 0xffffa0007000] pushing on async queue
0:00:00.766468375 8744 0xffff9c007680 LOG GST_POLL gstpoll.c:290:raise_wakeup: 0x3d154a30: raise
0:00:00.766532250 8744 0xffff9c007680 DEBUG GST_BUS gstbus.c:360:gst_bus_post:<bus1> [msg 0xffffa0007000] pushed on async queue
0:00:00.766569625 8744 0xffffa4002580 LOG GST_BUS gstbus.c:522:gst_bus_timed_pop_filtered:<bus1> have 1 messages
0:00:00.766578750 8744 0xffff9c007680 DEBUG GST_BUS gstbus.c:353:gst_bus_post:<bus0> [msg 0xffffa0007000] dropped
0:00:00.766630750 8744 0xffffa4002580 LOG GST_POLL gstpoll.c:314:release_wakeup: 0x3d154a30: release
0:00:00.766680375 8744 0xffff9c007680 LOG GST_STATES gstelement.c:3004:gst_element_change_state:<my_h264parse> exit state change 1
0:00:00.766739125 8744 0xffff9c007680 DEBUG GST_STATES gstelement.c:2911:gst_element_set_state_func:<my_h264parse> returned SUCCESS
0:00:00.766783250 8744 0xffff9c007680 INFO GST_STATES gstbin.c:2952:gst_bin_change_state_func:<my_pipeline> child 'my_h264parse' changed state to 4(PLAYING) successfully
0:00:00.766777125 8744 0xffffa4002580 DEBUG GST_BUS gstbus.c:546:gst_bus_timed_pop_filtered:<bus1> got message 0xffffa0007000, state-changed from my_h264parse, type mask is 4294967295
0:00:00.766848500 8744 0xffff9c007680 DEBUG bin gstbin.c:2370:gst_bin_sort_iterator_next:<my_pipeline> queue head gives my_appsrc
0:00:00.766907375 8744 0xffff9c007680 DEBUG bin gstbin.c:2303:update_degree:<my_pipeline> element my_appsrc not linked on any sinkpads
0:00:00.766954625 8744 0xffff9c007680 INFO GST_STATES gstbin.c:2504:gst_bin_element_set_state:<my_appsrc> current PAUSED pending VOID_PENDING, desired next PLAYING
0:00:00.766933250 8744 0xffffa4002580 DEBUG GST_BUS gstbus.c:839:gst_bus_source_dispatch:<bus1> source 0x3d21dc00 calling dispatch with state-changed message: 0xffffa0007000, time 99:99:99.999999999, seq-num 48, element 'my_h264parse', GstMessageStateChanged, old-state=(GstState)GST_STATE_PAUSED, new-state=(GstState)GST_STATE_PLAYING, pending-state=(GstState)GST_STATE_VOID_PENDING;
(bus_call, 87)my_h264parse state change, old state: PAUSED, new state: PLAYING
0:00:00.767002000 8744 0xffff9c007680 DEBUG bin gstbin.c:885:find_message:<my_pipeline> no message found matching types 00100000
0:00:00.767084750 8744 0xffffa4002580 LOG GST_MESSAGE gstmessage.c:208:_gst_message_free: finalize message 0xffffa0007000, state-changed from my_h264parse
0:00:00.767152875 8744 0xffffa4002580 DEBUG GST_BUS gstbus.c:844:gst_bus_source_dispatch:<bus1> source 0x3d21dc00 handler returns 1
0:00:00.767156375 8744 0xffff9c007680 DEBUG bin gstbin.c:892:find_message:<my_pipeline> async-start
0:00:00.767240375 8744 0xffff9c007680 DEBUG bin gstbin.c:2599:gst_bin_element_set_state:<my_pipeline> setting element my_appsrc to PLAYING, base_time 0:15:45.099030375
0:00:00.767296375 8744 0xffff9c007680 DEBUG GST_STATES gstelement.c:2827:gst_element_set_state_func:<my_appsrc> set_state to PLAYING
0:00:00.767366625 8744 0xffff9c007680 DEBUG GST_STATES gstelement.c:2852:gst_element_set_state_func:<my_appsrc> setting target state to PLAYING
0:00:00.767408250 8744 0xffff9c007680 DEBUG GST_STATES gstelement.c:2865:gst_element_set_state_func:<my_appsrc> current PAUSED, old_pending VOID_PENDING, next VOID_PENDING, old return SUCCESS
0:00:00.767454625 8744 0xffff9c007680 DEBUG GST_STATES gstelement.c:2899:gst_element_set_state_func:<my_appsrc> final: setting state from PAUSED to PLAYING
0:00:00.767500750 8744 0xffff9c007680 DEBUG basesrc gstbasesrc.c:3893:gst_base_src_change_state:<my_appsrc> PAUSED->PLAYING
0:00:00.767540125 8744 0xffff9c007680 LOG GST_STATES gstelement.c:3154:gst_element_change_state_func:<my_appsrc> default handler tries setting state from PAUSED to PLAYING (001c)
0:00:00.767586000 8744 0xffff9c007680 DEBUG GST_STATES gstelement.c:2988:gst_element_change_state:<my_appsrc> element changed state SUCCESS
0:00:00.767622375 8744 0xffff9c007680 INFO GST_STATES gstelement.c:2676:gst_element_continue_state:<my_appsrc> completed state change to PLAYING
0:00:00.767662625 8744 0xffff9c007680 INFO GST_STATES gstelement.c:2579:_priv_gst_element_state_changed:<my_appsrc> notifying about state-changed PAUSED to PLAYING (VOID_PENDING pending)
0:00:00.767707250 8744 0xffff9c007680 LOG GST_MESSAGE gstmessage.c:301:gst_message_new_custom: source my_appsrc: creating new message 0xffffa0007080 state-changed
0:00:00.767757750 8744 0xffff9c007680 DEBUG GST_BUS gstbus.c:318:gst_bus_post:<bus0> [msg 0xffffa0007080] posting on bus state-changed message: 0xffffa0007080, time 99:99:99.999999999, seq-num 49, element 'my_appsrc', GstMessageStateChanged, old-state=(GstState)GST_STATE_PAUSED, new-state=(GstState)GST_STATE_PLAYING, pending-state=(GstState)GST_STATE_VOID_PENDING;
0:00:00.767852750 8744 0xffff9c007680 DEBUG bin gstbin.c:3715:gst_bin_handle_message_func:<my_pipeline> [msg 0xffffa0007080] handling child my_appsrc message of type state-changed
0:00:00.767899125 8744 0xffff9c007680 DEBUG bin gstbin.c:4052:gst_bin_handle_message_func:<my_pipeline> posting message upward
0:00:00.767937500 8744 0xffff9c007680 DEBUG GST_BUS gstbus.c:318:gst_bus_post:<bus1> [msg 0xffffa0007080] posting on bus state-changed message: 0xffffa0007080, time 99:99:99.999999999, seq-num 49, element 'my_appsrc', GstMessageStateChanged, old-state=(GstState)GST_STATE_PAUSED, new-state=(GstState)GST_STATE_PLAYING, pending-state=(GstState)GST_STATE_VOID_PENDING;
0:00:00.768040875 8744 0xffff9c007680 DEBUG GST_BUS gstbus.c:357:gst_bus_post:<bus1> [msg 0xffffa0007080] pushing on async queue
0:00:00.768075375 8744 0xffff9c007680 LOG GST_POLL gstpoll.c:290:raise_wakeup: 0x3d154a30: raise
0:00:00.768138000 8744 0xffff9c007680 DEBUG GST_BUS gstbus.c:360:gst_bus_post:<bus1> [msg 0xffffa0007080] pushed on async queue
0:00:00.768176000 8744 0xffffa4002580 LOG GST_BUS gstbus.c:522:gst_bus_timed_pop_filtered:<bus1> have 1 messages
0:00:00.768185000 8744 0xffff9c007680 DEBUG GST_BUS gstbus.c:353:gst_bus_post:<bus0> [msg 0xffffa0007080] dropped
0:00:00.768236625 8744 0xffffa4002580 LOG GST_POLL gstpoll.c:314:release_wakeup: 0x3d154a30: release
0:00:00.768286000 8744 0xffff9c007680 LOG GST_STATES gstelement.c:3004:gst_element_change_state:<my_appsrc> exit state change 1
0:00:00.768344375 8744 0xffff9c007680 DEBUG GST_STATES gstelement.c:2911:gst_element_set_state_func:<my_appsrc> returned SUCCESS
0:00:00.768388375 8744 0xffff9c007680 INFO GST_STATES gstbin.c:2952:gst_bin_change_state_func:<my_pipeline> child 'my_appsrc' changed state to 4(PLAYING) successfully
0:00:00.768382500 8744 0xffffa4002580 DEBUG GST_BUS gstbus.c:546:gst_bus_timed_pop_filtered:<bus1> got message 0xffffa0007080, state-changed from my_appsrc, type mask is 4294967295
0:00:00.768451500 8744 0xffff9c007680 DEBUG bin gstbin.c:2359:gst_bin_sort_iterator_next:<my_pipeline> queue empty, elements exhausted
0:00:00.768555500 8744 0xffff9c007680 DEBUG GST_STATES gstbin.c:3011:gst_bin_change_state_func:<my_pipeline> iterator done
0:00:00.768528250 8744 0xffffa4002580 DEBUG GST_BUS gstbus.c:839:gst_bus_source_dispatch:<bus1> source 0x3d21dc00 calling dispatch with state-changed message: 0xffffa0007080, time 99:99:99.999999999, seq-num 49, element 'my_appsrc', GstMessageStateChanged, old-state=(GstState)GST_STATE_PAUSED, new-state=(GstState)GST_STATE_PLAYING, pending-state=(GstState)GST_STATE_VOID_PENDING;
(bus_call, 87)my_appsrc state change, old state: PAUSED, new state: PLAYING
0:00:00.768594125 8744 0xffff9c007680 LOG GST_STATES gstelement.c:3154:gst_element_change_state_func:<my_pipeline> default handler tries setting state from PAUSED to PLAYING (001c)
0:00:00.768670625 8744 0xffffa4002580 LOG GST_MESSAGE gstmessage.c:208:_gst_message_free: finalize message 0xffffa0007080, state-changed from my_appsrc
0:00:00.768737625 8744 0xffffa4002580 DEBUG GST_BUS gstbus.c:844:gst_bus_source_dispatch:<bus1> source 0x3d21dc00 handler returns 1
0:00:00.768744000 8744 0xffff9c007680 DEBUG bin gstbin.c:2401:gst_bin_sort_iterator_free:<my_pipeline> free
0:00:00.768829375 8744 0xffff9c007680 DEBUG bin gstbin.c:3046:gst_bin_change_state_func:<my_pipeline> no async elements
0:00:00.768869250 8744 0xffff9c007680 DEBUG GST_STATES gstbin.c:3080:gst_bin_change_state_func:<my_pipeline> done changing bin's state from PAUSED to PLAYING, now in PAUSED, ret SUCCESS
0:00:00.768917500 8744 0xffff9c007680 DEBUG GST_STATES gstelement.c:2988:gst_element_change_state:<my_pipeline> element changed state SUCCESS
0:00:00.768954250 8744 0xffff9c007680 INFO GST_STATES gstelement.c:2676:gst_element_continue_state:<my_pipeline> completed state change to PLAYING
0:00:00.768995250 8744 0xffff9c007680 INFO GST_STATES gstelement.c:2579:_priv_gst_element_state_changed:<my_pipeline> notifying about state-changed PAUSED to PLAYING (VOID_PENDING pending)
0:00:00.769040625 8744 0xffff9c007680 LOG GST_MESSAGE gstmessage.c:301:gst_message_new_custom: source my_pipeline: creating new message 0xffffa0007100 state-changed
0:00:00.769139000 8744 0xffff9c007680 DEBUG GST_BUS gstbus.c:318:gst_bus_post:<bus1> [msg 0xffffa0007100] posting on bus state-changed message: 0xffffa0007100, time 99:99:99.999999999, seq-num 50, element 'my_pipeline', GstMessageStateChanged, old-state=(GstState)GST_STATE_PAUSED, new-state=(GstState)GST_STATE_PLAYING, pending-state=(GstState)GST_STATE_VOID_PENDING;
0:00:00.769232000 8744 0xffff9c007680 DEBUG GST_BUS gstbus.c:357:gst_bus_post:<bus1> [msg 0xffffa0007100] pushing on async queue
0:00:00.769266625 8744 0xffff9c007680 LOG GST_POLL gstpoll.c:290:raise_wakeup: 0x3d154a30: raise
0:00:00.769330250 8744 0xffff9c007680 DEBUG GST_BUS gstbus.c:360:gst_bus_post:<bus1> [msg 0xffffa0007100] pushed on async queue
0:00:00.769370750 8744 0xffffa4002580 LOG GST_BUS gstbus.c:522:gst_bus_timed_pop_filtered:<bus1> have 1 messages
0:00:00.769379500 8744 0xffff9c007680 DEBUG GST_STATES gstbin.c:1969:bin_element_is_sink:<my_pipeline> child my_sink is sink
0:00:00.769430875 8744 0xffffa4002580 LOG GST_POLL gstpoll.c:314:release_wakeup: 0x3d154a30: release
0:00:00.769480125 8744 0xffff9c007680 DEBUG bin gstbin.c:885:find_message:<my_pipeline> no message found matching types 00000001
0:00:00.769539375 8744 0xffff9c007680 DEBUG bin gstbin.c:892:find_message:<my_pipeline> eos
0:00:00.769575625 8744 0xffff9c007680 DEBUG bin gstbin.c:998:is_eos: sink 'my_sink' did not post EOS yet
0:00:00.769563500 8744 0xffffa4002580 DEBUG GST_BUS gstbus.c:546:gst_bus_timed_pop_filtered:<bus1> got message 0xffffa0007100, state-changed from my_pipeline, type mask is 4294967295
0:00:00.769627250 8744 0xffff9c007680 LOG bin gstbin.c:3551:bin_do_eos:<my_pipeline> Not forwarding EOS due to in progress state change, or already posted, or waiting for more EOS
0:00:00.769732250 8744 0xffff9c007680 LOG GST_STATES gstelement.c:3004:gst_element_change_state:<my_pipeline> exit state change 1
0:00:00.769702750 8744 0xffffa4002580 DEBUG GST_BUS gstbus.c:839:gst_bus_source_dispatch:<bus1> source 0x3d21dc00 calling dispatch with state-changed message: 0xffffa0007100, time 99:99:99.999999999, seq-num 50, element 'my_pipeline', GstMessageStateChanged, old-state=(GstState)GST_STATE_PAUSED, new-state=(GstState)GST_STATE_PLAYING, pending-state=(GstState)GST_STATE_VOID_PENDING;
(bus_call, 87)my_pipeline state change, old state: PAUSED, new state: PLAYING
0:00:00.769776625 8744 0xffff9c007680 DEBUG bin gstbin.c:3253:gst_bin_continue_func:<my_pipeline> state continue done
0:00:00.769844500 8744 0xffffa4002580 LOG GST_MESSAGE gstmessage.c:208:_gst_message_free: finalize message 0xffffa0007100, state-changed from my_pipeline
0:00:00.769916000 8744 0xffffa4002580 DEBUG GST_BUS gstbus.c:844:gst_bus_source_dispatch:<bus1> source 0x3d21dc00 handler returns 1
0:00:00.771939375 8744 0x3d1e1590 LOG waylandsink gstwaylandsink.c:745:frame_redraw_callback: frame_redraw_cb
0:00:00.772058500 8744 0x3d233770 LOG waylandsink gstwaylandsink.c:896:gst_wayland_sink_show_frame:<my_sink> buffer 0xffffa4028460 has a wl_buffer from our display, writing directly
0:00:00.772043500 8744 0x3d1e1590 DEBUG GST_POLL gstpoll.c:1369:gst_poll_wait: 0x3d21fe80: timeout :99:99:99.999999999
0:00:00.772103750 8744 0x3d233770 LOG waylandsink gstwaylandsink.c:1042:gst_wayland_sink_show_frame:<my_sink> Buffer already being rendered
0:00:00.772139500 8744 0x3d233770 DEBUG GST_QOS gstbasesink.c:2751:gst_base_sink_perform_qos:<my_sink> start: 0:00:00.000000000, stop 0:00:00.000000000, entered 0:00:00.010409500, left 0:00:00.010409500, pt: 99:99:99.999999999, duration 99:99:99.999999999,jitter 10409500
0:00:00.772247875 8744 0x3d233770 DEBUG GST_QOS gstbasesink.c:2755:gst_base_sink_perform_qos:<my_sink> avg_pt: 99:99:99.999999999, avg_rate: -1
0:00:00.772291125 8744 0x3d233770 DEBUG GST_QOS gstbasesink.c:2785:gst_base_sink_perform_qos:<my_sink> updated: avg_pt: 99:99:99.999999999, avg_rate: -1
0:00:00.772330625 8744 0x3d233770 DEBUG basesink gstbasesink.c:3577:gst_base_sink_chain_unlocked:<my_sink> object unref after render 0xffffa4028460
0:00:00.772368500 8744 0x3d233770 DEBUG GST_SCHEDULING gstpad.c:4283:gst_pad_chain_data_unchecked:<my_sink:sink> called chainfunction &gst_base_sink_chain with buffer 0xffffa4028460, returned ok
0:00:00.772429375 8744 0x3d233770 LOG v4l2videodec gstv4l2videodec.c:605:gst_v4l2_video_dec_loop:<my_vdec> Allocate output buffer
0:00:00.772448500 8744 0x3d233140 LOG videodecoder gstvideodecoder.c:2595:gst_video_decoder_new_frame:<my_vdec> Created new frame 0xffffa40343c0 (sfn:5)
0:00:00.772466375 8744 0x3d233770 DEBUG v4l2bufferpool gstv4l2bufferpool.c:1342:gst_v4l2_buffer_pool_acquire_buffer:<my_vdec:pool:src> acquire
0:00:00.772519625 8744 0x3d233770 LOG v4l2bufferpool gstv4l2bufferpool.c:999:gst_v4l2_buffer_pool_poll:<my_vdec:pool:src> polling device
0:00:00.772503875 8744 0x3d233140 LOG videodecoder gstvideodecoder.c:3410:gst_video_decoder_decode_frame:<my_vdec> PTS 0:00:02.500000000, DTS 99:99:99.999999999, dist 5
0:00:00.772551250 8744 0x3d233770 DEBUG GST_POLL gstpoll.c:1369:gst_poll_wait: 0xffff9c007400: timeout :99:99:99.999999999
0:00:00.772578500 8744 0x3d233140 DEBUG v4l2videodec gstv4l2videodec.c:704:gst_v4l2_video_dec_handle_frame:<my_vdec> Handling frame 5
0:00:00.772656625 8744 0x3d233140 DEBUG v4l2bufferpool gstv4l2bufferpool.c:1745:gst_v4l2_buffer_pool_process:<my_vdec:pool:sink> process buffer 0xffffa40343f8
0:00:00.772686500 8744 0x3d233140 LOG v4l2bufferpool gstv4l2bufferpool.c:1923:gst_v4l2_buffer_pool_process:<my_vdec:pool:sink> alloc buffer from our pool
0:00:00.772713125 8744 0x3d233140 DEBUG v4l2bufferpool gstv4l2bufferpool.c:1342:gst_v4l2_buffer_pool_acquire_buffer:<my_vdec:pool:sink> acquire
0:00:00.772741750 8744 0x3d233140 LOG bufferpool gstbufferpool.c:1128:default_acquire_buffer:<my_vdec:pool:sink> acquired buffer 0xffffa4017840
0:00:00.772772625 8744 0x3d233140 LOG v4l2bufferpool gstv4l2bufferpool.c:116:gst_v4l2_buffer_pool_copy_buffer:<my_vdec:pool:sink> copying buffer
0:00:00.772798625 8744 0x3d233140 DEBUG v4l2bufferpool gstv4l2bufferpool.c:141:gst_v4l2_buffer_pool_copy_buffer:<my_vdec:pool:sink> copy raw bytes
0:00:00.772820625 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1721:gst_buffer_map_range: buffer 0xffffa4034090, idx 0, length -1, flags 0001
0:00:00.772853875 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:213:_get_merged_memory: buffer 0xffffa4034090, idx 0, length 1
0:00:00.772888500 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1826:gst_buffer_fill: buffer 0xffffa4017840, offset 0, size 1569
0:00:00.772926500 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1582:gst_buffer_resize_range: trim 0xffffa4017840 0-1569 size:6291456 offs:0 max:6291456
0:00:00.772964250 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:515:gst_buffer_copy_into: copy 0xffffa4034090 to 0xffffa4017840, offset 0-1569/1569
0:00:00.773003250 8744 0x3d233140 LOG GST_PERFORMANCE gstv4l2bufferpool.c:155:gst_v4l2_buffer_pool_copy_buffer:<my_vdec:pool:sink> slow copy into buffer 0xffffa4017840
0:00:00.773040125 8744 0x3d233140 LOG v4l2bufferpool gstv4l2bufferpool.c:1059:gst_v4l2_buffer_pool_qbuf:<my_vdec:pool:sink> queuing buffer 1
0:00:00.773181750 8744 0x3d233140 LOG v4l2allocator gstv4l2allocator.c:1265:gst_v4l2_allocator_qbuf:<my_vdec:pool:sink:allocator> queued buffer 1 (flags 0x4003)
0:00:00.773214125 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:710:_gst_buffer_dispose: release 0xffffa4017840 to pool 0xffffa4012410
0:00:00.773248875 8744 0x3d233140 DEBUG v4l2bufferpool gstv4l2bufferpool.c:1420:gst_v4l2_buffer_pool_release_buffer:<my_vdec:pool:sink> release buffer 0xffffa4017840
0:00:00.773279000 8744 0x3d233140 LOG v4l2bufferpool gstv4l2bufferpool.c:1503:gst_v4l2_buffer_pool_release_buffer:<my_vdec:pool:sink> buffer 1 is queued
0:00:00.773309000 8744 0x3d233140 LOG v4l2bufferpool gstv4l2bufferpool.c:999:gst_v4l2_buffer_pool_poll:<my_vdec:pool:sink> polling device
0:00:00.773330500 8744 0x3d233140 DEBUG GST_POLL gstpoll.c:1369:gst_poll_wait: 0xffffa4005cf0: timeout :99:99:99.999999999
0:00:00.773373375 8744 0x3d233140 DEBUG GST_POLL gstpoll.c:1188:gst_poll_fd_has_error: 0xffffa4005cf0: fd (fd:18, idx:1) 0
0:00:00.773405500 8744 0x3d233140 DEBUG GST_POLL gstpoll.c:1265:gst_poll_fd_can_read_pri_unlocked: 0xffffa4005cf0: fd (fd:18, idx:1) 0
0:00:00.773440625 8744 0x3d233140 LOG v4l2bufferpool gstv4l2bufferpool.c:1322:gst_v4l2_buffer_pool_dequeue:<my_vdec:pool:sink> dequeueing a buffer
0:00:00.773479500 8744 0x3d233140 LOG v4l2allocator gstv4l2allocator.c:1312:gst_v4l2_allocator_dqbuf:<my_vdec:pool:sink:allocator> dequeued buffer 0 (flags 0x4001)
0:00:00.773529250 8744 0x3d233770 DEBUG GST_POLL gstpoll.c:1188:gst_poll_fd_has_error: 0xffff9c007400: fd (fd:23, idx:1) 0
0:00:00.773517250 8744 0x3d233140 LOG v4l2bufferpool gstv4l2bufferpool.c:1194:gst_v4l2_buffer_pool_dqbuf:<my_vdec:pool:sink> dequeued buffer 0xffffa40170d0 seq:0 (ix=0), mem 0xffffa40181f0 used 1535, plane=0, flags 00004001, ts 0:00:02.000000000, pool-queued=1, buffer=0xffffa40170d0
0:00:00.773576375 8744 0x3d233770 DEBUG GST_POLL gstpoll.c:1265:gst_poll_fd_can_read_pri_unlocked: 0xffff9c007400: fd (fd:23, idx:1) 0
0:00:00.773641125 8744 0x3d233140 DEBUG v4l2bufferpool gstv4l2bufferpool.c:1420:gst_v4l2_buffer_pool_release_buffer:<my_vdec:pool:sink> release buffer 0xffffa40170d0
0:00:00.773659250 8744 0x3d233770 LOG v4l2bufferpool gstv4l2bufferpool.c:1322:gst_v4l2_buffer_pool_dequeue:<my_vdec:pool:src> dequeueing a buffer
0:00:00.773672750 8744 0x3d233140 LOG v4l2bufferpool gstv4l2bufferpool.c:1488:gst_v4l2_buffer_pool_release_buffer:<my_vdec:pool:sink> buffer 0 not queued, putting on free list
0:00:00.773698250 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:1312:gst_v4l2_allocator_dqbuf:<my_vdec:pool:src:allocator> dequeued buffer 1 (flags 0x4001)
0:00:00.773705250 8744 0x3d233140 LOG bufferpool gstbufferpool.c:1284:default_release_buffer:<my_vdec:pool:sink> released buffer 0xffffa40170d0 0
0:00:00.773740250 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:1341:gst_v4l2_allocator_dqbuf:<my_vdec:pool:src:allocator> Dequeued capture buffer, length: 65536 bytesused: 65536 data_offset: 0
0:00:00.773750375 8744 0x3d233140 DEBUG GST_BUFFER gstbuffer.c:1375:gst_buffer_is_memory_range_writable: idx 0, length -1
0:00:00.773784125 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:1341:gst_v4l2_allocator_dqbuf:<my_vdec:pool:src:allocator> Dequeued capture buffer, length: 32768 bytesused: 32768 data_offset: 0
0:00:00.773796375 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:799:gst_buffer_new: new 0xffffa40344d0
0:00:00.773835625 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:515:gst_buffer_copy_into: copy 0xffffa4034090 to 0xffffa40344d0, offset 0-0/1569
0:00:00.773827250 8744 0x3d233770 LOG v4l2bufferpool gstv4l2bufferpool.c:1194:gst_v4l2_buffer_pool_dqbuf:<my_vdec:pool:src> dequeued buffer 0xffffa4028570 seq:0 (ix=1), mem 0xffff9c018820 used 65536, plane=0, flags 00004001, ts 0:00:00.000000000, pool-queued=20, buffer=0xffffa4028570
0:00:00.773876750 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:725:_gst_buffer_free: finalize 0xffffa4034090
0:00:00.773917250 8744 0x3d233140 DEBUG GST_MEMORY gstmemory.c:88:_gst_memory_free: free memory 0x3d2276a0
0:00:00.773906125 8744 0x3d233770 LOG v4l2bufferpool gstv4l2bufferpool.c:1194:gst_v4l2_buffer_pool_dqbuf:<my_vdec:pool:src> dequeued buffer 0xffffa4028570 seq:0 (ix=1), mem 0xffff9c018940 used 32768, plane=1, flags 00004001, ts 0:00:00.000000000, pool-queued=20, buffer=0xffffa4028570
0:00:00.773962500 8744 0x3d233140 DEBUG GST_SCHEDULING gstpad.c:4283:gst_pad_chain_data_unchecked:<my_vdec:sink> called chainfunction &gst_video_decoder_chain with buffer 0xffffa4034090, returned ok
0:00:00.774015125 8744 0x3d233140 LOG baseparse gstbaseparse.c:2537:gst_base_parse_push_frame:<my_h264parse> frame pushed, flow ok
0:00:00.774016875 8744 0x3d233770 LOG v4l2videodec gstv4l2videodec.c:629:gst_v4l2_video_dec_loop:<my_vdec> Process output buffer
0:00:00.774053375 8744 0x3d233140 LOG baseparse gstbaseparse.c:2166:gst_base_parse_handle_buffer:<my_h264parse> handle_frame skipped 0, flushed 1567
0:00:00.774068000 8744 0x3d233770 DEBUG v4l2bufferpool gstv4l2bufferpool.c:1745:gst_v4l2_buffer_pool_process:<my_vdec:pool:src> process buffer 0xffffb1d697e8
0:00:00.774090750 8744 0x3d233140 DEBUG baseparse gstbaseparse.c:3215:gst_base_parse_chain:<my_h264parse> not enough data available (only 0 bytes)
0:00:00.774119500 8744 0x3d233140 LOG baseparse gstbaseparse.c:3277:gst_base_parse_chain:<my_h264parse> chain leaving
0:00:00.774108625 8744 0x3d233770 LOG v4l2videodec gstv4l2videodec.c:460:gst_v4l2_video_dec_get_oldest_frame:<my_vdec> Oldest frame is 1 0:00:00.500000000 and 4 frames left
0:00:00.774155000 8744 0x3d233140 DEBUG GST_SCHEDULING gstpad.c:4283:gst_pad_chain_data_unchecked:<my_h264parse:sink> called chainfunction &gst_base_parse_chain with buffer 0xffffa4017c80, returned ok
0:00:00.774217875 8744 0x3d233770 DEBUG GST_BUFFER gstbuffer.c:2201:gst_buffer_add_meta: alloc metadata 0xffff9c002418 (GstDmabufMeta) of size 24
0:00:00.774243875 8744 0x3d233140 LOG basesrc gstbasesrc.c:2828:gst_base_src_loop:<my_appsrc> next_ts 0:00:00.000008648 size 4096
0:00:00.774254375 8744 0x3d233770 DEBUG v4l2videodec gstv4l2videodec.c:647:gst_v4l2_video_dec_loop:<my_vdec> add drm modifier: 576460752303423489
0:00:00.774290750 8744 0x3d233140 DEBUG basesrc gstbasesrc.c:2399:gst_base_src_update_length:<my_appsrc> reading offset 8648, length 4096, size -1, segment.stop -1, maxsize -1
0:00:00.774307125 8744 0x3d233770 LOG videodecoder gstvideodecoder.c:2985:gst_video_decoder_finish_frame:<my_vdec> finish frame 0xffffa4017ea0
0:00:00.774337500 8744 0x3d233140 DEBUG basesrc gstbasesrc.c:2506:gst_base_src_get_range:<my_appsrc> calling create offset 8648 length 4096, time 0
0:00:00.774355375 8744 0x3d233770 LOG videodecoder gstvideodecoder.c:2625:gst_video_decoder_prepare_finish_frame:<my_vdec> n 5 in 0 out 0
(get_data, 99)
(get_data, 108)read_ret: 8, target frame num: 6, read frame num: 6
0:00:00.774388625 8744 0x3d233770 LOG videodecoder gstvideodecoder.c:2634:gst_video_decoder_prepare_finish_frame:<my_vdec> finish frame 0xffffa4017ea0 (#1) sync:0 PTS:0:00:00.500000000 DTS:99:99:99.999999999
0:00:00.774418125 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:799:gst_buffer_new: new 0xffffa40172f0
0:00:00.774437875 8744 0x3d233770 DEBUG videodecoder gstvideodecoder.c:2676:gst_video_decoder_prepare_finish_frame:<my_vdec> sync timestamp 0:00:00.500000000 diff -0:00:00.500000000
0:00:00.774444500 8744 0x3d233140 DEBUG GST_MEMORY gstmemory.c:139:gst_memory_init: new memory 0x3d227610, maxsize:1778 offset:0 size:1778
0:00:00.774488500 8744 0x3d233770 DEBUG default gstvideoutils.c:40:_gst_video_codec_frame_free: free frame 0xffffa4017ea0
0:00:00.774498000 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:414:_memory_add: buffer 0xffffa40172f0, idx -1, mem 0x3d227610
0:00:00.774515250 8744 0x3d233770 LOG GST_BUFFER gstbuffer.c:725:_gst_buffer_free: finalize 0xffffa4028020
0:00:00.774563500 8744 0x3d233140 DEBUG appsrc gstappsrc.c:1863:gst_app_src_push_internal:<my_appsrc> queueing buffer 0xffffa40172f0
0:00:00.774549000 8744 0x3d233770 LOG videodecoder gstvideodecoder.c:3130:gst_video_decoder_clip_and_push_buf:<my_vdec> accepting buffer inside segment: 0:00:00.500000000 0:00:01.000000000 seg 0:00:00.000000000 to 99:99:99.999999999 time 0:00:00.000000000
0:00:00.774606125 8744 0x3d233140 LOG appsrc gstappsrc.c:1221:gst_app_src_create:<my_appsrc> have buffer 0xffffa40172f0 of size 1778
0:00:00.774610500 8744 0x3d233770 DEBUG videodecoder gstvideodecoder.c:3197:gst_video_decoder_clip_and_push_buf:<my_vdec> pushing buffer 0xffffa4028570 of size 98304, PTS 0:00:00.500000000, dur 0:00:00.500000000
0:00:00.774643500 8744 0x3d233140 DEBUG basesrc gstbasesrc.c:2360:gst_base_src_do_sync:<my_appsrc> no sync needed
0:00:00.774670125 8744 0x3d233140 DEBUG basesrc gstbasesrc.c:2597:gst_base_src_get_range:<my_appsrc> buffer ok
0:00:00.774666125 8744 0x3d233770 DEBUG GST_SCHEDULING gstpad.c:4277:gst_pad_chain_data_unchecked:<my_sink:sink> calling chainfunction &gst_base_sink_chain with buffer buffer: 0xffffa4028570, pts 0:00:00.500000000, dts 99:99:99.999999999, dur 0:00:00.500000000, size 98304, offset none, offset_end none, flags 0x0
0:00:00.774703000 8744 0x3d233140 DEBUG GST_SCHEDULING gstpad.c:4277:gst_pad_chain_data_unchecked:<my_h264parse:sink> calling chainfunction &gst_base_parse_chain with buffer buffer: 0xffffa40172f0, pts 0:00:03.000000000, dts 99:99:99.999999999, dur 0:00:00.500000000, size 1778, offset none, offset_end none, flags 0x0
0:00:00.774739750 8744 0x3d233770 DEBUG basesink gstbasesink.c:3421:gst_base_sink_chain_unlocked:<my_sink> got times start: 0:00:00.500000000, end: 0:00:01.000000000
0:00:00.774797375 8744 0x3d233140 DEBUG baseparse gstbaseparse.c:3030:gst_base_parse_chain:<my_h264parse> chain
0:00:00.774831750 8744 0x3d233140 LOG baseparse gstbaseparse.c:3150:gst_base_parse_chain:<my_h264parse> buffer size: 1778, offset = -1, dts 99:99:99.999999999, pts 0:00:03.000000000
0:00:00.774837750 8744 0x3d233770 DEBUG basesink gstbasesink.c:2006:gst_base_sink_get_sync_times:<my_sink> got times start: 0:00:00.500000000, stop: 0:00:01.000000000, do_sync 1
0:00:00.774886500 8744 0x3d233140 LOG adapter gstadapter.c:389:gst_adapter_push:<GstAdapter at 0x3d20c000> pushing 0xffffa40172f0 first 1778 bytes
0:00:00.774925000 8744 0x3d233770 LOG basesink gstbasesink.c:2551:gst_base_sink_do_sync:<my_sink> avg frame diff 0:00:00.500000000
0:00:00.774941250 8744 0x3d233140 LOG adapter gstadapter.c:290:update_timestamps_and_offset:<GstAdapter at 0x3d20c000> new pts 0:00:03.000000000
0:00:00.774965250 8744 0x3d233770 DEBUG basesink gstbasesink.c:2591:gst_base_sink_do_sync:<my_sink> reset rc_time to time 0:00:00.500000000
0:00:00.774980750 8744 0x3d233140 LOG adapter gstadapter.c:974:gst_adapter_get_buffer:<GstAdapter at 0x3d20c000> getting buffer of 1778 bytes
0:00:00.775020750 8744 0x3d233140 LOG adapter gstadapter.c:989:gst_adapter_get_buffer:<GstAdapter at 0x3d20c000> providing buffer of 1778 bytes as head buffer
0:00:00.775023250 8744 0x3d233770 DEBUG basesink gstbasesink.c:2603:gst_base_sink_do_sync:<my_sink> possibly waiting for clock to reach 0:00:00.500000000, adjusted 0:00:00.500000000
0:00:00.775052500 8744 0x3d233140 LOG baseparse gstbaseparse.c:2148:gst_base_parse_handle_buffer:<my_h264parse> handling buffer of size 1778 with dts 99:99:99.999999999, pts 0:00:03.000000000, duration 0:00:00.500000000
0:00:00.775106125 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:799:gst_buffer_new: new 0xffffa4017c80
0:00:00.775066250 8744 0x3d233770 LOG basesink gstbasesink.c:2177:gst_base_sink_wait_clock:<my_sink> time 0:00:00.500000000, base_time 0:15:45.099030375
0:00:00.775130500 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:515:gst_buffer_copy_into: copy 0xffffa40172f0 to 0xffffa4017c80, offset 0-1778/1778
0:00:00.775195875 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:414:_memory_add: buffer 0xffffa4017c80, idx -1, mem 0x3d227610
0:00:00.775204125 8744 0x3d233770 DEBUG GST_CLOCK gstclock.c:537:gst_clock_id_wait:<GstSystemClock> waiting on clock entry 0xffffa4008580
0:00:00.775231625 8744 0x3d233140 DEBUG GST_PERFORMANCE gstminiobject.c:317:gst_mini_object_make_writable: copy GstBuffer miniobject 0xffffa40172f0 -> 0xffffa4017c80
0:00:00.775267500 8744 0x3d233140 LOG baseparse gstbaseparse.c:2110:gst_base_parse_prepare_frame:<my_h264parse> preparing frame at offset 18446744073709551615 (0xffffffffffffffff) of size 1778
0:00:00.775258375 8744 0x3d233770 DEBUG GST_CLOCK gstclock.c:1046:gst_clock_get_internal_time:<GstSystemClock> internal time 0:15:45.122210125
0:00:00.775304000 8744 0x3d233140 LOG baseparse gstbaseparse.c:764:gst_base_parse_update_frame:<my_h264parse> marking as new frame
0:00:00.775334750 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1721:gst_buffer_map_range: buffer 0xffffa4017c80, idx 0, length -1, flags 0001
0:00:00.775362750 8744 0x3d233770 DEBUG GST_CLOCK gstclock.c:1091:gst_clock_get_time:<GstSystemClock> adjusted time 0:15:45.122210125
0:00:00.775366875 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:213:_get_merged_memory: buffer 0xffffa4017c80, idx 0, length 1
0:00:00.775421250 8744 0x3d233770 DEBUG GST_CLOCK gstsystemclock.c:718:gst_system_clock_id_wait_jitter_unlocked: entry 0xffffa4008580 time 0:15:45.599030375 now 0:15:45.122210125 diff (time-now) 476820250
0:00:00.775444250 8744 0x3d233140 LOG h264parse gsth264parse.c:1097:gst_h264_parse_handle_frame:<my_h264parse> parsing new frame
0:00:00.775469000 8744 0x3d233770 DEBUG GST_POLL gstpoll.c:1369:gst_poll_wait: 0xffffa0003c00: timeout :0:00:00.476820250
0:00:00.775490000 8744 0x3d233140 DEBUG h264parse gsth264parse.c:186:gst_h264_parse_reset_frame:<my_h264parse> reset frame
0:00:00.775533375 8744 0x3d233140 DEBUG h264parse gsth264parse.c:1112:gst_h264_parse_handle_frame:<my_h264parse> last parse position 0
0:00:00.775562750 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:242:gst_h264_parse_nalu_header: Nal type 9, ref_idc 0
0:00:00.775590750 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:242:gst_h264_parse_nalu_header: Nal type 9, ref_idc 0
0:00:00.775615875 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:1366:gst_h264_parser_identify_nalu: Complete nal found. Off: 4, Size: 2
0:00:00.775646625 8744 0x3d233140 DEBUG h264parse gsth264parse.c:1162:gst_h264_parse_handle_frame:<my_h264parse> complete nal (offset, size): (4, 2)
0:00:00.775677250 8744 0x3d233140 DEBUG h264parse gsth264parse.c:1219:gst_h264_parse_handle_frame:<my_h264parse> 0xffffa4030640 complete nal found. Off: 4, Size: 2
0:00:00.775711000 8744 0x3d233140 DEBUG h264parse gsth264parse.c:721:gst_h264_parse_process_nal:<my_h264parse> processing nal of type 9 AU delimiter, size 2
0:00:00.775744000 8744 0x3d233140 LOG h264parse gsth264parse.c:895:gst_h264_parse_process_nal:<my_h264parse> collecting NAL in AVC frame
0:00:00.775769625 8744 0x3d233140 DEBUG h264parse gsth264parse.c:428:gst_h264_parse_wrap_nal:<my_h264parse> nal length 2
0:00:00.775795875 8744 0x3d233140 DEBUG GST_MEMORY gstmemory.c:139:gst_memory_init: new memory 0xffffa400ac90, maxsize:13 offset:0 size:6
0:00:00.775826625 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:799:gst_buffer_new: new 0xffffa4017b70
0:00:00.775849500 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:414:_memory_add: buffer 0xffffa4017b70, idx -1, mem 0xffffa400ac90
0:00:00.775877250 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:855:gst_buffer_new_allocate: new buffer 0xffffa4017b70 of size 6 from allocator (nil)
0:00:00.775906500 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1826:gst_buffer_fill: buffer 0xffffa4017b70, offset 0, size 4
0:00:00.775934250 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1826:gst_buffer_fill: buffer 0xffffa4017b70, offset 4, size 2
0:00:00.775961750 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1582:gst_buffer_resize_range: trim 0xffffa4017b70 0-6 size:6 offs:0 max:13
0:00:00.776001625 8744 0x3d233140 LOG adapter gstadapter.c:389:gst_adapter_push:<GstAdapter at 0x3d20c120> pushing 0xffffa4017b70 first 6 bytes
0:00:00.776032375 8744 0x3d233140 DEBUG h264parse gsth264parse.c:914:gst_h264_parse_collect_nal:<my_h264parse> parsing collected nal
0:00:00.776053625 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:242:gst_h264_parse_nalu_header: Nal type 6, ref_idc 0
0:00:00.776083625 8744 0x3d233140 LOG h264parse gsth264parse.c:922:gst_h264_parse_collect_nal:<my_h264parse> nal type: 9 AU delimiter
0:00:00.776113250 8744 0x3d233140 LOG h264parse gsth264parse.c:941:gst_h264_parse_collect_nal:<my_h264parse> next nal type: 6 SEI
0:00:00.776160125 8744 0x3d233140 LOG h264parse gsth264parse.c:948:gst_h264_parse_collect_nal:<my_h264parse> au complete: 0
0:00:00.776188625 8744 0x3d233140 DEBUG h264parse gsth264parse.c:1264:gst_h264_parse_handle_frame:<my_h264parse> Looking for more
0:00:00.776209125 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:242:gst_h264_parse_nalu_header: Nal type 6, ref_idc 0
0:00:00.776233750 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:1366:gst_h264_parser_identify_nalu: Complete nal found. Off: 10, Size: 21
0:00:00.776263125 8744 0x3d233140 DEBUG h264parse gsth264parse.c:1162:gst_h264_parse_handle_frame:<my_h264parse> complete nal (offset, size): (10, 21)
0:00:00.776292250 8744 0x3d233140 DEBUG h264parse gsth264parse.c:1219:gst_h264_parse_handle_frame:<my_h264parse> 0xffffa4030640 complete nal found. Off: 10, Size: 21
0:00:00.776324500 8744 0x3d233140 DEBUG h264parse gsth264parse.c:721:gst_h264_parse_process_nal:<my_h264parse> processing nal of type 6 SEI, size 21
0:00:00.776351125 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:2292:gst_h264_parser_parse_sei: parsing SEI nal
0:00:00.776373250 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:1127:gst_h264_parser_parse_sei_message: parsing "Sei message"
0:00:00.776395375 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:1147:gst_h264_parser_parse_sei_message: SEI message received: payloadType 5, payloadSize = 136 bits
0:00:00.776432750 8744 0x3d233140 DEBUG h264parse gsth264parse.c:807:gst_h264_parse_process_nal:<my_h264parse> marking SEI in frame at offset 6
0:00:00.776461375 8744 0x3d233140 LOG h264parse gsth264parse.c:895:gst_h264_parse_process_nal:<my_h264parse> collecting NAL in AVC frame
0:00:00.776486125 8744 0x3d233140 DEBUG h264parse gsth264parse.c:428:gst_h264_parse_wrap_nal:<my_h264parse> nal length 21
0:00:00.776509375 8744 0x3d233140 DEBUG GST_MEMORY gstmemory.c:139:gst_memory_init: new memory 0xffffa401b4e0, maxsize:32 offset:0 size:25
0:00:00.776539750 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:799:gst_buffer_new: new 0xffffa4017950
0:00:00.776562500 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:414:_memory_add: buffer 0xffffa4017950, idx -1, mem 0xffffa401b4e0
0:00:00.776589750 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:855:gst_buffer_new_allocate: new buffer 0xffffa4017950 of size 25 from allocator (nil)
0:00:00.776617375 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1826:gst_buffer_fill: buffer 0xffffa4017950, offset 0, size 4
0:00:00.776644250 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1826:gst_buffer_fill: buffer 0xffffa4017950, offset 4, size 21
0:00:00.776671375 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1582:gst_buffer_resize_range: trim 0xffffa4017950 0-25 size:25 offs:0 max:32
0:00:00.776710625 8744 0x3d233140 LOG adapter gstadapter.c:395:gst_adapter_push:<GstAdapter at 0x3d20c120> pushing 0xffffa4017950 25 bytes at end, size now 31
0:00:00.776744500 8744 0x3d233140 DEBUG h264parse gsth264parse.c:914:gst_h264_parse_collect_nal:<my_h264parse> parsing collected nal
0:00:00.776765500 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:242:gst_h264_parse_nalu_header: Nal type 1, ref_idc 1
0:00:00.776794875 8744 0x3d233140 LOG h264parse gsth264parse.c:922:gst_h264_parse_collect_nal:<my_h264parse> nal type: 6 SEI
0:00:00.776823750 8744 0x3d233140 LOG h264parse gsth264parse.c:941:gst_h264_parse_collect_nal:<my_h264parse> next nal type: 1 Slice
0:00:00.776853000 8744 0x3d233140 LOG h264parse gsth264parse.c:948:gst_h264_parse_collect_nal:<my_h264parse> au complete: 0
0:00:00.776880000 8744 0x3d233140 DEBUG h264parse gsth264parse.c:1264:gst_h264_parse_handle_frame:<my_h264parse> Looking for more
0:00:00.776917625 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:242:gst_h264_parse_nalu_header: Nal type 1, ref_idc 1
0:00:00.776943750 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:1366:gst_h264_parser_identify_nalu: Complete nal found. Off: 34, Size: 459
0:00:00.776973500 8744 0x3d233140 DEBUG h264parse gsth264parse.c:1162:gst_h264_parse_handle_frame:<my_h264parse> complete nal (offset, size): (34, 459)
0:00:00.777002625 8744 0x3d233140 DEBUG h264parse gsth264parse.c:1219:gst_h264_parse_handle_frame:<my_h264parse> 0xffffa4030640 complete nal found. Off: 34, Size: 459
0:00:00.777034750 8744 0x3d233140 DEBUG h264parse gsth264parse.c:721:gst_h264_parse_process_nal:<my_h264parse> processing nal of type 1 Slice, size 459
0:00:00.777106625 8744 0x3d233140 DEBUG h264parse gsth264parse.c:827:gst_h264_parse_process_nal:<my_h264parse> first_mb_in_slice = 0
0:00:00.777132375 8744 0x3d233140 DEBUG h264parse gsth264parse.c:830:gst_h264_parse_process_nal:<my_h264parse> frame start: 1
0:00:00.777157625 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:2079:gst_h264_parser_parse_slice_hdr: parsing "Slice header", slice type 0
0:00:00.777188875 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:700:gst_h264_slice_parse_dec_ref_pic_marking: parsing "Decoded reference picture marking"
0:00:00.777217125 8744 0x3d233140 DEBUG h264parse gsth264parse.c:840:gst_h264_parse_process_nal:<my_h264parse> parse result 0, first MB: 0, slice type: 0
0:00:00.777248875 8744 0x3d233140 LOG h264parse gsth264parse.c:895:gst_h264_parse_process_nal:<my_h264parse> collecting NAL in AVC frame
0:00:00.777273625 8744 0x3d233140 DEBUG h264parse gsth264parse.c:428:gst_h264_parse_wrap_nal:<my_h264parse> nal length 459
0:00:00.777346750 8744 0x3d233140 DEBUG GST_MEMORY gstmemory.c:139:gst_memory_init: new memory 0xffffa4038010, maxsize:470 offset:0 size:463
0:00:00.777379875 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:799:gst_buffer_new: new 0xffffa4017a60
0:00:00.777402625 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:414:_memory_add: buffer 0xffffa4017a60, idx -1, mem 0xffffa4038010
0:00:00.777430500 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:855:gst_buffer_new_allocate: new buffer 0xffffa4017a60 of size 463 from allocator (nil)
0:00:00.777458250 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1826:gst_buffer_fill: buffer 0xffffa4017a60, offset 0, size 4
0:00:00.777485500 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1826:gst_buffer_fill: buffer 0xffffa4017a60, offset 4, size 459
0:00:00.777513500 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1582:gst_buffer_resize_range: trim 0xffffa4017a60 0-463 size:463 offs:0 max:470
0:00:00.777554250 8744 0x3d233140 LOG adapter gstadapter.c:395:gst_adapter_push:<GstAdapter at 0x3d20c120> pushing 0xffffa4017a60 463 bytes at end, size now 494
0:00:00.777588500 8744 0x3d233140 DEBUG h264parse gsth264parse.c:914:gst_h264_parse_collect_nal:<my_h264parse> parsing collected nal
0:00:00.777609500 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:242:gst_h264_parse_nalu_header: Nal type 1, ref_idc 1
0:00:00.777639500 8744 0x3d233140 LOG h264parse gsth264parse.c:922:gst_h264_parse_collect_nal:<my_h264parse> nal type: 1 Slice
0:00:00.777669250 8744 0x3d233140 LOG h264parse gsth264parse.c:941:gst_h264_parse_collect_nal:<my_h264parse> next nal type: 1 Slice
0:00:00.777698750 8744 0x3d233140 LOG h264parse gsth264parse.c:948:gst_h264_parse_collect_nal:<my_h264parse> au complete: 0
0:00:00.777725625 8744 0x3d233140 DEBUG h264parse gsth264parse.c:1264:gst_h264_parse_handle_frame:<my_h264parse> Looking for more
0:00:00.777745875 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:242:gst_h264_parse_nalu_header: Nal type 1, ref_idc 1
0:00:00.777789750 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:1351:gst_h264_parser_identify_nalu: Nal start 496, No end found
0:00:00.777819125 8744 0x3d233140 DEBUG h264parse gsth264parse.c:1166:gst_h264_parse_handle_frame:<my_h264parse> not a complete nal found at offset 496
0:00:00.777847250 8744 0x3d233140 DEBUG h264parse gsth264parse.c:1172:gst_h264_parse_handle_frame:<my_h264parse> draining, accepting with size 1282
0:00:00.777875125 8744 0x3d233140 DEBUG h264parse gsth264parse.c:1219:gst_h264_parse_handle_frame:<my_h264parse> 0xffffa4030640 complete nal found. Off: 496, Size: 1282
0:00:00.777907625 8744 0x3d233140 DEBUG h264parse gsth264parse.c:721:gst_h264_parse_process_nal:<my_h264parse> processing nal of type 1 Slice, size 1282
0:00:00.777939250 8744 0x3d233140 DEBUG h264parse gsth264parse.c:830:gst_h264_parse_process_nal:<my_h264parse> frame start: 1
0:00:00.777962875 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:2079:gst_h264_parser_parse_slice_hdr: parsing "Slice header", slice type 0
0:00:00.777986750 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:700:gst_h264_slice_parse_dec_ref_pic_marking: parsing "Decoded reference picture marking"
0:00:00.778013125 8744 0x3d233140 DEBUG h264parse gsth264parse.c:840:gst_h264_parse_process_nal:<my_h264parse> parse result 0, first MB: 49, slice type: 0
0:00:00.778045000 8744 0x3d233140 LOG h264parse gsth264parse.c:895:gst_h264_parse_process_nal:<my_h264parse> collecting NAL in AVC frame
0:00:00.778069875 8744 0x3d233140 DEBUG h264parse gsth264parse.c:428:gst_h264_parse_wrap_nal:<my_h264parse> nal length 1282
0:00:00.778096000 8744 0x3d233140 DEBUG GST_MEMORY gstmemory.c:139:gst_memory_init: new memory 0xffffa4031250, maxsize:1293 offset:0 size:1286
0:00:00.778127500 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:799:gst_buffer_new: new 0xffffa4017d90
0:00:00.778150125 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:414:_memory_add: buffer 0xffffa4017d90, idx -1, mem 0xffffa4031250
0:00:00.778177375 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:855:gst_buffer_new_allocate: new buffer 0xffffa4017d90 of size 1286 from allocator (nil)
0:00:00.778204625 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1826:gst_buffer_fill: buffer 0xffffa4017d90, offset 0, size 4
0:00:00.778232250 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1826:gst_buffer_fill: buffer 0xffffa4017d90, offset 4, size 1282
0:00:00.778260125 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1582:gst_buffer_resize_range: trim 0xffffa4017d90 0-1286 size:1286 offs:0 max:1293
0:00:00.778300750 8744 0x3d233140 LOG adapter gstadapter.c:395:gst_adapter_push:<GstAdapter at 0x3d20c120> pushing 0xffffa4017d90 1286 bytes at end, size now 1780
0:00:00.778343500 8744 0x3d233140 DEBUG GST_CAPS gstpad.c:2705:gst_pad_has_current_caps:<my_h264parse:src> check current pad caps video/x-h264, stream-format=(string)byte-stream, alignment=(string)au, framerate=(fraction)0/1, width=(int)176, height=(int)144, interlace-mode=(string)progressive, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8, parsed=(boolean)true, profile=(string)constrained-baseline, level=(string)1.2
0:00:00.778447250 8744 0x3d233140 LOG h264parse gsth264parse.c:2016:gst_h264_parse_get_timestamp:<my_h264parse> Upstream ts 0:00:03.000000000
0:00:00.778483125 8744 0x3d233140 DEBUG h264parse gsth264parse.c:2035:gst_h264_parse_get_timestamp:<my_h264parse> unable to compute timestamp: timing info not present
0:00:00.778512375 8744 0x3d233140 LOG adapter gstadapter.c:974:gst_adapter_get_buffer:<GstAdapter at 0x3d20c120> getting buffer of 1780 bytes
0:00:00.778561375 8744 0x3d233140 LOG adapter gstadapter.c:736:gst_adapter_get_internal:<GstAdapter at 0x3d20c120> allocating 1780 bytes
0:00:00.778590375 8744 0x3d233140 DEBUG adapter gstadapter.c:344:copy_into_unchecked: bsize 6, skip 0, csize 6
0:00:00.778625000 8744 0x3d233140 LOG GST_PERFORMANCE gstadapter.c:346:copy_into_unchecked:<GstAdapter at 0x3d20c120> extract 6 bytes
0:00:00.778648625 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1876:gst_buffer_extract: buffer 0xffffa4017b70, offset 0, size 6
0:00:00.778684750 8744 0x3d233140 LOG GST_PERFORMANCE gstadapter.c:359:copy_into_unchecked:<GstAdapter at 0x3d20c120> extract 25 bytes
0:00:00.778707250 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1876:gst_buffer_extract: buffer 0xffffa4017950, offset 0, size 25
0:00:00.778742625 8744 0x3d233140 LOG GST_PERFORMANCE gstadapter.c:359:copy_into_unchecked:<GstAdapter at 0x3d20c120> extract 463 bytes
0:00:00.778764875 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1876:gst_buffer_extract: buffer 0xffffa4017a60, offset 0, size 463
0:00:00.778800000 8744 0x3d233140 LOG GST_PERFORMANCE gstadapter.c:359:copy_into_unchecked:<GstAdapter at 0x3d20c120> extract 1286 bytes
0:00:00.778822625 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1876:gst_buffer_extract: buffer 0xffffa4017d90, offset 0, size 1286
0:00:00.778851625 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:799:gst_buffer_new: new 0xffffa4034090
0:00:00.778874625 8744 0x3d233140 DEBUG GST_MEMORY gstmemory.c:139:gst_memory_init: new memory 0x3d2276a0, maxsize:1780 offset:0 size:1780
0:00:00.778904375 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:414:_memory_add: buffer 0xffffa4034090, idx -1, mem 0x3d2276a0
0:00:00.778940000 8744 0x3d233140 LOG adapter gstadapter.c:634:gst_adapter_flush_unchecked:<GstAdapter at 0x3d20c120> flushing 1780 bytes
0:00:00.778970750 8744 0x3d233140 LOG adapter gstadapter.c:656:gst_adapter_flush_unchecked:<GstAdapter at 0x3d20c120> flushing out head buffer
0:00:00.778991375 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:725:_gst_buffer_free: finalize 0xffffa4017b70
0:00:00.779013500 8744 0x3d233140 DEBUG GST_MEMORY gstmemory.c:88:_gst_memory_free: free memory 0xffffa400ac90
0:00:00.779046750 8744 0x3d233140 LOG adapter gstadapter.c:656:gst_adapter_flush_unchecked:<GstAdapter at 0x3d20c120> flushing out head buffer
0:00:00.779067250 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:725:_gst_buffer_free: finalize 0xffffa4017950
0:00:00.779089625 8744 0x3d233140 DEBUG GST_MEMORY gstmemory.c:88:_gst_memory_free: free memory 0xffffa401b4e0
0:00:00.779121500 8744 0x3d233140 LOG adapter gstadapter.c:656:gst_adapter_flush_unchecked:<GstAdapter at 0x3d20c120> flushing out head buffer
0:00:00.779142125 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:725:_gst_buffer_free: finalize 0xffffa4017a60
0:00:00.779164250 8744 0x3d233140 DEBUG GST_MEMORY gstmemory.c:88:_gst_memory_free: free memory 0xffffa4038010
0:00:00.779195875 8744 0x3d233140 LOG adapter gstadapter.c:656:gst_adapter_flush_unchecked:<GstAdapter at 0x3d20c120> flushing out head buffer
0:00:00.779216375 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:725:_gst_buffer_free: finalize 0xffffa4017d90
0:00:00.779238125 8744 0x3d233140 DEBUG GST_MEMORY gstmemory.c:88:_gst_memory_free: free memory 0xffffa4031250
0:00:00.779269875 8744 0x3d233140 LOG adapter gstadapter.c:668:gst_adapter_flush_unchecked:<GstAdapter at 0x3d20c120> adapter empty now
0:00:00.779291375 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:515:gst_buffer_copy_into: copy 0xffffa4017c80 to 0xffffa4034090, offset 0-1778/1778
0:00:00.779330250 8744 0x3d233140 LOG baseparse gstbaseparse.c:2637:gst_base_parse_finish_frame:<my_h264parse> finished frame at offset 8648, flushing size 1778
0:00:00.779383250 8744 0x3d233140 LOG adapter gstadapter.c:634:gst_adapter_flush_unchecked:<GstAdapter at 0x3d20c000> flushing 1778 bytes
0:00:00.779414000 8744 0x3d233140 LOG adapter gstadapter.c:656:gst_adapter_flush_unchecked:<GstAdapter at 0x3d20c000> flushing out head buffer
0:00:00.779434500 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:725:_gst_buffer_free: finalize 0xffffa40172f0
0:00:00.779464500 8744 0x3d233140 LOG adapter gstadapter.c:668:gst_adapter_flush_unchecked:<GstAdapter at 0x3d20c000> adapter empty now
0:00:00.779485625 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:725:_gst_buffer_free: finalize 0xffffa4017c80
0:00:00.779507750 8744 0x3d233140 DEBUG GST_MEMORY gstmemory.c:88:_gst_memory_free: free memory 0x3d227610
(free_data, 133)
0:00:00.779548750 8744 0x3d233140 DEBUG baseparse gstbaseparse.c:2333:gst_base_parse_handle_and_push_frame:<my_h264parse> no next fallback timestamp
0:00:00.779576375 8744 0x3d233140 LOG baseparse gstbaseparse.c:2392:gst_base_parse_push_frame:<my_h264parse> processing buffer of size 1780 with dts 99:99:99.999999999, pts 0:00:03.000000000, duration 0:00:00.500000000
0:00:00.779631000 8744 0x3d233140 DEBUG GST_CAPS gstpad.c:2705:gst_pad_has_current_caps:<my_h264parse:src> check current pad caps video/x-h264, stream-format=(string)byte-stream, alignment=(string)au, framerate=(fraction)0/1, width=(int)176, height=(int)144, interlace-mode=(string)progressive, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8, parsed=(boolean)true, profile=(string)constrained-baseline, level=(string)1.2
0:00:00.779708000 8744 0x3d233140 LOG baseparse gstbaseparse.c:1851:gst_base_parse_update_bitrates:<my_h264parse> frame bitrate 28480, avg bitrate 27717
0:00:00.779741625 8744 0x3d233140 DEBUG h264parse gsth264parse.c:186:gst_h264_parse_reset_frame:<my_h264parse> reset frame
0:00:00.779768375 8744 0x3d233140 LOG baseparse gstbaseparse.c:2535:gst_base_parse_push_frame:<my_h264parse> pushing frame (1780 bytes) now..
0:00:00.779803750 8744 0x3d233140 DEBUG GST_SCHEDULING gstpad.c:4277:gst_pad_chain_data_unchecked:<my_vdec:sink> calling chainfunction &gst_video_decoder_chain with buffer buffer: 0xffffa4034090, pts 0:00:03.000000000, dts 99:99:99.999999999, dur 0:00:00.500000000, size 1780, offset 8648, offset_end none, flags 0x2400
0:00:00.779876125 8744 0x3d233140 LOG videodecoder gstvideodecoder.c:2438:gst_video_decoder_chain:<my_vdec> chain PTS 0:00:03.000000000, DTS 99:99:99.999999999 duration 0:00:00.500000000 size 1780 flags 2400
0:00:01.051884875 8744 0x3d1e1590 DEBUG GST_POLL gstpoll.c:1369:gst_poll_wait: 0x3d21fe80: timeout :99:99:99.999999999
0:00:01.252879125 8744 0x3d233770 DEBUG GST_CLOCK gstsystemclock.c:746:gst_system_clock_id_wait_jitter_unlocked: entry 0xffffa4008580 unlocked, status 3, ret 0
0:00:01.252991250 8744 0x3d233770 DEBUG GST_CLOCK gstsystemclock.c:770:gst_system_clock_id_wait_jitter_unlocked: entry 0xffffa4008580 unlocked after timeout
0:00:01.253131000 8744 0x3d233770 DEBUG GST_CLOCK gstclock.c:1046:gst_clock_get_internal_time:<GstSystemClock> internal time 0:15:45.600056750
0:00:01.253205000 8744 0x3d233770 DEBUG GST_CLOCK gstclock.c:1091:gst_clock_get_time:<GstSystemClock> adjusted time 0:15:45.600056750
0:00:01.253260500 8744 0x3d233770 DEBUG GST_CLOCK gstsystemclock.c:792:gst_system_clock_id_wait_jitter_unlocked: entry 0xffffa4008580 finished, diff -1026375
0:00:01.253319625 8744 0x3d233770 DEBUG GST_CLOCK gstclock.c:547:gst_clock_id_wait:<GstSystemClock> done waiting entry 0xffffa4008580, res: 0 (ok)
0:00:01.253388375 8744 0x3d233770 DEBUG basesink gstbasesink.c:2610:gst_base_sink_do_sync:<my_sink> clock returned 0, jitter -0:00:00.476820250
0:00:01.253526625 8744 0x3d233770 DEBUG basesink gstbasesink.c:2921:gst_base_sink_is_too_late:<my_sink> object was scheduled in time
0:00:01.253577875 8744 0x3d233770 DEBUG basesink gstbasesink.c:3538:gst_base_sink_chain_unlocked:<my_sink> rendering object 0xffffa4028570
0:00:01.253632500 8744 0x3d233770 DEBUG basesink gstbasesink.c:994:gst_base_sink_set_last_buffer_unlocked:<my_sink> setting last buffer to 0xffffa4028570
0:00:01.253694625 8744 0x3d233770 LOG videosink gstvideosink.c:228:gst_video_sink_show_frame:<my_sink> rendering frame, ts=0:00:00.500000000
0:00:01.253761750 8744 0x3d233770 LOG waylandsink gstwaylandsink.c:863:gst_wayland_sink_show_frame:<my_sink> render buffer 0xffffa4028570
0:00:01.253832625 8744 0x3d233770 LOG waylandsink gstwaylandsink.c:917:gst_wayland_sink_show_frame:<my_sink> buffer 0xffffa4028570 does not have a wl_buffer from our display, creating it
0:00:01.253916500 8744 0x3d233770 DEBUG waylandsink wllinuxdmabuf.c:108:gst_wl_linux_dmabuf_construct_wl_buffer:<GstWlDisplay at 0x3d1da380> Creating wl_buffer from DMABuf of size 98304 (176 x 144), format NV12 modifier 0x0800000000000001
0:00:01.254655750 8744 0x3d233770 DEBUG waylandsink wllinuxdmabuf.c:175:gst_wl_linux_dmabuf_construct_wl_buffer:<dmabufallocator2> created linux_dmabuf wl_buffer (0x3d235820):176x144, fmt=NV12, 2 planes
0:00:01.254649875 8744 0x3d1e1590 DEBUG GST_POLL gstpoll.c:1369:gst_poll_wait: 0x3d21fe80: timeout :99:99:99.999999999
0:00:01.254821375 8744 0x3d233770 DEBUG GST_QOS gstbasesink.c:2751:gst_base_sink_perform_qos:<my_sink> start: 0:00:00.500000000, stop 0:00:01.000000000, entered 0:00:00.023179750, left 0:00:00.500000000, pt: 0:00:00.012770250, duration 0:00:00.500000000,jitter -476820250
0:00:01.255002375 8744 0x3d233770 DEBUG GST_QOS gstbasesink.c:2755:gst_base_sink_perform_qos:<my_sink> avg_pt: 99:99:99.999999999, avg_rate: -1
0:00:01.255064625 8744 0x3d1e1590 LOG waylandsink wlbuffer.c:137:buffer_release:<GstWlBuffer at 0xffff9c00b380> wl_buffer::release (GstBuffer: 0xffffa4028460)
0:00:01.255086375 8744 0x3d233770 DEBUG GST_QOS gstbasesink.c:2785:gst_base_sink_perform_qos:<my_sink> updated: avg_pt: 0:00:00.012770250, avg_rate: 0.0255405
0:00:01.255115750 8744 0x3d1e1590 LOG GST_BUFFER gstbuffer.c:710:_gst_buffer_dispose: release 0xffffa4028460 to pool 0xffffa4012e90
0:00:01.255180000 8744 0x3d233770 DEBUG GST_QOS gstbasesink.c:2679:gst_base_sink_send_qos:<my_sink> qos: type 0, proportion: 0.025541, diff -476820250, timestamp 0:00:00.500000000
0:00:01.255207000 8744 0x3d1e1590 DEBUG GST_BUFFER gstbuffer.c:2383:gst_buffer_foreach_meta: remove metadata 0xffff9c001e08 (GstDmabufMeta)
0:00:01.255282875 8744 0x3d233770 LOG GST_EVENT gstevent.c:1146:gst_event_new_qos: creating qos type 0, proportion 0.025541, diff -476820250, timestamp 0:00:00.500000000
0:00:01.255314125 8744 0x3d1e1590 DEBUG v4l2bufferpool gstv4l2bufferpool.c:1420:gst_v4l2_buffer_pool_release_buffer:<my_vdec:pool:src> release buffer 0xffffa4028460
0:00:01.255389125 8744 0x3d233770 DEBUG GST_EVENT gstevent.c:306:gst_event_new_custom: creating new event 0xffffa40085f0 qos 48641
0:00:01.255423875 8744 0x3d1e1590 LOG v4l2bufferpool gstv4l2bufferpool.c:1059:gst_v4l2_buffer_pool_qbuf:<my_vdec:pool:src> queuing buffer 0
0:00:01.255467500 8744 0x3d233770 LOG GST_PADS gstpad.c:5351:gst_pad_push_event_unchecked:<my_sink:sink> sending event 0xffffa40085f0 (qos) to peerpad <my_vdec:src>
0:00:01.255526125 8744 0x3d1e1590 LOG v4l2allocator gstv4l2allocator.c:1265:gst_v4l2_allocator_qbuf:<my_vdec:pool:src:allocator> queued buffer 0 (flags 0x4003)
0:00:01.255586625 8744 0x3d1e1590 DEBUG GST_POLL gstpoll.c:1369:gst_poll_wait: 0x3d21fe80: timeout :99:99:99.999999999
0:00:01.255546250 8744 0x3d233770 DEBUG GST_EVENT gstpad.c:5638:gst_pad_send_event_unchecked:<my_vdec:src> have event type qos event: 0xffffa40085f0, time 99:99:99.999999999, seq-num 51, GstEventQOS, type=(GstQOSType)GST_QOS_TYPE_OVERFLOW, proportion=(double)0.025540500000000001, diff=(gint64)-476820250, timestamp=(guint64)500000000;
0:00:01.255754000 8744 0x3d233770 DEBUG videodecoder gstvideodecoder.c:1584:gst_video_decoder_src_event:<my_vdec> received event 48641, qos
0:00:01.255813000 8744 0x3d233770 DEBUG videodecoder gstvideodecoder.c:1485:gst_video_decoder_src_event_default:<my_vdec> received event 48641, qos
0:00:01.255888250 8744 0x3d233770 DEBUG videodecoder gstvideodecoder.c:1556:gst_video_decoder_src_event_default:<my_vdec> got QoS 0:00:00.500000000, -0:00:00.476820250, 0.0255405
0:00:01.255983125 8744 0x3d233770 LOG GST_PADS gstpad.c:5351:gst_pad_push_event_unchecked:<my_vdec:sink> sending event 0xffffa40085f0 (qos) to peerpad <my_h264parse:src>
0:00:01.256059750 8744 0x3d233770 DEBUG GST_EVENT gstpad.c:5638:gst_pad_send_event_unchecked:<my_h264parse:src> have event type qos event: 0xffffa40085f0, time 99:99:99.999999999, seq-num 51, GstEventQOS, type=(GstQOSType)GST_QOS_TYPE_OVERFLOW, proportion=(double)0.025540500000000001, diff=(gint64)-476820250, timestamp=(guint64)500000000;
0:00:01.256213875 8744 0x3d233770 DEBUG baseparse gstbaseparse.c:1602:gst_base_parse_src_event:<my_h264parse> event 48641, qos
0:00:01.256277625 8744 0x3d233770 LOG GST_PADS gstpad.c:3087:gst_pad_event_default:<my_h264parse:src> default event handler for event qos event: 0xffffa40085f0, time 99:99:99.999999999, seq-num 51, GstEventQOS, type=(GstQOSType)GST_QOS_TYPE_OVERFLOW, proportion=(double)0.025540500000000001, diff=(gint64)-476820250, timestamp=(guint64)500000000;
0:00:01.256431375 8744 0x3d233770 DEBUG GST_PADS gstpad.c:2897:gst_pad_iterate_internal_links_default:<my_h264parse:src> Making iterator
0:00:01.256512125 8744 0x3d233770 LOG GST_PADS gstpad.c:3007:gst_pad_forward:<my_h264parse:src> calling forward function on pad my_h264parse:sink
0:00:01.256574500 8744 0x3d233770 LOG GST_PADS gstpad.c:3052:event_forward_func:<my_h264parse:sink> Reffing and pushing event 0xffffa40085f0 (qos) to my_h264parse:sink
0:00:01.256645250 8744 0x3d233770 LOG GST_PADS gstpad.c:5351:gst_pad_push_event_unchecked:<my_h264parse:sink> sending event 0xffffa40085f0 (qos) to peerpad <my_appsrc:src>
0:00:01.256719000 8744 0x3d233770 DEBUG GST_EVENT gstpad.c:5638:gst_pad_send_event_unchecked:<my_appsrc:src> have event type qos event: 0xffffa40085f0, time 99:99:99.999999999, seq-num 51, GstEventQOS, type=(GstQOSType)GST_QOS_TYPE_OVERFLOW, proportion=(double)0.025540500000000001, diff=(gint64)-476820250, timestamp=(guint64)500000000;
0:00:01.256871125 8744 0x3d233770 DEBUG basesrc gstbasesrc.c:2027:gst_base_src_default_event:<my_appsrc> handle event qos event: 0xffffa40085f0, time 99:99:99.999999999, seq-num 51, GstEventQOS, type=(GstQOSType)GST_QOS_TYPE_OVERFLOW, proportion=(double)0.025540500000000001, diff=(gint64)-476820250, timestamp=(guint64)500000000;
0:00:01.257026250 8744 0x3d233770 DEBUG GST_QOS gstbasesrc.c:2013:gst_base_src_update_qos:<my_appsrc> qos: proportion: 0.025541, diff -476820250, timestamp 0:00:00.500000000
0:00:01.257178625 8744 0x3d233770 DEBUG GST_PADS gstpad.c:5712:gst_pad_send_event_unchecked:<my_appsrc:src> sent event, ret ok
0:00:01.257235875 8744 0x3d233770 LOG GST_PADS gstpad.c:5359:gst_pad_push_event_unchecked:<my_h264parse:sink> sent event 0xffffa40085f0 (qos) to peerpad <my_appsrc:src>, ret ok
0:00:01.257312125 8744 0x3d233770 LOG GST_EVENT gstevent.c:223:_gst_event_free: freeing event 0xffffa40085f0 type qos
0:00:01.257414375 8744 0x3d233770 DEBUG GST_PADS gstpad.c:5712:gst_pad_send_event_unchecked:<my_h264parse:src> sent event, ret ok
0:00:01.257471250 8744 0x3d233770 LOG GST_PADS gstpad.c:5359:gst_pad_push_event_unchecked:<my_vdec:sink> sent event 0xffffa40085f0 (qos) to peerpad <my_h264parse:src>, ret ok
0:00:01.257549750 8744 0x3d233770 DEBUG GST_PADS gstpad.c:5712:gst_pad_send_event_unchecked:<my_vdec:src> sent event, ret ok
0:00:01.257604875 8744 0x3d233770 LOG GST_PADS gstpad.c:5359:gst_pad_push_event_unchecked:<my_sink:sink> sent event 0xffffa40085f0 (qos) to peerpad <my_vdec:src>, ret ok
0:00:01.257679625 8744 0x3d233770 DEBUG basesink gstbasesink.c:3577:gst_base_sink_chain_unlocked:<my_sink> object unref after render 0xffffa4028570
0:00:01.257738500 8744 0x3d233770 DEBUG GST_SCHEDULING gstpad.c:4283:gst_pad_chain_data_unchecked:<my_sink:sink> called chainfunction &gst_base_sink_chain with buffer 0xffffa4028570, returned ok
0:00:01.257831875 8744 0x3d233770 LOG v4l2videodec gstv4l2videodec.c:605:gst_v4l2_video_dec_loop:<my_vdec> Allocate output buffer
0:00:01.257864750 8744 0x3d233140 LOG videodecoder gstvideodecoder.c:2595:gst_video_decoder_new_frame:<my_vdec> Created new frame 0xffffa40345e0 (sfn:6)
0:00:01.257889125 8744 0x3d233770 DEBUG v4l2bufferpool gstv4l2bufferpool.c:1342:gst_v4l2_buffer_pool_acquire_buffer:<my_vdec:pool:src> acquire
0:00:01.257990500 8744 0x3d233770 LOG v4l2bufferpool gstv4l2bufferpool.c:999:gst_v4l2_buffer_pool_poll:<my_vdec:pool:src> polling device
0:00:01.257959000 8744 0x3d233140 LOG videodecoder gstvideodecoder.c:3410:gst_video_decoder_decode_frame:<my_vdec> PTS 0:00:03.000000000, DTS 99:99:99.999999999, dist 6
0:00:01.258042375 8744 0x3d233770 DEBUG GST_POLL gstpoll.c:1369:gst_poll_wait: 0xffff9c007400: timeout :99:99:99.999999999
0:00:01.258093250 8744 0x3d233140 DEBUG v4l2videodec gstv4l2videodec.c:704:gst_v4l2_video_dec_handle_frame:<my_vdec> Handling frame 6
0:00:01.258159750 8744 0x3d233140 DEBUG v4l2bufferpool gstv4l2bufferpool.c:1745:gst_v4l2_buffer_pool_process:<my_vdec:pool:sink> process buffer 0xffffa4034618
0:00:01.258214250 8744 0x3d233140 LOG v4l2bufferpool gstv4l2bufferpool.c:1923:gst_v4l2_buffer_pool_process:<my_vdec:pool:sink> alloc buffer from our pool
0:00:01.258261750 8744 0x3d233140 DEBUG v4l2bufferpool gstv4l2bufferpool.c:1342:gst_v4l2_buffer_pool_acquire_buffer:<my_vdec:pool:sink> acquire
0:00:01.258311625 8744 0x3d233140 LOG bufferpool gstbufferpool.c:1128:default_acquire_buffer:<my_vdec:pool:sink> acquired buffer 0xffffa40170d0
0:00:01.258366375 8744 0x3d233140 LOG v4l2bufferpool gstv4l2bufferpool.c:116:gst_v4l2_buffer_pool_copy_buffer:<my_vdec:pool:sink> copying buffer
0:00:01.258413625 8744 0x3d233140 DEBUG v4l2bufferpool gstv4l2bufferpool.c:141:gst_v4l2_buffer_pool_copy_buffer:<my_vdec:pool:sink> copy raw bytes
0:00:01.258453375 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1721:gst_buffer_map_range: buffer 0xffffa4034090, idx 0, length -1, flags 0001
0:00:01.258512000 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:213:_get_merged_memory: buffer 0xffffa4034090, idx 0, length 1
0:00:01.258569625 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1826:gst_buffer_fill: buffer 0xffffa40170d0, offset 0, size 1780
0:00:01.258632250 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1582:gst_buffer_resize_range: trim 0xffffa40170d0 0-1780 size:6291456 offs:0 max:6291456
0:00:01.258697750 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:515:gst_buffer_copy_into: copy 0xffffa4034090 to 0xffffa40170d0, offset 0-1780/1780
0:00:01.258768750 8744 0x3d233140 LOG GST_PERFORMANCE gstv4l2bufferpool.c:155:gst_v4l2_buffer_pool_copy_buffer:<my_vdec:pool:sink> slow copy into buffer 0xffffa40170d0
0:00:01.258860125 8744 0x3d233140 LOG v4l2bufferpool gstv4l2bufferpool.c:1059:gst_v4l2_buffer_pool_qbuf:<my_vdec:pool:sink> queuing buffer 0
0:00:01.258988250 8744 0x3d233140 LOG v4l2allocator gstv4l2allocator.c:1265:gst_v4l2_allocator_qbuf:<my_vdec:pool:sink:allocator> queued buffer 0 (flags 0x4003)
0:00:01.259042375 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:710:_gst_buffer_dispose: release 0xffffa40170d0 to pool 0xffffa4012410
0:00:01.259102125 8744 0x3d233140 DEBUG v4l2bufferpool gstv4l2bufferpool.c:1420:gst_v4l2_buffer_pool_release_buffer:<my_vdec:pool:sink> release buffer 0xffffa40170d0
0:00:01.259155375 8744 0x3d233140 LOG v4l2bufferpool gstv4l2bufferpool.c:1503:gst_v4l2_buffer_pool_release_buffer:<my_vdec:pool:sink> buffer 0 is queued
0:00:01.259209000 8744 0x3d233140 LOG v4l2bufferpool gstv4l2bufferpool.c:999:gst_v4l2_buffer_pool_poll:<my_vdec:pool:sink> polling device
0:00:01.259247375 8744 0x3d233140 DEBUG GST_POLL gstpoll.c:1369:gst_poll_wait: 0xffffa4005cf0: timeout :99:99:99.999999999
0:00:01.259323125 8744 0x3d233140 DEBUG GST_POLL gstpoll.c:1188:gst_poll_fd_has_error: 0xffffa4005cf0: fd (fd:18, idx:1) 0
0:00:01.259380750 8744 0x3d233140 DEBUG GST_POLL gstpoll.c:1265:gst_poll_fd_can_read_pri_unlocked: 0xffffa4005cf0: fd (fd:18, idx:1) 0
0:00:01.259387500 8744 0x3d233770 DEBUG GST_POLL gstpoll.c:1188:gst_poll_fd_has_error: 0xffff9c007400: fd (fd:23, idx:1) 0
0:00:01.259457625 8744 0x3d233140 LOG v4l2bufferpool gstv4l2bufferpool.c:1322:gst_v4l2_buffer_pool_dequeue:<my_vdec:pool:sink> dequeueing a buffer
0:00:01.259502125 8744 0x3d233770 DEBUG GST_POLL gstpoll.c:1265:gst_poll_fd_can_read_pri_unlocked: 0xffff9c007400: fd (fd:23, idx:1) 0
0:00:01.259571375 8744 0x3d233770 LOG v4l2bufferpool gstv4l2bufferpool.c:1322:gst_v4l2_buffer_pool_dequeue:<my_vdec:pool:src> dequeueing a buffer
0:00:01.259564750 8744 0x3d233140 LOG v4l2allocator gstv4l2allocator.c:1312:gst_v4l2_allocator_dqbuf:<my_vdec:pool:sink:allocator> dequeued buffer 1 (flags 0x4001)
0:00:01.259645875 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:1312:gst_v4l2_allocator_dqbuf:<my_vdec:pool:src:allocator> dequeued buffer 2 (flags 0x4001)
0:00:01.259708500 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:1341:gst_v4l2_allocator_dqbuf:<my_vdec:pool:src:allocator> Dequeued capture buffer, length: 65536 bytesused: 65536 data_offset: 0
0:00:01.259672375 8744 0x3d233140 LOG v4l2bufferpool gstv4l2bufferpool.c:1194:gst_v4l2_buffer_pool_dqbuf:<my_vdec:pool:sink> dequeued buffer 0xffffa4017840 seq:0 (ix=1), mem 0xffffa4018280 used 1569, plane=0, flags 00004001, ts 0:00:02.500000000, pool-queued=1, buffer=0xffffa4017840
0:00:01.259833875 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:1341:gst_v4l2_allocator_dqbuf:<my_vdec:pool:src:allocator> Dequeued capture buffer, length: 32768 bytesused: 32768 data_offset: 0
0:00:01.259864625 8744 0x3d233140 DEBUG v4l2bufferpool gstv4l2bufferpool.c:1420:gst_v4l2_buffer_pool_release_buffer:<my_vdec:pool:sink> release buffer 0xffffa4017840
0:00:01.259920625 8744 0x3d233140 LOG v4l2bufferpool gstv4l2bufferpool.c:1488:gst_v4l2_buffer_pool_release_buffer:<my_vdec:pool:sink> buffer 1 not queued, putting on free list
0:00:01.259901000 8744 0x3d233770 LOG v4l2bufferpool gstv4l2bufferpool.c:1194:gst_v4l2_buffer_pool_dqbuf:<my_vdec:pool:src> dequeued buffer 0xffffa4028680 seq:0 (ix=2), mem 0xffff9c018af0 used 65536, plane=0, flags 00004001, ts 0:00:00.000000000, pool-queued=20, buffer=0xffffa4028680
0:00:01.259991750 8744 0x3d233140 LOG bufferpool gstbufferpool.c:1284:default_release_buffer:<my_vdec:pool:sink> released buffer 0xffffa4017840 0
0:00:01.260043250 8744 0x3d233140 DEBUG GST_BUFFER gstbuffer.c:1375:gst_buffer_is_memory_range_writable: idx 0, length -1
0:00:01.260023375 8744 0x3d233770 LOG v4l2bufferpool gstv4l2bufferpool.c:1194:gst_v4l2_buffer_pool_dqbuf:<my_vdec:pool:src> dequeued buffer 0xffffa4028680 seq:0 (ix=2), mem 0xffff9c018c10 used 32768, plane=1, flags 00004001, ts 0:00:00.000000000, pool-queued=20, buffer=0xffffa4028680
0:00:01.260139375 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:799:gst_buffer_new: new 0xffffa4017c80
0:00:01.260197750 8744 0x3d233770 LOG v4l2videodec gstv4l2videodec.c:629:gst_v4l2_video_dec_loop:<my_vdec> Process output buffer
0:00:01.260215500 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:515:gst_buffer_copy_into: copy 0xffffa4034090 to 0xffffa4017c80, offset 0-0/1780
0:00:01.260249125 8744 0x3d233770 DEBUG v4l2bufferpool gstv4l2bufferpool.c:1745:gst_v4l2_buffer_pool_process:<my_vdec:pool:src> process buffer 0xffffb1d697e8
0:00:01.260293000 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:725:_gst_buffer_free: finalize 0xffffa4034090
0:00:01.260369000 8744 0x3d233140 DEBUG GST_MEMORY gstmemory.c:88:_gst_memory_free: free memory 0x3d2276a0
0:00:01.260451125 8744 0x3d233140 DEBUG GST_SCHEDULING gstpad.c:4283:gst_pad_chain_data_unchecked:<my_vdec:sink> called chainfunction &gst_video_decoder_chain with buffer 0xffffa4034090, returned ok
0:00:01.260467125 8744 0x3d233770 LOG v4l2videodec gstv4l2videodec.c:460:gst_v4l2_video_dec_get_oldest_frame:<my_vdec> Oldest frame is 2 0:00:01.000000000 and 4 frames left
0:00:01.260520125 8744 0x3d233140 LOG baseparse gstbaseparse.c:2537:gst_base_parse_push_frame:<my_h264parse> frame pushed, flow ok
0:00:01.260539125 8744 0x3d233770 DEBUG GST_BUFFER gstbuffer.c:2201:gst_buffer_add_meta: alloc metadata 0xffff9c0024a8 (GstDmabufMeta) of size 24
0:00:01.260609750 8744 0x3d233140 LOG baseparse gstbaseparse.c:2166:gst_base_parse_handle_buffer:<my_h264parse> handle_frame skipped 0, flushed 1778
0:00:01.260675250 8744 0x3d233140 DEBUG baseparse gstbaseparse.c:3215:gst_base_parse_chain:<my_h264parse> not enough data available (only 0 bytes)
0:00:01.260644375 8744 0x3d233770 DEBUG v4l2videodec gstv4l2videodec.c:647:gst_v4l2_video_dec_loop:<my_vdec> add drm modifier: 576460752303423489
0:00:01.260765125 8744 0x3d233770 LOG videodecoder gstvideodecoder.c:2985:gst_video_decoder_finish_frame:<my_vdec> finish frame 0xffffa4028130
0:00:01.260781500 8744 0x3d233140 LOG baseparse gstbaseparse.c:3277:gst_base_parse_chain:<my_h264parse> chain leaving
0:00:01.260836375 8744 0x3d233770 LOG videodecoder gstvideodecoder.c:2625:gst_video_decoder_prepare_finish_frame:<my_vdec> n 5 in 0 out 0
0:00:01.260872875 8744 0x3d233140 DEBUG GST_SCHEDULING gstpad.c:4283:gst_pad_chain_data_unchecked:<my_h264parse:sink> called chainfunction &gst_base_parse_chain with buffer 0xffffa40172f0, returned ok
0:00:01.260946625 8744 0x3d233140 LOG basesrc gstbasesrc.c:2828:gst_base_src_loop:<my_appsrc> next_ts 0:00:00.000010426 size 4096
0:00:01.261019125 8744 0x3d233140 DEBUG basesrc gstbasesrc.c:2399:gst_base_src_update_length:<my_appsrc> reading offset 10426, length 4096, size -1, segment.stop -1, maxsize -1
0:00:01.260992750 8744 0x3d233770 LOG videodecoder gstvideodecoder.c:2634:gst_video_decoder_prepare_finish_frame:<my_vdec> finish frame 0xffffa4028130 (#2) sync:0 PTS:0:00:01.000000000 DTS:99:99:99.999999999
0:00:01.261148125 8744 0x3d233140 DEBUG basesrc gstbasesrc.c:2506:gst_base_src_get_range:<my_appsrc> calling create offset 10426 length 4096, time 0
(get_data, 99)
(get_data, 108)read_ret: 8, target frame num: 7, read frame num: 7
0:00:01.261216375 8744 0x3d233770 DEBUG videodecoder gstvideodecoder.c:2676:gst_video_decoder_prepare_finish_frame:<my_vdec> sync timestamp 0:00:01.000000000 diff -0:00:01.000000000
0:00:01.261335000 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:799:gst_buffer_new: new 0xffffa40172f0
0:00:01.261445500 8744 0x3d233140 DEBUG GST_MEMORY gstmemory.c:139:gst_memory_init: new memory 0x3d227730, maxsize:950 offset:0 size:950
0:00:01.261462875 8744 0x3d233770 DEBUG default gstvideoutils.c:40:_gst_video_codec_frame_free: free frame 0xffffa4028130
0:00:01.261517000 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:414:_memory_add: buffer 0xffffa40172f0, idx -1, mem 0x3d227730
0:00:01.261551250 8744 0x3d233770 LOG GST_BUFFER gstbuffer.c:725:_gst_buffer_free: finalize 0xffffa4028240
0:00:01.261619500 8744 0x3d233140 DEBUG appsrc gstappsrc.c:1863:gst_app_src_push_internal:<my_appsrc> queueing buffer 0xffffa40172f0
0:00:01.261692500 8744 0x3d233140 LOG appsrc gstappsrc.c:1221:gst_app_src_create:<my_appsrc> have buffer 0xffffa40172f0 of size 950
0:00:01.261613500 8744 0x3d233770 LOG videodecoder gstvideodecoder.c:3130:gst_video_decoder_clip_and_push_buf:<my_vdec> accepting buffer inside segment: 0:00:01.000000000 0:00:01.500000000 seg 0:00:00.000000000 to 99:99:99.999999999 time 0:00:00.000000000
0:00:01.261769500 8744 0x3d233140 DEBUG basesrc gstbasesrc.c:2360:gst_base_src_do_sync:<my_appsrc> no sync needed
0:00:01.261819250 8744 0x3d233140 DEBUG basesrc gstbasesrc.c:2597:gst_base_src_get_range:<my_appsrc> buffer ok
0:00:01.261803000 8744 0x3d233770 DEBUG videodecoder gstvideodecoder.c:3197:gst_video_decoder_clip_and_push_buf:<my_vdec> pushing buffer 0xffffa4028680 of size 98304, PTS 0:00:01.000000000, dur 0:00:00.500000000
0:00:01.261880375 8744 0x3d233140 DEBUG GST_SCHEDULING gstpad.c:4277:gst_pad_chain_data_unchecked:<my_h264parse:sink> calling chainfunction &gst_base_parse_chain with buffer buffer: 0xffffa40172f0, pts 0:00:03.500000000, dts 99:99:99.999999999, dur 0:00:00.500000000, size 950, offset none, offset_end none, flags 0x0
0:00:01.261897625 8744 0x3d233770 DEBUG GST_SCHEDULING gstpad.c:4277:gst_pad_chain_data_unchecked:<my_sink:sink> calling chainfunction &gst_base_sink_chain with buffer buffer: 0xffffa4028680, pts 0:00:01.000000000, dts 99:99:99.999999999, dur 0:00:00.500000000, size 98304, offset none, offset_end none, flags 0x0
0:00:01.262019000 8744 0x3d233140 DEBUG baseparse gstbaseparse.c:3030:gst_base_parse_chain:<my_h264parse> chain
0:00:01.262075250 8744 0x3d233770 DEBUG basesink gstbasesink.c:3421:gst_base_sink_chain_unlocked:<my_sink> got times start: 0:00:01.000000000, end: 0:00:01.500000000
0:00:01.262104750 8744 0x3d233140 LOG baseparse gstbaseparse.c:3150:gst_base_parse_chain:<my_h264parse> buffer size: 950, offset = -1, dts 99:99:99.999999999, pts 0:00:03.500000000
0:00:01.262157250 8744 0x3d233770 DEBUG basesink gstbasesink.c:2006:gst_base_sink_get_sync_times:<my_sink> got times start: 0:00:01.000000000, stop: 0:00:01.500000000, do_sync 1
0:00:01.262203500 8744 0x3d233140 LOG adapter gstadapter.c:389:gst_adapter_push:<GstAdapter at 0x3d20c000> pushing 0xffffa40172f0 first 950 bytes
0:00:01.262242000 8744 0x3d233770 LOG basesink gstbasesink.c:2551:gst_base_sink_do_sync:<my_sink> avg frame diff 0:00:00.500000000
0:00:01.262268250 8744 0x3d233140 LOG adapter gstadapter.c:290:update_timestamps_and_offset:<GstAdapter at 0x3d20c000> new pts 0:00:03.500000000
0:00:01.262309625 8744 0x3d233770 DEBUG basesink gstbasesink.c:2591:gst_base_sink_do_sync:<my_sink> reset rc_time to time 0:00:01.000000000
0:00:01.262338250 8744 0x3d233140 LOG adapter gstadapter.c:974:gst_adapter_get_buffer:<GstAdapter at 0x3d20c000> getting buffer of 950 bytes
0:00:01.262410500 8744 0x3d233140 LOG adapter gstadapter.c:989:gst_adapter_get_buffer:<GstAdapter at 0x3d20c000> providing buffer of 950 bytes as head buffer
0:00:01.262417500 8744 0x3d233770 DEBUG basesink gstbasesink.c:2603:gst_base_sink_do_sync:<my_sink> possibly waiting for clock to reach 0:00:01.000000000, adjusted 0:00:01.000000000
0:00:01.262508750 8744 0x3d233140 LOG baseparse gstbaseparse.c:2148:gst_base_parse_handle_buffer:<my_h264parse> handling buffer of size 950 with dts 99:99:99.999999999, pts 0:00:03.500000000, duration 0:00:00.500000000
0:00:01.262542000 8744 0x3d233770 LOG basesink gstbasesink.c:2177:gst_base_sink_wait_clock:<my_sink> time 0:00:01.000000000, base_time 0:15:45.099030375
0:00:01.262607250 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:799:gst_buffer_new: new 0xffffa4017d90
0:00:01.262666500 8744 0x3d233770 DEBUG GST_CLOCK gstclock.c:537:gst_clock_id_wait:<GstSystemClock> waiting on clock entry 0xffffa4008580
0:00:01.262683625 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:515:gst_buffer_copy_into: copy 0xffffa40172f0 to 0xffffa4017d90, offset 0-950/950
0:00:01.262727375 8744 0x3d233770 DEBUG GST_CLOCK gstclock.c:1046:gst_clock_get_internal_time:<GstSystemClock> internal time 0:15:45.609674125
0:00:01.262745750 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:414:_memory_add: buffer 0xffffa4017d90, idx -1, mem 0x3d227730
0:00:01.262809500 8744 0x3d233770 DEBUG GST_CLOCK gstclock.c:1091:gst_clock_get_time:<GstSystemClock> adjusted time 0:15:45.609674125
0:00:01.262834250 8744 0x3d233140 DEBUG GST_PERFORMANCE gstminiobject.c:317:gst_mini_object_make_writable: copy GstBuffer miniobject 0xffffa40172f0 -> 0xffffa4017d90
0:00:01.262866125 8744 0x3d233770 DEBUG GST_CLOCK gstsystemclock.c:718:gst_system_clock_id_wait_jitter_unlocked: entry 0xffffa4008580 time 0:15:46.099030375 now 0:15:45.609674125 diff (time-now) 489356250
0:00:01.262900500 8744 0x3d233140 LOG baseparse gstbaseparse.c:2110:gst_base_parse_prepare_frame:<my_h264parse> preparing frame at offset 18446744073709551615 (0xffffffffffffffff) of size 950
0:00:01.262955250 8744 0x3d233770 DEBUG GST_POLL gstpoll.c:1369:gst_poll_wait: 0xffffa0003c00: timeout :0:00:00.489356250
0:00:01.263004250 8744 0x3d233140 LOG baseparse gstbaseparse.c:764:gst_base_parse_update_frame:<my_h264parse> marking as new frame
0:00:01.263046375 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1721:gst_buffer_map_range: buffer 0xffffa4017d90, idx 0, length -1, flags 0001
0:00:01.263103250 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:213:_get_merged_memory: buffer 0xffffa4017d90, idx 0, length 1
0:00:01.263165375 8744 0x3d233140 LOG h264parse gsth264parse.c:1097:gst_h264_parse_handle_frame:<my_h264parse> parsing new frame
0:00:01.263213750 8744 0x3d233140 DEBUG h264parse gsth264parse.c:186:gst_h264_parse_reset_frame:<my_h264parse> reset frame
0:00:01.263262625 8744 0x3d233140 DEBUG h264parse gsth264parse.c:1112:gst_h264_parse_handle_frame:<my_h264parse> last parse position 0
0:00:01.263311750 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:242:gst_h264_parse_nalu_header: Nal type 9, ref_idc 0
0:00:01.263360750 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:242:gst_h264_parse_nalu_header: Nal type 9, ref_idc 0
0:00:01.263406875 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:1366:gst_h264_parser_identify_nalu: Complete nal found. Off: 4, Size: 2
0:00:01.263463375 8744 0x3d233140 DEBUG h264parse gsth264parse.c:1162:gst_h264_parse_handle_frame:<my_h264parse> complete nal (offset, size): (4, 2)
0:00:01.263520000 8744 0x3d233140 DEBUG h264parse gsth264parse.c:1219:gst_h264_parse_handle_frame:<my_h264parse> 0xffffa401a590 complete nal found. Off: 4, Size: 2
0:00:01.263582250 8744 0x3d233140 DEBUG h264parse gsth264parse.c:721:gst_h264_parse_process_nal:<my_h264parse> processing nal of type 9 AU delimiter, size 2
0:00:01.263676375 8744 0x3d233140 LOG h264parse gsth264parse.c:895:gst_h264_parse_process_nal:<my_h264parse> collecting NAL in AVC frame
0:00:01.263724875 8744 0x3d233140 DEBUG h264parse gsth264parse.c:428:gst_h264_parse_wrap_nal:<my_h264parse> nal length 2
0:00:01.263773375 8744 0x3d233140 DEBUG GST_MEMORY gstmemory.c:139:gst_memory_init: new memory 0xffffa400ac90, maxsize:13 offset:0 size:6
0:00:01.263830250 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:799:gst_buffer_new: new 0xffffa4017a60
0:00:01.263873625 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:414:_memory_add: buffer 0xffffa4017a60, idx -1, mem 0xffffa400ac90
0:00:01.263924750 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:855:gst_buffer_new_allocate: new buffer 0xffffa4017a60 of size 6 from allocator (nil)
0:00:01.263978750 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1826:gst_buffer_fill: buffer 0xffffa4017a60, offset 0, size 4
0:00:01.264031375 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1826:gst_buffer_fill: buffer 0xffffa4017a60, offset 4, size 2
0:00:01.264083250 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1582:gst_buffer_resize_range: trim 0xffffa4017a60 0-6 size:6 offs:0 max:13
0:00:01.264289750 8744 0x3d233140 LOG adapter gstadapter.c:389:gst_adapter_push:<GstAdapter at 0x3d20c120> pushing 0xffffa4017a60 first 6 bytes
0:00:01.264353875 8744 0x3d233140 DEBUG h264parse gsth264parse.c:914:gst_h264_parse_collect_nal:<my_h264parse> parsing collected nal
0:00:01.264396875 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:242:gst_h264_parse_nalu_header: Nal type 6, ref_idc 0
0:00:01.264454375 8744 0x3d233140 LOG h264parse gsth264parse.c:922:gst_h264_parse_collect_nal:<my_h264parse> nal type: 9 AU delimiter
0:00:01.264511375 8744 0x3d233140 LOG h264parse gsth264parse.c:941:gst_h264_parse_collect_nal:<my_h264parse> next nal type: 6 SEI
0:00:01.264567375 8744 0x3d233140 LOG h264parse gsth264parse.c:948:gst_h264_parse_collect_nal:<my_h264parse> au complete: 0
0:00:01.264619250 8744 0x3d233140 DEBUG h264parse gsth264parse.c:1264:gst_h264_parse_handle_frame:<my_h264parse> Looking for more
0:00:01.264774250 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:242:gst_h264_parse_nalu_header: Nal type 6, ref_idc 0
0:00:01.264825500 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:1366:gst_h264_parser_identify_nalu: Complete nal found. Off: 10, Size: 21
0:00:01.264884125 8744 0x3d233140 DEBUG h264parse gsth264parse.c:1162:gst_h264_parse_handle_frame:<my_h264parse> complete nal (offset, size): (10, 21)
0:00:01.264941375 8744 0x3d233140 DEBUG h264parse gsth264parse.c:1219:gst_h264_parse_handle_frame:<my_h264parse> 0xffffa401a590 complete nal found. Off: 10, Size: 21
0:00:01.265002125 8744 0x3d233140 DEBUG h264parse gsth264parse.c:721:gst_h264_parse_process_nal:<my_h264parse> processing nal of type 6 SEI, size 21
0:00:01.265115875 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:2292:gst_h264_parser_parse_sei: parsing SEI nal
0:00:01.265170500 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:1127:gst_h264_parser_parse_sei_message: parsing "Sei message"
0:00:01.265212000 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:1147:gst_h264_parser_parse_sei_message: SEI message received: payloadType 5, payloadSize = 136 bits
0:00:01.265288625 8744 0x3d233140 DEBUG h264parse gsth264parse.c:807:gst_h264_parse_process_nal:<my_h264parse> marking SEI in frame at offset 6
0:00:01.265341875 8744 0x3d233140 LOG h264parse gsth264parse.c:895:gst_h264_parse_process_nal:<my_h264parse> collecting NAL in AVC frame
0:00:01.265389250 8744 0x3d233140 DEBUG h264parse gsth264parse.c:428:gst_h264_parse_wrap_nal:<my_h264parse> nal length 21
0:00:01.265524500 8744 0x3d233140 DEBUG GST_MEMORY gstmemory.c:139:gst_memory_init: new memory 0xffffa401b590, maxsize:32 offset:0 size:25
0:00:01.265586875 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:799:gst_buffer_new: new 0xffffa4017950
0:00:01.265630750 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:414:_memory_add: buffer 0xffffa4017950, idx -1, mem 0xffffa401b590
0:00:01.265682250 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:855:gst_buffer_new_allocate: new buffer 0xffffa4017950 of size 25 from allocator (nil)
0:00:01.265736500 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1826:gst_buffer_fill: buffer 0xffffa4017950, offset 0, size 4
0:00:01.265825125 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1826:gst_buffer_fill: buffer 0xffffa4017950, offset 4, size 21
0:00:01.265884250 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1582:gst_buffer_resize_range: trim 0xffffa4017950 0-25 size:25 offs:0 max:32
0:00:01.265969125 8744 0x3d233140 LOG adapter gstadapter.c:395:gst_adapter_push:<GstAdapter at 0x3d20c120> pushing 0xffffa4017950 25 bytes at end, size now 31
0:00:01.266036750 8744 0x3d233140 DEBUG h264parse gsth264parse.c:914:gst_h264_parse_collect_nal:<my_h264parse> parsing collected nal
0:00:01.266080000 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:242:gst_h264_parse_nalu_header: Nal type 1, ref_idc 1
0:00:01.266135875 8744 0x3d233140 LOG h264parse gsth264parse.c:922:gst_h264_parse_collect_nal:<my_h264parse> nal type: 6 SEI
0:00:01.266190625 8744 0x3d233140 LOG h264parse gsth264parse.c:941:gst_h264_parse_collect_nal:<my_h264parse> next nal type: 1 Slice
0:00:01.266245250 8744 0x3d233140 LOG h264parse gsth264parse.c:948:gst_h264_parse_collect_nal:<my_h264parse> au complete: 0
0:00:01.266297000 8744 0x3d233140 DEBUG h264parse gsth264parse.c:1264:gst_h264_parse_handle_frame:<my_h264parse> Looking for more
0:00:01.266335750 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:242:gst_h264_parse_nalu_header: Nal type 1, ref_idc 1
0:00:01.266382750 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:1366:gst_h264_parser_identify_nalu: Complete nal found. Off: 34, Size: 168
0:00:01.266438500 8744 0x3d233140 DEBUG h264parse gsth264parse.c:1162:gst_h264_parse_handle_frame:<my_h264parse> complete nal (offset, size): (34, 168)
0:00:01.266494500 8744 0x3d233140 DEBUG h264parse gsth264parse.c:1219:gst_h264_parse_handle_frame:<my_h264parse> 0xffffa401a590 complete nal found. Off: 34, Size: 168
0:00:01.266555500 8744 0x3d233140 DEBUG h264parse gsth264parse.c:721:gst_h264_parse_process_nal:<my_h264parse> processing nal of type 1 Slice, size 168
0:00:01.266613375 8744 0x3d233140 DEBUG h264parse gsth264parse.c:827:gst_h264_parse_process_nal:<my_h264parse> first_mb_in_slice = 0
0:00:01.266659625 8744 0x3d233140 DEBUG h264parse gsth264parse.c:830:gst_h264_parse_process_nal:<my_h264parse> frame start: 1
0:00:01.266707500 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:2079:gst_h264_parser_parse_slice_hdr: parsing "Slice header", slice type 0
0:00:01.266767375 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:700:gst_h264_slice_parse_dec_ref_pic_marking: parsing "Decoded reference picture marking"
0:00:01.266819125 8744 0x3d233140 DEBUG h264parse gsth264parse.c:840:gst_h264_parse_process_nal:<my_h264parse> parse result 0, first MB: 0, slice type: 0
0:00:01.266878875 8744 0x3d233140 LOG h264parse gsth264parse.c:895:gst_h264_parse_process_nal:<my_h264parse> collecting NAL in AVC frame
0:00:01.266924375 8744 0x3d233140 DEBUG h264parse gsth264parse.c:428:gst_h264_parse_wrap_nal:<my_h264parse> nal length 168
0:00:01.266972500 8744 0x3d233140 DEBUG GST_MEMORY gstmemory.c:139:gst_memory_init: new memory 0xffffa40102a0, maxsize:179 offset:0 size:172
0:00:01.267085375 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:799:gst_buffer_new: new 0xffffa4017b70
0:00:01.267130000 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:414:_memory_add: buffer 0xffffa4017b70, idx -1, mem 0xffffa40102a0
0:00:01.267182500 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:855:gst_buffer_new_allocate: new buffer 0xffffa4017b70 of size 172 from allocator (nil)
0:00:01.267235250 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1826:gst_buffer_fill: buffer 0xffffa4017b70, offset 0, size 4
0:00:01.267286500 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1826:gst_buffer_fill: buffer 0xffffa4017b70, offset 4, size 168
0:00:01.267337875 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1582:gst_buffer_resize_range: trim 0xffffa4017b70 0-172 size:172 offs:0 max:179
0:00:01.267415750 8744 0x3d233140 LOG adapter gstadapter.c:395:gst_adapter_push:<GstAdapter at 0x3d20c120> pushing 0xffffa4017b70 172 bytes at end, size now 203
0:00:01.267478250 8744 0x3d233140 DEBUG h264parse gsth264parse.c:914:gst_h264_parse_collect_nal:<my_h264parse> parsing collected nal
0:00:01.267518000 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:242:gst_h264_parse_nalu_header: Nal type 1, ref_idc 1
0:00:01.267573750 8744 0x3d233140 LOG h264parse gsth264parse.c:922:gst_h264_parse_collect_nal:<my_h264parse> nal type: 1 Slice
0:00:01.267629125 8744 0x3d233140 LOG h264parse gsth264parse.c:941:gst_h264_parse_collect_nal:<my_h264parse> next nal type: 1 Slice
0:00:01.267683125 8744 0x3d233140 LOG h264parse gsth264parse.c:948:gst_h264_parse_collect_nal:<my_h264parse> au complete: 0
0:00:01.267734000 8744 0x3d233140 DEBUG h264parse gsth264parse.c:1264:gst_h264_parse_handle_frame:<my_h264parse> Looking for more
0:00:01.267771875 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:242:gst_h264_parse_nalu_header: Nal type 1, ref_idc 1
0:00:01.267821500 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:1351:gst_h264_parser_identify_nalu: Nal start 205, No end found
0:00:01.267874875 8744 0x3d233140 DEBUG h264parse gsth264parse.c:1166:gst_h264_parse_handle_frame:<my_h264parse> not a complete nal found at offset 205
0:00:01.267926875 8744 0x3d233140 DEBUG h264parse gsth264parse.c:1172:gst_h264_parse_handle_frame:<my_h264parse> draining, accepting with size 745
0:00:01.267978625 8744 0x3d233140 DEBUG h264parse gsth264parse.c:1219:gst_h264_parse_handle_frame:<my_h264parse> 0xffffa401a590 complete nal found. Off: 205, Size: 745
0:00:01.268038750 8744 0x3d233140 DEBUG h264parse gsth264parse.c:721:gst_h264_parse_process_nal:<my_h264parse> processing nal of type 1 Slice, size 745
0:00:01.268096875 8744 0x3d233140 DEBUG h264parse gsth264parse.c:830:gst_h264_parse_process_nal:<my_h264parse> frame start: 1
0:00:01.268140750 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:2079:gst_h264_parser_parse_slice_hdr: parsing "Slice header", slice type 0
0:00:01.268189250 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:700:gst_h264_slice_parse_dec_ref_pic_marking: parsing "Decoded reference picture marking"
0:00:01.268237625 8744 0x3d233140 DEBUG h264parse gsth264parse.c:840:gst_h264_parse_process_nal:<my_h264parse> parse result 0, first MB: 49, slice type: 0
0:00:01.268296750 8744 0x3d233140 LOG h264parse gsth264parse.c:895:gst_h264_parse_process_nal:<my_h264parse> collecting NAL in AVC frame
0:00:01.268342625 8744 0x3d233140 DEBUG h264parse gsth264parse.c:428:gst_h264_parse_wrap_nal:<my_h264parse> nal length 745
0:00:01.268532750 8744 0x3d233140 DEBUG GST_MEMORY gstmemory.c:139:gst_memory_init: new memory 0xffffa403a040, maxsize:756 offset:0 size:749
0:00:01.268640750 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:799:gst_buffer_new: new 0xffffa4034090
0:00:01.268685375 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:414:_memory_add: buffer 0xffffa4034090, idx -1, mem 0xffffa403a040
0:00:01.268738000 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:855:gst_buffer_new_allocate: new buffer 0xffffa4034090 of size 749 from allocator (nil)
0:00:01.268790250 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1826:gst_buffer_fill: buffer 0xffffa4034090, offset 0, size 4
0:00:01.268840750 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1826:gst_buffer_fill: buffer 0xffffa4034090, offset 4, size 745
0:00:01.268893875 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1582:gst_buffer_resize_range: trim 0xffffa4034090 0-749 size:749 offs:0 max:756
0:00:01.268973000 8744 0x3d233140 LOG adapter gstadapter.c:395:gst_adapter_push:<GstAdapter at 0x3d20c120> pushing 0xffffa4034090 749 bytes at end, size now 952
0:00:01.269100875 8744 0x3d233140 DEBUG GST_CAPS gstpad.c:2705:gst_pad_has_current_caps:<my_h264parse:src> check current pad caps video/x-h264, stream-format=(string)byte-stream, alignment=(string)au, framerate=(fraction)0/1, width=(int)176, height=(int)144, interlace-mode=(string)progressive, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8, parsed=(boolean)true, profile=(string)constrained-baseline, level=(string)1.2
0:00:01.269286375 8744 0x3d1e1590 LOG waylandsink gstwaylandsink.c:745:frame_redraw_callback: frame_redraw_cb
0:00:01.269295625 8744 0x3d233140 LOG h264parse gsth264parse.c:2016:gst_h264_parse_get_timestamp:<my_h264parse> Upstream ts 0:00:03.500000000
0:00:01.269379500 8744 0x3d1e1590 DEBUG GST_POLL gstpoll.c:1369:gst_poll_wait: 0x3d21fe80: timeout :99:99:99.999999999
0:00:01.269411875 8744 0x3d233140 DEBUG h264parse gsth264parse.c:2035:gst_h264_parse_get_timestamp:<my_h264parse> unable to compute timestamp: timing info not present
0:00:01.269516500 8744 0x3d233140 LOG adapter gstadapter.c:974:gst_adapter_get_buffer:<GstAdapter at 0x3d20c120> getting buffer of 952 bytes
0:00:01.269579250 8744 0x3d233140 LOG adapter gstadapter.c:736:gst_adapter_get_internal:<GstAdapter at 0x3d20c120> allocating 952 bytes
0:00:01.269626250 8744 0x3d233140 DEBUG adapter gstadapter.c:344:copy_into_unchecked: bsize 6, skip 0, csize 6
0:00:01.269691500 8744 0x3d233140 LOG GST_PERFORMANCE gstadapter.c:346:copy_into_unchecked:<GstAdapter at 0x3d20c120> extract 6 bytes
0:00:01.269734500 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1876:gst_buffer_extract: buffer 0xffffa4017a60, offset 0, size 6
0:00:01.269802875 8744 0x3d233140 LOG GST_PERFORMANCE gstadapter.c:359:copy_into_unchecked:<GstAdapter at 0x3d20c120> extract 25 bytes
0:00:01.269844750 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1876:gst_buffer_extract: buffer 0xffffa4017950, offset 0, size 25
0:00:01.269909875 8744 0x3d233140 LOG GST_PERFORMANCE gstadapter.c:359:copy_into_unchecked:<GstAdapter at 0x3d20c120> extract 172 bytes
0:00:01.269951000 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1876:gst_buffer_extract: buffer 0xffffa4017b70, offset 0, size 172
0:00:01.270015625 8744 0x3d233140 LOG GST_PERFORMANCE gstadapter.c:359:copy_into_unchecked:<GstAdapter at 0x3d20c120> extract 749 bytes
0:00:01.270056250 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1876:gst_buffer_extract: buffer 0xffffa4034090, offset 0, size 749
0:00:01.270117000 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:799:gst_buffer_new: new 0xffffa40346f0
0:00:01.270164875 8744 0x3d233140 DEBUG GST_MEMORY gstmemory.c:139:gst_memory_init: new memory 0x3d227580, maxsize:952 offset:0 size:952
0:00:01.270220750 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:414:_memory_add: buffer 0xffffa40346f0, idx -1, mem 0x3d227580
0:00:01.270333000 8744 0x3d233140 LOG adapter gstadapter.c:634:gst_adapter_flush_unchecked:<GstAdapter at 0x3d20c120> flushing 952 bytes
0:00:01.270390625 8744 0x3d233140 LOG adapter gstadapter.c:656:gst_adapter_flush_unchecked:<GstAdapter at 0x3d20c120> flushing out head buffer
0:00:01.270429625 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:725:_gst_buffer_free: finalize 0xffffa4017a60
0:00:01.270471625 8744 0x3d233140 DEBUG GST_MEMORY gstmemory.c:88:_gst_memory_free: free memory 0xffffa400ac90
0:00:01.270537500 8744 0x3d233140 LOG adapter gstadapter.c:656:gst_adapter_flush_unchecked:<GstAdapter at 0x3d20c120> flushing out head buffer
0:00:01.270575625 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:725:_gst_buffer_free: finalize 0xffffa4017950
0:00:01.270616500 8744 0x3d233140 DEBUG GST_MEMORY gstmemory.c:88:_gst_memory_free: free memory 0xffffa401b590
0:00:01.270675500 8744 0x3d233140 LOG adapter gstadapter.c:656:gst_adapter_flush_unchecked:<GstAdapter at 0x3d20c120> flushing out head buffer
0:00:01.270713750 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:725:_gst_buffer_free: finalize 0xffffa4017b70
0:00:01.270754125 8744 0x3d233140 DEBUG GST_MEMORY gstmemory.c:88:_gst_memory_free: free memory 0xffffa40102a0
0:00:01.270813500 8744 0x3d233140 LOG adapter gstadapter.c:656:gst_adapter_flush_unchecked:<GstAdapter at 0x3d20c120> flushing out head buffer
0:00:01.270851250 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:725:_gst_buffer_free: finalize 0xffffa4034090
0:00:01.270891750 8744 0x3d233140 DEBUG GST_MEMORY gstmemory.c:88:_gst_memory_free: free memory 0xffffa403a040
0:00:01.270949625 8744 0x3d233140 LOG adapter gstadapter.c:668:gst_adapter_flush_unchecked:<GstAdapter at 0x3d20c120> adapter empty now
0:00:01.270989750 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:515:gst_buffer_copy_into: copy 0xffffa4017d90 to 0xffffa40346f0, offset 0-950/950
0:00:01.271064875 8744 0x3d233140 LOG baseparse gstbaseparse.c:2637:gst_base_parse_finish_frame:<my_h264parse> finished frame at offset 10426, flushing size 950
0:00:01.271127125 8744 0x3d233140 LOG adapter gstadapter.c:634:gst_adapter_flush_unchecked:<GstAdapter at 0x3d20c000> flushing 950 bytes
0:00:01.271182375 8744 0x3d233140 LOG adapter gstadapter.c:656:gst_adapter_flush_unchecked:<GstAdapter at 0x3d20c000> flushing out head buffer
0:00:01.271220375 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:725:_gst_buffer_free: finalize 0xffffa40172f0
0:00:01.271276375 8744 0x3d233140 LOG adapter gstadapter.c:668:gst_adapter_flush_unchecked:<GstAdapter at 0x3d20c000> adapter empty now
0:00:01.271314375 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:725:_gst_buffer_free: finalize 0xffffa4017d90
0:00:01.271355125 8744 0x3d233140 DEBUG GST_MEMORY gstmemory.c:88:_gst_memory_free: free memory 0x3d227730
(free_data, 133)
0:00:01.271431500 8744 0x3d233140 DEBUG baseparse gstbaseparse.c:2333:gst_base_parse_handle_and_push_frame:<my_h264parse> no next fallback timestamp
0:00:01.271481375 8744 0x3d233140 LOG baseparse gstbaseparse.c:2392:gst_base_parse_push_frame:<my_h264parse> processing buffer of size 952 with dts 99:99:99.999999999, pts 0:00:03.500000000, duration 0:00:00.500000000
0:00:01.271582000 8744 0x3d233140 DEBUG GST_CAPS gstpad.c:2705:gst_pad_has_current_caps:<my_h264parse:src> check current pad caps video/x-h264, stream-format=(string)byte-stream, alignment=(string)au, framerate=(fraction)0/1, width=(int)176, height=(int)144, interlace-mode=(string)progressive, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8, parsed=(boolean)true, profile=(string)constrained-baseline, level=(string)1.2
0:00:01.271769875 8744 0x3d233140 LOG baseparse gstbaseparse.c:1851:gst_base_parse_update_bitrates:<my_h264parse> frame bitrate 15232, avg bitrate 25933
0:00:01.271831625 8744 0x3d233140 DEBUG h264parse gsth264parse.c:186:gst_h264_parse_reset_frame:<my_h264parse> reset frame
0:00:01.271882500 8744 0x3d233140 LOG baseparse gstbaseparse.c:2535:gst_base_parse_push_frame:<my_h264parse> pushing frame (952 bytes) now..
0:00:01.271953875 8744 0x3d233140 DEBUG GST_SCHEDULING gstpad.c:4277:gst_pad_chain_data_unchecked:<my_vdec:sink> calling chainfunction &gst_video_decoder_chain with buffer buffer: 0xffffa40346f0, pts 0:00:03.500000000, dts 99:99:99.999999999, dur 0:00:00.500000000, size 952, offset 10426, offset_end none, flags 0x2400
0:00:01.272094375 8744 0x3d233140 LOG videodecoder gstvideodecoder.c:2438:gst_video_decoder_chain:<my_vdec> chain PTS 0:00:03.500000000, DTS 99:99:99.999999999 duration 0:00:00.500000000 size 952 flags 2400
0:00:01.752951000 8744 0x3d233770 DEBUG GST_CLOCK gstsystemclock.c:746:gst_system_clock_id_wait_jitter_unlocked: entry 0xffffa4008580 unlocked, status 3, ret 0
0:00:01.753170000 8744 0x3d233770 DEBUG GST_CLOCK gstsystemclock.c:770:gst_system_clock_id_wait_jitter_unlocked: entry 0xffffa4008580 unlocked after timeout
0:00:01.753269000 8744 0x3d233770 DEBUG GST_CLOCK gstclock.c:1046:gst_clock_get_internal_time:<GstSystemClock> internal time 0:15:46.100185750
0:00:01.753340000 8744 0x3d233770 DEBUG GST_CLOCK gstclock.c:1091:gst_clock_get_time:<GstSystemClock> adjusted time 0:15:46.100185750
0:00:01.753395375 8744 0x3d233770 DEBUG GST_CLOCK gstsystemclock.c:792:gst_system_clock_id_wait_jitter_unlocked: entry 0xffffa4008580 finished, diff -1155375
0:00:01.753455625 8744 0x3d233770 DEBUG GST_CLOCK gstclock.c:547:gst_clock_id_wait:<GstSystemClock> done waiting entry 0xffffa4008580, res: 0 (ok)
0:00:01.753527250 8744 0x3d233770 DEBUG basesink gstbasesink.c:2610:gst_base_sink_do_sync:<my_sink> clock returned 0, jitter -0:00:00.489356250
0:00:01.753600375 8744 0x3d233770 DEBUG basesink gstbasesink.c:2921:gst_base_sink_is_too_late:<my_sink> object was scheduled in time
0:00:01.753650500 8744 0x3d233770 DEBUG basesink gstbasesink.c:3538:gst_base_sink_chain_unlocked:<my_sink> rendering object 0xffffa4028680
0:00:01.753705625 8744 0x3d233770 DEBUG basesink gstbasesink.c:994:gst_base_sink_set_last_buffer_unlocked:<my_sink> setting last buffer to 0xffffa4028680
0:00:01.753815875 8744 0x3d233770 LOG videosink gstvideosink.c:228:gst_video_sink_show_frame:<my_sink> rendering frame, ts=0:00:01.000000000
0:00:01.753885250 8744 0x3d233770 LOG waylandsink gstwaylandsink.c:863:gst_wayland_sink_show_frame:<my_sink> render buffer 0xffffa4028680
0:00:01.753957000 8744 0x3d233770 LOG waylandsink gstwaylandsink.c:917:gst_wayland_sink_show_frame:<my_sink> buffer 0xffffa4028680 does not have a wl_buffer from our display, creating it
0:00:01.754044375 8744 0x3d233770 DEBUG waylandsink wllinuxdmabuf.c:108:gst_wl_linux_dmabuf_construct_wl_buffer:<GstWlDisplay at 0x3d1da380> Creating wl_buffer from DMABuf of size 98304 (176 x 144), format NV12 modifier 0x0800000000000001
0:00:01.754795250 8744 0x3d1e1590 DEBUG GST_POLL gstpoll.c:1369:gst_poll_wait: 0x3d21fe80: timeout :99:99:99.999999999
0:00:01.754807875 8744 0x3d233770 DEBUG waylandsink wllinuxdmabuf.c:175:gst_wl_linux_dmabuf_construct_wl_buffer:<dmabufallocator2> created linux_dmabuf wl_buffer (0xffffac004960):176x144, fmt=NV12, 2 planes
0:00:01.755005125 8744 0x3d233770 DEBUG GST_QOS gstbasesink.c:2751:gst_base_sink_perform_qos:<my_sink> start: 0:00:01.000000000, stop 0:00:01.500000000, entered 0:00:00.510643750, left 0:00:01.000000000, pt: 0:00:00.010643750, duration 0:00:00.500000000,jitter -489356250
0:00:01.755229125 8744 0x3d233770 DEBUG GST_QOS gstbasesink.c:2755:gst_base_sink_perform_qos:<my_sink> avg_pt: 0:00:00.012770250, avg_rate: 0.0255405
0:00:01.755324000 8744 0x3d233770 DEBUG GST_QOS gstbasesink.c:2785:gst_base_sink_perform_qos:<my_sink> updated: avg_pt: 0:00:00.012504437, avg_rate: 0.0255073
0:00:01.755401625 8744 0x3d233770 DEBUG GST_QOS gstbasesink.c:2679:gst_base_sink_send_qos:<my_sink> qos: type 0, proportion: 0.025507, diff -489356250, timestamp 0:00:01.000000000
0:00:01.755475000 8744 0x3d233770 LOG GST_EVENT gstevent.c:1146:gst_event_new_qos: creating qos type 0, proportion 0.025507, diff -489356250, timestamp 0:00:01.000000000
0:00:01.755571250 8744 0x3d233770 DEBUG GST_EVENT gstevent.c:306:gst_event_new_custom: creating new event 0xffffa4008660 qos 48641
0:00:01.755650250 8744 0x3d1e1590 LOG waylandsink wlbuffer.c:137:buffer_release:<GstWlBuffer at 0xffff9c00b800> wl_buffer::release (GstBuffer: 0xffffa4028570)
0:00:01.755651875 8744 0x3d233770 LOG GST_PADS gstpad.c:5351:gst_pad_push_event_unchecked:<my_sink:sink> sending event 0xffffa4008660 (qos) to peerpad <my_vdec:src>
0:00:01.755719625 8744 0x3d1e1590 LOG GST_BUFFER gstbuffer.c:710:_gst_buffer_dispose: release 0xffffa4028570 to pool 0xffffa4012e90
0:00:01.755790125 8744 0x3d1e1590 DEBUG GST_BUFFER gstbuffer.c:2383:gst_buffer_foreach_meta: remove metadata 0xffff9c002418 (GstDmabufMeta)
0:00:01.755858500 8744 0x3d1e1590 DEBUG v4l2bufferpool gstv4l2bufferpool.c:1420:gst_v4l2_buffer_pool_release_buffer:<my_vdec:pool:src> release buffer 0xffffa4028570
0:00:01.755925375 8744 0x3d1e1590 LOG v4l2bufferpool gstv4l2bufferpool.c:1059:gst_v4l2_buffer_pool_qbuf:<my_vdec:pool:src> queuing buffer 1
0:00:01.755817250 8744 0x3d233770 DEBUG GST_EVENT gstpad.c:5638:gst_pad_send_event_unchecked:<my_vdec:src> have event type qos event: 0xffffa4008660, time 99:99:99.999999999, seq-num 52, GstEventQOS, type=(GstQOSType)GST_QOS_TYPE_OVERFLOW, proportion=(double)0.025507273375, diff=(gint64)-489356250, timestamp=(guint64)1000000000;
0:00:01.756022500 8744 0x3d1e1590 LOG v4l2allocator gstv4l2allocator.c:1265:gst_v4l2_allocator_qbuf:<my_vdec:pool:src:allocator> queued buffer 1 (flags 0x4003)
0:00:01.756025625 8744 0x3d233770 DEBUG videodecoder gstvideodecoder.c:1584:gst_video_decoder_src_event:<my_vdec> received event 48641, qos
0:00:01.756095875 8744 0x3d1e1590 DEBUG GST_POLL gstpoll.c:1369:gst_poll_wait: 0x3d21fe80: timeout :99:99:99.999999999
0:00:01.756141000 8744 0x3d233770 DEBUG videodecoder gstvideodecoder.c:1485:gst_video_decoder_src_event_default:<my_vdec> received event 48641, qos
0:00:01.756208000 8744 0x3d233770 DEBUG videodecoder gstvideodecoder.c:1556:gst_video_decoder_src_event_default:<my_vdec> got QoS 0:00:01.000000000, -0:00:00.489356250, 0.0255073
0:00:01.756307125 8744 0x3d233770 LOG GST_PADS gstpad.c:5351:gst_pad_push_event_unchecked:<my_vdec:sink> sending event 0xffffa4008660 (qos) to peerpad <my_h264parse:src>
0:00:01.756384250 8744 0x3d233770 DEBUG GST_EVENT gstpad.c:5638:gst_pad_send_event_unchecked:<my_h264parse:src> have event type qos event: 0xffffa4008660, time 99:99:99.999999999, seq-num 52, GstEventQOS, type=(GstQOSType)GST_QOS_TYPE_OVERFLOW, proportion=(double)0.025507273375, diff=(gint64)-489356250, timestamp=(guint64)1000000000;
0:00:01.756538000 8744 0x3d233770 DEBUG baseparse gstbaseparse.c:1602:gst_base_parse_src_event:<my_h264parse> event 48641, qos
0:00:01.756602875 8744 0x3d233770 LOG GST_PADS gstpad.c:3087:gst_pad_event_default:<my_h264parse:src> default event handler for event qos event: 0xffffa4008660, time 99:99:99.999999999, seq-num 52, GstEventQOS, type=(GstQOSType)GST_QOS_TYPE_OVERFLOW, proportion=(double)0.025507273375, diff=(gint64)-489356250, timestamp=(guint64)1000000000;
0:00:01.756797500 8744 0x3d233770 DEBUG GST_PADS gstpad.c:2897:gst_pad_iterate_internal_links_default:<my_h264parse:src> Making iterator
0:00:01.756865000 8744 0x3d233770 LOG GST_PADS gstpad.c:3007:gst_pad_forward:<my_h264parse:src> calling forward function on pad my_h264parse:sink
0:00:01.756927000 8744 0x3d233770 LOG GST_PADS gstpad.c:3052:event_forward_func:<my_h264parse:sink> Reffing and pushing event 0xffffa4008660 (qos) to my_h264parse:sink
0:00:01.756996625 8744 0x3d233770 LOG GST_PADS gstpad.c:5351:gst_pad_push_event_unchecked:<my_h264parse:sink> sending event 0xffffa4008660 (qos) to peerpad <my_appsrc:src>
0:00:01.757128250 8744 0x3d233770 DEBUG GST_EVENT gstpad.c:5638:gst_pad_send_event_unchecked:<my_appsrc:src> have event type qos event: 0xffffa4008660, time 99:99:99.999999999, seq-num 52, GstEventQOS, type=(GstQOSType)GST_QOS_TYPE_OVERFLOW, proportion=(double)0.025507273375, diff=(gint64)-489356250, timestamp=(guint64)1000000000;
0:00:01.757288000 8744 0x3d233770 DEBUG basesrc gstbasesrc.c:2027:gst_base_src_default_event:<my_appsrc> handle event qos event: 0xffffa4008660, time 99:99:99.999999999, seq-num 52, GstEventQOS, type=(GstQOSType)GST_QOS_TYPE_OVERFLOW, proportion=(double)0.025507273375, diff=(gint64)-489356250, timestamp=(guint64)1000000000;
0:00:01.757435250 8744 0x3d233770 DEBUG GST_QOS gstbasesrc.c:2013:gst_base_src_update_qos:<my_appsrc> qos: proportion: 0.025507, diff -489356250, timestamp 0:00:01.000000000
0:00:01.757522000 8744 0x3d233770 DEBUG GST_PADS gstpad.c:5712:gst_pad_send_event_unchecked:<my_appsrc:src> sent event, ret ok
0:00:01.757579250 8744 0x3d233770 LOG GST_PADS gstpad.c:5359:gst_pad_push_event_unchecked:<my_h264parse:sink> sent event 0xffffa4008660 (qos) to peerpad <my_appsrc:src>, ret ok
0:00:01.757654750 8744 0x3d233770 LOG GST_EVENT gstevent.c:223:_gst_event_free: freeing event 0xffffa4008660 type qos
0:00:01.757723875 8744 0x3d233770 DEBUG GST_PADS gstpad.c:5712:gst_pad_send_event_unchecked:<my_h264parse:src> sent event, ret ok
0:00:01.757779250 8744 0x3d233770 LOG GST_PADS gstpad.c:5359:gst_pad_push_event_unchecked:<my_vdec:sink> sent event 0xffffa4008660 (qos) to peerpad <my_h264parse:src>, ret ok
0:00:01.757858750 8744 0x3d233770 DEBUG GST_PADS gstpad.c:5712:gst_pad_send_event_unchecked:<my_vdec:src> sent event, ret ok
0:00:01.757914625 8744 0x3d233770 LOG GST_PADS gstpad.c:5359:gst_pad_push_event_unchecked:<my_sink:sink> sent event 0xffffa4008660 (qos) to peerpad <my_vdec:src>, ret ok
0:00:01.757989375 8744 0x3d233770 DEBUG basesink gstbasesink.c:3577:gst_base_sink_chain_unlocked:<my_sink> object unref after render 0xffffa4028680
0:00:01.758049125 8744 0x3d233770 DEBUG GST_SCHEDULING gstpad.c:4283:gst_pad_chain_data_unchecked:<my_sink:sink> called chainfunction &gst_base_sink_chain with buffer 0xffffa4028680, returned ok
0:00:01.758143125 8744 0x3d233770 LOG v4l2videodec gstv4l2videodec.c:605:gst_v4l2_video_dec_loop:<my_vdec> Allocate output buffer
0:00:01.758177125 8744 0x3d233140 LOG videodecoder gstvideodecoder.c:2595:gst_video_decoder_new_frame:<my_vdec> Created new frame 0xffffa4034800 (sfn:7)
0:00:01.758199750 8744 0x3d233770 DEBUG v4l2bufferpool gstv4l2bufferpool.c:1342:gst_v4l2_buffer_pool_acquire_buffer:<my_vdec:pool:src> acquire
0:00:01.758304625 8744 0x3d233770 LOG v4l2bufferpool gstv4l2bufferpool.c:999:gst_v4l2_buffer_pool_poll:<my_vdec:pool:src> polling device
0:00:01.758272250 8744 0x3d233140 LOG videodecoder gstvideodecoder.c:3410:gst_video_decoder_decode_frame:<my_vdec> PTS 0:00:03.500000000, DTS 99:99:99.999999999, dist 7
0:00:01.758359000 8744 0x3d233770 DEBUG GST_POLL gstpoll.c:1369:gst_poll_wait: 0xffff9c007400: timeout :99:99:99.999999999
0:00:01.758414125 8744 0x3d233140 DEBUG v4l2videodec gstv4l2videodec.c:704:gst_v4l2_video_dec_handle_frame:<my_vdec> Handling frame 7
0:00:01.758518000 8744 0x3d233140 DEBUG v4l2bufferpool gstv4l2bufferpool.c:1745:gst_v4l2_buffer_pool_process:<my_vdec:pool:sink> process buffer 0xffffa4034838
0:00:01.758574250 8744 0x3d233140 LOG v4l2bufferpool gstv4l2bufferpool.c:1923:gst_v4l2_buffer_pool_process:<my_vdec:pool:sink> alloc buffer from our pool
0:00:01.758622000 8744 0x3d233140 DEBUG v4l2bufferpool gstv4l2bufferpool.c:1342:gst_v4l2_buffer_pool_acquire_buffer:<my_vdec:pool:sink> acquire
0:00:01.758672750 8744 0x3d233140 LOG bufferpool gstbufferpool.c:1128:default_acquire_buffer:<my_vdec:pool:sink> acquired buffer 0xffffa4017840
0:00:01.758726625 8744 0x3d233140 LOG v4l2bufferpool gstv4l2bufferpool.c:116:gst_v4l2_buffer_pool_copy_buffer:<my_vdec:pool:sink> copying buffer
0:00:01.758772875 8744 0x3d233140 DEBUG v4l2bufferpool gstv4l2bufferpool.c:141:gst_v4l2_buffer_pool_copy_buffer:<my_vdec:pool:sink> copy raw bytes
0:00:01.758812375 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1721:gst_buffer_map_range: buffer 0xffffa40346f0, idx 0, length -1, flags 0001
0:00:01.758872250 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:213:_get_merged_memory: buffer 0xffffa40346f0, idx 0, length 1
0:00:01.758929375 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1826:gst_buffer_fill: buffer 0xffffa4017840, offset 0, size 952
0:00:01.758991250 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1582:gst_buffer_resize_range: trim 0xffffa4017840 0-952 size:6291456 offs:0 max:6291456
0:00:01.759057250 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:515:gst_buffer_copy_into: copy 0xffffa40346f0 to 0xffffa4017840, offset 0-952/952
0:00:01.759128250 8744 0x3d233140 LOG GST_PERFORMANCE gstv4l2bufferpool.c:155:gst_v4l2_buffer_pool_copy_buffer:<my_vdec:pool:sink> slow copy into buffer 0xffffa4017840
0:00:01.759183000 8744 0x3d233140 LOG v4l2bufferpool gstv4l2bufferpool.c:1059:gst_v4l2_buffer_pool_qbuf:<my_vdec:pool:sink> queuing buffer 1
0:00:01.759296375 8744 0x3d233140 LOG v4l2allocator gstv4l2allocator.c:1265:gst_v4l2_allocator_qbuf:<my_vdec:pool:sink:allocator> queued buffer 1 (flags 0x4003)
0:00:01.759350500 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:710:_gst_buffer_dispose: release 0xffffa4017840 to pool 0xffffa4012410
0:00:01.759409000 8744 0x3d233140 DEBUG v4l2bufferpool gstv4l2bufferpool.c:1420:gst_v4l2_buffer_pool_release_buffer:<my_vdec:pool:sink> release buffer 0xffffa4017840
0:00:01.759461875 8744 0x3d233140 LOG v4l2bufferpool gstv4l2bufferpool.c:1503:gst_v4l2_buffer_pool_release_buffer:<my_vdec:pool:sink> buffer 1 is queued
0:00:01.759515375 8744 0x3d233140 LOG v4l2bufferpool gstv4l2bufferpool.c:999:gst_v4l2_buffer_pool_poll:<my_vdec:pool:sink> polling device
0:00:01.759553125 8744 0x3d233140 DEBUG GST_POLL gstpoll.c:1369:gst_poll_wait: 0xffffa4005cf0: timeout :99:99:99.999999999
0:00:01.759630500 8744 0x3d233140 DEBUG GST_POLL gstpoll.c:1188:gst_poll_fd_has_error: 0xffffa4005cf0: fd (fd:18, idx:1) 0
0:00:01.759689250 8744 0x3d233140 DEBUG GST_POLL gstpoll.c:1265:gst_poll_fd_can_read_pri_unlocked: 0xffffa4005cf0: fd (fd:18, idx:1) 0
0:00:01.759698500 8744 0x3d233770 DEBUG GST_POLL gstpoll.c:1188:gst_poll_fd_has_error: 0xffff9c007400: fd (fd:23, idx:1) 0
0:00:01.759765375 8744 0x3d233140 LOG v4l2bufferpool gstv4l2bufferpool.c:1322:gst_v4l2_buffer_pool_dequeue:<my_vdec:pool:sink> dequeueing a buffer
0:00:01.759809125 8744 0x3d233770 DEBUG GST_POLL gstpoll.c:1265:gst_poll_fd_can_read_pri_unlocked: 0xffff9c007400: fd (fd:23, idx:1) 0
0:00:01.759876750 8744 0x3d233770 LOG v4l2bufferpool gstv4l2bufferpool.c:1322:gst_v4l2_buffer_pool_dequeue:<my_vdec:pool:src> dequeueing a buffer
0:00:01.759871000 8744 0x3d233140 LOG v4l2allocator gstv4l2allocator.c:1312:gst_v4l2_allocator_dqbuf:<my_vdec:pool:sink:allocator> dequeued buffer 0 (flags 0x4001)
0:00:01.759983000 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:1312:gst_v4l2_allocator_dqbuf:<my_vdec:pool:src:allocator> dequeued buffer 3 (flags 0x4001)
0:00:01.760014500 8744 0x3d233140 LOG v4l2bufferpool gstv4l2bufferpool.c:1194:gst_v4l2_buffer_pool_dqbuf:<my_vdec:pool:sink> dequeued buffer 0xffffa40170d0 seq:0 (ix=0), mem 0xffffa40181f0 used 1780, plane=0, flags 00004001, ts 0:00:03.000000000, pool-queued=1, buffer=0xffffa40170d0
0:00:01.760047125 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:1341:gst_v4l2_allocator_dqbuf:<my_vdec:pool:src:allocator> Dequeued capture buffer, length: 65536 bytesused: 65536 data_offset: 0
0:00:01.760110625 8744 0x3d233140 DEBUG v4l2bufferpool gstv4l2bufferpool.c:1420:gst_v4l2_buffer_pool_release_buffer:<my_vdec:pool:sink> release buffer 0xffffa40170d0
0:00:01.760176125 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:1341:gst_v4l2_allocator_dqbuf:<my_vdec:pool:src:allocator> Dequeued capture buffer, length: 32768 bytesused: 32768 data_offset: 0
0:00:01.760217125 8744 0x3d233140 LOG v4l2bufferpool gstv4l2bufferpool.c:1488:gst_v4l2_buffer_pool_release_buffer:<my_vdec:pool:sink> buffer 0 not queued, putting on free list
0:00:01.760243250 8744 0x3d233770 LOG v4l2bufferpool gstv4l2bufferpool.c:1194:gst_v4l2_buffer_pool_dqbuf:<my_vdec:pool:src> dequeued buffer 0xffffa4028790 seq:0 (ix=3), mem 0xffff9c018dc0 used 65536, plane=0, flags 00004001, ts 0:00:00.000000000, pool-queued=20, buffer=0xffffa4028790
0:00:01.760276250 8744 0x3d233140 LOG bufferpool gstbufferpool.c:1284:default_release_buffer:<my_vdec:pool:sink> released buffer 0xffffa40170d0 0
0:00:01.760376250 8744 0x3d233140 DEBUG GST_BUFFER gstbuffer.c:1375:gst_buffer_is_memory_range_writable: idx 0, length -1
0:00:01.760344125 8744 0x3d233770 LOG v4l2bufferpool gstv4l2bufferpool.c:1194:gst_v4l2_buffer_pool_dqbuf:<my_vdec:pool:src> dequeued buffer 0xffffa4028790 seq:0 (ix=3), mem 0xffff9c018ee0 used 32768, plane=1, flags 00004001, ts 0:00:00.000000000, pool-queued=20, buffer=0xffffa4028790
0:00:01.760443500 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:799:gst_buffer_new: new 0xffffa4034910
0:00:01.760502250 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:515:gst_buffer_copy_into: copy 0xffffa40346f0 to 0xffffa4034910, offset 0-0/952
0:00:01.760531875 8744 0x3d233770 LOG v4l2videodec gstv4l2videodec.c:629:gst_v4l2_video_dec_loop:<my_vdec> Process output buffer
0:00:01.760575375 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:725:_gst_buffer_free: finalize 0xffffa40346f0
0:00:01.760632000 8744 0x3d233770 DEBUG v4l2bufferpool gstv4l2bufferpool.c:1745:gst_v4l2_buffer_pool_process:<my_vdec:pool:src> process buffer 0xffffb1d697e8
0:00:01.760704875 8744 0x3d233140 DEBUG GST_MEMORY gstmemory.c:88:_gst_memory_free: free memory 0x3d227580
0:00:01.760790000 8744 0x3d233140 DEBUG GST_SCHEDULING gstpad.c:4283:gst_pad_chain_data_unchecked:<my_vdec:sink> called chainfunction &gst_video_decoder_chain with buffer 0xffffa40346f0, returned ok
0:00:01.760807500 8744 0x3d233770 LOG v4l2videodec gstv4l2videodec.c:460:gst_v4l2_video_dec_get_oldest_frame:<my_vdec> Oldest frame is 3 0:00:01.500000000 and 4 frames left
0:00:01.760861125 8744 0x3d233140 LOG baseparse gstbaseparse.c:2537:gst_base_parse_push_frame:<my_h264parse> frame pushed, flow ok
0:00:01.760881875 8744 0x3d233770 DEBUG GST_BUFFER gstbuffer.c:2201:gst_buffer_add_meta: alloc metadata 0xffff9c001e38 (GstDmabufMeta) of size 24
0:00:01.760917125 8744 0x3d233140 LOG baseparse gstbaseparse.c:2166:gst_base_parse_handle_buffer:<my_h264parse> handle_frame skipped 0, flushed 950
0:00:01.760946125 8744 0x3d233770 DEBUG v4l2videodec gstv4l2videodec.c:647:gst_v4l2_video_dec_loop:<my_vdec> add drm modifier: 576460752303423489
0:00:01.761026375 8744 0x3d233140 DEBUG baseparse gstbaseparse.c:3215:gst_base_parse_chain:<my_h264parse> not enough data available (only 0 bytes)
0:00:01.761135750 8744 0x3d233140 LOG baseparse gstbaseparse.c:3277:gst_base_parse_chain:<my_h264parse> chain leaving
0:00:01.761201875 8744 0x3d233140 DEBUG GST_SCHEDULING gstpad.c:4283:gst_pad_chain_data_unchecked:<my_h264parse:sink> called chainfunction &gst_base_parse_chain with buffer 0xffffa40172f0, returned ok
0:00:01.761222125 8744 0x3d233770 LOG videodecoder gstvideodecoder.c:2985:gst_video_decoder_finish_frame:<my_vdec> finish frame 0xffffa4028350
0:00:01.761276250 8744 0x3d233140 LOG basesrc gstbasesrc.c:2828:gst_base_src_loop:<my_appsrc> next_ts 0:00:00.000011376 size 4096
0:00:01.761314750 8744 0x3d233770 LOG videodecoder gstvideodecoder.c:2625:gst_video_decoder_prepare_finish_frame:<my_vdec> n 5 in 0 out 0
0:00:01.761347375 8744 0x3d233140 DEBUG basesrc gstbasesrc.c:2399:gst_base_src_update_length:<my_appsrc> reading offset 11376, length 4096, size -1, segment.stop -1, maxsize -1
0:00:01.761551750 8744 0x3d233140 DEBUG basesrc gstbasesrc.c:2506:gst_base_src_get_range:<my_appsrc> calling create offset 11376 length 4096, time 0
(get_data, 99)
(get_data, 108)read_ret: 8, target frame num: 8, read frame num: 8
0:00:01.761509250 8744 0x3d233770 LOG videodecoder gstvideodecoder.c:2634:gst_video_decoder_prepare_finish_frame:<my_vdec> finish frame 0xffffa4028350 (#3) sync:0 PTS:0:00:01.500000000 DTS:99:99:99.999999999
0:00:01.761709125 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:799:gst_buffer_new: new 0xffffa4017d90
0:00:01.761737250 8744 0x3d233770 DEBUG videodecoder gstvideodecoder.c:2676:gst_video_decoder_prepare_finish_frame:<my_vdec> sync timestamp 0:00:01.500000000 diff -0:00:01.500000000
0:00:01.761757500 8744 0x3d233140 DEBUG GST_MEMORY gstmemory.c:139:gst_memory_init: new memory 0xffffa4018040, maxsize:909 offset:0 size:909
0:00:01.761831125 8744 0x3d233770 DEBUG default gstvideoutils.c:40:_gst_video_codec_frame_free: free frame 0xffffa4028350
0:00:01.761855750 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:414:_memory_add: buffer 0xffffa4017d90, idx -1, mem 0xffffa4018040
0:00:01.761879625 8744 0x3d233770 LOG GST_BUFFER gstbuffer.c:725:_gst_buffer_free: finalize 0xffffa4017400
0:00:01.761968250 8744 0x3d233140 DEBUG appsrc gstappsrc.c:1863:gst_app_src_push_internal:<my_appsrc> queueing buffer 0xffffa4017d90
0:00:01.761974125 8744 0x3d233770 LOG videodecoder gstvideodecoder.c:3130:gst_video_decoder_clip_and_push_buf:<my_vdec> accepting buffer inside segment: 0:00:01.500000000 0:00:02.000000000 seg 0:00:00.000000000 to 99:99:99.999999999 time 0:00:00.000000000
0:00:01.762041375 8744 0x3d233140 LOG appsrc gstappsrc.c:1221:gst_app_src_create:<my_appsrc> have buffer 0xffffa4017d90 of size 909
0:00:01.762112375 8744 0x3d233140 DEBUG basesrc gstbasesrc.c:2360:gst_base_src_do_sync:<my_appsrc> no sync needed
0:00:01.762088375 8744 0x3d233770 DEBUG videodecoder gstvideodecoder.c:3197:gst_video_decoder_clip_and_push_buf:<my_vdec> pushing buffer 0xffffa4028790 of size 98304, PTS 0:00:01.500000000, dur 0:00:00.500000000
0:00:01.762172875 8744 0x3d233140 DEBUG basesrc gstbasesrc.c:2597:gst_base_src_get_range:<my_appsrc> buffer ok
0:00:01.762268375 8744 0x3d233140 DEBUG GST_SCHEDULING gstpad.c:4277:gst_pad_chain_data_unchecked:<my_h264parse:sink> calling chainfunction &gst_base_parse_chain with buffer buffer: 0xffffa4017d90, pts 0:00:04.000000000, dts 99:99:99.999999999, dur 0:00:00.500000000, size 909, offset none, offset_end none, flags 0x0
0:00:01.762234000 8744 0x3d233770 DEBUG GST_SCHEDULING gstpad.c:4277:gst_pad_chain_data_unchecked:<my_sink:sink> calling chainfunction &gst_base_sink_chain with buffer buffer: 0xffffa4028790, pts 0:00:01.500000000, dts 99:99:99.999999999, dur 0:00:00.500000000, size 98304, offset none, offset_end none, flags 0x0
0:00:01.762443625 8744 0x3d233140 DEBUG baseparse gstbaseparse.c:3030:gst_base_parse_chain:<my_h264parse> chain
0:00:01.762499125 8744 0x3d233770 DEBUG basesink gstbasesink.c:3421:gst_base_sink_chain_unlocked:<my_sink> got times start: 0:00:01.500000000, end: 0:00:02.000000000
0:00:01.762526625 8744 0x3d233140 LOG baseparse gstbaseparse.c:3150:gst_base_parse_chain:<my_h264parse> buffer size: 909, offset = -1, dts 99:99:99.999999999, pts 0:00:04.000000000
0:00:01.762582500 8744 0x3d233770 DEBUG basesink gstbasesink.c:2006:gst_base_sink_get_sync_times:<my_sink> got times start: 0:00:01.500000000, stop: 0:00:02.000000000, do_sync 1
0:00:01.762626875 8744 0x3d233140 LOG adapter gstadapter.c:389:gst_adapter_push:<GstAdapter at 0x3d20c000> pushing 0xffffa4017d90 first 909 bytes
0:00:01.762704000 8744 0x3d233140 LOG adapter gstadapter.c:290:update_timestamps_and_offset:<GstAdapter at 0x3d20c000> new pts 0:00:04.000000000
0:00:01.762716250 8744 0x3d233770 LOG basesink gstbasesink.c:2551:gst_base_sink_do_sync:<my_sink> avg frame diff 0:00:00.500000000
0:00:01.762787250 8744 0x3d233140 LOG adapter gstadapter.c:974:gst_adapter_get_buffer:<GstAdapter at 0x3d20c000> getting buffer of 909 bytes
0:00:01.762820000 8744 0x3d233770 DEBUG basesink gstbasesink.c:2591:gst_base_sink_do_sync:<my_sink> reset rc_time to time 0:00:01.500000000
0:00:01.762845875 8744 0x3d233140 LOG adapter gstadapter.c:989:gst_adapter_get_buffer:<GstAdapter at 0x3d20c000> providing buffer of 909 bytes as head buffer
0:00:01.762902750 8744 0x3d233770 DEBUG basesink gstbasesink.c:2603:gst_base_sink_do_sync:<my_sink> possibly waiting for clock to reach 0:00:01.500000000, adjusted 0:00:01.500000000
0:00:01.762939875 8744 0x3d233140 LOG baseparse gstbaseparse.c:2148:gst_base_parse_handle_buffer:<my_h264parse> handling buffer of size 909 with dts 99:99:99.999999999, pts 0:00:04.000000000, duration 0:00:00.500000000
0:00:01.762982875 8744 0x3d233770 LOG basesink gstbasesink.c:2177:gst_base_sink_wait_clock:<my_sink> time 0:00:01.500000000, base_time 0:15:45.099030375
0:00:01.763027375 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:799:gst_buffer_new: new 0xffffa40172f0
0:00:01.763062875 8744 0x3d233770 DEBUG GST_CLOCK gstclock.c:537:gst_clock_id_wait:<GstSystemClock> waiting on clock entry 0xffffa4008580
0:00:01.763070875 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:515:gst_buffer_copy_into: copy 0xffffa4017d90 to 0xffffa40172f0, offset 0-909/909
0:00:01.763121625 8744 0x3d233770 DEBUG GST_CLOCK gstclock.c:1046:gst_clock_get_internal_time:<GstSystemClock> internal time 0:15:46.110069000
0:00:01.763131625 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:414:_memory_add: buffer 0xffffa40172f0, idx -1, mem 0xffffa4018040
0:00:01.763203500 8744 0x3d233770 DEBUG GST_CLOCK gstclock.c:1091:gst_clock_get_time:<GstSystemClock> adjusted time 0:15:46.110069000
0:00:01.763226875 8744 0x3d233140 DEBUG GST_PERFORMANCE gstminiobject.c:317:gst_mini_object_make_writable: copy GstBuffer miniobject 0xffffa4017d90 -> 0xffffa40172f0
0:00:01.763260375 8744 0x3d233770 DEBUG GST_CLOCK gstsystemclock.c:718:gst_system_clock_id_wait_jitter_unlocked: entry 0xffffa4008580 time 0:15:46.599030375 now 0:15:46.110069000 diff (time-now) 488961375
0:00:01.763293250 8744 0x3d233140 LOG baseparse gstbaseparse.c:2110:gst_base_parse_prepare_frame:<my_h264parse> preparing frame at offset 18446744073709551615 (0xffffffffffffffff) of size 909
0:00:01.763438250 8744 0x3d233140 LOG baseparse gstbaseparse.c:764:gst_base_parse_update_frame:<my_h264parse> marking as new frame
0:00:01.763345375 8744 0x3d233770 DEBUG GST_POLL gstpoll.c:1369:gst_poll_wait: 0xffffa0003c00: timeout :0:00:00.488961375
0:00:01.763494875 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1721:gst_buffer_map_range: buffer 0xffffa40172f0, idx 0, length -1, flags 0001
0:00:01.763553500 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:213:_get_merged_memory: buffer 0xffffa40172f0, idx 0, length 1
0:00:01.763617125 8744 0x3d233140 LOG h264parse gsth264parse.c:1097:gst_h264_parse_handle_frame:<my_h264parse> parsing new frame
0:00:01.763665500 8744 0x3d233140 DEBUG h264parse gsth264parse.c:186:gst_h264_parse_reset_frame:<my_h264parse> reset frame
0:00:01.763714000 8744 0x3d233140 DEBUG h264parse gsth264parse.c:1112:gst_h264_parse_handle_frame:<my_h264parse> last parse position 0
0:00:01.763763000 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:242:gst_h264_parse_nalu_header: Nal type 9, ref_idc 0
0:00:01.763813000 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:242:gst_h264_parse_nalu_header: Nal type 9, ref_idc 0
0:00:01.763860125 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:1366:gst_h264_parser_identify_nalu: Complete nal found. Off: 4, Size: 2
0:00:01.763916875 8744 0x3d233140 DEBUG h264parse gsth264parse.c:1162:gst_h264_parse_handle_frame:<my_h264parse> complete nal (offset, size): (4, 2)
0:00:01.763973000 8744 0x3d233140 DEBUG h264parse gsth264parse.c:1219:gst_h264_parse_handle_frame:<my_h264parse> 0xffffa4031c60 complete nal found. Off: 4, Size: 2
0:00:01.764036125 8744 0x3d233140 DEBUG h264parse gsth264parse.c:721:gst_h264_parse_process_nal:<my_h264parse> processing nal of type 9 AU delimiter, size 2
0:00:01.764095375 8744 0x3d233140 LOG h264parse gsth264parse.c:895:gst_h264_parse_process_nal:<my_h264parse> collecting NAL in AVC frame
0:00:01.764141875 8744 0x3d233140 DEBUG h264parse gsth264parse.c:428:gst_h264_parse_wrap_nal:<my_h264parse> nal length 2
0:00:01.764188125 8744 0x3d233140 DEBUG GST_MEMORY gstmemory.c:139:gst_memory_init: new memory 0xffffa400abf0, maxsize:13 offset:0 size:6
0:00:01.764243750 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:799:gst_buffer_new: new 0xffffa4034090
0:00:01.764285375 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:414:_memory_add: buffer 0xffffa4034090, idx -1, mem 0xffffa400abf0
0:00:01.764337000 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:855:gst_buffer_new_allocate: new buffer 0xffffa4034090 of size 6 from allocator (nil)
0:00:01.764390250 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1826:gst_buffer_fill: buffer 0xffffa4034090, offset 0, size 4
0:00:01.764442000 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1826:gst_buffer_fill: buffer 0xffffa4034090, offset 4, size 2
0:00:01.764493500 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1582:gst_buffer_resize_range: trim 0xffffa4034090 0-6 size:6 offs:0 max:13
0:00:01.764567625 8744 0x3d233140 LOG adapter gstadapter.c:389:gst_adapter_push:<GstAdapter at 0x3d20c120> pushing 0xffffa4034090 first 6 bytes
0:00:01.764625625 8744 0x3d233140 DEBUG h264parse gsth264parse.c:914:gst_h264_parse_collect_nal:<my_h264parse> parsing collected nal
0:00:01.764665250 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:242:gst_h264_parse_nalu_header: Nal type 6, ref_idc 0
0:00:01.764722375 8744 0x3d233140 LOG h264parse gsth264parse.c:922:gst_h264_parse_collect_nal:<my_h264parse> nal type: 9 AU delimiter
0:00:01.764811250 8744 0x3d233140 LOG h264parse gsth264parse.c:941:gst_h264_parse_collect_nal:<my_h264parse> next nal type: 6 SEI
0:00:01.764867375 8744 0x3d233140 LOG h264parse gsth264parse.c:948:gst_h264_parse_collect_nal:<my_h264parse> au complete: 0
0:00:01.764918375 8744 0x3d233140 DEBUG h264parse gsth264parse.c:1264:gst_h264_parse_handle_frame:<my_h264parse> Looking for more
0:00:01.764956500 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:242:gst_h264_parse_nalu_header: Nal type 6, ref_idc 0
0:00:01.765002375 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:1366:gst_h264_parser_identify_nalu: Complete nal found. Off: 10, Size: 21
0:00:01.765109875 8744 0x3d233140 DEBUG h264parse gsth264parse.c:1162:gst_h264_parse_handle_frame:<my_h264parse> complete nal (offset, size): (10, 21)
0:00:01.765176625 8744 0x3d233140 DEBUG h264parse gsth264parse.c:1219:gst_h264_parse_handle_frame:<my_h264parse> 0xffffa4031c60 complete nal found. Off: 10, Size: 21
0:00:01.765238000 8744 0x3d233140 DEBUG h264parse gsth264parse.c:721:gst_h264_parse_process_nal:<my_h264parse> processing nal of type 6 SEI, size 21
0:00:01.765288500 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:2292:gst_h264_parser_parse_sei: parsing SEI nal
0:00:01.765329750 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:1127:gst_h264_parser_parse_sei_message: parsing "Sei message"
0:00:01.765371000 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:1147:gst_h264_parser_parse_sei_message: SEI message received: payloadType 5, payloadSize = 136 bits
0:00:01.765445750 8744 0x3d233140 DEBUG h264parse gsth264parse.c:807:gst_h264_parse_process_nal:<my_h264parse> marking SEI in frame at offset 6
0:00:01.765498875 8744 0x3d233140 LOG h264parse gsth264parse.c:895:gst_h264_parse_process_nal:<my_h264parse> collecting NAL in AVC frame
0:00:01.765545375 8744 0x3d233140 DEBUG h264parse gsth264parse.c:428:gst_h264_parse_wrap_nal:<my_h264parse> nal length 21
0:00:01.765591625 8744 0x3d233140 DEBUG GST_MEMORY gstmemory.c:139:gst_memory_init: new memory 0xffffa401b590, maxsize:32 offset:0 size:25
0:00:01.765647000 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:799:gst_buffer_new: new 0xffffa4017b70
0:00:01.765689125 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:414:_memory_add: buffer 0xffffa4017b70, idx -1, mem 0xffffa401b590
0:00:01.765739000 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:855:gst_buffer_new_allocate: new buffer 0xffffa4017b70 of size 25 from allocator (nil)
0:00:01.765789875 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1826:gst_buffer_fill: buffer 0xffffa4017b70, offset 0, size 4
0:00:01.765840625 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1826:gst_buffer_fill: buffer 0xffffa4017b70, offset 4, size 21
0:00:01.765890750 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1582:gst_buffer_resize_range: trim 0xffffa4017b70 0-25 size:25 offs:0 max:32
0:00:01.765964125 8744 0x3d233140 LOG adapter gstadapter.c:395:gst_adapter_push:<GstAdapter at 0x3d20c120> pushing 0xffffa4017b70 25 bytes at end, size now 31
0:00:01.766025375 8744 0x3d233140 DEBUG h264parse gsth264parse.c:914:gst_h264_parse_collect_nal:<my_h264parse> parsing collected nal
0:00:01.766064500 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:242:gst_h264_parse_nalu_header: Nal type 1, ref_idc 1
0:00:01.766119375 8744 0x3d233140 LOG h264parse gsth264parse.c:922:gst_h264_parse_collect_nal:<my_h264parse> nal type: 6 SEI
0:00:01.766172625 8744 0x3d233140 LOG h264parse gsth264parse.c:941:gst_h264_parse_collect_nal:<my_h264parse> next nal type: 1 Slice
0:00:01.766226875 8744 0x3d233140 LOG h264parse gsth264parse.c:948:gst_h264_parse_collect_nal:<my_h264parse> au complete: 0
0:00:01.766311750 8744 0x3d233140 DEBUG h264parse gsth264parse.c:1264:gst_h264_parse_handle_frame:<my_h264parse> Looking for more
0:00:01.766352000 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:242:gst_h264_parse_nalu_header: Nal type 1, ref_idc 1
0:00:01.766399125 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:1366:gst_h264_parser_identify_nalu: Complete nal found. Off: 34, Size: 130
0:00:01.766455250 8744 0x3d233140 DEBUG h264parse gsth264parse.c:1162:gst_h264_parse_handle_frame:<my_h264parse> complete nal (offset, size): (34, 130)
0:00:01.766509250 8744 0x3d233140 DEBUG h264parse gsth264parse.c:1219:gst_h264_parse_handle_frame:<my_h264parse> 0xffffa4031c60 complete nal found. Off: 34, Size: 130
0:00:01.766567625 8744 0x3d233140 DEBUG h264parse gsth264parse.c:721:gst_h264_parse_process_nal:<my_h264parse> processing nal of type 1 Slice, size 130
0:00:01.766625750 8744 0x3d233140 DEBUG h264parse gsth264parse.c:827:gst_h264_parse_process_nal:<my_h264parse> first_mb_in_slice = 0
0:00:01.766671750 8744 0x3d233140 DEBUG h264parse gsth264parse.c:830:gst_h264_parse_process_nal:<my_h264parse> frame start: 1
0:00:01.766718750 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:2079:gst_h264_parser_parse_slice_hdr: parsing "Slice header", slice type 0
0:00:01.766776875 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:700:gst_h264_slice_parse_dec_ref_pic_marking: parsing "Decoded reference picture marking"
0:00:01.766828875 8744 0x3d233140 DEBUG h264parse gsth264parse.c:840:gst_h264_parse_process_nal:<my_h264parse> parse result 0, first MB: 0, slice type: 0
0:00:01.766888875 8744 0x3d233140 LOG h264parse gsth264parse.c:895:gst_h264_parse_process_nal:<my_h264parse> collecting NAL in AVC frame
0:00:01.766935750 8744 0x3d233140 DEBUG h264parse gsth264parse.c:428:gst_h264_parse_wrap_nal:<my_h264parse> nal length 130
0:00:01.766979875 8744 0x3d233140 DEBUG GST_MEMORY gstmemory.c:139:gst_memory_init: new memory 0x3d20c6c0, maxsize:141 offset:0 size:134
0:00:01.767035500 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:799:gst_buffer_new: new 0xffffa4017950
0:00:01.767077875 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:414:_memory_add: buffer 0xffffa4017950, idx -1, mem 0x3d20c6c0
0:00:01.767126125 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:855:gst_buffer_new_allocate: new buffer 0xffffa4017950 of size 134 from allocator (nil)
0:00:01.767176375 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1826:gst_buffer_fill: buffer 0xffffa4017950, offset 0, size 4
0:00:01.767227000 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1826:gst_buffer_fill: buffer 0xffffa4017950, offset 4, size 130
0:00:01.767277500 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1582:gst_buffer_resize_range: trim 0xffffa4017950 0-134 size:134 offs:0 max:141
0:00:01.767351000 8744 0x3d233140 LOG adapter gstadapter.c:395:gst_adapter_push:<GstAdapter at 0x3d20c120> pushing 0xffffa4017950 134 bytes at end, size now 165
0:00:01.767412625 8744 0x3d233140 DEBUG h264parse gsth264parse.c:914:gst_h264_parse_collect_nal:<my_h264parse> parsing collected nal
0:00:01.767451375 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:242:gst_h264_parse_nalu_header: Nal type 1, ref_idc 1
0:00:01.767505125 8744 0x3d233140 LOG h264parse gsth264parse.c:922:gst_h264_parse_collect_nal:<my_h264parse> nal type: 1 Slice
0:00:01.767558750 8744 0x3d233140 LOG h264parse gsth264parse.c:941:gst_h264_parse_collect_nal:<my_h264parse> next nal type: 1 Slice
0:00:01.767612125 8744 0x3d233140 LOG h264parse gsth264parse.c:948:gst_h264_parse_collect_nal:<my_h264parse> au complete: 0
0:00:01.767661125 8744 0x3d233140 DEBUG h264parse gsth264parse.c:1264:gst_h264_parse_handle_frame:<my_h264parse> Looking for more
0:00:01.767733500 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:242:gst_h264_parse_nalu_header: Nal type 1, ref_idc 1
0:00:01.767785125 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:1351:gst_h264_parser_identify_nalu: Nal start 167, No end found
0:00:01.767837875 8744 0x3d233140 DEBUG h264parse gsth264parse.c:1166:gst_h264_parse_handle_frame:<my_h264parse> not a complete nal found at offset 167
0:00:01.767889500 8744 0x3d233140 DEBUG h264parse gsth264parse.c:1172:gst_h264_parse_handle_frame:<my_h264parse> draining, accepting with size 742
0:00:01.767941625 8744 0x3d233140 DEBUG h264parse gsth264parse.c:1219:gst_h264_parse_handle_frame:<my_h264parse> 0xffffa4031c60 complete nal found. Off: 167, Size: 742
0:00:01.768002125 8744 0x3d233140 DEBUG h264parse gsth264parse.c:721:gst_h264_parse_process_nal:<my_h264parse> processing nal of type 1 Slice, size 742
0:00:01.768059250 8744 0x3d233140 DEBUG h264parse gsth264parse.c:830:gst_h264_parse_process_nal:<my_h264parse> frame start: 1
0:00:01.768104250 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:2079:gst_h264_parser_parse_slice_hdr: parsing "Slice header", slice type 0
0:00:01.768151250 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:700:gst_h264_slice_parse_dec_ref_pic_marking: parsing "Decoded reference picture marking"
0:00:01.768159500 8744 0x3d1e1590 LOG waylandsink gstwaylandsink.c:745:frame_redraw_callback: frame_redraw_cb
0:00:01.768245125 8744 0x3d1e1590 DEBUG GST_POLL gstpoll.c:1369:gst_poll_wait: 0x3d21fe80: timeout :99:99:99.999999999
0:00:01.768259500 8744 0x3d233140 DEBUG h264parse gsth264parse.c:840:gst_h264_parse_process_nal:<my_h264parse> parse result 0, first MB: 49, slice type: 0
0:00:01.768376500 8744 0x3d233140 LOG h264parse gsth264parse.c:895:gst_h264_parse_process_nal:<my_h264parse> collecting NAL in AVC frame
0:00:01.768424875 8744 0x3d233140 DEBUG h264parse gsth264parse.c:428:gst_h264_parse_wrap_nal:<my_h264parse> nal length 742
0:00:01.768469250 8744 0x3d233140 DEBUG GST_MEMORY gstmemory.c:139:gst_memory_init: new memory 0xffffa403a3d0, maxsize:753 offset:0 size:746
0:00:01.768525875 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:799:gst_buffer_new: new 0xffffa4017a60
0:00:01.768567875 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:414:_memory_add: buffer 0xffffa4017a60, idx -1, mem 0xffffa403a3d0
0:00:01.768618375 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:855:gst_buffer_new_allocate: new buffer 0xffffa4017a60 of size 746 from allocator (nil)
0:00:01.768669250 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1826:gst_buffer_fill: buffer 0xffffa4017a60, offset 0, size 4
0:00:01.768719250 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1826:gst_buffer_fill: buffer 0xffffa4017a60, offset 4, size 742
0:00:01.768769750 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1582:gst_buffer_resize_range: trim 0xffffa4017a60 0-746 size:746 offs:0 max:753
0:00:01.768843500 8744 0x3d233140 LOG adapter gstadapter.c:395:gst_adapter_push:<GstAdapter at 0x3d20c120> pushing 0xffffa4017a60 746 bytes at end, size now 911
0:00:01.768921125 8744 0x3d233140 DEBUG GST_CAPS gstpad.c:2705:gst_pad_has_current_caps:<my_h264parse:src> check current pad caps video/x-h264, stream-format=(string)byte-stream, alignment=(string)au, framerate=(fraction)0/1, width=(int)176, height=(int)144, interlace-mode=(string)progressive, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8, parsed=(boolean)true, profile=(string)constrained-baseline, level=(string)1.2
0:00:01.769163750 8744 0x3d233140 LOG h264parse gsth264parse.c:2016:gst_h264_parse_get_timestamp:<my_h264parse> Upstream ts 0:00:04.000000000
0:00:01.769263125 8744 0x3d233140 DEBUG h264parse gsth264parse.c:2035:gst_h264_parse_get_timestamp:<my_h264parse> unable to compute timestamp: timing info not present
0:00:01.769317750 8744 0x3d233140 LOG adapter gstadapter.c:974:gst_adapter_get_buffer:<GstAdapter at 0x3d20c120> getting buffer of 911 bytes
0:00:01.769377250 8744 0x3d233140 LOG adapter gstadapter.c:736:gst_adapter_get_internal:<GstAdapter at 0x3d20c120> allocating 911 bytes
0:00:01.769422000 8744 0x3d233140 DEBUG adapter gstadapter.c:344:copy_into_unchecked: bsize 6, skip 0, csize 6
0:00:01.769484000 8744 0x3d233140 LOG GST_PERFORMANCE gstadapter.c:346:copy_into_unchecked:<GstAdapter at 0x3d20c120> extract 6 bytes
0:00:01.769527000 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1876:gst_buffer_extract: buffer 0xffffa4034090, offset 0, size 6
0:00:01.769591625 8744 0x3d233140 LOG GST_PERFORMANCE gstadapter.c:359:copy_into_unchecked:<GstAdapter at 0x3d20c120> extract 25 bytes
0:00:01.769633250 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1876:gst_buffer_extract: buffer 0xffffa4017b70, offset 0, size 25
0:00:01.769696125 8744 0x3d233140 LOG GST_PERFORMANCE gstadapter.c:359:copy_into_unchecked:<GstAdapter at 0x3d20c120> extract 134 bytes
0:00:01.769738125 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1876:gst_buffer_extract: buffer 0xffffa4017950, offset 0, size 134
0:00:01.769801625 8744 0x3d233140 LOG GST_PERFORMANCE gstadapter.c:359:copy_into_unchecked:<GstAdapter at 0x3d20c120> extract 746 bytes
0:00:01.769843125 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1876:gst_buffer_extract: buffer 0xffffa4017a60, offset 0, size 746
0:00:01.769896125 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:799:gst_buffer_new: new 0xffffa40346f0
0:00:01.769939875 8744 0x3d233140 DEBUG GST_MEMORY gstmemory.c:139:gst_memory_init: new memory 0xffffa4018160, maxsize:911 offset:0 size:911
0:00:01.769994875 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:414:_memory_add: buffer 0xffffa40346f0, idx -1, mem 0xffffa4018160
0:00:01.770063625 8744 0x3d233140 LOG adapter gstadapter.c:634:gst_adapter_flush_unchecked:<GstAdapter at 0x3d20c120> flushing 911 bytes
0:00:01.770119750 8744 0x3d233140 LOG adapter gstadapter.c:656:gst_adapter_flush_unchecked:<GstAdapter at 0x3d20c120> flushing out head buffer
0:00:01.770158000 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:725:_gst_buffer_free: finalize 0xffffa4034090
0:00:01.770199625 8744 0x3d233140 DEBUG GST_MEMORY gstmemory.c:88:_gst_memory_free: free memory 0xffffa400abf0
0:00:01.770263500 8744 0x3d233140 LOG adapter gstadapter.c:656:gst_adapter_flush_unchecked:<GstAdapter at 0x3d20c120> flushing out head buffer
0:00:01.770301625 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:725:_gst_buffer_free: finalize 0xffffa4017b70
0:00:01.770343375 8744 0x3d233140 DEBUG GST_MEMORY gstmemory.c:88:_gst_memory_free: free memory 0xffffa401b590
0:00:01.770402500 8744 0x3d233140 LOG adapter gstadapter.c:656:gst_adapter_flush_unchecked:<GstAdapter at 0x3d20c120> flushing out head buffer
0:00:01.770440250 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:725:_gst_buffer_free: finalize 0xffffa4017950
0:00:01.770481875 8744 0x3d233140 DEBUG GST_MEMORY gstmemory.c:88:_gst_memory_free: free memory 0x3d20c6c0
0:00:01.770538500 8744 0x3d233140 LOG adapter gstadapter.c:656:gst_adapter_flush_unchecked:<GstAdapter at 0x3d20c120> flushing out head buffer
0:00:01.770576125 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:725:_gst_buffer_free: finalize 0xffffa4017a60
0:00:01.770617000 8744 0x3d233140 DEBUG GST_MEMORY gstmemory.c:88:_gst_memory_free: free memory 0xffffa403a3d0
0:00:01.770707000 8744 0x3d233140 LOG adapter gstadapter.c:668:gst_adapter_flush_unchecked:<GstAdapter at 0x3d20c120> adapter empty now
0:00:01.770747625 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:515:gst_buffer_copy_into: copy 0xffffa40172f0 to 0xffffa40346f0, offset 0-909/909
0:00:01.770820000 8744 0x3d233140 LOG baseparse gstbaseparse.c:2637:gst_base_parse_finish_frame:<my_h264parse> finished frame at offset 11376, flushing size 909
0:00:01.770881750 8744 0x3d233140 LOG adapter gstadapter.c:634:gst_adapter_flush_unchecked:<GstAdapter at 0x3d20c000> flushing 909 bytes
0:00:01.770936875 8744 0x3d233140 LOG adapter gstadapter.c:656:gst_adapter_flush_unchecked:<GstAdapter at 0x3d20c000> flushing out head buffer
0:00:01.770974250 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:725:_gst_buffer_free: finalize 0xffffa4017d90
0:00:01.771030375 8744 0x3d233140 LOG adapter gstadapter.c:668:gst_adapter_flush_unchecked:<GstAdapter at 0x3d20c000> adapter empty now
0:00:01.771068625 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:725:_gst_buffer_free: finalize 0xffffa40172f0
0:00:01.771109875 8744 0x3d233140 DEBUG GST_MEMORY gstmemory.c:88:_gst_memory_free: free memory 0xffffa4018040
(free_data, 133)
0:00:01.771187375 8744 0x3d233140 DEBUG baseparse gstbaseparse.c:2333:gst_base_parse_handle_and_push_frame:<my_h264parse> no next fallback timestamp
0:00:01.771237875 8744 0x3d233140 LOG baseparse gstbaseparse.c:2392:gst_base_parse_push_frame:<my_h264parse> processing buffer of size 911 with dts 99:99:99.999999999, pts 0:00:04.000000000, duration 0:00:00.500000000
0:00:01.771334250 8744 0x3d233140 DEBUG GST_CAPS gstpad.c:2705:gst_pad_has_current_caps:<my_h264parse:src> check current pad caps video/x-h264, stream-format=(string)byte-stream, alignment=(string)au, framerate=(fraction)0/1, width=(int)176, height=(int)144, interlace-mode=(string)progressive, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8, parsed=(boolean)true, profile=(string)constrained-baseline, level=(string)1.2
0:00:01.771473500 8744 0x3d233140 LOG baseparse gstbaseparse.c:1851:gst_base_parse_update_bitrates:<my_h264parse> frame bitrate 14576, avg bitrate 24514
0:00:01.771533125 8744 0x3d233140 DEBUG h264parse gsth264parse.c:186:gst_h264_parse_reset_frame:<my_h264parse> reset frame
0:00:01.771584000 8744 0x3d233140 LOG baseparse gstbaseparse.c:2535:gst_base_parse_push_frame:<my_h264parse> pushing frame (911 bytes) now..
0:00:01.771653250 8744 0x3d233140 DEBUG GST_SCHEDULING gstpad.c:4277:gst_pad_chain_data_unchecked:<my_vdec:sink> calling chainfunction &gst_video_decoder_chain with buffer buffer: 0xffffa40346f0, pts 0:00:04.000000000, dts 99:99:99.999999999, dur 0:00:00.500000000, size 911, offset 11376, offset_end none, flags 0x2400
0:00:01.771823250 8744 0x3d233140 LOG videodecoder gstvideodecoder.c:2438:gst_video_decoder_chain:<my_vdec> chain PTS 0:00:04.000000000, DTS 99:99:99.999999999 duration 0:00:00.500000000 size 911 flags 2400
0:00:02.253087625 8744 0x3d233770 DEBUG GST_CLOCK gstsystemclock.c:746:gst_system_clock_id_wait_jitter_unlocked: entry 0xffffa4008580 unlocked, status 3, ret 0
0:00:02.253249375 8744 0x3d233770 DEBUG GST_CLOCK gstsystemclock.c:770:gst_system_clock_id_wait_jitter_unlocked: entry 0xffffa4008580 unlocked after timeout
0:00:02.253337375 8744 0x3d233770 DEBUG GST_CLOCK gstclock.c:1046:gst_clock_get_internal_time:<GstSystemClock> internal time 0:15:46.600263750
0:00:02.253410000 8744 0x3d233770 DEBUG GST_CLOCK gstclock.c:1091:gst_clock_get_time:<GstSystemClock> adjusted time 0:15:46.600263750
0:00:02.253468875 8744 0x3d233770 DEBUG GST_CLOCK gstsystemclock.c:792:gst_system_clock_id_wait_jitter_unlocked: entry 0xffffa4008580 finished, diff -1233375
0:00:02.253587250 8744 0x3d233770 DEBUG GST_CLOCK gstclock.c:547:gst_clock_id_wait:<GstSystemClock> done waiting entry 0xffffa4008580, res: 0 (ok)
0:00:02.253658000 8744 0x3d233770 DEBUG basesink gstbasesink.c:2610:gst_base_sink_do_sync:<my_sink> clock returned 0, jitter -0:00:00.488961375
0:00:02.253729250 8744 0x3d233770 DEBUG basesink gstbasesink.c:2921:gst_base_sink_is_too_late:<my_sink> object was scheduled in time
0:00:02.253778875 8744 0x3d233770 DEBUG basesink gstbasesink.c:3538:gst_base_sink_chain_unlocked:<my_sink> rendering object 0xffffa4028790
0:00:02.253833250 8744 0x3d233770 DEBUG basesink gstbasesink.c:994:gst_base_sink_set_last_buffer_unlocked:<my_sink> setting last buffer to 0xffffa4028790
0:00:02.253895625 8744 0x3d233770 LOG videosink gstvideosink.c:228:gst_video_sink_show_frame:<my_sink> rendering frame, ts=0:00:01.500000000
0:00:02.253962125 8744 0x3d233770 LOG waylandsink gstwaylandsink.c:863:gst_wayland_sink_show_frame:<my_sink> render buffer 0xffffa4028790
0:00:02.254034000 8744 0x3d233770 LOG waylandsink gstwaylandsink.c:917:gst_wayland_sink_show_frame:<my_sink> buffer 0xffffa4028790 does not have a wl_buffer from our display, creating it
0:00:02.254119625 8744 0x3d233770 DEBUG waylandsink wllinuxdmabuf.c:108:gst_wl_linux_dmabuf_construct_wl_buffer:<GstWlDisplay at 0x3d1da380> Creating wl_buffer from DMABuf of size 98304 (176 x 144), format NV12 modifier 0x0800000000000001
0:00:02.254817625 8744 0x3d233770 DEBUG waylandsink wllinuxdmabuf.c:175:gst_wl_linux_dmabuf_construct_wl_buffer:<dmabufallocator2> created linux_dmabuf wl_buffer (0xffff9c019150):176x144, fmt=NV12, 2 planes
0:00:02.254813625 8744 0x3d1e1590 DEBUG GST_POLL gstpoll.c:1369:gst_poll_wait: 0x3d21fe80: timeout :99:99:99.999999999
0:00:02.254982500 8744 0x3d233770 DEBUG GST_QOS gstbasesink.c:2751:gst_base_sink_perform_qos:<my_sink> start: 0:00:01.500000000, stop 0:00:02.000000000, entered 0:00:01.011038625, left 0:00:01.500000000, pt: 0:00:00.011038625, duration 0:00:00.500000000,jitter -488961375
0:00:02.255114500 8744 0x3d233770 DEBUG GST_QOS gstbasesink.c:2755:gst_base_sink_perform_qos:<my_sink> avg_pt: 0:00:00.012504437, avg_rate: 0.0255073
0:00:02.255206250 8744 0x3d233770 DEBUG GST_QOS gstbasesink.c:2785:gst_base_sink_perform_qos:<my_sink> updated: avg_pt: 0:00:00.012321210, avg_rate: 0.0254532
0:00:02.255282125 8744 0x3d233770 DEBUG GST_QOS gstbasesink.c:2679:gst_base_sink_send_qos:<my_sink> qos: type 0, proportion: 0.025453, diff -488961375, timestamp 0:00:01.500000000
0:00:02.255362250 8744 0x3d1e1590 LOG waylandsink wlbuffer.c:137:buffer_release:<GstWlBuffer at 0xffff9c00b840> wl_buffer::release (GstBuffer: 0xffffa4028680)
0:00:02.255354375 8744 0x3d233770 LOG GST_EVENT gstevent.c:1146:gst_event_new_qos: creating qos type 0, proportion 0.025453, diff -488961375, timestamp 0:00:01.500000000
0:00:02.255433125 8744 0x3d1e1590 LOG GST_BUFFER gstbuffer.c:710:_gst_buffer_dispose: release 0xffffa4028680 to pool 0xffffa4012e90
0:00:02.255503750 8744 0x3d1e1590 DEBUG GST_BUFFER gstbuffer.c:2383:gst_buffer_foreach_meta: remove metadata 0xffff9c0024a8 (GstDmabufMeta)
0:00:02.255539625 8744 0x3d233770 DEBUG GST_EVENT gstevent.c:306:gst_event_new_custom: creating new event 0xffffa40086d0 qos 48641
0:00:02.255573750 8744 0x3d1e1590 DEBUG v4l2bufferpool gstv4l2bufferpool.c:1420:gst_v4l2_buffer_pool_release_buffer:<my_vdec:pool:src> release buffer 0xffffa4028680
0:00:02.255643375 8744 0x3d1e1590 LOG v4l2bufferpool gstv4l2bufferpool.c:1059:gst_v4l2_buffer_pool_qbuf:<my_vdec:pool:src> queuing buffer 2
0:00:02.255623500 8744 0x3d233770 LOG GST_PADS gstpad.c:5351:gst_pad_push_event_unchecked:<my_sink:sink> sending event 0xffffa40086d0 (qos) to peerpad <my_vdec:src>
0:00:02.255754750 8744 0x3d1e1590 LOG v4l2allocator gstv4l2allocator.c:1265:gst_v4l2_allocator_qbuf:<my_vdec:pool:src:allocator> queued buffer 2 (flags 0x4003)
0:00:02.255828875 8744 0x3d1e1590 DEBUG GST_POLL gstpoll.c:1369:gst_poll_wait: 0x3d21fe80: timeout :99:99:99.999999999
0:00:02.255857250 8744 0x3d233770 DEBUG GST_EVENT gstpad.c:5638:gst_pad_send_event_unchecked:<my_vdec:src> have event type qos event: 0xffffa40086d0, time 99:99:99.999999999, seq-num 53, GstEventQOS, type=(GstQOSType)GST_QOS_TYPE_OVERFLOW, proportion=(double)0.025453220039062502, diff=(gint64)-488961375, timestamp=(guint64)1500000000;
0:00:02.256072125 8744 0x3d233770 DEBUG videodecoder gstvideodecoder.c:1584:gst_video_decoder_src_event:<my_vdec> received event 48641, qos
0:00:02.256133250 8744 0x3d233770 DEBUG videodecoder gstvideodecoder.c:1485:gst_video_decoder_src_event_default:<my_vdec> received event 48641, qos
0:00:02.256200250 8744 0x3d233770 DEBUG videodecoder gstvideodecoder.c:1556:gst_video_decoder_src_event_default:<my_vdec> got QoS 0:00:01.500000000, -0:00:00.488961375, 0.0254532
0:00:02.256304000 8744 0x3d233770 LOG GST_PADS gstpad.c:5351:gst_pad_push_event_unchecked:<my_vdec:sink> sending event 0xffffa40086d0 (qos) to peerpad <my_h264parse:src>
0:00:02.256383250 8744 0x3d233770 DEBUG GST_EVENT gstpad.c:5638:gst_pad_send_event_unchecked:<my_h264parse:src> have event type qos event: 0xffffa40086d0, time 99:99:99.999999999, seq-num 53, GstEventQOS, type=(GstQOSType)GST_QOS_TYPE_OVERFLOW, proportion=(double)0.025453220039062502, diff=(gint64)-488961375, timestamp=(guint64)1500000000;
0:00:02.256547250 8744 0x3d233770 DEBUG baseparse gstbaseparse.c:1602:gst_base_parse_src_event:<my_h264parse> event 48641, qos
0:00:02.256611750 8744 0x3d233770 LOG GST_PADS gstpad.c:3087:gst_pad_event_default:<my_h264parse:src> default event handler for event qos event: 0xffffa40086d0, time 99:99:99.999999999, seq-num 53, GstEventQOS, type=(GstQOSType)GST_QOS_TYPE_OVERFLOW, proportion=(double)0.025453220039062502, diff=(gint64)-488961375, timestamp=(guint64)1500000000;
0:00:02.256770500 8744 0x3d233770 DEBUG GST_PADS gstpad.c:2897:gst_pad_iterate_internal_links_default:<my_h264parse:src> Making iterator
0:00:02.256838000 8744 0x3d233770 LOG GST_PADS gstpad.c:3007:gst_pad_forward:<my_h264parse:src> calling forward function on pad my_h264parse:sink
0:00:02.256899875 8744 0x3d233770 LOG GST_PADS gstpad.c:3052:event_forward_func:<my_h264parse:sink> Reffing and pushing event 0xffffa40086d0 (qos) to my_h264parse:sink
0:00:02.256973250 8744 0x3d233770 LOG GST_PADS gstpad.c:5351:gst_pad_push_event_unchecked:<my_h264parse:sink> sending event 0xffffa40086d0 (qos) to peerpad <my_appsrc:src>
0:00:02.257112375 8744 0x3d233770 DEBUG GST_EVENT gstpad.c:5638:gst_pad_send_event_unchecked:<my_appsrc:src> have event type qos event: 0xffffa40086d0, time 99:99:99.999999999, seq-num 53, GstEventQOS, type=(GstQOSType)GST_QOS_TYPE_OVERFLOW, proportion=(double)0.025453220039062502, diff=(gint64)-488961375, timestamp=(guint64)1500000000;
0:00:02.257285000 8744 0x3d233770 DEBUG basesrc gstbasesrc.c:2027:gst_base_src_default_event:<my_appsrc> handle event qos event: 0xffffa40086d0, time 99:99:99.999999999, seq-num 53, GstEventQOS, type=(GstQOSType)GST_QOS_TYPE_OVERFLOW, proportion=(double)0.025453220039062502, diff=(gint64)-488961375, timestamp=(guint64)1500000000;
0:00:02.257437500 8744 0x3d233770 DEBUG GST_QOS gstbasesrc.c:2013:gst_base_src_update_qos:<my_appsrc> qos: proportion: 0.025453, diff -488961375, timestamp 0:00:01.500000000
0:00:02.257526375 8744 0x3d233770 DEBUG GST_PADS gstpad.c:5712:gst_pad_send_event_unchecked:<my_appsrc:src> sent event, ret ok
0:00:02.257583750 8744 0x3d233770 LOG GST_PADS gstpad.c:5359:gst_pad_push_event_unchecked:<my_h264parse:sink> sent event 0xffffa40086d0 (qos) to peerpad <my_appsrc:src>, ret ok
0:00:02.257706875 8744 0x3d233770 LOG GST_EVENT gstevent.c:223:_gst_event_free: freeing event 0xffffa40086d0 type qos
0:00:02.257779875 8744 0x3d233770 DEBUG GST_PADS gstpad.c:5712:gst_pad_send_event_unchecked:<my_h264parse:src> sent event, ret ok
0:00:02.257837125 8744 0x3d233770 LOG GST_PADS gstpad.c:5359:gst_pad_push_event_unchecked:<my_vdec:sink> sent event 0xffffa40086d0 (qos) to peerpad <my_h264parse:src>, ret ok
0:00:02.257919000 8744 0x3d233770 DEBUG GST_PADS gstpad.c:5712:gst_pad_send_event_unchecked:<my_vdec:src> sent event, ret ok
0:00:02.257974500 8744 0x3d233770 LOG GST_PADS gstpad.c:5359:gst_pad_push_event_unchecked:<my_sink:sink> sent event 0xffffa40086d0 (qos) to peerpad <my_vdec:src>, ret ok
0:00:02.258052000 8744 0x3d233770 DEBUG basesink gstbasesink.c:3577:gst_base_sink_chain_unlocked:<my_sink> object unref after render 0xffffa4028790
0:00:02.258116625 8744 0x3d233770 DEBUG GST_SCHEDULING gstpad.c:4283:gst_pad_chain_data_unchecked:<my_sink:sink> called chainfunction &gst_base_sink_chain with buffer 0xffffa4028790, returned ok
0:00:02.258216500 8744 0x3d233770 LOG v4l2videodec gstv4l2videodec.c:605:gst_v4l2_video_dec_loop:<my_vdec> Allocate output buffer
0:00:02.258276000 8744 0x3d233770 DEBUG v4l2bufferpool gstv4l2bufferpool.c:1342:gst_v4l2_buffer_pool_acquire_buffer:<my_vdec:pool:src> acquire
0:00:02.258257625 8744 0x3d233140 LOG videodecoder gstvideodecoder.c:2595:gst_video_decoder_new_frame:<my_vdec> Created new frame 0xffffa4034a20 (sfn:8)
0:00:02.258340000 8744 0x3d233770 LOG v4l2bufferpool gstv4l2bufferpool.c:999:gst_v4l2_buffer_pool_poll:<my_vdec:pool:src> polling device
0:00:02.258421125 8744 0x3d233770 DEBUG GST_POLL gstpoll.c:1369:gst_poll_wait: 0xffff9c007400: timeout :99:99:99.999999999
0:00:02.258402250 8744 0x3d233140 LOG videodecoder gstvideodecoder.c:3410:gst_video_decoder_decode_frame:<my_vdec> PTS 0:00:04.000000000, DTS 99:99:99.999999999, dist 8
0:00:02.258554125 8744 0x3d233140 DEBUG v4l2videodec gstv4l2videodec.c:704:gst_v4l2_video_dec_handle_frame:<my_vdec> Handling frame 8
0:00:02.258619500 8744 0x3d233140 DEBUG v4l2bufferpool gstv4l2bufferpool.c:1745:gst_v4l2_buffer_pool_process:<my_vdec:pool:sink> process buffer 0xffffa4034a58
0:00:02.258674625 8744 0x3d233140 LOG v4l2bufferpool gstv4l2bufferpool.c:1923:gst_v4l2_buffer_pool_process:<my_vdec:pool:sink> alloc buffer from our pool
0:00:02.258723500 8744 0x3d233140 DEBUG v4l2bufferpool gstv4l2bufferpool.c:1342:gst_v4l2_buffer_pool_acquire_buffer:<my_vdec:pool:sink> acquire
0:00:02.258774000 8744 0x3d233140 LOG bufferpool gstbufferpool.c:1128:default_acquire_buffer:<my_vdec:pool:sink> acquired buffer 0xffffa40170d0
0:00:02.258830500 8744 0x3d233140 LOG v4l2bufferpool gstv4l2bufferpool.c:116:gst_v4l2_buffer_pool_copy_buffer:<my_vdec:pool:sink> copying buffer
0:00:02.258877625 8744 0x3d233140 DEBUG v4l2bufferpool gstv4l2bufferpool.c:141:gst_v4l2_buffer_pool_copy_buffer:<my_vdec:pool:sink> copy raw bytes
0:00:02.258917125 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1721:gst_buffer_map_range: buffer 0xffffa40346f0, idx 0, length -1, flags 0001
0:00:02.258978500 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:213:_get_merged_memory: buffer 0xffffa40346f0, idx 0, length 1
0:00:02.259036000 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1826:gst_buffer_fill: buffer 0xffffa40170d0, offset 0, size 911
0:00:02.259099250 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1582:gst_buffer_resize_range: trim 0xffffa40170d0 0-911 size:6291456 offs:0 max:6291456
0:00:02.259165250 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:515:gst_buffer_copy_into: copy 0xffffa40346f0 to 0xffffa40170d0, offset 0-911/911
0:00:02.259277500 8744 0x3d233140 LOG GST_PERFORMANCE gstv4l2bufferpool.c:155:gst_v4l2_buffer_pool_copy_buffer:<my_vdec:pool:sink> slow copy into buffer 0xffffa40170d0
0:00:02.259339750 8744 0x3d233140 LOG v4l2bufferpool gstv4l2bufferpool.c:1059:gst_v4l2_buffer_pool_qbuf:<my_vdec:pool:sink> queuing buffer 0
0:00:02.259472000 8744 0x3d233140 LOG v4l2allocator gstv4l2allocator.c:1265:gst_v4l2_allocator_qbuf:<my_vdec:pool:sink:allocator> queued buffer 0 (flags 0x4003)
0:00:02.259527750 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:710:_gst_buffer_dispose: release 0xffffa40170d0 to pool 0xffffa4012410
0:00:02.259587750 8744 0x3d233140 DEBUG v4l2bufferpool gstv4l2bufferpool.c:1420:gst_v4l2_buffer_pool_release_buffer:<my_vdec:pool:sink> release buffer 0xffffa40170d0
0:00:02.259640500 8744 0x3d233140 LOG v4l2bufferpool gstv4l2bufferpool.c:1503:gst_v4l2_buffer_pool_release_buffer:<my_vdec:pool:sink> buffer 0 is queued
0:00:02.259693875 8744 0x3d233140 LOG v4l2bufferpool gstv4l2bufferpool.c:999:gst_v4l2_buffer_pool_poll:<my_vdec:pool:sink> polling device
0:00:02.259731625 8744 0x3d233140 DEBUG GST_POLL gstpoll.c:1369:gst_poll_wait: 0xffffa4005cf0: timeout :99:99:99.999999999
0:00:02.259807000 8744 0x3d233140 DEBUG GST_POLL gstpoll.c:1188:gst_poll_fd_has_error: 0xffffa4005cf0: fd (fd:18, idx:1) 0
0:00:02.259865125 8744 0x3d233140 DEBUG GST_POLL gstpoll.c:1265:gst_poll_fd_can_read_pri_unlocked: 0xffffa4005cf0: fd (fd:18, idx:1) 0
0:00:02.259879500 8744 0x3d233770 DEBUG GST_POLL gstpoll.c:1188:gst_poll_fd_has_error: 0xffff9c007400: fd (fd:23, idx:1) 0
0:00:02.259928375 8744 0x3d233140 LOG v4l2bufferpool gstv4l2bufferpool.c:1322:gst_v4l2_buffer_pool_dequeue:<my_vdec:pool:sink> dequeueing a buffer
0:00:02.259945625 8744 0x3d233770 DEBUG GST_POLL gstpoll.c:1265:gst_poll_fd_can_read_pri_unlocked: 0xffff9c007400: fd (fd:23, idx:1) 0
0:00:02.259993625 8744 0x3d233140 LOG v4l2allocator gstv4l2allocator.c:1312:gst_v4l2_allocator_dqbuf:<my_vdec:pool:sink:allocator> dequeued buffer 1 (flags 0x4001)
0:00:02.260014625 8744 0x3d233770 LOG v4l2bufferpool gstv4l2bufferpool.c:1322:gst_v4l2_buffer_pool_dequeue:<my_vdec:pool:src> dequeueing a buffer
0:00:02.260071000 8744 0x3d233140 LOG v4l2bufferpool gstv4l2bufferpool.c:1194:gst_v4l2_buffer_pool_dqbuf:<my_vdec:pool:sink> dequeued buffer 0xffffa4017840 seq:0 (ix=1), mem 0xffffa4018280 used 952, plane=0, flags 00004001, ts 0:00:03.500000000, pool-queued=1, buffer=0xffffa4017840
0:00:02.260117125 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:1312:gst_v4l2_allocator_dqbuf:<my_vdec:pool:src:allocator> dequeued buffer 4 (flags 0x4001)
0:00:02.260182000 8744 0x3d233140 DEBUG v4l2bufferpool gstv4l2bufferpool.c:1420:gst_v4l2_buffer_pool_release_buffer:<my_vdec:pool:sink> release buffer 0xffffa4017840
0:00:02.260248500 8744 0x3d233140 LOG v4l2bufferpool gstv4l2bufferpool.c:1488:gst_v4l2_buffer_pool_release_buffer:<my_vdec:pool:sink> buffer 1 not queued, putting on free list
0:00:02.260308500 8744 0x3d233140 LOG bufferpool gstbufferpool.c:1284:default_release_buffer:<my_vdec:pool:sink> released buffer 0xffffa4017840 0
0:00:02.260315000 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:1341:gst_v4l2_allocator_dqbuf:<my_vdec:pool:src:allocator> Dequeued capture buffer, length: 65536 bytesused: 65536 data_offset: 0
0:00:02.260370375 8744 0x3d233140 DEBUG GST_BUFFER gstbuffer.c:1375:gst_buffer_is_memory_range_writable: idx 0, length -1
0:00:02.260437000 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:1341:gst_v4l2_allocator_dqbuf:<my_vdec:pool:src:allocator> Dequeued capture buffer, length: 32768 bytesused: 32768 data_offset: 0
0:00:02.260461875 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:799:gst_buffer_new: new 0xffffa4034b30
0:00:02.260551250 8744 0x3d233770 LOG v4l2bufferpool gstv4l2bufferpool.c:1194:gst_v4l2_buffer_pool_dqbuf:<my_vdec:pool:src> dequeued buffer 0xffffa40288a0 seq:0 (ix=4), mem 0xffff9c01e150 used 65536, plane=0, flags 00004001, ts 0:00:00.000000000, pool-queued=20, buffer=0xffffa40288a0
0:00:02.260576125 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:515:gst_buffer_copy_into: copy 0xffffa40346f0 to 0xffffa4034b30, offset 0-0/911
0:00:02.260688500 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:725:_gst_buffer_free: finalize 0xffffa40346f0
0:00:02.260656000 8744 0x3d233770 LOG v4l2bufferpool gstv4l2bufferpool.c:1194:gst_v4l2_buffer_pool_dqbuf:<my_vdec:pool:src> dequeued buffer 0xffffa40288a0 seq:0 (ix=4), mem 0xffff9c01e270 used 32768, plane=1, flags 00004001, ts 0:00:00.000000000, pool-queued=20, buffer=0xffffa40288a0
0:00:02.260747375 8744 0x3d233140 DEBUG GST_MEMORY gstmemory.c:88:_gst_memory_free: free memory 0xffffa4018160
0:00:02.260806250 8744 0x3d233770 LOG v4l2videodec gstv4l2videodec.c:629:gst_v4l2_video_dec_loop:<my_vdec> Process output buffer
0:00:02.260870125 8744 0x3d233770 DEBUG v4l2bufferpool gstv4l2bufferpool.c:1745:gst_v4l2_buffer_pool_process:<my_vdec:pool:src> process buffer 0xffffb1d697e8
0:00:02.260907500 8744 0x3d233140 DEBUG GST_SCHEDULING gstpad.c:4283:gst_pad_chain_data_unchecked:<my_vdec:sink> called chainfunction &gst_video_decoder_chain with buffer 0xffffa40346f0, returned ok
0:00:02.260935250 8744 0x3d233770 LOG v4l2videodec gstv4l2videodec.c:460:gst_v4l2_video_dec_get_oldest_frame:<my_vdec> Oldest frame is 4 0:00:02.000000000 and 4 frames left
0:00:02.260980625 8744 0x3d233140 LOG baseparse gstbaseparse.c:2537:gst_base_parse_push_frame:<my_h264parse> frame pushed, flow ok
0:00:02.261008875 8744 0x3d233770 DEBUG GST_BUFFER gstbuffer.c:2201:gst_buffer_add_meta: alloc metadata 0xffff9c001ef8 (GstDmabufMeta) of size 24
0:00:02.261036875 8744 0x3d233140 LOG baseparse gstbaseparse.c:2166:gst_base_parse_handle_buffer:<my_h264parse> handle_frame skipped 0, flushed 909
0:00:02.261146750 8744 0x3d233770 DEBUG v4l2videodec gstv4l2videodec.c:647:gst_v4l2_video_dec_loop:<my_vdec> add drm modifier: 576460752303423489
0:00:02.261181875 8744 0x3d233140 DEBUG baseparse gstbaseparse.c:3215:gst_base_parse_chain:<my_h264parse> not enough data available (only 0 bytes)
0:00:02.261235125 8744 0x3d233140 LOG baseparse gstbaseparse.c:3277:gst_base_parse_chain:<my_h264parse> chain leaving
0:00:02.261291500 8744 0x3d233770 LOG videodecoder gstvideodecoder.c:2985:gst_video_decoder_finish_frame:<my_vdec> finish frame 0xffffa40341a0
0:00:02.261289125 8744 0x3d233140 DEBUG GST_SCHEDULING gstpad.c:4283:gst_pad_chain_data_unchecked:<my_h264parse:sink> called chainfunction &gst_base_parse_chain with buffer 0xffffa4017d90, returned ok
0:00:02.261364500 8744 0x3d233770 LOG videodecoder gstvideodecoder.c:2625:gst_video_decoder_prepare_finish_frame:<my_vdec> n 5 in 0 out 0
0:00:02.261402875 8744 0x3d233140 LOG basesrc gstbasesrc.c:2828:gst_base_src_loop:<my_appsrc> next_ts 0:00:00.000012285 size 4096
0:00:02.261475625 8744 0x3d233140 DEBUG basesrc gstbasesrc.c:2399:gst_base_src_update_length:<my_appsrc> reading offset 12285, length 4096, size -1, segment.stop -1, maxsize -1
0:00:02.261547000 8744 0x3d233140 DEBUG basesrc gstbasesrc.c:2506:gst_base_src_get_range:<my_appsrc> calling create offset 12285 length 4096, time 0
0:00:02.261426000 8744 0x3d233770 LOG videodecoder gstvideodecoder.c:2634:gst_video_decoder_prepare_finish_frame:<my_vdec> finish frame 0xffffa40341a0 (#4) sync:0 PTS:0:00:02.000000000 DTS:99:99:99.999999999
(get_data, 99)
(get_data, 108)read_ret: 8, target frame num: 9, read frame num: 9
0:00:02.261816250 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:799:gst_buffer_new: new 0xffffa40172f0
0:00:02.261838250 8744 0x3d233770 DEBUG videodecoder gstvideodecoder.c:2676:gst_video_decoder_prepare_finish_frame:<my_vdec> sync timestamp 0:00:02.000000000 diff -0:00:02.000000000
0:00:02.261865750 8744 0x3d233140 DEBUG GST_MEMORY gstmemory.c:139:gst_memory_init: new memory 0xffffa40180d0, maxsize:1395 offset:0 size:1395
0:00:02.261937250 8744 0x3d233770 DEBUG default gstvideoutils.c:40:_gst_video_codec_frame_free: free frame 0xffffa40341a0
0:00:02.261959000 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:414:_memory_add: buffer 0xffffa40172f0, idx -1, mem 0xffffa40180d0
0:00:02.261986500 8744 0x3d233770 LOG GST_BUFFER gstbuffer.c:725:_gst_buffer_free: finalize 0xffffa40342b0
0:00:02.262082875 8744 0x3d233140 DEBUG appsrc gstappsrc.c:1863:gst_app_src_push_internal:<my_appsrc> queueing buffer 0xffffa40172f0
0:00:02.262085125 8744 0x3d233770 LOG videodecoder gstvideodecoder.c:3130:gst_video_decoder_clip_and_push_buf:<my_vdec> accepting buffer inside segment: 0:00:02.000000000 0:00:02.500000000 seg 0:00:00.000000000 to 99:99:99.999999999 time 0:00:00.000000000
0:00:02.262154000 8744 0x3d233140 LOG appsrc gstappsrc.c:1221:gst_app_src_create:<my_appsrc> have buffer 0xffffa40172f0 of size 1395
0:00:02.262225875 8744 0x3d233140 DEBUG basesrc gstbasesrc.c:2360:gst_base_src_do_sync:<my_appsrc> no sync needed
0:00:02.262202250 8744 0x3d233770 DEBUG videodecoder gstvideodecoder.c:3197:gst_video_decoder_clip_and_push_buf:<my_vdec> pushing buffer 0xffffa40288a0 of size 98304, PTS 0:00:02.000000000, dur 0:00:00.500000000
0:00:02.262287375 8744 0x3d233140 DEBUG basesrc gstbasesrc.c:2597:gst_base_src_get_range:<my_appsrc> buffer ok
0:00:02.262353375 8744 0x3d233770 DEBUG GST_SCHEDULING gstpad.c:4277:gst_pad_chain_data_unchecked:<my_sink:sink> calling chainfunction &gst_base_sink_chain with buffer buffer: 0xffffa40288a0, pts 0:00:02.000000000, dts 99:99:99.999999999, dur 0:00:00.500000000, size 98304, offset none, offset_end none, flags 0x0
0:00:02.262382125 8744 0x3d233140 DEBUG GST_SCHEDULING gstpad.c:4277:gst_pad_chain_data_unchecked:<my_h264parse:sink> calling chainfunction &gst_base_parse_chain with buffer buffer: 0xffffa40172f0, pts 0:00:04.500000000, dts 99:99:99.999999999, dur 0:00:00.500000000, size 1395, offset none, offset_end none, flags 0x0
0:00:02.262505250 8744 0x3d233140 DEBUG baseparse gstbaseparse.c:3030:gst_base_parse_chain:<my_h264parse> chain
0:00:02.262481250 8744 0x3d233770 DEBUG basesink gstbasesink.c:3421:gst_base_sink_chain_unlocked:<my_sink> got times start: 0:00:02.000000000, end: 0:00:02.500000000
0:00:02.262565750 8744 0x3d233140 LOG baseparse gstbaseparse.c:3150:gst_base_parse_chain:<my_h264parse> buffer size: 1395, offset = -1, dts 99:99:99.999999999, pts 0:00:04.500000000
0:00:02.262601500 8744 0x3d233770 DEBUG basesink gstbasesink.c:2006:gst_base_sink_get_sync_times:<my_sink> got times start: 0:00:02.000000000, stop: 0:00:02.500000000, do_sync 1
0:00:02.262662625 8744 0x3d233140 LOG adapter gstadapter.c:389:gst_adapter_push:<GstAdapter at 0x3d20c000> pushing 0xffffa40172f0 first 1395 bytes
0:00:02.262688875 8744 0x3d233770 LOG basesink gstbasesink.c:2551:gst_base_sink_do_sync:<my_sink> avg frame diff 0:00:00.500000000
0:00:02.262726875 8744 0x3d233140 LOG adapter gstadapter.c:290:update_timestamps_and_offset:<GstAdapter at 0x3d20c000> new pts 0:00:04.500000000
0:00:02.262756500 8744 0x3d233770 DEBUG basesink gstbasesink.c:2591:gst_base_sink_do_sync:<my_sink> reset rc_time to time 0:00:02.000000000
0:00:02.262797250 8744 0x3d233140 LOG adapter gstadapter.c:974:gst_adapter_get_buffer:<GstAdapter at 0x3d20c000> getting buffer of 1395 bytes
0:00:02.262819250 8744 0x3d233770 DEBUG basesink gstbasesink.c:2603:gst_base_sink_do_sync:<my_sink> possibly waiting for clock to reach 0:00:02.000000000, adjusted 0:00:02.000000000
0:00:02.262898750 8744 0x3d233140 LOG adapter gstadapter.c:989:gst_adapter_get_buffer:<GstAdapter at 0x3d20c000> providing buffer of 1395 bytes as head buffer
0:00:02.262930125 8744 0x3d233770 LOG basesink gstbasesink.c:2177:gst_base_sink_wait_clock:<my_sink> time 0:00:02.000000000, base_time 0:15:45.099030375
0:00:02.262955875 8744 0x3d233140 LOG baseparse gstbaseparse.c:2148:gst_base_parse_handle_buffer:<my_h264parse> handling buffer of size 1395 with dts 99:99:99.999999999, pts 0:00:04.500000000, duration 0:00:00.500000000
0:00:02.263010375 8744 0x3d233770 DEBUG GST_CLOCK gstclock.c:537:gst_clock_id_wait:<GstSystemClock> waiting on clock entry 0xffffa4008580
0:00:02.263058875 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:799:gst_buffer_new: new 0xffffa4017d90
0:00:02.263122625 8744 0x3d233770 DEBUG GST_CLOCK gstclock.c:1046:gst_clock_get_internal_time:<GstSystemClock> internal time 0:15:46.610068500
0:00:02.263138000 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:515:gst_buffer_copy_into: copy 0xffffa40172f0 to 0xffffa4017d90, offset 0-1395/1395
0:00:02.263190125 8744 0x3d233770 DEBUG GST_CLOCK gstclock.c:1091:gst_clock_get_time:<GstSystemClock> adjusted time 0:15:46.610068500
0:00:02.263201000 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:414:_memory_add: buffer 0xffffa4017d90, idx -1, mem 0xffffa40180d0
0:00:02.263257500 8744 0x3d233770 DEBUG GST_CLOCK gstsystemclock.c:718:gst_system_clock_id_wait_jitter_unlocked: entry 0xffffa4008580 time 0:15:47.099030375 now 0:15:46.610068500 diff (time-now) 488961875
0:00:02.263285500 8744 0x3d233140 DEBUG GST_PERFORMANCE gstminiobject.c:317:gst_mini_object_make_writable: copy GstBuffer miniobject 0xffffa40172f0 -> 0xffffa4017d90
0:00:02.263341750 8744 0x3d233770 DEBUG GST_POLL gstpoll.c:1369:gst_poll_wait: 0xffffa0003c00: timeout :0:00:00.488961875
0:00:02.263382750 8744 0x3d233140 LOG baseparse gstbaseparse.c:2110:gst_base_parse_prepare_frame:<my_h264parse> preparing frame at offset 18446744073709551615 (0xffffffffffffffff) of size 1395
0:00:02.263450750 8744 0x3d233140 LOG baseparse gstbaseparse.c:764:gst_base_parse_update_frame:<my_h264parse> marking as new frame
0:00:02.263492000 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1721:gst_buffer_map_range: buffer 0xffffa4017d90, idx 0, length -1, flags 0001
0:00:02.263549250 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:213:_get_merged_memory: buffer 0xffffa4017d90, idx 0, length 1
0:00:02.263612250 8744 0x3d233140 LOG h264parse gsth264parse.c:1097:gst_h264_parse_handle_frame:<my_h264parse> parsing new frame
0:00:02.263660250 8744 0x3d233140 DEBUG h264parse gsth264parse.c:186:gst_h264_parse_reset_frame:<my_h264parse> reset frame
0:00:02.263710250 8744 0x3d233140 DEBUG h264parse gsth264parse.c:1112:gst_h264_parse_handle_frame:<my_h264parse> last parse position 0
0:00:02.263760375 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:242:gst_h264_parse_nalu_header: Nal type 9, ref_idc 0
0:00:02.263810875 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:242:gst_h264_parse_nalu_header: Nal type 9, ref_idc 0
0:00:02.263858000 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:1366:gst_h264_parser_identify_nalu: Complete nal found. Off: 4, Size: 2
0:00:02.263914625 8744 0x3d233140 DEBUG h264parse gsth264parse.c:1162:gst_h264_parse_handle_frame:<my_h264parse> complete nal (offset, size): (4, 2)
0:00:02.263971375 8744 0x3d233140 DEBUG h264parse gsth264parse.c:1219:gst_h264_parse_handle_frame:<my_h264parse> 0xffffa403c000 complete nal found. Off: 4, Size: 2
0:00:02.264068250 8744 0x3d233140 DEBUG h264parse gsth264parse.c:721:gst_h264_parse_process_nal:<my_h264parse> processing nal of type 9 AU delimiter, size 2
0:00:02.264130250 8744 0x3d233140 LOG h264parse gsth264parse.c:895:gst_h264_parse_process_nal:<my_h264parse> collecting NAL in AVC frame
0:00:02.264178750 8744 0x3d233140 DEBUG h264parse gsth264parse.c:428:gst_h264_parse_wrap_nal:<my_h264parse> nal length 2
0:00:02.264227625 8744 0x3d233140 DEBUG GST_MEMORY gstmemory.c:139:gst_memory_init: new memory 0xffffa400ab50, maxsize:13 offset:0 size:6
0:00:02.264285250 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:799:gst_buffer_new: new 0xffffa4017a60
0:00:02.264328250 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:414:_memory_add: buffer 0xffffa4017a60, idx -1, mem 0xffffa400ab50
0:00:02.264378500 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:855:gst_buffer_new_allocate: new buffer 0xffffa4017a60 of size 6 from allocator (nil)
0:00:02.264431125 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1826:gst_buffer_fill: buffer 0xffffa4017a60, offset 0, size 4
0:00:02.264483125 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1826:gst_buffer_fill: buffer 0xffffa4017a60, offset 4, size 2
0:00:02.264534625 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1582:gst_buffer_resize_range: trim 0xffffa4017a60 0-6 size:6 offs:0 max:13
0:00:02.264610375 8744 0x3d233140 LOG adapter gstadapter.c:389:gst_adapter_push:<GstAdapter at 0x3d20c120> pushing 0xffffa4017a60 first 6 bytes
0:00:02.264669625 8744 0x3d233140 DEBUG h264parse gsth264parse.c:914:gst_h264_parse_collect_nal:<my_h264parse> parsing collected nal
0:00:02.264710000 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:242:gst_h264_parse_nalu_header: Nal type 6, ref_idc 0
0:00:02.264766250 8744 0x3d233140 LOG h264parse gsth264parse.c:922:gst_h264_parse_collect_nal:<my_h264parse> nal type: 9 AU delimiter
0:00:02.264822500 8744 0x3d233140 LOG h264parse gsth264parse.c:941:gst_h264_parse_collect_nal:<my_h264parse> next nal type: 6 SEI
0:00:02.264878000 8744 0x3d233140 LOG h264parse gsth264parse.c:948:gst_h264_parse_collect_nal:<my_h264parse> au complete: 0
0:00:02.264929250 8744 0x3d233140 DEBUG h264parse gsth264parse.c:1264:gst_h264_parse_handle_frame:<my_h264parse> Looking for more
0:00:02.264969125 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:242:gst_h264_parse_nalu_header: Nal type 6, ref_idc 0
0:00:02.265015500 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:1366:gst_h264_parser_identify_nalu: Complete nal found. Off: 10, Size: 21
0:00:02.265235125 8744 0x3d233140 DEBUG h264parse gsth264parse.c:1162:gst_h264_parse_handle_frame:<my_h264parse> complete nal (offset, size): (10, 21)
0:00:02.265296625 8744 0x3d233140 DEBUG h264parse gsth264parse.c:1219:gst_h264_parse_handle_frame:<my_h264parse> 0xffffa403c000 complete nal found. Off: 10, Size: 21
0:00:02.265360875 8744 0x3d233140 DEBUG h264parse gsth264parse.c:721:gst_h264_parse_process_nal:<my_h264parse> processing nal of type 6 SEI, size 21
0:00:02.265413500 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:2292:gst_h264_parser_parse_sei: parsing SEI nal
0:00:02.265458875 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:1127:gst_h264_parser_parse_sei_message: parsing "Sei message"
0:00:02.265503250 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:1147:gst_h264_parser_parse_sei_message: SEI message received: payloadType 5, payloadSize = 136 bits
0:00:02.265582125 8744 0x3d233140 DEBUG h264parse gsth264parse.c:807:gst_h264_parse_process_nal:<my_h264parse> marking SEI in frame at offset 6
0:00:02.265693000 8744 0x3d233140 LOG h264parse gsth264parse.c:895:gst_h264_parse_process_nal:<my_h264parse> collecting NAL in AVC frame
0:00:02.265742625 8744 0x3d233140 DEBUG h264parse gsth264parse.c:428:gst_h264_parse_wrap_nal:<my_h264parse> nal length 21
0:00:02.265796750 8744 0x3d233140 DEBUG GST_MEMORY gstmemory.c:139:gst_memory_init: new memory 0xffffa401b4e0, maxsize:32 offset:0 size:25
0:00:02.265855250 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:799:gst_buffer_new: new 0xffffa4017950
0:00:02.265898250 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:414:_memory_add: buffer 0xffffa4017950, idx -1, mem 0xffffa401b4e0
0:00:02.265949625 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:855:gst_buffer_new_allocate: new buffer 0xffffa4017950 of size 25 from allocator (nil)
0:00:02.266002625 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1826:gst_buffer_fill: buffer 0xffffa4017950, offset 0, size 4
0:00:02.266057000 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1826:gst_buffer_fill: buffer 0xffffa4017950, offset 4, size 21
0:00:02.266110375 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1582:gst_buffer_resize_range: trim 0xffffa4017950 0-25 size:25 offs:0 max:32
0:00:02.266189875 8744 0x3d233140 LOG adapter gstadapter.c:395:gst_adapter_push:<GstAdapter at 0x3d20c120> pushing 0xffffa4017950 25 bytes at end, size now 31
0:00:02.266255000 8744 0x3d233140 DEBUG h264parse gsth264parse.c:914:gst_h264_parse_collect_nal:<my_h264parse> parsing collected nal
0:00:02.266298375 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:242:gst_h264_parse_nalu_header: Nal type 1, ref_idc 1
0:00:02.266356625 8744 0x3d233140 LOG h264parse gsth264parse.c:922:gst_h264_parse_collect_nal:<my_h264parse> nal type: 6 SEI
0:00:02.266412500 8744 0x3d233140 LOG h264parse gsth264parse.c:941:gst_h264_parse_collect_nal:<my_h264parse> next nal type: 1 Slice
0:00:02.266468625 8744 0x3d233140 LOG h264parse gsth264parse.c:948:gst_h264_parse_collect_nal:<my_h264parse> au complete: 0
0:00:02.266519625 8744 0x3d233140 DEBUG h264parse gsth264parse.c:1264:gst_h264_parse_handle_frame:<my_h264parse> Looking for more
0:00:02.266558750 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:242:gst_h264_parse_nalu_header: Nal type 1, ref_idc 1
0:00:02.266607500 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:1366:gst_h264_parser_identify_nalu: Complete nal found. Off: 34, Size: 263
0:00:02.266664625 8744 0x3d233140 DEBUG h264parse gsth264parse.c:1162:gst_h264_parse_handle_frame:<my_h264parse> complete nal (offset, size): (34, 263)
0:00:02.266720875 8744 0x3d233140 DEBUG h264parse gsth264parse.c:1219:gst_h264_parse_handle_frame:<my_h264parse> 0xffffa403c000 complete nal found. Off: 34, Size: 263
0:00:02.266782500 8744 0x3d233140 DEBUG h264parse gsth264parse.c:721:gst_h264_parse_process_nal:<my_h264parse> processing nal of type 1 Slice, size 263
0:00:02.266840875 8744 0x3d233140 DEBUG h264parse gsth264parse.c:827:gst_h264_parse_process_nal:<my_h264parse> first_mb_in_slice = 0
0:00:02.266887375 8744 0x3d233140 DEBUG h264parse gsth264parse.c:830:gst_h264_parse_process_nal:<my_h264parse> frame start: 1
0:00:02.266936375 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:2079:gst_h264_parser_parse_slice_hdr: parsing "Slice header", slice type 0
0:00:02.266996625 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:700:gst_h264_slice_parse_dec_ref_pic_marking: parsing "Decoded reference picture marking"
0:00:02.267052000 8744 0x3d233140 DEBUG h264parse gsth264parse.c:840:gst_h264_parse_process_nal:<my_h264parse> parse result 0, first MB: 0, slice type: 0
0:00:02.267112250 8744 0x3d233140 LOG h264parse gsth264parse.c:895:gst_h264_parse_process_nal:<my_h264parse> collecting NAL in AVC frame
0:00:02.267204125 8744 0x3d233140 DEBUG h264parse gsth264parse.c:428:gst_h264_parse_wrap_nal:<my_h264parse> nal length 263
0:00:02.267298500 8744 0x3d233140 DEBUG GST_MEMORY gstmemory.c:139:gst_memory_init: new memory 0xffffa403d080, maxsize:274 offset:0 size:267
0:00:02.267360875 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:799:gst_buffer_new: new 0xffffa4017b70
0:00:02.267403750 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:414:_memory_add: buffer 0xffffa4017b70, idx -1, mem 0xffffa403d080
0:00:02.267456125 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:855:gst_buffer_new_allocate: new buffer 0xffffa4017b70 of size 267 from allocator (nil)
0:00:02.267507625 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1826:gst_buffer_fill: buffer 0xffffa4017b70, offset 0, size 4
0:00:02.267560875 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1826:gst_buffer_fill: buffer 0xffffa4017b70, offset 4, size 263
0:00:02.267614000 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1582:gst_buffer_resize_range: trim 0xffffa4017b70 0-267 size:267 offs:0 max:274
0:00:02.267694125 8744 0x3d233140 LOG adapter gstadapter.c:395:gst_adapter_push:<GstAdapter at 0x3d20c120> pushing 0xffffa4017b70 267 bytes at end, size now 298
0:00:02.267757500 8744 0x3d233140 DEBUG h264parse gsth264parse.c:914:gst_h264_parse_collect_nal:<my_h264parse> parsing collected nal
0:00:02.267796500 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:242:gst_h264_parse_nalu_header: Nal type 1, ref_idc 1
0:00:02.267852750 8744 0x3d233140 LOG h264parse gsth264parse.c:922:gst_h264_parse_collect_nal:<my_h264parse> nal type: 1 Slice
0:00:02.267907250 8744 0x3d233140 LOG h264parse gsth264parse.c:941:gst_h264_parse_collect_nal:<my_h264parse> next nal type: 1 Slice
0:00:02.267961750 8744 0x3d233140 LOG h264parse gsth264parse.c:948:gst_h264_parse_collect_nal:<my_h264parse> au complete: 0
0:00:02.268010875 8744 0x3d233140 DEBUG h264parse gsth264parse.c:1264:gst_h264_parse_handle_frame:<my_h264parse> Looking for more
0:00:02.268048500 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:242:gst_h264_parse_nalu_header: Nal type 1, ref_idc 1
0:00:02.268097250 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:1351:gst_h264_parser_identify_nalu: Nal start 300, No end found
0:00:02.268148625 8744 0x3d233140 DEBUG h264parse gsth264parse.c:1166:gst_h264_parse_handle_frame:<my_h264parse> not a complete nal found at offset 300
0:00:02.268199875 8744 0x3d233140 DEBUG h264parse gsth264parse.c:1172:gst_h264_parse_handle_frame:<my_h264parse> draining, accepting with size 1095
0:00:02.268250375 8744 0x3d233140 DEBUG h264parse gsth264parse.c:1219:gst_h264_parse_handle_frame:<my_h264parse> 0xffffa403c000 complete nal found. Off: 300, Size: 1095
0:00:02.268309750 8744 0x3d233140 DEBUG h264parse gsth264parse.c:721:gst_h264_parse_process_nal:<my_h264parse> processing nal of type 1 Slice, size 1095
0:00:02.268367750 8744 0x3d233140 DEBUG h264parse gsth264parse.c:830:gst_h264_parse_process_nal:<my_h264parse> frame start: 1
0:00:02.268412125 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:2079:gst_h264_parser_parse_slice_hdr: parsing "Slice header", slice type 0
0:00:02.268459125 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:700:gst_h264_slice_parse_dec_ref_pic_marking: parsing "Decoded reference picture marking"
0:00:02.268509375 8744 0x3d233140 DEBUG h264parse gsth264parse.c:840:gst_h264_parse_process_nal:<my_h264parse> parse result 0, first MB: 49, slice type: 0
0:00:02.268569375 8744 0x3d233140 LOG h264parse gsth264parse.c:895:gst_h264_parse_process_nal:<my_h264parse> collecting NAL in AVC frame
0:00:02.268653500 8744 0x3d233140 DEBUG h264parse gsth264parse.c:428:gst_h264_parse_wrap_nal:<my_h264parse> nal length 1095
0:00:02.268708875 8744 0x3d233140 DEBUG GST_MEMORY gstmemory.c:139:gst_memory_init: new memory 0xffffa403c580, maxsize:1106 offset:0 size:1099
0:00:02.268767250 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:799:gst_buffer_new: new 0xffffa4034090
0:00:02.268809125 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:414:_memory_add: buffer 0xffffa4034090, idx -1, mem 0xffffa403c580
0:00:02.268861875 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:855:gst_buffer_new_allocate: new buffer 0xffffa4034090 of size 1099 from allocator (nil)
0:00:02.268912875 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1826:gst_buffer_fill: buffer 0xffffa4034090, offset 0, size 4
0:00:02.268963750 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1826:gst_buffer_fill: buffer 0xffffa4034090, offset 4, size 1095
0:00:02.268971625 8744 0x3d1e1590 LOG waylandsink gstwaylandsink.c:745:frame_redraw_callback: frame_redraw_cb
0:00:02.269030125 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1582:gst_buffer_resize_range: trim 0xffffa4034090 0-1099 size:1099 offs:0 max:1106
0:00:02.269180000 8744 0x3d233140 LOG adapter gstadapter.c:395:gst_adapter_push:<GstAdapter at 0x3d20c120> pushing 0xffffa4034090 1099 bytes at end, size now 1397
0:00:02.269186500 8744 0x3d1e1590 DEBUG GST_POLL gstpoll.c:1369:gst_poll_wait: 0x3d21fe80: timeout :99:99:99.999999999
0:00:02.269315375 8744 0x3d233140 DEBUG GST_CAPS gstpad.c:2705:gst_pad_has_current_caps:<my_h264parse:src> check current pad caps video/x-h264, stream-format=(string)byte-stream, alignment=(string)au, framerate=(fraction)0/1, width=(int)176, height=(int)144, interlace-mode=(string)progressive, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8, parsed=(boolean)true, profile=(string)constrained-baseline, level=(string)1.2
0:00:02.269502625 8744 0x3d233140 LOG h264parse gsth264parse.c:2016:gst_h264_parse_get_timestamp:<my_h264parse> Upstream ts 0:00:04.500000000
0:00:02.269570750 8744 0x3d233140 DEBUG h264parse gsth264parse.c:2035:gst_h264_parse_get_timestamp:<my_h264parse> unable to compute timestamp: timing info not present
0:00:02.269626875 8744 0x3d233140 LOG adapter gstadapter.c:974:gst_adapter_get_buffer:<GstAdapter at 0x3d20c120> getting buffer of 1397 bytes
0:00:02.269687000 8744 0x3d233140 LOG adapter gstadapter.c:736:gst_adapter_get_internal:<GstAdapter at 0x3d20c120> allocating 1397 bytes
0:00:02.269737500 8744 0x3d233140 DEBUG adapter gstadapter.c:344:copy_into_unchecked: bsize 6, skip 0, csize 6
0:00:02.269803625 8744 0x3d233140 LOG GST_PERFORMANCE gstadapter.c:346:copy_into_unchecked:<GstAdapter at 0x3d20c120> extract 6 bytes
0:00:02.269846500 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1876:gst_buffer_extract: buffer 0xffffa4017a60, offset 0, size 6
0:00:02.269914000 8744 0x3d233140 LOG GST_PERFORMANCE gstadapter.c:359:copy_into_unchecked:<GstAdapter at 0x3d20c120> extract 25 bytes
0:00:02.269955875 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1876:gst_buffer_extract: buffer 0xffffa4017950, offset 0, size 25
0:00:02.270021500 8744 0x3d233140 LOG GST_PERFORMANCE gstadapter.c:359:copy_into_unchecked:<GstAdapter at 0x3d20c120> extract 267 bytes
0:00:02.270062875 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1876:gst_buffer_extract: buffer 0xffffa4017b70, offset 0, size 267
0:00:02.270128375 8744 0x3d233140 LOG GST_PERFORMANCE gstadapter.c:359:copy_into_unchecked:<GstAdapter at 0x3d20c120> extract 1099 bytes
0:00:02.270170000 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1876:gst_buffer_extract: buffer 0xffffa4034090, offset 0, size 1099
0:00:02.270264500 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:799:gst_buffer_new: new 0xffffa40346f0
0:00:02.270309750 8744 0x3d233140 DEBUG GST_MEMORY gstmemory.c:139:gst_memory_init: new memory 0xffffa4018310, maxsize:1397 offset:0 size:1397
0:00:02.270366000 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:414:_memory_add: buffer 0xffffa40346f0, idx -1, mem 0xffffa4018310
0:00:02.270434750 8744 0x3d233140 LOG adapter gstadapter.c:634:gst_adapter_flush_unchecked:<GstAdapter at 0x3d20c120> flushing 1397 bytes
0:00:02.270490875 8744 0x3d233140 LOG adapter gstadapter.c:656:gst_adapter_flush_unchecked:<GstAdapter at 0x3d20c120> flushing out head buffer
0:00:02.270530125 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:725:_gst_buffer_free: finalize 0xffffa4017a60
0:00:02.270571875 8744 0x3d233140 DEBUG GST_MEMORY gstmemory.c:88:_gst_memory_free: free memory 0xffffa400ab50
0:00:02.270636625 8744 0x3d233140 LOG adapter gstadapter.c:656:gst_adapter_flush_unchecked:<GstAdapter at 0x3d20c120> flushing out head buffer
0:00:02.270674500 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:725:_gst_buffer_free: finalize 0xffffa4017950
0:00:02.270715750 8744 0x3d233140 DEBUG GST_MEMORY gstmemory.c:88:_gst_memory_free: free memory 0xffffa401b4e0
0:00:02.270774125 8744 0x3d233140 LOG adapter gstadapter.c:656:gst_adapter_flush_unchecked:<GstAdapter at 0x3d20c120> flushing out head buffer
0:00:02.270812125 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:725:_gst_buffer_free: finalize 0xffffa4017b70
0:00:02.270853125 8744 0x3d233140 DEBUG GST_MEMORY gstmemory.c:88:_gst_memory_free: free memory 0xffffa403d080
0:00:02.270911375 8744 0x3d233140 LOG adapter gstadapter.c:656:gst_adapter_flush_unchecked:<GstAdapter at 0x3d20c120> flushing out head buffer
0:00:02.270949250 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:725:_gst_buffer_free: finalize 0xffffa4034090
0:00:02.270989625 8744 0x3d233140 DEBUG GST_MEMORY gstmemory.c:88:_gst_memory_free: free memory 0xffffa403c580
0:00:02.271047875 8744 0x3d233140 LOG adapter gstadapter.c:668:gst_adapter_flush_unchecked:<GstAdapter at 0x3d20c120> adapter empty now
0:00:02.271088500 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:515:gst_buffer_copy_into: copy 0xffffa4017d90 to 0xffffa40346f0, offset 0-1395/1395
0:00:02.271160875 8744 0x3d233140 LOG baseparse gstbaseparse.c:2637:gst_base_parse_finish_frame:<my_h264parse> finished frame at offset 12285, flushing size 1395
0:00:02.271225000 8744 0x3d233140 LOG adapter gstadapter.c:634:gst_adapter_flush_unchecked:<GstAdapter at 0x3d20c000> flushing 1395 bytes
0:00:02.271280625 8744 0x3d233140 LOG adapter gstadapter.c:656:gst_adapter_flush_unchecked:<GstAdapter at 0x3d20c000> flushing out head buffer
0:00:02.271318625 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:725:_gst_buffer_free: finalize 0xffffa40172f0
0:00:02.271373750 8744 0x3d233140 LOG adapter gstadapter.c:668:gst_adapter_flush_unchecked:<GstAdapter at 0x3d20c000> adapter empty now
0:00:02.271414000 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:725:_gst_buffer_free: finalize 0xffffa4017d90
0:00:02.271454875 8744 0x3d233140 DEBUG GST_MEMORY gstmemory.c:88:_gst_memory_free: free memory 0xffffa40180d0
(free_data, 133)
0:00:02.271533625 8744 0x3d233140 DEBUG baseparse gstbaseparse.c:2333:gst_base_parse_handle_and_push_frame:<my_h264parse> no next fallback timestamp
0:00:02.271584125 8744 0x3d233140 LOG baseparse gstbaseparse.c:2392:gst_base_parse_push_frame:<my_h264parse> processing buffer of size 1397 with dts 99:99:99.999999999, pts 0:00:04.500000000, duration 0:00:00.500000000
0:00:02.271688750 8744 0x3d233140 DEBUG GST_CAPS gstpad.c:2705:gst_pad_has_current_caps:<my_h264parse:src> check current pad caps video/x-h264, stream-format=(string)byte-stream, alignment=(string)au, framerate=(fraction)0/1, width=(int)176, height=(int)144, interlace-mode=(string)progressive, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8, parsed=(boolean)true, profile=(string)constrained-baseline, level=(string)1.2
0:00:02.271866250 8744 0x3d233140 LOG baseparse gstbaseparse.c:1851:gst_base_parse_update_bitrates:<my_h264parse> frame bitrate 22352, avg bitrate 24273
0:00:02.271948625 8744 0x3d233140 DEBUG h264parse gsth264parse.c:186:gst_h264_parse_reset_frame:<my_h264parse> reset frame
0:00:02.271999625 8744 0x3d233140 LOG baseparse gstbaseparse.c:900:gst_base_parse_queue_tag_event_update:<my_h264parse> upstream : (NULL)
0:00:02.272051125 8744 0x3d233140 LOG baseparse gstbaseparse.c:902:gst_base_parse_queue_tag_event_update:<my_h264parse> parser : taglist, video-codec=(string)"H.264\ \(Constrained\ Baseline\ Profile\)";
0:00:02.272124500 8744 0x3d233140 LOG baseparse gstbaseparse.c:903:gst_base_parse_queue_tag_event_update:<my_h264parse> mode : 2
0:00:02.272198375 8744 0x3d233140 DEBUG baseparse gstbaseparse.c:909:gst_base_parse_queue_tag_event_update:<my_h264parse> merged : taglist, video-codec=(string)"H.264\ \(Constrained\ Baseline\ Profile\)";
0:00:02.272265625 8744 0x3d233140 LOG baseparse gstbaseparse.c:923:gst_base_parse_queue_tag_event_update:<my_h264parse> adding min bitrate 22352
0:00:02.272337750 8744 0x3d233140 LOG baseparse gstbaseparse.c:928:gst_base_parse_queue_tag_event_update:<my_h264parse> adding max bitrate 22352
0:00:02.272397125 8744 0x3d233140 LOG baseparse gstbaseparse.c:934:gst_base_parse_queue_tag_event_update:<my_h264parse> adding avg bitrate 24273
0:00:02.272461375 8744 0x3d233140 DEBUG GST_EVENT gstevent.c:306:gst_event_new_custom: creating new event 0xffffa4007de0 tag 20510
0:00:02.272538625 8744 0x3d233140 LOG GST_PADS gstpad.c:5176:store_sticky_event:<my_h264parse:src> stored sticky event tag
0:00:02.272595250 8744 0x3d233140 DEBUG GST_PADS gstpad.c:3937:check_sticky:<my_h264parse:src> pushing all sticky events
0:00:02.272646125 8744 0x3d233140 DEBUG GST_PADS gstpad.c:3867:push_sticky:<my_h264parse:src> event stream-start was already received
0:00:02.272701250 8744 0x3d233140 DEBUG GST_PADS gstpad.c:3867:push_sticky:<my_h264parse:src> event caps was already received
0:00:02.272756750 8744 0x3d233140 DEBUG GST_PADS gstpad.c:3867:push_sticky:<my_h264parse:src> event segment was already received
0:00:02.272814500 8744 0x3d233140 LOG GST_PADS gstpad.c:5351:gst_pad_push_event_unchecked:<my_h264parse:src> sending event 0xffffa4007de0 (tag) to peerpad <my_vdec:sink>
0:00:02.272891125 8744 0x3d233140 DEBUG GST_EVENT gstpad.c:5638:gst_pad_send_event_unchecked:<my_vdec:sink> have event type tag event: 0xffffa4007de0, time 99:99:99.999999999, seq-num 54, GstTagList-stream, taglist=(taglist)"taglist\,\ video-codec\=\(string\)\"H.264\\\ \\\(Constrained\\\ Baseline\\\ Profile\\\)\"\,\ minimum-bitrate\=\(uint\)22352\,\ maximum-bitrate\=\(uint\)22352\,\ bitrate\=\(uint\)24273\;";
0:00:02.273119875 8744 0x3d233140 DEBUG videodecoder gstvideodecoder.c:1393:gst_video_decoder_sink_event:<my_vdec> received event 20510, tag
0:00:02.752920875 8744 0x3d233770 DEBUG GST_CLOCK gstsystemclock.c:746:gst_system_clock_id_wait_jitter_unlocked: entry 0xffffa4008580 unlocked, status 3, ret 0
0:00:02.753178250 8744 0x3d233770 DEBUG GST_CLOCK gstsystemclock.c:770:gst_system_clock_id_wait_jitter_unlocked: entry 0xffffa4008580 unlocked after timeout
0:00:02.753286000 8744 0x3d233770 DEBUG GST_CLOCK gstclock.c:1046:gst_clock_get_internal_time:<GstSystemClock> internal time 0:15:47.100202250
0:00:02.753455125 8744 0x3d233770 DEBUG GST_CLOCK gstclock.c:1091:gst_clock_get_time:<GstSystemClock> adjusted time 0:15:47.100202250
0:00:02.753511625 8744 0x3d233770 DEBUG GST_CLOCK gstsystemclock.c:792:gst_system_clock_id_wait_jitter_unlocked: entry 0xffffa4008580 finished, diff -1171875
0:00:02.753571500 8744 0x3d233770 DEBUG GST_CLOCK gstclock.c:547:gst_clock_id_wait:<GstSystemClock> done waiting entry 0xffffa4008580, res: 0 (ok)
0:00:02.753642000 8744 0x3d233770 DEBUG basesink gstbasesink.c:2610:gst_base_sink_do_sync:<my_sink> clock returned 0, jitter -0:00:00.488961875
0:00:02.753713750 8744 0x3d233770 DEBUG basesink gstbasesink.c:2921:gst_base_sink_is_too_late:<my_sink> object was scheduled in time
0:00:02.753763750 8744 0x3d233770 DEBUG basesink gstbasesink.c:3538:gst_base_sink_chain_unlocked:<my_sink> rendering object 0xffffa40288a0
0:00:02.753817000 8744 0x3d233770 DEBUG basesink gstbasesink.c:994:gst_base_sink_set_last_buffer_unlocked:<my_sink> setting last buffer to 0xffffa40288a0
0:00:02.753879750 8744 0x3d233770 LOG videosink gstvideosink.c:228:gst_video_sink_show_frame:<my_sink> rendering frame, ts=0:00:02.000000000
0:00:02.753988375 8744 0x3d233770 LOG waylandsink gstwaylandsink.c:863:gst_wayland_sink_show_frame:<my_sink> render buffer 0xffffa40288a0
0:00:02.754061500 8744 0x3d233770 LOG waylandsink gstwaylandsink.c:917:gst_wayland_sink_show_frame:<my_sink> buffer 0xffffa40288a0 does not have a wl_buffer from our display, creating it
0:00:02.754151375 8744 0x3d233770 DEBUG waylandsink wllinuxdmabuf.c:108:gst_wl_linux_dmabuf_construct_wl_buffer:<GstWlDisplay at 0x3d1da380> Creating wl_buffer from DMABuf of size 98304 (176 x 144), format NV12 modifier 0x0800000000000001
0:00:02.754861750 8744 0x3d1e1590 DEBUG GST_POLL gstpoll.c:1369:gst_poll_wait: 0x3d21fe80: timeout :99:99:99.999999999
0:00:02.754884625 8744 0x3d233770 DEBUG waylandsink wllinuxdmabuf.c:175:gst_wl_linux_dmabuf_construct_wl_buffer:<dmabufallocator2> created linux_dmabuf wl_buffer (0xffff9c02a100):176x144, fmt=NV12, 2 planes
0:00:02.755057250 8744 0x3d233770 DEBUG GST_QOS gstbasesink.c:2751:gst_base_sink_perform_qos:<my_sink> start: 0:00:02.000000000, stop 0:00:02.500000000, entered 0:00:01.511038125, left 0:00:02.000000000, pt: 0:00:00.011038125, duration 0:00:00.500000000,jitter -488961875
0:00:02.755188250 8744 0x3d233770 DEBUG GST_QOS gstbasesink.c:2755:gst_base_sink_perform_qos:<my_sink> avg_pt: 0:00:00.012321210, avg_rate: 0.0254532
0:00:02.755283375 8744 0x3d233770 DEBUG GST_QOS gstbasesink.c:2785:gst_base_sink_perform_qos:<my_sink> updated: avg_pt: 0:00:00.012160824, avg_rate: 0.0253825
0:00:02.755359625 8744 0x3d233770 DEBUG GST_QOS gstbasesink.c:2679:gst_base_sink_send_qos:<my_sink> qos: type 0, proportion: 0.025382, diff -488961875, timestamp 0:00:02.000000000
0:00:02.755432250 8744 0x3d233770 LOG GST_EVENT gstevent.c:1146:gst_event_new_qos: creating qos type 0, proportion 0.025382, diff -488961875, timestamp 0:00:02.000000000
0:00:02.755530000 8744 0x3d233770 DEBUG GST_EVENT gstevent.c:306:gst_event_new_custom: creating new event 0xffffa4008740 qos 48641
0:00:02.755609750 8744 0x3d233770 LOG GST_PADS gstpad.c:5351:gst_pad_push_event_unchecked:<my_sink:sink> sending event 0xffffa4008740 (qos) to peerpad <my_vdec:src>
0:00:02.755687625 8744 0x3d1e1590 LOG waylandsink wlbuffer.c:137:buffer_release:<GstWlBuffer at 0xffff9c00b880> wl_buffer::release (GstBuffer: 0xffffa4028790)
0:00:02.755739500 8744 0x3d1e1590 LOG GST_BUFFER gstbuffer.c:710:_gst_buffer_dispose: release 0xffffa4028790 to pool 0xffffa4012e90
0:00:02.755795000 8744 0x3d1e1590 DEBUG GST_BUFFER gstbuffer.c:2383:gst_buffer_foreach_meta: remove metadata 0xffff9c001e38 (GstDmabufMeta)
0:00:02.755689625 8744 0x3d233770 DEBUG GST_EVENT gstpad.c:5638:gst_pad_send_event_unchecked:<my_vdec:src> have event type qos event: 0xffffa4008740, time 99:99:99.999999999, seq-num 55, GstEventQOS, type=(GstQOSType)GST_QOS_TYPE_OVERFLOW, proportion=(double)0.025382496786621096, diff=(gint64)-488961875, timestamp=(guint64)2000000000;
0:00:02.755932250 8744 0x3d1e1590 DEBUG v4l2bufferpool gstv4l2bufferpool.c:1420:gst_v4l2_buffer_pool_release_buffer:<my_vdec:pool:src> release buffer 0xffffa4028790
0:00:02.755972875 8744 0x3d233770 DEBUG videodecoder gstvideodecoder.c:1584:gst_video_decoder_src_event:<my_vdec> received event 48641, qos
0:00:02.756005125 8744 0x3d1e1590 LOG v4l2bufferpool gstv4l2bufferpool.c:1059:gst_v4l2_buffer_pool_qbuf:<my_vdec:pool:src> queuing buffer 3
0:00:02.756033000 8744 0x3d233770 DEBUG videodecoder gstvideodecoder.c:1485:gst_video_decoder_src_event_default:<my_vdec> received event 48641, qos
0:00:02.756106125 8744 0x3d1e1590 LOG v4l2allocator gstv4l2allocator.c:1265:gst_v4l2_allocator_qbuf:<my_vdec:pool:src:allocator> queued buffer 3 (flags 0x4003)
0:00:02.756098875 8744 0x3d233770 DEBUG videodecoder gstvideodecoder.c:1556:gst_video_decoder_src_event_default:<my_vdec> got QoS 0:00:02.000000000, -0:00:00.488961875, 0.0253825
0:00:02.756165875 8744 0x3d1e1590 DEBUG GST_POLL gstpoll.c:1369:gst_poll_wait: 0x3d21fe80: timeout :99:99:99.999999999
0:00:02.756198875 8744 0x3d233770 LOG GST_PADS gstpad.c:5351:gst_pad_push_event_unchecked:<my_vdec:sink> sending event 0xffffa4008740 (qos) to peerpad <my_h264parse:src>
0:00:02.756277250 8744 0x3d233770 DEBUG GST_EVENT gstpad.c:5638:gst_pad_send_event_unchecked:<my_h264parse:src> have event type qos event: 0xffffa4008740, time 99:99:99.999999999, seq-num 55, GstEventQOS, type=(GstQOSType)GST_QOS_TYPE_OVERFLOW, proportion=(double)0.025382496786621096, diff=(gint64)-488961875, timestamp=(guint64)2000000000;
0:00:02.756435125 8744 0x3d233770 DEBUG baseparse gstbaseparse.c:1602:gst_base_parse_src_event:<my_h264parse> event 48641, qos
0:00:02.756499875 8744 0x3d233770 LOG GST_PADS gstpad.c:3087:gst_pad_event_default:<my_h264parse:src> default event handler for event qos event: 0xffffa4008740, time 99:99:99.999999999, seq-num 55, GstEventQOS, type=(GstQOSType)GST_QOS_TYPE_OVERFLOW, proportion=(double)0.025382496786621096, diff=(gint64)-488961875, timestamp=(guint64)2000000000;
0:00:02.756655750 8744 0x3d233770 DEBUG GST_PADS gstpad.c:2897:gst_pad_iterate_internal_links_default:<my_h264parse:src> Making iterator
0:00:02.756723750 8744 0x3d233770 LOG GST_PADS gstpad.c:3007:gst_pad_forward:<my_h264parse:src> calling forward function on pad my_h264parse:sink
0:00:02.756785250 8744 0x3d233770 LOG GST_PADS gstpad.c:3052:event_forward_func:<my_h264parse:sink> Reffing and pushing event 0xffffa4008740 (qos) to my_h264parse:sink
0:00:02.756855750 8744 0x3d233770 LOG GST_PADS gstpad.c:5351:gst_pad_push_event_unchecked:<my_h264parse:sink> sending event 0xffffa4008740 (qos) to peerpad <my_appsrc:src>
0:00:02.756929000 8744 0x3d233770 DEBUG GST_EVENT gstpad.c:5638:gst_pad_send_event_unchecked:<my_appsrc:src> have event type qos event: 0xffffa4008740, time 99:99:99.999999999, seq-num 55, GstEventQOS, type=(GstQOSType)GST_QOS_TYPE_OVERFLOW, proportion=(double)0.025382496786621096, diff=(gint64)-488961875, timestamp=(guint64)2000000000;
0:00:02.757126875 8744 0x3d233770 DEBUG basesrc gstbasesrc.c:2027:gst_base_src_default_event:<my_appsrc> handle event qos event: 0xffffa4008740, time 99:99:99.999999999, seq-num 55, GstEventQOS, type=(GstQOSType)GST_QOS_TYPE_OVERFLOW, proportion=(double)0.025382496786621096, diff=(gint64)-488961875, timestamp=(guint64)2000000000;
0:00:02.757279000 8744 0x3d233770 DEBUG GST_QOS gstbasesrc.c:2013:gst_base_src_update_qos:<my_appsrc> qos: proportion: 0.025382, diff -488961875, timestamp 0:00:02.000000000
0:00:02.757401875 8744 0x3d233770 DEBUG GST_PADS gstpad.c:5712:gst_pad_send_event_unchecked:<my_appsrc:src> sent event, ret ok
0:00:02.757459375 8744 0x3d233770 LOG GST_PADS gstpad.c:5359:gst_pad_push_event_unchecked:<my_h264parse:sink> sent event 0xffffa4008740 (qos) to peerpad <my_appsrc:src>, ret ok
0:00:02.757534875 8744 0x3d233770 LOG GST_EVENT gstevent.c:223:_gst_event_free: freeing event 0xffffa4008740 type qos
0:00:02.757603375 8744 0x3d233770 DEBUG GST_PADS gstpad.c:5712:gst_pad_send_event_unchecked:<my_h264parse:src> sent event, ret ok
0:00:02.757659625 8744 0x3d233770 LOG GST_PADS gstpad.c:5359:gst_pad_push_event_unchecked:<my_vdec:sink> sent event 0xffffa4008740 (qos) to peerpad <my_h264parse:src>, ret ok
0:00:02.757738750 8744 0x3d233770 DEBUG GST_PADS gstpad.c:5712:gst_pad_send_event_unchecked:<my_vdec:src> sent event, ret ok
0:00:02.757794125 8744 0x3d233770 LOG GST_PADS gstpad.c:5359:gst_pad_push_event_unchecked:<my_sink:sink> sent event 0xffffa4008740 (qos) to peerpad <my_vdec:src>, ret ok
0:00:02.757868875 8744 0x3d233770 DEBUG basesink gstbasesink.c:3577:gst_base_sink_chain_unlocked:<my_sink> object unref after render 0xffffa40288a0
0:00:02.757928250 8744 0x3d233770 DEBUG GST_SCHEDULING gstpad.c:4283:gst_pad_chain_data_unchecked:<my_sink:sink> called chainfunction &gst_base_sink_chain with buffer 0xffffa40288a0, returned ok
0:00:02.758017500 8744 0x3d233770 LOG v4l2videodec gstv4l2videodec.c:605:gst_v4l2_video_dec_loop:<my_vdec> Allocate output buffer
0:00:02.758073750 8744 0x3d233770 DEBUG v4l2bufferpool gstv4l2bufferpool.c:1342:gst_v4l2_buffer_pool_acquire_buffer:<my_vdec:pool:src> acquire
0:00:02.758123125 8744 0x3d233770 LOG v4l2bufferpool gstv4l2bufferpool.c:999:gst_v4l2_buffer_pool_poll:<my_vdec:pool:src> polling device
0:00:02.758046750 8744 0x3d233140 INFO videodecoder gstvideodecoder.c:1339:gst_video_decoder_sink_event_default:<my_vdec> upstream tags: taglist, video-codec=(string)"H.264\ \(Constrained\ Baseline\ Profile\)", minimum-bitrate=(uint)22352, maximum-bitrate=(uint)22352, bitrate=(uint)24273;
0:00:02.758173125 8744 0x3d233770 DEBUG GST_POLL gstpoll.c:1369:gst_poll_wait: 0xffff9c007400: timeout :99:99:99.999999999
0:00:02.758274000 8744 0x3d233140 LOG videodecoder gstvideodecoder.c:805:gst_video_decoder_create_merged_tags_event:<my_vdec> upstream : taglist, video-codec=(string)"H.264\ \(Constrained\ Baseline\ Profile\)", minimum-bitrate=(uint)22352, maximum-bitrate=(uint)22352, bitrate=(uint)24273;
0:00:02.758381250 8744 0x3d233140 LOG videodecoder gstvideodecoder.c:806:gst_video_decoder_create_merged_tags_event:<my_vdec> decoder : (NULL)
0:00:02.758435500 8744 0x3d233140 LOG videodecoder gstvideodecoder.c:807:gst_video_decoder_create_merged_tags_event:<my_vdec> mode : 3
0:00:02.758507625 8744 0x3d233140 DEBUG videodecoder gstvideodecoder.c:813:gst_video_decoder_create_merged_tags_event:<my_vdec> merged : taglist, video-codec=(string)"H.264\ \(Constrained\ Baseline\ Profile\)", minimum-bitrate=(uint)22352, maximum-bitrate=(uint)22352, bitrate=(uint)24273;
0:00:02.758616750 8744 0x3d233140 DEBUG GST_EVENT gstevent.c:306:gst_event_new_custom: creating new event 0xffffa4007e50 tag 20510
0:00:02.758695500 8744 0x3d233140 DEBUG GST_PADS gstpad.c:5712:gst_pad_send_event_unchecked:<my_vdec:sink> sent event, ret ok
0:00:02.758746875 8744 0x3d233140 LOG GST_EVENT gstevent.c:223:_gst_event_free: freeing event 0xffffa4007d00 type tag
0:00:02.758816500 8744 0x3d233140 LOG GST_PADS gstpad.c:5176:store_sticky_event:<my_vdec:sink> stored sticky event tag
0:00:02.758910750 8744 0x3d233140 LOG GST_PADS gstpad.c:5359:gst_pad_push_event_unchecked:<my_h264parse:src> sent event 0xffffa4007de0 (tag) to peerpad <my_vdec:sink>, ret ok
0:00:02.758993250 8744 0x3d233140 DEBUG GST_PADS gstpad.c:3889:push_sticky:<my_h264parse:src> event tag marked received
0:00:02.759055250 8744 0x3d233140 LOG baseparse gstbaseparse.c:2535:gst_base_parse_push_frame:<my_h264parse> pushing frame (1397 bytes) now..
0:00:02.759122250 8744 0x3d233140 DEBUG GST_SCHEDULING gstpad.c:4277:gst_pad_chain_data_unchecked:<my_vdec:sink> calling chainfunction &gst_video_decoder_chain with buffer buffer: 0xffffa40346f0, pts 0:00:04.500000000, dts 99:99:99.999999999, dur 0:00:00.500000000, size 1397, offset 12285, offset_end none, flags 0x2400
0:00:02.759260125 8744 0x3d233140 LOG videodecoder gstvideodecoder.c:2438:gst_video_decoder_chain:<my_vdec> chain PTS 0:00:04.500000000, DTS 99:99:99.999999999 duration 0:00:00.500000000 size 1397 flags 2400
0:00:02.759360125 8744 0x3d233140 LOG videodecoder gstvideodecoder.c:2595:gst_video_decoder_new_frame:<my_vdec> Created new frame 0xffffa4034c40 (sfn:9)
0:00:02.759421125 8744 0x3d233140 LOG videodecoder gstvideodecoder.c:3410:gst_video_decoder_decode_frame:<my_vdec> PTS 0:00:04.500000000, DTS 99:99:99.999999999, dist 9
0:00:02.759508375 8744 0x3d233140 DEBUG v4l2videodec gstv4l2videodec.c:704:gst_v4l2_video_dec_handle_frame:<my_vdec> Handling frame 9
0:00:02.759566500 8744 0x3d233140 DEBUG v4l2bufferpool gstv4l2bufferpool.c:1745:gst_v4l2_buffer_pool_process:<my_vdec:pool:sink> process buffer 0xffffa4034c78
0:00:02.759619000 8744 0x3d233140 LOG v4l2bufferpool gstv4l2bufferpool.c:1923:gst_v4l2_buffer_pool_process:<my_vdec:pool:sink> alloc buffer from our pool
0:00:02.759666500 8744 0x3d233140 DEBUG v4l2bufferpool gstv4l2bufferpool.c:1342:gst_v4l2_buffer_pool_acquire_buffer:<my_vdec:pool:sink> acquire
0:00:02.759715500 8744 0x3d233140 LOG bufferpool gstbufferpool.c:1128:default_acquire_buffer:<my_vdec:pool:sink> acquired buffer 0xffffa4017840
0:00:02.759768375 8744 0x3d233140 LOG v4l2bufferpool gstv4l2bufferpool.c:116:gst_v4l2_buffer_pool_copy_buffer:<my_vdec:pool:sink> copying buffer
0:00:02.759814750 8744 0x3d233140 DEBUG v4l2bufferpool gstv4l2bufferpool.c:141:gst_v4l2_buffer_pool_copy_buffer:<my_vdec:pool:sink> copy raw bytes
0:00:02.759853750 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1721:gst_buffer_map_range: buffer 0xffffa40346f0, idx 0, length -1, flags 0001
0:00:02.759910750 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:213:_get_merged_memory: buffer 0xffffa40346f0, idx 0, length 1
0:00:02.759967625 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1826:gst_buffer_fill: buffer 0xffffa4017840, offset 0, size 1397
0:00:02.760028500 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1582:gst_buffer_resize_range: trim 0xffffa4017840 0-1397 size:6291456 offs:0 max:6291456
0:00:02.760094250 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:515:gst_buffer_copy_into: copy 0xffffa40346f0 to 0xffffa4017840, offset 0-1397/1397
0:00:02.760163625 8744 0x3d233140 LOG GST_PERFORMANCE gstv4l2bufferpool.c:155:gst_v4l2_buffer_pool_copy_buffer:<my_vdec:pool:sink> slow copy into buffer 0xffffa4017840
0:00:02.760221000 8744 0x3d233140 LOG v4l2bufferpool gstv4l2bufferpool.c:1059:gst_v4l2_buffer_pool_qbuf:<my_vdec:pool:sink> queuing buffer 1
0:00:02.760342750 8744 0x3d233140 LOG v4l2allocator gstv4l2allocator.c:1265:gst_v4l2_allocator_qbuf:<my_vdec:pool:sink:allocator> queued buffer 1 (flags 0x4003)
0:00:02.760396750 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:710:_gst_buffer_dispose: release 0xffffa4017840 to pool 0xffffa4012410
0:00:02.760455625 8744 0x3d233140 DEBUG v4l2bufferpool gstv4l2bufferpool.c:1420:gst_v4l2_buffer_pool_release_buffer:<my_vdec:pool:sink> release buffer 0xffffa4017840
0:00:02.760541875 8744 0x3d233140 LOG v4l2bufferpool gstv4l2bufferpool.c:1503:gst_v4l2_buffer_pool_release_buffer:<my_vdec:pool:sink> buffer 1 is queued
0:00:02.760597000 8744 0x3d233140 LOG v4l2bufferpool gstv4l2bufferpool.c:999:gst_v4l2_buffer_pool_poll:<my_vdec:pool:sink> polling device
0:00:02.760635250 8744 0x3d233140 DEBUG GST_POLL gstpoll.c:1369:gst_poll_wait: 0xffffa4005cf0: timeout :99:99:99.999999999
0:00:02.760709625 8744 0x3d233140 DEBUG GST_POLL gstpoll.c:1188:gst_poll_fd_has_error: 0xffffa4005cf0: fd (fd:18, idx:1) 0
0:00:02.760756500 8744 0x3d233770 DEBUG GST_POLL gstpoll.c:1188:gst_poll_fd_has_error: 0xffff9c007400: fd (fd:23, idx:1) 0
0:00:02.760768250 8744 0x3d233140 DEBUG GST_POLL gstpoll.c:1265:gst_poll_fd_can_read_pri_unlocked: 0xffffa4005cf0: fd (fd:18, idx:1) 0
0:00:02.760840250 8744 0x3d233770 DEBUG GST_POLL gstpoll.c:1265:gst_poll_fd_can_read_pri_unlocked: 0xffff9c007400: fd (fd:23, idx:1) 0
0:00:02.760891000 8744 0x3d233140 LOG v4l2bufferpool gstv4l2bufferpool.c:1322:gst_v4l2_buffer_pool_dequeue:<my_vdec:pool:sink> dequeueing a buffer
0:00:02.760916375 8744 0x3d233770 LOG v4l2bufferpool gstv4l2bufferpool.c:1322:gst_v4l2_buffer_pool_dequeue:<my_vdec:pool:src> dequeueing a buffer
0:00:02.760958750 8744 0x3d233140 LOG v4l2allocator gstv4l2allocator.c:1312:gst_v4l2_allocator_dqbuf:<my_vdec:pool:sink:allocator> dequeued buffer 0 (flags 0x4001)
0:00:02.760982375 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:1312:gst_v4l2_allocator_dqbuf:<my_vdec:pool:src:allocator> dequeued buffer 5 (flags 0x4001)
0:00:02.761090000 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:1341:gst_v4l2_allocator_dqbuf:<my_vdec:pool:src:allocator> Dequeued capture buffer, length: 65536 bytesused: 65536 data_offset: 0
0:00:02.761024500 8744 0x3d233140 LOG v4l2bufferpool gstv4l2bufferpool.c:1194:gst_v4l2_buffer_pool_dqbuf:<my_vdec:pool:sink> dequeued buffer 0xffffa40170d0 seq:0 (ix=0), mem 0xffffa40181f0 used 911, plane=0, flags 00004001, ts 0:00:04.000000000, pool-queued=1, buffer=0xffffa40170d0
0:00:02.761179250 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:1341:gst_v4l2_allocator_dqbuf:<my_vdec:pool:src:allocator> Dequeued capture buffer, length: 32768 bytesused: 32768 data_offset: 0
0:00:02.761213875 8744 0x3d233140 DEBUG v4l2bufferpool gstv4l2bufferpool.c:1420:gst_v4l2_buffer_pool_release_buffer:<my_vdec:pool:sink> release buffer 0xffffa40170d0
0:00:02.761270875 8744 0x3d233140 LOG v4l2bufferpool gstv4l2bufferpool.c:1488:gst_v4l2_buffer_pool_release_buffer:<my_vdec:pool:sink> buffer 0 not queued, putting on free list
0:00:02.761245250 8744 0x3d233770 LOG v4l2bufferpool gstv4l2bufferpool.c:1194:gst_v4l2_buffer_pool_dqbuf:<my_vdec:pool:src> dequeued buffer 0xffffa40289b0 seq:0 (ix=5), mem 0xffff9c01e420 used 65536, plane=0, flags 00004001, ts 0:00:00.000000000, pool-queued=20, buffer=0xffffa40289b0
0:00:02.761341000 8744 0x3d233140 LOG bufferpool gstbufferpool.c:1284:default_release_buffer:<my_vdec:pool:sink> released buffer 0xffffa40170d0 0
0:00:02.761392750 8744 0x3d233140 DEBUG GST_BUFFER gstbuffer.c:1375:gst_buffer_is_memory_range_writable: idx 0, length -1
0:00:02.761372500 8744 0x3d233770 LOG v4l2bufferpool gstv4l2bufferpool.c:1194:gst_v4l2_buffer_pool_dqbuf:<my_vdec:pool:src> dequeued buffer 0xffffa40289b0 seq:0 (ix=5), mem 0xffff9c01e540 used 32768, plane=1, flags 00004001, ts 0:00:00.000000000, pool-queued=20, buffer=0xffffa40289b0
0:00:02.761487250 8744 0x3d233770 LOG v4l2videodec gstv4l2videodec.c:629:gst_v4l2_video_dec_loop:<my_vdec> Process output buffer
0:00:02.761493125 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:799:gst_buffer_new: new 0xffffa4017d90
0:00:02.761548875 8744 0x3d233770 DEBUG v4l2bufferpool gstv4l2bufferpool.c:1745:gst_v4l2_buffer_pool_process:<my_vdec:pool:src> process buffer 0xffffb1d697e8
0:00:02.761569375 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:515:gst_buffer_copy_into: copy 0xffffa40346f0 to 0xffffa4017d90, offset 0-0/1397
0:00:02.761671750 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:725:_gst_buffer_free: finalize 0xffffa40346f0
0:00:02.761717000 8744 0x3d233140 DEBUG GST_MEMORY gstmemory.c:88:_gst_memory_free: free memory 0xffffa4018310
0:00:02.761797375 8744 0x3d233140 DEBUG GST_SCHEDULING gstpad.c:4283:gst_pad_chain_data_unchecked:<my_vdec:sink> called chainfunction &gst_video_decoder_chain with buffer 0xffffa40346f0, returned ok
0:00:02.761815875 8744 0x3d233770 LOG v4l2videodec gstv4l2videodec.c:460:gst_v4l2_video_dec_get_oldest_frame:<my_vdec> Oldest frame is 5 0:00:02.500000000 and 4 frames left
0:00:02.761863250 8744 0x3d233140 LOG baseparse gstbaseparse.c:2537:gst_base_parse_push_frame:<my_h264parse> frame pushed, flow ok
0:00:02.761890000 8744 0x3d233770 DEBUG GST_BUFFER gstbuffer.c:2201:gst_buffer_add_meta: alloc metadata 0xffff9c001ec8 (GstDmabufMeta) of size 24
0:00:02.761917250 8744 0x3d233140 LOG baseparse gstbaseparse.c:2166:gst_base_parse_handle_buffer:<my_h264parse> handle_frame skipped 0, flushed 1395
0:00:02.761953875 8744 0x3d233770 DEBUG v4l2videodec gstv4l2videodec.c:647:gst_v4l2_video_dec_loop:<my_vdec> add drm modifier: 576460752303423489
0:00:02.761979375 8744 0x3d233140 DEBUG baseparse gstbaseparse.c:3215:gst_base_parse_chain:<my_h264parse> not enough data available (only 0 bytes)
0:00:02.762009750 8744 0x3d233770 LOG videodecoder gstvideodecoder.c:2985:gst_video_decoder_finish_frame:<my_vdec> finish frame 0xffffa40343c0
0:00:02.762030875 8744 0x3d233140 LOG baseparse gstbaseparse.c:3277:gst_base_parse_chain:<my_h264parse> chain leaving
0:00:02.762082875 8744 0x3d233770 LOG videodecoder gstvideodecoder.c:2625:gst_video_decoder_prepare_finish_frame:<my_vdec> n 5 in 0 out 0
0:00:02.762115625 8744 0x3d233140 DEBUG GST_SCHEDULING gstpad.c:4283:gst_pad_chain_data_unchecked:<my_h264parse:sink> called chainfunction &gst_base_parse_chain with buffer 0xffffa40172f0, returned ok
0:00:02.762144875 8744 0x3d233770 LOG videodecoder gstvideodecoder.c:2634:gst_video_decoder_prepare_finish_frame:<my_vdec> finish frame 0xffffa40343c0 (#5) sync:0 PTS:0:00:02.500000000 DTS:99:99:99.999999999
0:00:02.762189250 8744 0x3d233140 LOG basesrc gstbasesrc.c:2828:gst_base_src_loop:<my_appsrc> next_ts 0:00:00.000013680 size 4096
0:00:02.762233375 8744 0x3d233770 DEBUG videodecoder gstvideodecoder.c:2676:gst_video_decoder_prepare_finish_frame:<my_vdec> sync timestamp 0:00:02.500000000 diff -0:00:02.500000000
0:00:02.762260125 8744 0x3d233140 DEBUG basesrc gstbasesrc.c:2399:gst_base_src_update_length:<my_appsrc> reading offset 13680, length 4096, size -1, segment.stop -1, maxsize -1
0:00:02.762349375 8744 0x3d233140 DEBUG basesrc gstbasesrc.c:2506:gst_base_src_get_range:<my_appsrc> calling create offset 13680 length 4096, time 0
0:00:02.762362875 8744 0x3d233770 DEBUG default gstvideoutils.c:40:_gst_video_codec_frame_free: free frame 0xffffa40343c0
(get_data, 99)
(get_data, 108)read_ret: 8, target frame num: 10, read frame num: 10
0:00:02.762459500 8744 0x3d233770 LOG GST_BUFFER gstbuffer.c:725:_gst_buffer_free: finalize 0xffffa40344d0
0:00:02.762546375 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:799:gst_buffer_new: new 0xffffa40172f0
0:00:02.762629625 8744 0x3d233140 DEBUG GST_MEMORY gstmemory.c:139:gst_memory_init: new memory 0xffffa40183a0, maxsize:878 offset:0 size:878
0:00:02.762619250 8744 0x3d233770 LOG videodecoder gstvideodecoder.c:3130:gst_video_decoder_clip_and_push_buf:<my_vdec> accepting buffer inside segment: 0:00:02.500000000 0:00:03.000000000 seg 0:00:00.000000000 to 99:99:99.999999999 time 0:00:00.000000000
0:00:02.762689250 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:414:_memory_add: buffer 0xffffa40172f0, idx -1, mem 0xffffa40183a0
0:00:02.762777250 8744 0x3d233770 DEBUG videodecoder gstvideodecoder.c:3197:gst_video_decoder_clip_and_push_buf:<my_vdec> pushing buffer 0xffffa40289b0 of size 98304, PTS 0:00:02.500000000, dur 0:00:00.500000000
0:00:02.762834375 8744 0x3d233140 DEBUG appsrc gstappsrc.c:1863:gst_app_src_push_internal:<my_appsrc> queueing buffer 0xffffa40172f0
0:00:02.762907500 8744 0x3d233140 LOG appsrc gstappsrc.c:1221:gst_app_src_create:<my_appsrc> have buffer 0xffffa40172f0 of size 878
0:00:02.762972375 8744 0x3d233140 DEBUG basesrc gstbasesrc.c:2360:gst_base_src_do_sync:<my_appsrc> no sync needed
0:00:02.762872250 8744 0x3d233770 DEBUG GST_SCHEDULING gstpad.c:4277:gst_pad_chain_data_unchecked:<my_sink:sink> calling chainfunction &gst_base_sink_chain with buffer buffer: 0xffffa40289b0, pts 0:00:02.500000000, dts 99:99:99.999999999, dur 0:00:00.500000000, size 98304, offset none, offset_end none, flags 0x0
0:00:02.763065625 8744 0x3d233140 DEBUG basesrc gstbasesrc.c:2597:gst_base_src_get_range:<my_appsrc> buffer ok
0:00:02.763061500 8744 0x3d233770 DEBUG basesink gstbasesink.c:3421:gst_base_sink_chain_unlocked:<my_sink> got times start: 0:00:02.500000000, end: 0:00:03.000000000
0:00:02.763144375 8744 0x3d233770 DEBUG basesink gstbasesink.c:2006:gst_base_sink_get_sync_times:<my_sink> got times start: 0:00:02.500000000, stop: 0:00:03.000000000, do_sync 1
0:00:02.763125125 8744 0x3d233140 DEBUG GST_SCHEDULING gstpad.c:4277:gst_pad_chain_data_unchecked:<my_h264parse:sink> calling chainfunction &gst_base_parse_chain with buffer buffer: 0xffffa40172f0, pts 0:00:05.000000000, dts 99:99:99.999999999, dur 0:00:00.500000000, size 878, offset none, offset_end none, flags 0x0
0:00:02.763231875 8744 0x3d233770 LOG basesink gstbasesink.c:2551:gst_base_sink_do_sync:<my_sink> avg frame diff 0:00:00.500000000
0:00:02.763250125 8744 0x3d233140 DEBUG baseparse gstbaseparse.c:3030:gst_base_parse_chain:<my_h264parse> chain
0:00:02.763311875 8744 0x3d233770 DEBUG basesink gstbasesink.c:2591:gst_base_sink_do_sync:<my_sink> reset rc_time to time 0:00:02.500000000
0:00:02.763340375 8744 0x3d233140 LOG baseparse gstbaseparse.c:3150:gst_base_parse_chain:<my_h264parse> buffer size: 878, offset = -1, dts 99:99:99.999999999, pts 0:00:05.000000000
0:00:02.763377750 8744 0x3d233770 DEBUG basesink gstbasesink.c:2603:gst_base_sink_do_sync:<my_sink> possibly waiting for clock to reach 0:00:02.500000000, adjusted 0:00:02.500000000
0:00:02.763438125 8744 0x3d233140 LOG adapter gstadapter.c:389:gst_adapter_push:<GstAdapter at 0x3d20c000> pushing 0xffffa40172f0 first 878 bytes
0:00:02.763456125 8744 0x3d233770 LOG basesink gstbasesink.c:2177:gst_base_sink_wait_clock:<my_sink> time 0:00:02.500000000, base_time 0:15:45.099030375
0:00:02.763503250 8744 0x3d233140 LOG adapter gstadapter.c:290:update_timestamps_and_offset:<GstAdapter at 0x3d20c000> new pts 0:00:05.000000000
0:00:02.763534625 8744 0x3d233770 DEBUG GST_CLOCK gstclock.c:537:gst_clock_id_wait:<GstSystemClock> waiting on clock entry 0xffffa4008580
0:00:02.763619000 8744 0x3d233140 LOG adapter gstadapter.c:974:gst_adapter_get_buffer:<GstAdapter at 0x3d20c000> getting buffer of 878 bytes
0:00:02.763609000 8744 0x3d233770 DEBUG GST_CLOCK gstclock.c:1046:gst_clock_get_internal_time:<GstSystemClock> internal time 0:15:47.110555625
0:00:02.763692375 8744 0x3d233140 LOG adapter gstadapter.c:989:gst_adapter_get_buffer:<GstAdapter at 0x3d20c000> providing buffer of 878 bytes as head buffer
0:00:02.763813250 8744 0x3d233770 DEBUG GST_CLOCK gstclock.c:1091:gst_clock_get_time:<GstSystemClock> adjusted time 0:15:47.110555625
0:00:02.763797000 8744 0x3d233140 LOG baseparse gstbaseparse.c:2148:gst_base_parse_handle_buffer:<my_h264parse> handling buffer of size 878 with dts 99:99:99.999999999, pts 0:00:05.000000000, duration 0:00:00.500000000
0:00:02.763886000 8744 0x3d233770 DEBUG GST_CLOCK gstsystemclock.c:718:gst_system_clock_id_wait_jitter_unlocked: entry 0xffffa4008580 time 0:15:47.599030375 now 0:15:47.110555625 diff (time-now) 488474750
0:00:02.763918000 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:799:gst_buffer_new: new 0xffffa4034090
0:00:02.763972000 8744 0x3d233770 DEBUG GST_POLL gstpoll.c:1369:gst_poll_wait: 0xffffa0003c00: timeout :0:00:00.488474750
0:00:02.764001875 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:515:gst_buffer_copy_into: copy 0xffffa40172f0 to 0xffffa4034090, offset 0-878/878
0:00:02.764066500 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:414:_memory_add: buffer 0xffffa4034090, idx -1, mem 0xffffa40183a0
0:00:02.764119250 8744 0x3d233140 DEBUG GST_PERFORMANCE gstminiobject.c:317:gst_mini_object_make_writable: copy GstBuffer miniobject 0xffffa40172f0 -> 0xffffa4034090
0:00:02.764182500 8744 0x3d233140 LOG baseparse gstbaseparse.c:2110:gst_base_parse_prepare_frame:<my_h264parse> preparing frame at offset 18446744073709551615 (0xffffffffffffffff) of size 878
0:00:02.764249750 8744 0x3d233140 LOG baseparse gstbaseparse.c:764:gst_base_parse_update_frame:<my_h264parse> marking as new frame
0:00:02.764292750 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1721:gst_buffer_map_range: buffer 0xffffa4034090, idx 0, length -1, flags 0001
0:00:02.764349750 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:213:_get_merged_memory: buffer 0xffffa4034090, idx 0, length 1
0:00:02.764413000 8744 0x3d233140 LOG h264parse gsth264parse.c:1097:gst_h264_parse_handle_frame:<my_h264parse> parsing new frame
0:00:02.764460625 8744 0x3d233140 DEBUG h264parse gsth264parse.c:186:gst_h264_parse_reset_frame:<my_h264parse> reset frame
0:00:02.764510500 8744 0x3d233140 DEBUG h264parse gsth264parse.c:1112:gst_h264_parse_handle_frame:<my_h264parse> last parse position 0
0:00:02.764559750 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:242:gst_h264_parse_nalu_header: Nal type 9, ref_idc 0
0:00:02.764609000 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:242:gst_h264_parse_nalu_header: Nal type 9, ref_idc 0
0:00:02.764655500 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:1366:gst_h264_parser_identify_nalu: Complete nal found. Off: 4, Size: 2
0:00:02.764713625 8744 0x3d233140 DEBUG h264parse gsth264parse.c:1162:gst_h264_parse_handle_frame:<my_h264parse> complete nal (offset, size): (4, 2)
0:00:02.764770625 8744 0x3d233140 DEBUG h264parse gsth264parse.c:1219:gst_h264_parse_handle_frame:<my_h264parse> 0xffffa402b190 complete nal found. Off: 4, Size: 2
0:00:02.764832750 8744 0x3d233140 DEBUG h264parse gsth264parse.c:721:gst_h264_parse_process_nal:<my_h264parse> processing nal of type 9 AU delimiter, size 2
0:00:02.764893000 8744 0x3d233140 LOG h264parse gsth264parse.c:895:gst_h264_parse_process_nal:<my_h264parse> collecting NAL in AVC frame
0:00:02.764939875 8744 0x3d233140 DEBUG h264parse gsth264parse.c:428:gst_h264_parse_wrap_nal:<my_h264parse> nal length 2
0:00:02.764987875 8744 0x3d233140 DEBUG GST_MEMORY gstmemory.c:139:gst_memory_init: new memory 0xffffa400aab0, maxsize:13 offset:0 size:6
0:00:02.765106500 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:799:gst_buffer_new: new 0xffffa4017b70
0:00:02.765161875 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:414:_memory_add: buffer 0xffffa4017b70, idx -1, mem 0xffffa400aab0
0:00:02.765264750 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:855:gst_buffer_new_allocate: new buffer 0xffffa4017b70 of size 6 from allocator (nil)
0:00:02.765323000 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1826:gst_buffer_fill: buffer 0xffffa4017b70, offset 0, size 4
0:00:02.765377250 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1826:gst_buffer_fill: buffer 0xffffa4017b70, offset 4, size 2
0:00:02.765430250 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1582:gst_buffer_resize_range: trim 0xffffa4017b70 0-6 size:6 offs:0 max:13
0:00:02.765510125 8744 0x3d233140 LOG adapter gstadapter.c:389:gst_adapter_push:<GstAdapter at 0x3d20c120> pushing 0xffffa4017b70 first 6 bytes
0:00:02.765570625 8744 0x3d233140 DEBUG h264parse gsth264parse.c:914:gst_h264_parse_collect_nal:<my_h264parse> parsing collected nal
0:00:02.765611375 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:242:gst_h264_parse_nalu_header: Nal type 6, ref_idc 0
0:00:02.765666500 8744 0x3d233140 LOG h264parse gsth264parse.c:922:gst_h264_parse_collect_nal:<my_h264parse> nal type: 9 AU delimiter
0:00:02.765721750 8744 0x3d233140 LOG h264parse gsth264parse.c:941:gst_h264_parse_collect_nal:<my_h264parse> next nal type: 6 SEI
0:00:02.765776250 8744 0x3d233140 LOG h264parse gsth264parse.c:948:gst_h264_parse_collect_nal:<my_h264parse> au complete: 0
0:00:02.765827625 8744 0x3d233140 DEBUG h264parse gsth264parse.c:1264:gst_h264_parse_handle_frame:<my_h264parse> Looking for more
0:00:02.765866000 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:242:gst_h264_parse_nalu_header: Nal type 6, ref_idc 0
0:00:02.765911250 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:1366:gst_h264_parser_identify_nalu: Complete nal found. Off: 10, Size: 21
0:00:02.765966500 8744 0x3d233140 DEBUG h264parse gsth264parse.c:1162:gst_h264_parse_handle_frame:<my_h264parse> complete nal (offset, size): (10, 21)
0:00:02.766021250 8744 0x3d233140 DEBUG h264parse gsth264parse.c:1219:gst_h264_parse_handle_frame:<my_h264parse> 0xffffa402b190 complete nal found. Off: 10, Size: 21
0:00:02.766080875 8744 0x3d233140 DEBUG h264parse gsth264parse.c:721:gst_h264_parse_process_nal:<my_h264parse> processing nal of type 6 SEI, size 21
0:00:02.766131875 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:2292:gst_h264_parser_parse_sei: parsing SEI nal
0:00:02.766173375 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:1127:gst_h264_parser_parse_sei_message: parsing "Sei message"
0:00:02.766215375 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:1147:gst_h264_parser_parse_sei_message: SEI message received: payloadType 5, payloadSize = 136 bits
0:00:02.766288000 8744 0x3d233140 DEBUG h264parse gsth264parse.c:807:gst_h264_parse_process_nal:<my_h264parse> marking SEI in frame at offset 6
0:00:02.766341125 8744 0x3d233140 LOG h264parse gsth264parse.c:895:gst_h264_parse_process_nal:<my_h264parse> collecting NAL in AVC frame
0:00:02.766387125 8744 0x3d233140 DEBUG h264parse gsth264parse.c:428:gst_h264_parse_wrap_nal:<my_h264parse> nal length 21
0:00:02.766432125 8744 0x3d233140 DEBUG GST_MEMORY gstmemory.c:139:gst_memory_init: new memory 0xffffa401b430, maxsize:32 offset:0 size:25
0:00:02.766488000 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:799:gst_buffer_new: new 0xffffa4017950
0:00:02.766529750 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:414:_memory_add: buffer 0xffffa4017950, idx -1, mem 0xffffa401b430
0:00:02.766581375 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:855:gst_buffer_new_allocate: new buffer 0xffffa4017950 of size 25 from allocator (nil)
0:00:02.766668375 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1826:gst_buffer_fill: buffer 0xffffa4017950, offset 0, size 4
0:00:02.766724000 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1826:gst_buffer_fill: buffer 0xffffa4017950, offset 4, size 21
0:00:02.766777875 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1582:gst_buffer_resize_range: trim 0xffffa4017950 0-25 size:25 offs:0 max:32
0:00:02.766856625 8744 0x3d233140 LOG adapter gstadapter.c:395:gst_adapter_push:<GstAdapter at 0x3d20c120> pushing 0xffffa4017950 25 bytes at end, size now 31
0:00:02.766921250 8744 0x3d233140 DEBUG h264parse gsth264parse.c:914:gst_h264_parse_collect_nal:<my_h264parse> parsing collected nal
0:00:02.766961125 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:242:gst_h264_parse_nalu_header: Nal type 1, ref_idc 1
0:00:02.767015625 8744 0x3d233140 LOG h264parse gsth264parse.c:922:gst_h264_parse_collect_nal:<my_h264parse> nal type: 6 SEI
0:00:02.767068750 8744 0x3d233140 LOG h264parse gsth264parse.c:941:gst_h264_parse_collect_nal:<my_h264parse> next nal type: 1 Slice
0:00:02.767123125 8744 0x3d233140 LOG h264parse gsth264parse.c:948:gst_h264_parse_collect_nal:<my_h264parse> au complete: 0
0:00:02.767173625 8744 0x3d233140 DEBUG h264parse gsth264parse.c:1264:gst_h264_parse_handle_frame:<my_h264parse> Looking for more
0:00:02.767212000 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:242:gst_h264_parse_nalu_header: Nal type 1, ref_idc 1
0:00:02.767258000 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:1366:gst_h264_parser_identify_nalu: Complete nal found. Off: 34, Size: 189
0:00:02.767312250 8744 0x3d233140 DEBUG h264parse gsth264parse.c:1162:gst_h264_parse_handle_frame:<my_h264parse> complete nal (offset, size): (34, 189)
0:00:02.767366625 8744 0x3d233140 DEBUG h264parse gsth264parse.c:1219:gst_h264_parse_handle_frame:<my_h264parse> 0xffffa402b190 complete nal found. Off: 34, Size: 189
0:00:02.767425750 8744 0x3d233140 DEBUG h264parse gsth264parse.c:721:gst_h264_parse_process_nal:<my_h264parse> processing nal of type 1 Slice, size 189
0:00:02.767483750 8744 0x3d233140 DEBUG h264parse gsth264parse.c:827:gst_h264_parse_process_nal:<my_h264parse> first_mb_in_slice = 0
0:00:02.767529875 8744 0x3d233140 DEBUG h264parse gsth264parse.c:830:gst_h264_parse_process_nal:<my_h264parse> frame start: 1
0:00:02.767575375 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:2079:gst_h264_parser_parse_slice_hdr: parsing "Slice header", slice type 0
0:00:02.767627750 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:700:gst_h264_slice_parse_dec_ref_pic_marking: parsing "Decoded reference picture marking"
0:00:02.767679500 8744 0x3d233140 DEBUG h264parse gsth264parse.c:840:gst_h264_parse_process_nal:<my_h264parse> parse result 0, first MB: 0, slice type: 0
0:00:02.767740875 8744 0x3d233140 LOG h264parse gsth264parse.c:895:gst_h264_parse_process_nal:<my_h264parse> collecting NAL in AVC frame
0:00:02.767786250 8744 0x3d233140 DEBUG h264parse gsth264parse.c:428:gst_h264_parse_wrap_nal:<my_h264parse> nal length 189
0:00:02.767939125 8744 0x3d233140 DEBUG GST_MEMORY gstmemory.c:139:gst_memory_init: new memory 0xffffa403e060, maxsize:200 offset:0 size:193
0:00:02.768002000 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:799:gst_buffer_new: new 0xffffa4017a60
0:00:02.768043750 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:414:_memory_add: buffer 0xffffa4017a60, idx -1, mem 0xffffa403e060
0:00:02.768094375 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:855:gst_buffer_new_allocate: new buffer 0xffffa4017a60 of size 193 from allocator (nil)
0:00:02.768145000 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1826:gst_buffer_fill: buffer 0xffffa4017a60, offset 0, size 4
0:00:02.768229625 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1826:gst_buffer_fill: buffer 0xffffa4017a60, offset 4, size 189
0:00:02.768283625 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1582:gst_buffer_resize_range: trim 0xffffa4017a60 0-193 size:193 offs:0 max:200
0:00:02.768360875 8744 0x3d233140 LOG adapter gstadapter.c:395:gst_adapter_push:<GstAdapter at 0x3d20c120> pushing 0xffffa4017a60 193 bytes at end, size now 224
0:00:02.768423875 8744 0x3d233140 DEBUG h264parse gsth264parse.c:914:gst_h264_parse_collect_nal:<my_h264parse> parsing collected nal
0:00:02.768462875 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:242:gst_h264_parse_nalu_header: Nal type 1, ref_idc 1
0:00:02.768519125 8744 0x3d233140 LOG h264parse gsth264parse.c:922:gst_h264_parse_collect_nal:<my_h264parse> nal type: 1 Slice
0:00:02.768574250 8744 0x3d233140 LOG h264parse gsth264parse.c:941:gst_h264_parse_collect_nal:<my_h264parse> next nal type: 1 Slice
0:00:02.768629250 8744 0x3d233140 LOG h264parse gsth264parse.c:948:gst_h264_parse_collect_nal:<my_h264parse> au complete: 0
0:00:02.768680250 8744 0x3d233140 DEBUG h264parse gsth264parse.c:1264:gst_h264_parse_handle_frame:<my_h264parse> Looking for more
0:00:02.768719250 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:242:gst_h264_parse_nalu_header: Nal type 1, ref_idc 1
0:00:02.768767625 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:1351:gst_h264_parser_identify_nalu: Nal start 226, No end found
0:00:02.768773750 8744 0x3d1e1590 LOG waylandsink gstwaylandsink.c:745:frame_redraw_callback: frame_redraw_cb
0:00:02.768833500 8744 0x3d233140 DEBUG h264parse gsth264parse.c:1166:gst_h264_parse_handle_frame:<my_h264parse> not a complete nal found at offset 226
0:00:02.768897375 8744 0x3d233140 DEBUG h264parse gsth264parse.c:1172:gst_h264_parse_handle_frame:<my_h264parse> draining, accepting with size 652
0:00:02.768910750 8744 0x3d1e1590 DEBUG GST_POLL gstpoll.c:1369:gst_poll_wait: 0x3d21fe80: timeout :99:99:99.999999999
0:00:02.768949375 8744 0x3d233140 DEBUG h264parse gsth264parse.c:1219:gst_h264_parse_handle_frame:<my_h264parse> 0xffffa402b190 complete nal found. Off: 226, Size: 652
0:00:02.769009375 8744 0x3d233140 DEBUG h264parse gsth264parse.c:721:gst_h264_parse_process_nal:<my_h264parse> processing nal of type 1 Slice, size 652
0:00:02.769106875 8744 0x3d233140 DEBUG h264parse gsth264parse.c:830:gst_h264_parse_process_nal:<my_h264parse> frame start: 1
0:00:02.769159125 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:2079:gst_h264_parser_parse_slice_hdr: parsing "Slice header", slice type 0
0:00:02.769206000 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:700:gst_h264_slice_parse_dec_ref_pic_marking: parsing "Decoded reference picture marking"
0:00:02.769255625 8744 0x3d233140 DEBUG h264parse gsth264parse.c:840:gst_h264_parse_process_nal:<my_h264parse> parse result 0, first MB: 49, slice type: 0
0:00:02.769313875 8744 0x3d233140 LOG h264parse gsth264parse.c:895:gst_h264_parse_process_nal:<my_h264parse> collecting NAL in AVC frame
0:00:02.769358625 8744 0x3d233140 DEBUG h264parse gsth264parse.c:428:gst_h264_parse_wrap_nal:<my_h264parse> nal length 652
0:00:02.769454625 8744 0x3d233140 DEBUG GST_MEMORY gstmemory.c:139:gst_memory_init: new memory 0xffffa4040280, maxsize:663 offset:0 size:656
0:00:02.769516375 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:799:gst_buffer_new: new 0xffffa40346f0
0:00:02.769558625 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:414:_memory_add: buffer 0xffffa40346f0, idx -1, mem 0xffffa4040280
0:00:02.769609125 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:855:gst_buffer_new_allocate: new buffer 0xffffa40346f0 of size 656 from allocator (nil)
0:00:02.769691750 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1826:gst_buffer_fill: buffer 0xffffa40346f0, offset 0, size 4
0:00:02.769745375 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1826:gst_buffer_fill: buffer 0xffffa40346f0, offset 4, size 652
0:00:02.769797625 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1582:gst_buffer_resize_range: trim 0xffffa40346f0 0-656 size:656 offs:0 max:663
0:00:02.769873750 8744 0x3d233140 LOG adapter gstadapter.c:395:gst_adapter_push:<GstAdapter at 0x3d20c120> pushing 0xffffa40346f0 656 bytes at end, size now 880
0:00:02.769952875 8744 0x3d233140 DEBUG GST_CAPS gstpad.c:2705:gst_pad_has_current_caps:<my_h264parse:src> check current pad caps video/x-h264, stream-format=(string)byte-stream, alignment=(string)au, framerate=(fraction)0/1, width=(int)176, height=(int)144, interlace-mode=(string)progressive, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8, parsed=(boolean)true, profile=(string)constrained-baseline, level=(string)1.2
0:00:02.770127125 8744 0x3d233140 LOG h264parse gsth264parse.c:2016:gst_h264_parse_get_timestamp:<my_h264parse> Upstream ts 0:00:05.000000000
0:00:02.770192750 8744 0x3d233140 DEBUG h264parse gsth264parse.c:2035:gst_h264_parse_get_timestamp:<my_h264parse> unable to compute timestamp: timing info not present
0:00:02.770247000 8744 0x3d233140 LOG adapter gstadapter.c:974:gst_adapter_get_buffer:<GstAdapter at 0x3d20c120> getting buffer of 880 bytes
0:00:02.770304625 8744 0x3d233140 LOG adapter gstadapter.c:736:gst_adapter_get_internal:<GstAdapter at 0x3d20c120> allocating 880 bytes
0:00:02.770349000 8744 0x3d233140 DEBUG adapter gstadapter.c:344:copy_into_unchecked: bsize 6, skip 0, csize 6
0:00:02.770411500 8744 0x3d233140 LOG GST_PERFORMANCE gstadapter.c:346:copy_into_unchecked:<GstAdapter at 0x3d20c120> extract 6 bytes
0:00:02.770454000 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1876:gst_buffer_extract: buffer 0xffffa4017b70, offset 0, size 6
0:00:02.770519875 8744 0x3d233140 LOG GST_PERFORMANCE gstadapter.c:359:copy_into_unchecked:<GstAdapter at 0x3d20c120> extract 25 bytes
0:00:02.770561375 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1876:gst_buffer_extract: buffer 0xffffa4017950, offset 0, size 25
0:00:02.770627000 8744 0x3d233140 LOG GST_PERFORMANCE gstadapter.c:359:copy_into_unchecked:<GstAdapter at 0x3d20c120> extract 193 bytes
0:00:02.770668625 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1876:gst_buffer_extract: buffer 0xffffa4017a60, offset 0, size 193
0:00:02.770733625 8744 0x3d233140 LOG GST_PERFORMANCE gstadapter.c:359:copy_into_unchecked:<GstAdapter at 0x3d20c120> extract 656 bytes
0:00:02.770774875 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1876:gst_buffer_extract: buffer 0xffffa40346f0, offset 0, size 656
0:00:02.770830625 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:799:gst_buffer_new: new 0xffffa4028130
0:00:02.770874625 8744 0x3d233140 DEBUG GST_MEMORY gstmemory.c:139:gst_memory_init: new memory 0xffffa4018310, maxsize:880 offset:0 size:880
0:00:02.770929500 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:414:_memory_add: buffer 0xffffa4028130, idx -1, mem 0xffffa4018310
0:00:02.770997500 8744 0x3d233140 LOG adapter gstadapter.c:634:gst_adapter_flush_unchecked:<GstAdapter at 0x3d20c120> flushing 880 bytes
0:00:02.771053500 8744 0x3d233140 LOG adapter gstadapter.c:656:gst_adapter_flush_unchecked:<GstAdapter at 0x3d20c120> flushing out head buffer
0:00:02.771092000 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:725:_gst_buffer_free: finalize 0xffffa4017b70
0:00:02.771133750 8744 0x3d233140 DEBUG GST_MEMORY gstmemory.c:88:_gst_memory_free: free memory 0xffffa400aab0
0:00:02.771229250 8744 0x3d233140 LOG adapter gstadapter.c:656:gst_adapter_flush_unchecked:<GstAdapter at 0x3d20c120> flushing out head buffer
0:00:02.771268000 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:725:_gst_buffer_free: finalize 0xffffa4017950
0:00:02.771310375 8744 0x3d233140 DEBUG GST_MEMORY gstmemory.c:88:_gst_memory_free: free memory 0xffffa401b430
0:00:02.771370125 8744 0x3d233140 LOG adapter gstadapter.c:656:gst_adapter_flush_unchecked:<GstAdapter at 0x3d20c120> flushing out head buffer
0:00:02.771408125 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:725:_gst_buffer_free: finalize 0xffffa4017a60
0:00:02.771450250 8744 0x3d233140 DEBUG GST_MEMORY gstmemory.c:88:_gst_memory_free: free memory 0xffffa403e060
0:00:02.771509000 8744 0x3d233140 LOG adapter gstadapter.c:656:gst_adapter_flush_unchecked:<GstAdapter at 0x3d20c120> flushing out head buffer
0:00:02.771546500 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:725:_gst_buffer_free: finalize 0xffffa40346f0
0:00:02.771587750 8744 0x3d233140 DEBUG GST_MEMORY gstmemory.c:88:_gst_memory_free: free memory 0xffffa4040280
0:00:02.771645125 8744 0x3d233140 LOG adapter gstadapter.c:668:gst_adapter_flush_unchecked:<GstAdapter at 0x3d20c120> adapter empty now
0:00:02.771684250 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:515:gst_buffer_copy_into: copy 0xffffa4034090 to 0xffffa4028130, offset 0-878/878
0:00:02.771755875 8744 0x3d233140 LOG baseparse gstbaseparse.c:2637:gst_base_parse_finish_frame:<my_h264parse> finished frame at offset 13680, flushing size 878
0:00:02.771817000 8744 0x3d233140 LOG adapter gstadapter.c:634:gst_adapter_flush_unchecked:<GstAdapter at 0x3d20c000> flushing 878 bytes
0:00:02.771872125 8744 0x3d233140 LOG adapter gstadapter.c:656:gst_adapter_flush_unchecked:<GstAdapter at 0x3d20c000> flushing out head buffer
0:00:02.771909625 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:725:_gst_buffer_free: finalize 0xffffa40172f0
0:00:02.771965375 8744 0x3d233140 LOG adapter gstadapter.c:668:gst_adapter_flush_unchecked:<GstAdapter at 0x3d20c000> adapter empty now
0:00:02.772004125 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:725:_gst_buffer_free: finalize 0xffffa4034090
0:00:02.772045250 8744 0x3d233140 DEBUG GST_MEMORY gstmemory.c:88:_gst_memory_free: free memory 0xffffa40183a0
(free_data, 133)
0:00:02.772122500 8744 0x3d233140 DEBUG baseparse gstbaseparse.c:2333:gst_base_parse_handle_and_push_frame:<my_h264parse> no next fallback timestamp
0:00:02.772172875 8744 0x3d233140 LOG baseparse gstbaseparse.c:2392:gst_base_parse_push_frame:<my_h264parse> processing buffer of size 880 with dts 99:99:99.999999999, pts 0:00:05.000000000, duration 0:00:00.500000000
0:00:02.772276625 8744 0x3d233140 DEBUG GST_CAPS gstpad.c:2705:gst_pad_has_current_caps:<my_h264parse:src> check current pad caps video/x-h264, stream-format=(string)byte-stream, alignment=(string)au, framerate=(fraction)0/1, width=(int)176, height=(int)144, interlace-mode=(string)progressive, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8, parsed=(boolean)true, profile=(string)constrained-baseline, level=(string)1.2
0:00:02.772418125 8744 0x3d233140 LOG baseparse gstbaseparse.c:1851:gst_base_parse_update_bitrates:<my_h264parse> frame bitrate 14080, avg bitrate 23254
0:00:02.772479625 8744 0x3d233140 DEBUG h264parse gsth264parse.c:186:gst_h264_parse_reset_frame:<my_h264parse> reset frame
0:00:02.772528500 8744 0x3d233140 LOG baseparse gstbaseparse.c:900:gst_base_parse_queue_tag_event_update:<my_h264parse> upstream : (NULL)
0:00:02.772579750 8744 0x3d233140 LOG baseparse gstbaseparse.c:902:gst_base_parse_queue_tag_event_update:<my_h264parse> parser : taglist, video-codec=(string)"H.264\ \(Constrained\ Baseline\ Profile\)";
0:00:02.772683750 8744 0x3d233140 LOG baseparse gstbaseparse.c:903:gst_base_parse_queue_tag_event_update:<my_h264parse> mode : 2
0:00:02.772757250 8744 0x3d233140 DEBUG baseparse gstbaseparse.c:909:gst_base_parse_queue_tag_event_update:<my_h264parse> merged : taglist, video-codec=(string)"H.264\ \(Constrained\ Baseline\ Profile\)";
0:00:02.772824875 8744 0x3d233140 LOG baseparse gstbaseparse.c:923:gst_base_parse_queue_tag_event_update:<my_h264parse> adding min bitrate 14080
0:00:02.772889125 8744 0x3d233140 LOG baseparse gstbaseparse.c:928:gst_base_parse_queue_tag_event_update:<my_h264parse> adding max bitrate 22352
0:00:02.772948250 8744 0x3d233140 LOG baseparse gstbaseparse.c:934:gst_base_parse_queue_tag_event_update:<my_h264parse> adding avg bitrate 23254
0:00:02.773011750 8744 0x3d233140 DEBUG GST_EVENT gstevent.c:306:gst_event_new_custom: creating new event 0xffffa4007ec0 tag 20510
0:00:02.773133125 8744 0x3d233140 LOG GST_PADS gstpad.c:5176:store_sticky_event:<my_h264parse:src> stored sticky event tag
0:00:02.773191125 8744 0x3d233140 DEBUG GST_PADS gstpad.c:3937:check_sticky:<my_h264parse:src> pushing all sticky events
0:00:02.773242000 8744 0x3d233140 DEBUG GST_PADS gstpad.c:3867:push_sticky:<my_h264parse:src> event stream-start was already received
0:00:02.773297875 8744 0x3d233140 DEBUG GST_PADS gstpad.c:3867:push_sticky:<my_h264parse:src> event caps was already received
0:00:02.773353500 8744 0x3d233140 DEBUG GST_PADS gstpad.c:3867:push_sticky:<my_h264parse:src> event segment was already received
0:00:02.773411125 8744 0x3d233140 LOG GST_PADS gstpad.c:5351:gst_pad_push_event_unchecked:<my_h264parse:src> sending event 0xffffa4007ec0 (tag) to peerpad <my_vdec:sink>
0:00:02.773487250 8744 0x3d233140 DEBUG GST_EVENT gstpad.c:5638:gst_pad_send_event_unchecked:<my_vdec:sink> have event type tag event: 0xffffa4007ec0, time 99:99:99.999999999, seq-num 57, GstTagList-stream, taglist=(taglist)"taglist\,\ video-codec\=\(string\)\"H.264\\\ \\\(Constrained\\\ Baseline\\\ Profile\\\)\"\,\ minimum-bitrate\=\(uint\)14080\,\ maximum-bitrate\=\(uint\)22352\,\ bitrate\=\(uint\)23254\;";
0:00:02.773654125 8744 0x3d233140 DEBUG videodecoder gstvideodecoder.c:1393:gst_video_decoder_sink_event:<my_vdec> received event 20510, tag
0:00:03.253098500 8744 0x3d233770 DEBUG GST_CLOCK gstsystemclock.c:746:gst_system_clock_id_wait_jitter_unlocked: entry 0xffffa4008580 unlocked, status 3, ret 0
0:00:03.253247250 8744 0x3d233770 DEBUG GST_CLOCK gstsystemclock.c:770:gst_system_clock_id_wait_jitter_unlocked: entry 0xffffa4008580 unlocked after timeout
0:00:03.253332000 8744 0x3d233770 DEBUG GST_CLOCK gstclock.c:1046:gst_clock_get_internal_time:<GstSystemClock> internal time 0:15:47.600257375
0:00:03.253401625 8744 0x3d233770 DEBUG GST_CLOCK gstclock.c:1091:gst_clock_get_time:<GstSystemClock> adjusted time 0:15:47.600257375
0:00:03.253456875 8744 0x3d233770 DEBUG GST_CLOCK gstsystemclock.c:792:gst_system_clock_id_wait_jitter_unlocked: entry 0xffffa4008580 finished, diff -1227000
0:00:03.253516625 8744 0x3d233770 DEBUG GST_CLOCK gstclock.c:547:gst_clock_id_wait:<GstSystemClock> done waiting entry 0xffffa4008580, res: 0 (ok)
0:00:03.253586000 8744 0x3d233770 DEBUG basesink gstbasesink.c:2610:gst_base_sink_do_sync:<my_sink> clock returned 0, jitter -0:00:00.488474750
0:00:03.253656500 8744 0x3d233770 DEBUG basesink gstbasesink.c:2921:gst_base_sink_is_too_late:<my_sink> object was scheduled in time
0:00:03.253706000 8744 0x3d233770 DEBUG basesink gstbasesink.c:3538:gst_base_sink_chain_unlocked:<my_sink> rendering object 0xffffa40289b0
0:00:03.253833625 8744 0x3d233770 DEBUG basesink gstbasesink.c:994:gst_base_sink_set_last_buffer_unlocked:<my_sink> setting last buffer to 0xffffa40289b0
0:00:03.253897875 8744 0x3d233770 LOG videosink gstvideosink.c:228:gst_video_sink_show_frame:<my_sink> rendering frame, ts=0:00:02.500000000
0:00:03.253965500 8744 0x3d233770 LOG waylandsink gstwaylandsink.c:863:gst_wayland_sink_show_frame:<my_sink> render buffer 0xffffa40289b0
0:00:03.254037000 8744 0x3d233770 LOG waylandsink gstwaylandsink.c:917:gst_wayland_sink_show_frame:<my_sink> buffer 0xffffa40289b0 does not have a wl_buffer from our display, creating it
0:00:03.254148000 8744 0x3d233770 DEBUG waylandsink wllinuxdmabuf.c:108:gst_wl_linux_dmabuf_construct_wl_buffer:<GstWlDisplay at 0x3d1da380> Creating wl_buffer from DMABuf of size 98304 (176 x 144), format NV12 modifier 0x0800000000000001
0:00:03.254838000 8744 0x3d1e1590 DEBUG GST_POLL gstpoll.c:1369:gst_poll_wait: 0x3d21fe80: timeout :99:99:99.999999999
0:00:03.254844250 8744 0x3d233770 DEBUG waylandsink wllinuxdmabuf.c:175:gst_wl_linux_dmabuf_construct_wl_buffer:<dmabufallocator2> created linux_dmabuf wl_buffer (0xffff9c027cb0):176x144, fmt=NV12, 2 planes
0:00:03.255054000 8744 0x3d233770 DEBUG GST_QOS gstbasesink.c:2751:gst_base_sink_perform_qos:<my_sink> start: 0:00:02.500000000, stop 0:00:03.000000000, entered 0:00:02.011525250, left 0:00:02.500000000, pt: 0:00:00.011525250, duration 0:00:00.500000000,jitter -488474750
0:00:03.255184000 8744 0x3d233770 DEBUG GST_QOS gstbasesink.c:2755:gst_base_sink_perform_qos:<my_sink> avg_pt: 0:00:00.012160824, avg_rate: 0.0253825
0:00:03.255276750 8744 0x3d233770 DEBUG GST_QOS gstbasesink.c:2785:gst_base_sink_perform_qos:<my_sink> updated: avg_pt: 0:00:00.012081377, avg_rate: 0.0253063
0:00:03.255352375 8744 0x3d233770 DEBUG GST_QOS gstbasesink.c:2679:gst_base_sink_send_qos:<my_sink> qos: type 0, proportion: 0.025306, diff -488474750, timestamp 0:00:02.500000000
0:00:03.255421875 8744 0x3d1e1590 LOG waylandsink wlbuffer.c:137:buffer_release:<GstWlBuffer at 0xffff9c00b8c0> wl_buffer::release (GstBuffer: 0xffffa40288a0)
0:00:03.255425125 8744 0x3d233770 LOG GST_EVENT gstevent.c:1146:gst_event_new_qos: creating qos type 0, proportion 0.025306, diff -488474750, timestamp 0:00:02.500000000
0:00:03.255473125 8744 0x3d1e1590 LOG GST_BUFFER gstbuffer.c:710:_gst_buffer_dispose: release 0xffffa40288a0 to pool 0xffffa4012e90
0:00:03.255519250 8744 0x3d233770 DEBUG GST_EVENT gstevent.c:306:gst_event_new_custom: creating new event 0xffff9c00e800 qos 48641
0:00:03.255528000 8744 0x3d1e1590 DEBUG GST_BUFFER gstbuffer.c:2383:gst_buffer_foreach_meta: remove metadata 0xffff9c001ef8 (GstDmabufMeta)
0:00:03.255612750 8744 0x3d233770 LOG GST_PADS gstpad.c:5351:gst_pad_push_event_unchecked:<my_sink:sink> sending event 0xffff9c00e800 (qos) to peerpad <my_vdec:src>
0:00:03.255637125 8744 0x3d1e1590 DEBUG v4l2bufferpool gstv4l2bufferpool.c:1420:gst_v4l2_buffer_pool_release_buffer:<my_vdec:pool:src> release buffer 0xffffa40288a0
0:00:03.255748625 8744 0x3d1e1590 LOG v4l2bufferpool gstv4l2bufferpool.c:1059:gst_v4l2_buffer_pool_qbuf:<my_vdec:pool:src> queuing buffer 4
0:00:03.255705375 8744 0x3d233770 DEBUG GST_EVENT gstpad.c:5638:gst_pad_send_event_unchecked:<my_vdec:src> have event type qos event: 0xffff9c00e800, time 99:99:99.999999999, seq-num 58, GstEventQOS, type=(GstQOSType)GST_QOS_TYPE_OVERFLOW, proportion=(double)0.025306262862457279, diff=(gint64)-488474750, timestamp=(guint64)2500000000;
0:00:03.255849500 8744 0x3d1e1590 LOG v4l2allocator gstv4l2allocator.c:1265:gst_v4l2_allocator_qbuf:<my_vdec:pool:src:allocator> queued buffer 4 (flags 0x4003)
0:00:03.255927750 8744 0x3d233770 DEBUG videodecoder gstvideodecoder.c:1584:gst_video_decoder_src_event:<my_vdec> received event 48641, qos
0:00:03.256018000 8744 0x3d1e1590 DEBUG GST_POLL gstpoll.c:1369:gst_poll_wait: 0x3d21fe80: timeout :99:99:99.999999999
0:00:03.256061625 8744 0x3d233770 DEBUG videodecoder gstvideodecoder.c:1485:gst_video_decoder_src_event_default:<my_vdec> received event 48641, qos
0:00:03.256130625 8744 0x3d233770 DEBUG videodecoder gstvideodecoder.c:1556:gst_video_decoder_src_event_default:<my_vdec> got QoS 0:00:02.500000000, -0:00:00.488474750, 0.0253063
0:00:03.256227125 8744 0x3d233770 LOG GST_PADS gstpad.c:5351:gst_pad_push_event_unchecked:<my_vdec:sink> sending event 0xffff9c00e800 (qos) to peerpad <my_h264parse:src>
0:00:03.256305500 8744 0x3d233770 DEBUG GST_EVENT gstpad.c:5638:gst_pad_send_event_unchecked:<my_h264parse:src> have event type qos event: 0xffff9c00e800, time 99:99:99.999999999, seq-num 58, GstEventQOS, type=(GstQOSType)GST_QOS_TYPE_OVERFLOW, proportion=(double)0.025306262862457279, diff=(gint64)-488474750, timestamp=(guint64)2500000000;
0:00:03.256464125 8744 0x3d233770 DEBUG baseparse gstbaseparse.c:1602:gst_base_parse_src_event:<my_h264parse> event 48641, qos
0:00:03.256529125 8744 0x3d233770 LOG GST_PADS gstpad.c:3087:gst_pad_event_default:<my_h264parse:src> default event handler for event qos event: 0xffff9c00e800, time 99:99:99.999999999, seq-num 58, GstEventQOS, type=(GstQOSType)GST_QOS_TYPE_OVERFLOW, proportion=(double)0.025306262862457279, diff=(gint64)-488474750, timestamp=(guint64)2500000000;
0:00:03.256683625 8744 0x3d233770 DEBUG GST_PADS gstpad.c:2897:gst_pad_iterate_internal_links_default:<my_h264parse:src> Making iterator
0:00:03.256748875 8744 0x3d233770 LOG GST_PADS gstpad.c:3007:gst_pad_forward:<my_h264parse:src> calling forward function on pad my_h264parse:sink
0:00:03.256810500 8744 0x3d233770 LOG GST_PADS gstpad.c:3052:event_forward_func:<my_h264parse:sink> Reffing and pushing event 0xffff9c00e800 (qos) to my_h264parse:sink
0:00:03.256882125 8744 0x3d233770 LOG GST_PADS gstpad.c:5351:gst_pad_push_event_unchecked:<my_h264parse:sink> sending event 0xffff9c00e800 (qos) to peerpad <my_appsrc:src>
0:00:03.256958125 8744 0x3d233770 DEBUG GST_EVENT gstpad.c:5638:gst_pad_send_event_unchecked:<my_appsrc:src> have event type qos event: 0xffff9c00e800, time 99:99:99.999999999, seq-num 58, GstEventQOS, type=(GstQOSType)GST_QOS_TYPE_OVERFLOW, proportion=(double)0.025306262862457279, diff=(gint64)-488474750, timestamp=(guint64)2500000000;
0:00:03.257193125 8744 0x3d233770 DEBUG basesrc gstbasesrc.c:2027:gst_base_src_default_event:<my_appsrc> handle event qos event: 0xffff9c00e800, time 99:99:99.999999999, seq-num 58, GstEventQOS, type=(GstQOSType)GST_QOS_TYPE_OVERFLOW, proportion=(double)0.025306262862457279, diff=(gint64)-488474750, timestamp=(guint64)2500000000;
0:00:03.257341500 8744 0x3d233770 DEBUG GST_QOS gstbasesrc.c:2013:gst_base_src_update_qos:<my_appsrc> qos: proportion: 0.025306, diff -488474750, timestamp 0:00:02.500000000
0:00:03.257429875 8744 0x3d233770 DEBUG GST_PADS gstpad.c:5712:gst_pad_send_event_unchecked:<my_appsrc:src> sent event, ret ok
0:00:03.257487000 8744 0x3d233770 LOG GST_PADS gstpad.c:5359:gst_pad_push_event_unchecked:<my_h264parse:sink> sent event 0xffff9c00e800 (qos) to peerpad <my_appsrc:src>, ret ok
0:00:03.257562875 8744 0x3d233770 LOG GST_EVENT gstevent.c:223:_gst_event_free: freeing event 0xffff9c00e800 type qos
0:00:03.257632000 8744 0x3d233770 DEBUG GST_PADS gstpad.c:5712:gst_pad_send_event_unchecked:<my_h264parse:src> sent event, ret ok
0:00:03.257688250 8744 0x3d233770 LOG GST_PADS gstpad.c:5359:gst_pad_push_event_unchecked:<my_vdec:sink> sent event 0xffff9c00e800 (qos) to peerpad <my_h264parse:src>, ret ok
0:00:03.257804625 8744 0x3d233770 DEBUG GST_PADS gstpad.c:5712:gst_pad_send_event_unchecked:<my_vdec:src> sent event, ret ok
0:00:03.257861625 8744 0x3d233770 LOG GST_PADS gstpad.c:5359:gst_pad_push_event_unchecked:<my_sink:sink> sent event 0xffff9c00e800 (qos) to peerpad <my_vdec:src>, ret ok
0:00:03.257935250 8744 0x3d233770 DEBUG basesink gstbasesink.c:3577:gst_base_sink_chain_unlocked:<my_sink> object unref after render 0xffffa40289b0
0:00:03.257995250 8744 0x3d233770 DEBUG GST_SCHEDULING gstpad.c:4283:gst_pad_chain_data_unchecked:<my_sink:sink> called chainfunction &gst_base_sink_chain with buffer 0xffffa40289b0, returned ok
0:00:03.258090500 8744 0x3d233770 LOG v4l2videodec gstv4l2videodec.c:605:gst_v4l2_video_dec_loop:<my_vdec> Allocate output buffer
0:00:03.258148125 8744 0x3d233770 DEBUG v4l2bufferpool gstv4l2bufferpool.c:1342:gst_v4l2_buffer_pool_acquire_buffer:<my_vdec:pool:src> acquire
0:00:03.258197500 8744 0x3d233770 LOG v4l2bufferpool gstv4l2bufferpool.c:999:gst_v4l2_buffer_pool_poll:<my_vdec:pool:src> polling device
0:00:03.258121000 8744 0x3d233140 INFO videodecoder gstvideodecoder.c:1339:gst_video_decoder_sink_event_default:<my_vdec> upstream tags: taglist, video-codec=(string)"H.264\ \(Constrained\ Baseline\ Profile\)", minimum-bitrate=(uint)14080, maximum-bitrate=(uint)22352, bitrate=(uint)23254;
0:00:03.258248625 8744 0x3d233770 DEBUG GST_POLL gstpoll.c:1369:gst_poll_wait: 0xffff9c007400: timeout :99:99:99.999999999
0:00:03.258350375 8744 0x3d233140 LOG videodecoder gstvideodecoder.c:805:gst_video_decoder_create_merged_tags_event:<my_vdec> upstream : taglist, video-codec=(string)"H.264\ \(Constrained\ Baseline\ Profile\)", minimum-bitrate=(uint)14080, maximum-bitrate=(uint)22352, bitrate=(uint)23254;
0:00:03.258456000 8744 0x3d233140 LOG videodecoder gstvideodecoder.c:806:gst_video_decoder_create_merged_tags_event:<my_vdec> decoder : (NULL)
0:00:03.258509250 8744 0x3d233140 LOG videodecoder gstvideodecoder.c:807:gst_video_decoder_create_merged_tags_event:<my_vdec> mode : 3
0:00:03.258578500 8744 0x3d233140 DEBUG videodecoder gstvideodecoder.c:813:gst_video_decoder_create_merged_tags_event:<my_vdec> merged : taglist, video-codec=(string)"H.264\ \(Constrained\ Baseline\ Profile\)", minimum-bitrate=(uint)14080, maximum-bitrate=(uint)22352, bitrate=(uint)23254;
0:00:03.258687250 8744 0x3d233140 DEBUG GST_EVENT gstevent.c:306:gst_event_new_custom: creating new event 0xffffa4007f30 tag 20510
0:00:03.258765375 8744 0x3d233140 DEBUG GST_PADS gstpad.c:5712:gst_pad_send_event_unchecked:<my_vdec:sink> sent event, ret ok
0:00:03.258816375 8744 0x3d233140 LOG GST_EVENT gstevent.c:223:_gst_event_free: freeing event 0xffffa4007de0 type tag
0:00:03.258887375 8744 0x3d233140 LOG GST_PADS gstpad.c:5176:store_sticky_event:<my_vdec:sink> stored sticky event tag
0:00:03.258945625 8744 0x3d233140 LOG GST_PADS gstpad.c:5359:gst_pad_push_event_unchecked:<my_h264parse:src> sent event 0xffffa4007ec0 (tag) to peerpad <my_vdec:sink>, ret ok
0:00:03.259028500 8744 0x3d233140 DEBUG GST_PADS gstpad.c:3889:push_sticky:<my_h264parse:src> event tag marked received
0:00:03.259089750 8744 0x3d233140 LOG baseparse gstbaseparse.c:2535:gst_base_parse_push_frame:<my_h264parse> pushing frame (880 bytes) now..
0:00:03.259156125 8744 0x3d233140 DEBUG GST_SCHEDULING gstpad.c:4277:gst_pad_chain_data_unchecked:<my_vdec:sink> calling chainfunction &gst_video_decoder_chain with buffer buffer: 0xffffa4028130, pts 0:00:05.000000000, dts 99:99:99.999999999, dur 0:00:00.500000000, size 880, offset 13680, offset_end none, flags 0x2400
0:00:03.259294375 8744 0x3d233140 LOG videodecoder gstvideodecoder.c:2438:gst_video_decoder_chain:<my_vdec> chain PTS 0:00:05.000000000, DTS 99:99:99.999999999 duration 0:00:00.500000000 size 880 flags 2400
0:00:03.259430375 8744 0x3d233140 LOG videodecoder gstvideodecoder.c:2595:gst_video_decoder_new_frame:<my_vdec> Created new frame 0xffffa4028240 (sfn:10)
0:00:03.259492875 8744 0x3d233140 LOG videodecoder gstvideodecoder.c:3410:gst_video_decoder_decode_frame:<my_vdec> PTS 0:00:05.000000000, DTS 99:99:99.999999999, dist 10
0:00:03.259580625 8744 0x3d233140 DEBUG v4l2videodec gstv4l2videodec.c:704:gst_v4l2_video_dec_handle_frame:<my_vdec> Handling frame 10
0:00:03.259640500 8744 0x3d233140 DEBUG v4l2bufferpool gstv4l2bufferpool.c:1745:gst_v4l2_buffer_pool_process:<my_vdec:pool:sink> process buffer 0xffffa4028278
0:00:03.259692375 8744 0x3d233140 LOG v4l2bufferpool gstv4l2bufferpool.c:1923:gst_v4l2_buffer_pool_process:<my_vdec:pool:sink> alloc buffer from our pool
0:00:03.259739250 8744 0x3d233140 DEBUG v4l2bufferpool gstv4l2bufferpool.c:1342:gst_v4l2_buffer_pool_acquire_buffer:<my_vdec:pool:sink> acquire
0:00:03.259789375 8744 0x3d233140 LOG bufferpool gstbufferpool.c:1128:default_acquire_buffer:<my_vdec:pool:sink> acquired buffer 0xffffa40170d0
0:00:03.259842750 8744 0x3d233140 LOG v4l2bufferpool gstv4l2bufferpool.c:116:gst_v4l2_buffer_pool_copy_buffer:<my_vdec:pool:sink> copying buffer
0:00:03.259889375 8744 0x3d233140 DEBUG v4l2bufferpool gstv4l2bufferpool.c:141:gst_v4l2_buffer_pool_copy_buffer:<my_vdec:pool:sink> copy raw bytes
0:00:03.259927625 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1721:gst_buffer_map_range: buffer 0xffffa4028130, idx 0, length -1, flags 0001
0:00:03.259985125 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:213:_get_merged_memory: buffer 0xffffa4028130, idx 0, length 1
0:00:03.260042375 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1826:gst_buffer_fill: buffer 0xffffa40170d0, offset 0, size 880
0:00:03.260102625 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1582:gst_buffer_resize_range: trim 0xffffa40170d0 0-880 size:6291456 offs:0 max:6291456
0:00:03.260168000 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:515:gst_buffer_copy_into: copy 0xffffa4028130 to 0xffffa40170d0, offset 0-880/880
0:00:03.260238125 8744 0x3d233140 LOG GST_PERFORMANCE gstv4l2bufferpool.c:155:gst_v4l2_buffer_pool_copy_buffer:<my_vdec:pool:sink> slow copy into buffer 0xffffa40170d0
0:00:03.260294625 8744 0x3d233140 LOG v4l2bufferpool gstv4l2bufferpool.c:1059:gst_v4l2_buffer_pool_qbuf:<my_vdec:pool:sink> queuing buffer 0
0:00:03.260408500 8744 0x3d233140 LOG v4l2allocator gstv4l2allocator.c:1265:gst_v4l2_allocator_qbuf:<my_vdec:pool:sink:allocator> queued buffer 0 (flags 0x4003)
0:00:03.260463375 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:710:_gst_buffer_dispose: release 0xffffa40170d0 to pool 0xffffa4012410
0:00:03.260522000 8744 0x3d233140 DEBUG v4l2bufferpool gstv4l2bufferpool.c:1420:gst_v4l2_buffer_pool_release_buffer:<my_vdec:pool:sink> release buffer 0xffffa40170d0
0:00:03.260575500 8744 0x3d233140 LOG v4l2bufferpool gstv4l2bufferpool.c:1503:gst_v4l2_buffer_pool_release_buffer:<my_vdec:pool:sink> buffer 0 is queued
0:00:03.260629625 8744 0x3d233140 LOG v4l2bufferpool gstv4l2bufferpool.c:999:gst_v4l2_buffer_pool_poll:<my_vdec:pool:sink> polling device
0:00:03.260693750 8744 0x3d233140 DEBUG GST_POLL gstpoll.c:1369:gst_poll_wait: 0xffffa4005cf0: timeout :99:99:99.999999999
0:00:03.260771125 8744 0x3d233140 DEBUG GST_POLL gstpoll.c:1188:gst_poll_fd_has_error: 0xffffa4005cf0: fd (fd:18, idx:1) 0
0:00:03.260828875 8744 0x3d233140 DEBUG GST_POLL gstpoll.c:1265:gst_poll_fd_can_read_pri_unlocked: 0xffffa4005cf0: fd (fd:18, idx:1) 0
0:00:03.260893000 8744 0x3d233140 LOG v4l2bufferpool gstv4l2bufferpool.c:1322:gst_v4l2_buffer_pool_dequeue:<my_vdec:pool:sink> dequeueing a buffer
0:00:03.260989250 8744 0x3d233140 LOG v4l2allocator gstv4l2allocator.c:1312:gst_v4l2_allocator_dqbuf:<my_vdec:pool:sink:allocator> dequeued buffer 1 (flags 0x4001)
0:00:03.261111250 8744 0x3d233140 LOG v4l2bufferpool gstv4l2bufferpool.c:1194:gst_v4l2_buffer_pool_dqbuf:<my_vdec:pool:sink> dequeued buffer 0xffffa4017840 seq:0 (ix=1), mem 0xffffa4018280 used 1397, plane=0, flags 00004001, ts 0:00:04.500000000, pool-queued=1, buffer=0xffffa4017840
0:00:03.261226125 8744 0x3d233140 DEBUG v4l2bufferpool gstv4l2bufferpool.c:1420:gst_v4l2_buffer_pool_release_buffer:<my_vdec:pool:sink> release buffer 0xffffa4017840
0:00:03.261280375 8744 0x3d233140 LOG v4l2bufferpool gstv4l2bufferpool.c:1488:gst_v4l2_buffer_pool_release_buffer:<my_vdec:pool:sink> buffer 1 not queued, putting on free list
0:00:03.261336250 8744 0x3d233140 LOG bufferpool gstbufferpool.c:1284:default_release_buffer:<my_vdec:pool:sink> released buffer 0xffffa4017840 0
0:00:03.261385875 8744 0x3d233140 DEBUG GST_BUFFER gstbuffer.c:1375:gst_buffer_is_memory_range_writable: idx 0, length -1
0:00:03.261437500 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:799:gst_buffer_new: new 0xffffa4017ea0
0:00:03.261480125 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:515:gst_buffer_copy_into: copy 0xffffa4028130 to 0xffffa4017ea0, offset 0-0/880
0:00:03.261539250 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:725:_gst_buffer_free: finalize 0xffffa4028130
0:00:03.261581250 8744 0x3d233140 DEBUG GST_MEMORY gstmemory.c:88:_gst_memory_free: free memory 0xffffa4018310
0:00:03.261647375 8744 0x3d233140 DEBUG GST_SCHEDULING gstpad.c:4283:gst_pad_chain_data_unchecked:<my_vdec:sink> called chainfunction &gst_video_decoder_chain with buffer 0xffffa4028130, returned ok
0:00:03.261711875 8744 0x3d233140 LOG baseparse gstbaseparse.c:2537:gst_base_parse_push_frame:<my_h264parse> frame pushed, flow ok
0:00:03.261766000 8744 0x3d233140 LOG baseparse gstbaseparse.c:2166:gst_base_parse_handle_buffer:<my_h264parse> handle_frame skipped 0, flushed 878
0:00:03.261827125 8744 0x3d233140 DEBUG baseparse gstbaseparse.c:3215:gst_base_parse_chain:<my_h264parse> not enough data available (only 0 bytes)
0:00:03.261878000 8744 0x3d233140 LOG baseparse gstbaseparse.c:3277:gst_base_parse_chain:<my_h264parse> chain leaving
0:00:03.261929500 8744 0x3d233140 DEBUG GST_SCHEDULING gstpad.c:4283:gst_pad_chain_data_unchecked:<my_h264parse:sink> called chainfunction &gst_base_parse_chain with buffer 0xffffa40172f0, returned ok
0:00:03.262000125 8744 0x3d233140 LOG basesrc gstbasesrc.c:2828:gst_base_src_loop:<my_appsrc> next_ts 0:00:00.000014558 size 4096
0:00:03.262070000 8744 0x3d233140 DEBUG basesrc gstbasesrc.c:2399:gst_base_src_update_length:<my_appsrc> reading offset 14558, length 4096, size -1, segment.stop -1, maxsize -1
0:00:03.262147375 8744 0x3d233140 DEBUG basesrc gstbasesrc.c:2506:gst_base_src_get_range:<my_appsrc> calling create offset 14558 length 4096, time 0
(get_data, 99)
(get_data, 108)read_ret: 8, target frame num: 11, read frame num: 11
0:00:03.262277750 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:799:gst_buffer_new: new 0xffffa4034090
0:00:03.262323500 8744 0x3d233140 DEBUG GST_MEMORY gstmemory.c:139:gst_memory_init: new memory 0xffffa40180d0, maxsize:995 offset:0 size:995
0:00:03.262380125 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:414:_memory_add: buffer 0xffffa4034090, idx -1, mem 0xffffa40180d0
0:00:03.262490250 8744 0x3d233140 DEBUG appsrc gstappsrc.c:1863:gst_app_src_push_internal:<my_appsrc> queueing buffer 0xffffa4034090
0:00:03.262562750 8744 0x3d233140 LOG appsrc gstappsrc.c:1221:gst_app_src_create:<my_appsrc> have buffer 0xffffa4034090 of size 995
0:00:03.262672750 8744 0x3d233140 DEBUG basesrc gstbasesrc.c:2360:gst_base_src_do_sync:<my_appsrc> no sync needed
0:00:03.262722125 8744 0x3d233140 DEBUG basesrc gstbasesrc.c:2597:gst_base_src_get_range:<my_appsrc> buffer ok
0:00:03.262780375 8744 0x3d233140 DEBUG GST_SCHEDULING gstpad.c:4277:gst_pad_chain_data_unchecked:<my_h264parse:sink> calling chainfunction &gst_base_parse_chain with buffer buffer: 0xffffa4034090, pts 0:00:05.500000000, dts 99:99:99.999999999, dur 0:00:00.500000000, size 995, offset none, offset_end none, flags 0x0
0:00:03.262905500 8744 0x3d233140 DEBUG baseparse gstbaseparse.c:3030:gst_base_parse_chain:<my_h264parse> chain
0:00:03.262953750 8744 0x3d233140 LOG baseparse gstbaseparse.c:3150:gst_base_parse_chain:<my_h264parse> buffer size: 995, offset = -1, dts 99:99:99.999999999, pts 0:00:05.500000000
0:00:03.263048250 8744 0x3d233140 LOG adapter gstadapter.c:389:gst_adapter_push:<GstAdapter at 0x3d20c000> pushing 0xffffa4034090 first 995 bytes
0:00:03.263111375 8744 0x3d233140 LOG adapter gstadapter.c:290:update_timestamps_and_offset:<GstAdapter at 0x3d20c000> new pts 0:00:05.500000000
0:00:03.263180875 8744 0x3d233140 LOG adapter gstadapter.c:974:gst_adapter_get_buffer:<GstAdapter at 0x3d20c000> getting buffer of 995 bytes
0:00:03.263236750 8744 0x3d233140 LOG adapter gstadapter.c:989:gst_adapter_get_buffer:<GstAdapter at 0x3d20c000> providing buffer of 995 bytes as head buffer
0:00:03.263292250 8744 0x3d233140 LOG baseparse gstbaseparse.c:2148:gst_base_parse_handle_buffer:<my_h264parse> handling buffer of size 995 with dts 99:99:99.999999999, pts 0:00:05.500000000, duration 0:00:00.500000000
0:00:03.263416375 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:799:gst_buffer_new: new 0xffffa40172f0
0:00:03.263461125 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:515:gst_buffer_copy_into: copy 0xffffa4034090 to 0xffffa40172f0, offset 0-995/995
0:00:03.263522000 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:414:_memory_add: buffer 0xffffa40172f0, idx -1, mem 0xffffa40180d0
0:00:03.263573875 8744 0x3d233140 DEBUG GST_PERFORMANCE gstminiobject.c:317:gst_mini_object_make_writable: copy GstBuffer miniobject 0xffffa4034090 -> 0xffffa40172f0
0:00:03.263635750 8744 0x3d233140 LOG baseparse gstbaseparse.c:2110:gst_base_parse_prepare_frame:<my_h264parse> preparing frame at offset 18446744073709551615 (0xffffffffffffffff) of size 995
0:00:03.263701750 8744 0x3d233140 LOG baseparse gstbaseparse.c:764:gst_base_parse_update_frame:<my_h264parse> marking as new frame
0:00:03.263742250 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1721:gst_buffer_map_range: buffer 0xffffa40172f0, idx 0, length -1, flags 0001
0:00:03.263799250 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:213:_get_merged_memory: buffer 0xffffa40172f0, idx 0, length 1
0:00:03.263913375 8744 0x3d233140 LOG h264parse gsth264parse.c:1097:gst_h264_parse_handle_frame:<my_h264parse> parsing new frame
0:00:03.264002500 8744 0x3d233140 DEBUG h264parse gsth264parse.c:186:gst_h264_parse_reset_frame:<my_h264parse> reset frame
0:00:03.264054000 8744 0x3d233140 DEBUG h264parse gsth264parse.c:1112:gst_h264_parse_handle_frame:<my_h264parse> last parse position 0
0:00:03.264104125 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:242:gst_h264_parse_nalu_header: Nal type 9, ref_idc 0
0:00:03.264153250 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:242:gst_h264_parse_nalu_header: Nal type 9, ref_idc 0
0:00:03.264199875 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:1366:gst_h264_parser_identify_nalu: Complete nal found. Off: 4, Size: 2
0:00:03.264257000 8744 0x3d233140 DEBUG h264parse gsth264parse.c:1162:gst_h264_parse_handle_frame:<my_h264parse> complete nal (offset, size): (4, 2)
0:00:03.264346375 8744 0x3d233140 DEBUG h264parse gsth264parse.c:1219:gst_h264_parse_handle_frame:<my_h264parse> 0xffffa40306f0 complete nal found. Off: 4, Size: 2
0:00:03.264440625 8744 0x3d233140 DEBUG h264parse gsth264parse.c:721:gst_h264_parse_process_nal:<my_h264parse> processing nal of type 9 AU delimiter, size 2
0:00:03.264503500 8744 0x3d233140 LOG h264parse gsth264parse.c:895:gst_h264_parse_process_nal:<my_h264parse> collecting NAL in AVC frame
0:00:03.264551125 8744 0x3d233140 DEBUG h264parse gsth264parse.c:428:gst_h264_parse_wrap_nal:<my_h264parse> nal length 2
0:00:03.264598375 8744 0x3d233140 DEBUG GST_MEMORY gstmemory.c:139:gst_memory_init: new memory 0xffffa400aa10, maxsize:13 offset:0 size:6
0:00:03.264655375 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:799:gst_buffer_new: new 0xffffa40346f0
0:00:03.264697125 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:414:_memory_add: buffer 0xffffa40346f0, idx -1, mem 0xffffa400aa10
0:00:03.264747375 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:855:gst_buffer_new_allocate: new buffer 0xffffa40346f0 of size 6 from allocator (nil)
0:00:03.264799750 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1826:gst_buffer_fill: buffer 0xffffa40346f0, offset 0, size 4
0:00:03.264851500 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1826:gst_buffer_fill: buffer 0xffffa40346f0, offset 4, size 2
0:00:03.264903375 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1582:gst_buffer_resize_range: trim 0xffffa40346f0 0-6 size:6 offs:0 max:13
0:00:03.264977125 8744 0x3d233140 LOG adapter gstadapter.c:389:gst_adapter_push:<GstAdapter at 0x3d20c120> pushing 0xffffa40346f0 first 6 bytes
0:00:03.265035875 8744 0x3d233140 DEBUG h264parse gsth264parse.c:914:gst_h264_parse_collect_nal:<my_h264parse> parsing collected nal
0:00:03.265133625 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:242:gst_h264_parse_nalu_header: Nal type 6, ref_idc 0
0:00:03.265191500 8744 0x3d233140 LOG h264parse gsth264parse.c:922:gst_h264_parse_collect_nal:<my_h264parse> nal type: 9 AU delimiter
0:00:03.265246500 8744 0x3d233140 LOG h264parse gsth264parse.c:941:gst_h264_parse_collect_nal:<my_h264parse> next nal type: 6 SEI
0:00:03.265301375 8744 0x3d233140 LOG h264parse gsth264parse.c:948:gst_h264_parse_collect_nal:<my_h264parse> au complete: 0
0:00:03.265352125 8744 0x3d233140 DEBUG h264parse gsth264parse.c:1264:gst_h264_parse_handle_frame:<my_h264parse> Looking for more
0:00:03.265390500 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:242:gst_h264_parse_nalu_header: Nal type 6, ref_idc 0
0:00:03.265469000 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:1366:gst_h264_parser_identify_nalu: Complete nal found. Off: 10, Size: 21
0:00:03.265526625 8744 0x3d233140 DEBUG h264parse gsth264parse.c:1162:gst_h264_parse_handle_frame:<my_h264parse> complete nal (offset, size): (10, 21)
0:00:03.265581875 8744 0x3d233140 DEBUG h264parse gsth264parse.c:1219:gst_h264_parse_handle_frame:<my_h264parse> 0xffffa40306f0 complete nal found. Off: 10, Size: 21
0:00:03.265642125 8744 0x3d233140 DEBUG h264parse gsth264parse.c:721:gst_h264_parse_process_nal:<my_h264parse> processing nal of type 6 SEI, size 21
0:00:03.265692625 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:2292:gst_h264_parser_parse_sei: parsing SEI nal
0:00:03.265732250 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:1127:gst_h264_parser_parse_sei_message: parsing "Sei message"
0:00:03.265772000 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:1147:gst_h264_parser_parse_sei_message: SEI message received: payloadType 5, payloadSize = 136 bits
0:00:03.265878250 8744 0x3d233140 DEBUG h264parse gsth264parse.c:807:gst_h264_parse_process_nal:<my_h264parse> marking SEI in frame at offset 6
0:00:03.265932500 8744 0x3d233140 LOG h264parse gsth264parse.c:895:gst_h264_parse_process_nal:<my_h264parse> collecting NAL in AVC frame
0:00:03.266007875 8744 0x3d233140 DEBUG h264parse gsth264parse.c:428:gst_h264_parse_wrap_nal:<my_h264parse> nal length 21
0:00:03.266054750 8744 0x3d233140 DEBUG GST_MEMORY gstmemory.c:139:gst_memory_init: new memory 0xffffa401b380, maxsize:32 offset:0 size:25
0:00:03.266112125 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:799:gst_buffer_new: new 0xffffa4017a60
0:00:03.266192750 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:414:_memory_add: buffer 0xffffa4017a60, idx -1, mem 0xffffa401b380
0:00:03.266244875 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:855:gst_buffer_new_allocate: new buffer 0xffffa4017a60 of size 25 from allocator (nil)
0:00:03.266299125 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1826:gst_buffer_fill: buffer 0xffffa4017a60, offset 0, size 4
0:00:03.266350750 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1826:gst_buffer_fill: buffer 0xffffa4017a60, offset 4, size 21
0:00:03.266402625 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1582:gst_buffer_resize_range: trim 0xffffa4017a60 0-25 size:25 offs:0 max:32
0:00:03.266477875 8744 0x3d233140 LOG adapter gstadapter.c:395:gst_adapter_push:<GstAdapter at 0x3d20c120> pushing 0xffffa4017a60 25 bytes at end, size now 31
0:00:03.266542000 8744 0x3d233140 DEBUG h264parse gsth264parse.c:914:gst_h264_parse_collect_nal:<my_h264parse> parsing collected nal
0:00:03.266582375 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:242:gst_h264_parse_nalu_header: Nal type 1, ref_idc 1
0:00:03.266637750 8744 0x3d233140 LOG h264parse gsth264parse.c:922:gst_h264_parse_collect_nal:<my_h264parse> nal type: 6 SEI
0:00:03.266693000 8744 0x3d233140 LOG h264parse gsth264parse.c:941:gst_h264_parse_collect_nal:<my_h264parse> next nal type: 1 Slice
0:00:03.266746750 8744 0x3d233140 LOG h264parse gsth264parse.c:948:gst_h264_parse_collect_nal:<my_h264parse> au complete: 0
0:00:03.266796875 8744 0x3d233140 DEBUG h264parse gsth264parse.c:1264:gst_h264_parse_handle_frame:<my_h264parse> Looking for more
0:00:03.266836250 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:242:gst_h264_parse_nalu_header: Nal type 1, ref_idc 1
0:00:03.266883875 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:1366:gst_h264_parser_identify_nalu: Complete nal found. Off: 34, Size: 208
0:00:03.266939375 8744 0x3d233140 DEBUG h264parse gsth264parse.c:1162:gst_h264_parse_handle_frame:<my_h264parse> complete nal (offset, size): (34, 208)
0:00:03.267061500 8744 0x3d233140 DEBUG h264parse gsth264parse.c:1219:gst_h264_parse_handle_frame:<my_h264parse> 0xffffa40306f0 complete nal found. Off: 34, Size: 208
0:00:03.267155375 8744 0x3d233140 DEBUG h264parse gsth264parse.c:721:gst_h264_parse_process_nal:<my_h264parse> processing nal of type 1 Slice, size 208
0:00:03.267217000 8744 0x3d233140 DEBUG h264parse gsth264parse.c:827:gst_h264_parse_process_nal:<my_h264parse> first_mb_in_slice = 0
0:00:03.267264250 8744 0x3d233140 DEBUG h264parse gsth264parse.c:830:gst_h264_parse_process_nal:<my_h264parse> frame start: 1
0:00:03.267313250 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:2079:gst_h264_parser_parse_slice_hdr: parsing "Slice header", slice type 0
0:00:03.267376125 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:700:gst_h264_slice_parse_dec_ref_pic_marking: parsing "Decoded reference picture marking"
0:00:03.267430750 8744 0x3d233140 DEBUG h264parse gsth264parse.c:840:gst_h264_parse_process_nal:<my_h264parse> parse result 0, first MB: 0, slice type: 0
0:00:03.267575000 8744 0x3d233140 LOG h264parse gsth264parse.c:895:gst_h264_parse_process_nal:<my_h264parse> collecting NAL in AVC frame
0:00:03.267656500 8744 0x3d233140 DEBUG h264parse gsth264parse.c:428:gst_h264_parse_wrap_nal:<my_h264parse> nal length 208
0:00:03.267796375 8744 0x3d233140 DEBUG GST_MEMORY gstmemory.c:139:gst_memory_init: new memory 0xffffa4042000, maxsize:219 offset:0 size:212
0:00:03.267860750 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:799:gst_buffer_new: new 0xffffa4017950
0:00:03.267903750 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:414:_memory_add: buffer 0xffffa4017950, idx -1, mem 0xffffa4042000
0:00:03.267955875 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:855:gst_buffer_new_allocate: new buffer 0xffffa4017950 of size 212 from allocator (nil)
0:00:03.268009500 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1826:gst_buffer_fill: buffer 0xffffa4017950, offset 0, size 4
0:00:03.268063375 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1826:gst_buffer_fill: buffer 0xffffa4017950, offset 4, size 208
0:00:03.268117125 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1582:gst_buffer_resize_range: trim 0xffffa4017950 0-212 size:212 offs:0 max:219
0:00:03.268195000 8744 0x3d1e1590 LOG waylandsink gstwaylandsink.c:745:frame_redraw_callback: frame_redraw_cb
0:00:03.268289625 8744 0x3d1e1590 DEBUG GST_POLL gstpoll.c:1369:gst_poll_wait: 0x3d21fe80: timeout :99:99:99.999999999
0:00:03.268199750 8744 0x3d233140 LOG adapter gstadapter.c:395:gst_adapter_push:<GstAdapter at 0x3d20c120> pushing 0xffffa4017950 212 bytes at end, size now 243
0:00:03.268418625 8744 0x3d233140 DEBUG h264parse gsth264parse.c:914:gst_h264_parse_collect_nal:<my_h264parse> parsing collected nal
0:00:03.268462750 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:242:gst_h264_parse_nalu_header: Nal type 1, ref_idc 1
0:00:03.268459375 8744 0x3d233770 DEBUG GST_POLL gstpoll.c:1188:gst_poll_fd_has_error: 0xffff9c007400: fd (fd:23, idx:1) 0
0:00:03.268549375 8744 0x3d233140 LOG h264parse gsth264parse.c:922:gst_h264_parse_collect_nal:<my_h264parse> nal type: 1 Slice
0:00:03.268618375 8744 0x3d233140 LOG h264parse gsth264parse.c:941:gst_h264_parse_collect_nal:<my_h264parse> next nal type: 1 Slice
0:00:03.268624250 8744 0x3d233770 DEBUG GST_POLL gstpoll.c:1265:gst_poll_fd_can_read_pri_unlocked: 0xffff9c007400: fd (fd:23, idx:1) 0
0:00:03.268692125 8744 0x3d233140 LOG h264parse gsth264parse.c:948:gst_h264_parse_collect_nal:<my_h264parse> au complete: 0
0:00:03.268755250 8744 0x3d233140 DEBUG h264parse gsth264parse.c:1264:gst_h264_parse_handle_frame:<my_h264parse> Looking for more
0:00:03.268774750 8744 0x3d233770 LOG v4l2bufferpool gstv4l2bufferpool.c:1322:gst_v4l2_buffer_pool_dequeue:<my_vdec:pool:src> dequeueing a buffer
0:00:03.268795625 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:242:gst_h264_parse_nalu_header: Nal type 1, ref_idc 1
0:00:03.268846000 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:1351:gst_h264_parser_identify_nalu: Nal start 245, No end found
0:00:03.268861750 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:1312:gst_v4l2_allocator_dqbuf:<my_vdec:pool:src:allocator> dequeued buffer 6 (flags 0x4001)
0:00:03.268899000 8744 0x3d233140 DEBUG h264parse gsth264parse.c:1166:gst_h264_parse_handle_frame:<my_h264parse> not a complete nal found at offset 245
0:00:03.268927625 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:1341:gst_v4l2_allocator_dqbuf:<my_vdec:pool:src:allocator> Dequeued capture buffer, length: 65536 bytesused: 65536 data_offset: 0
0:00:03.268950000 8744 0x3d233140 DEBUG h264parse gsth264parse.c:1172:gst_h264_parse_handle_frame:<my_h264parse> draining, accepting with size 750
0:00:03.269012000 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:1341:gst_v4l2_allocator_dqbuf:<my_vdec:pool:src:allocator> Dequeued capture buffer, length: 32768 bytesused: 32768 data_offset: 0
0:00:03.269161500 8744 0x3d233140 DEBUG h264parse gsth264parse.c:1219:gst_h264_parse_handle_frame:<my_h264parse> 0xffffa40306f0 complete nal found. Off: 245, Size: 750
0:00:03.269229375 8744 0x3d233140 DEBUG h264parse gsth264parse.c:721:gst_h264_parse_process_nal:<my_h264parse> processing nal of type 1 Slice, size 750
0:00:03.269212125 8744 0x3d233770 LOG v4l2bufferpool gstv4l2bufferpool.c:1194:gst_v4l2_buffer_pool_dqbuf:<my_vdec:pool:src> dequeued buffer 0xffffa4028ac0 seq:0 (ix=6), mem 0xffff9c01e6f0 used 65536, plane=0, flags 00004001, ts 0:00:00.000000000, pool-queued=20, buffer=0xffffa4028ac0
0:00:03.269303125 8744 0x3d233140 DEBUG h264parse gsth264parse.c:830:gst_h264_parse_process_nal:<my_h264parse> frame start: 1
0:00:03.269350500 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:2079:gst_h264_parser_parse_slice_hdr: parsing "Slice header", slice type 0
0:00:03.269336375 8744 0x3d233770 LOG v4l2bufferpool gstv4l2bufferpool.c:1194:gst_v4l2_buffer_pool_dqbuf:<my_vdec:pool:src> dequeued buffer 0xffffa4028ac0 seq:0 (ix=6), mem 0xffff9c01e8d0 used 32768, plane=1, flags 00004001, ts 0:00:00.000000000, pool-queued=20, buffer=0xffffa4028ac0
0:00:03.269401875 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:700:gst_h264_slice_parse_dec_ref_pic_marking: parsing "Decoded reference picture marking"
0:00:03.269461000 8744 0x3d233770 LOG v4l2videodec gstv4l2videodec.c:629:gst_v4l2_video_dec_loop:<my_vdec> Process output buffer
0:00:03.269491000 8744 0x3d233140 DEBUG h264parse gsth264parse.c:840:gst_h264_parse_process_nal:<my_h264parse> parse result 0, first MB: 49, slice type: 0
0:00:03.269514250 8744 0x3d233770 DEBUG v4l2bufferpool gstv4l2bufferpool.c:1745:gst_v4l2_buffer_pool_process:<my_vdec:pool:src> process buffer 0xffffb1d697e8
0:00:03.269567750 8744 0x3d233140 LOG h264parse gsth264parse.c:895:gst_h264_parse_process_nal:<my_h264parse> collecting NAL in AVC frame
0:00:03.269627875 8744 0x3d233140 DEBUG h264parse gsth264parse.c:428:gst_h264_parse_wrap_nal:<my_h264parse> nal length 750
0:00:03.269656625 8744 0x3d233770 LOG v4l2videodec gstv4l2videodec.c:460:gst_v4l2_video_dec_get_oldest_frame:<my_vdec> Oldest frame is 6 0:00:03.000000000 and 4 frames left
0:00:03.269675875 8744 0x3d233140 DEBUG GST_MEMORY gstmemory.c:139:gst_memory_init: new memory 0xffffa403a760, maxsize:761 offset:0 size:754
0:00:03.269748750 8744 0x3d233770 DEBUG GST_BUFFER gstbuffer.c:2201:gst_buffer_add_meta: alloc metadata 0xffff9c001b08 (GstDmabufMeta) of size 24
0:00:03.269773125 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:799:gst_buffer_new: new 0xffffa4017b70
0:00:03.269827500 8744 0x3d233770 DEBUG v4l2videodec gstv4l2videodec.c:647:gst_v4l2_video_dec_loop:<my_vdec> add drm modifier: 576460752303423489
0:00:03.269850500 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:414:_memory_add: buffer 0xffffa4017b70, idx -1, mem 0xffffa403a760
0:00:03.269884000 8744 0x3d233770 LOG videodecoder gstvideodecoder.c:2985:gst_video_decoder_finish_frame:<my_vdec> finish frame 0xffffa40345e0
0:00:03.269904375 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:855:gst_buffer_new_allocate: new buffer 0xffffa4017b70 of size 754 from allocator (nil)
0:00:03.269943750 8744 0x3d233770 LOG videodecoder gstvideodecoder.c:2625:gst_video_decoder_prepare_finish_frame:<my_vdec> n 5 in 0 out 0
0:00:03.269957125 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1826:gst_buffer_fill: buffer 0xffffa4017b70, offset 0, size 4
0:00:03.270016125 8744 0x3d233770 LOG videodecoder gstvideodecoder.c:2634:gst_video_decoder_prepare_finish_frame:<my_vdec> finish frame 0xffffa40345e0 (#6) sync:0 PTS:0:00:03.000000000 DTS:99:99:99.999999999
0:00:03.270127750 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1826:gst_buffer_fill: buffer 0xffffa4017b70, offset 4, size 750
0:00:03.270121250 8744 0x3d233770 DEBUG videodecoder gstvideodecoder.c:2676:gst_video_decoder_prepare_finish_frame:<my_vdec> sync timestamp 0:00:03.000000000 diff -0:00:03.000000000
0:00:03.270199000 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1582:gst_buffer_resize_range: trim 0xffffa4017b70 0-754 size:754 offs:0 max:761
0:00:03.270242500 8744 0x3d233770 DEBUG default gstvideoutils.c:40:_gst_video_codec_frame_free: free frame 0xffffa40345e0
0:00:03.270282000 8744 0x3d233140 LOG adapter gstadapter.c:395:gst_adapter_push:<GstAdapter at 0x3d20c120> pushing 0xffffa4017b70 754 bytes at end, size now 997
0:00:03.270293250 8744 0x3d233770 LOG GST_BUFFER gstbuffer.c:725:_gst_buffer_free: finalize 0xffffa4017c80
0:00:03.270396750 8744 0x3d233770 LOG videodecoder gstvideodecoder.c:3130:gst_video_decoder_clip_and_push_buf:<my_vdec> accepting buffer inside segment: 0:00:03.000000000 0:00:03.500000000 seg 0:00:00.000000000 to 99:99:99.999999999 time 0:00:00.000000000
0:00:03.270375750 8744 0x3d233140 DEBUG GST_CAPS gstpad.c:2705:gst_pad_has_current_caps:<my_h264parse:src> check current pad caps video/x-h264, stream-format=(string)byte-stream, alignment=(string)au, framerate=(fraction)0/1, width=(int)176, height=(int)144, interlace-mode=(string)progressive, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8, parsed=(boolean)true, profile=(string)constrained-baseline, level=(string)1.2
0:00:03.270510125 8744 0x3d233770 DEBUG videodecoder gstvideodecoder.c:3197:gst_video_decoder_clip_and_push_buf:<my_vdec> pushing buffer 0xffffa4028ac0 of size 98304, PTS 0:00:03.000000000, dur 0:00:00.500000000
0:00:03.270558375 8744 0x3d233140 LOG h264parse gsth264parse.c:2016:gst_h264_parse_get_timestamp:<my_h264parse> Upstream ts 0:00:05.500000000
0:00:03.270624375 8744 0x3d233140 DEBUG h264parse gsth264parse.c:2035:gst_h264_parse_get_timestamp:<my_h264parse> unable to compute timestamp: timing info not present
0:00:03.270678625 8744 0x3d233140 LOG adapter gstadapter.c:974:gst_adapter_get_buffer:<GstAdapter at 0x3d20c120> getting buffer of 997 bytes
0:00:03.270612500 8744 0x3d233770 DEBUG GST_SCHEDULING gstpad.c:4277:gst_pad_chain_data_unchecked:<my_sink:sink> calling chainfunction &gst_base_sink_chain with buffer buffer: 0xffffa4028ac0, pts 0:00:03.000000000, dts 99:99:99.999999999, dur 0:00:00.500000000, size 98304, offset none, offset_end none, flags 0x0
0:00:03.270749750 8744 0x3d233140 LOG adapter gstadapter.c:736:gst_adapter_get_internal:<GstAdapter at 0x3d20c120> allocating 997 bytes
0:00:03.270797625 8744 0x3d233140 DEBUG adapter gstadapter.c:344:copy_into_unchecked: bsize 6, skip 0, csize 6
0:00:03.270809500 8744 0x3d233770 DEBUG basesink gstbasesink.c:3421:gst_base_sink_chain_unlocked:<my_sink> got times start: 0:00:03.000000000, end: 0:00:03.500000000
0:00:03.270862375 8744 0x3d233140 LOG GST_PERFORMANCE gstadapter.c:346:copy_into_unchecked:<GstAdapter at 0x3d20c120> extract 6 bytes
0:00:03.270906500 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1876:gst_buffer_extract: buffer 0xffffa40346f0, offset 0, size 6
0:00:03.270894500 8744 0x3d233770 DEBUG basesink gstbasesink.c:2006:gst_base_sink_get_sync_times:<my_sink> got times start: 0:00:03.000000000, stop: 0:00:03.500000000, do_sync 1
0:00:03.270986375 8744 0x3d233140 LOG GST_PERFORMANCE gstadapter.c:359:copy_into_unchecked:<GstAdapter at 0x3d20c120> extract 25 bytes
0:00:03.271017750 8744 0x3d233770 LOG basesink gstbasesink.c:2551:gst_base_sink_do_sync:<my_sink> avg frame diff 0:00:00.500000000
0:00:03.271074375 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1876:gst_buffer_extract: buffer 0xffffa4017a60, offset 0, size 25
0:00:03.271156500 8744 0x3d233140 LOG GST_PERFORMANCE gstadapter.c:359:copy_into_unchecked:<GstAdapter at 0x3d20c120> extract 212 bytes
0:00:03.271164250 8744 0x3d233770 DEBUG basesink gstbasesink.c:2591:gst_base_sink_do_sync:<my_sink> reset rc_time to time 0:00:03.000000000
0:00:03.271253625 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1876:gst_buffer_extract: buffer 0xffffa4017950, offset 0, size 212
0:00:03.271244625 8744 0x3d233770 DEBUG basesink gstbasesink.c:2603:gst_base_sink_do_sync:<my_sink> possibly waiting for clock to reach 0:00:03.000000000, adjusted 0:00:03.000000000
0:00:03.271338250 8744 0x3d233140 LOG GST_PERFORMANCE gstadapter.c:359:copy_into_unchecked:<GstAdapter at 0x3d20c120> extract 754 bytes
0:00:03.271367125 8744 0x3d233770 LOG basesink gstbasesink.c:2177:gst_base_sink_wait_clock:<my_sink> time 0:00:03.000000000, base_time 0:15:45.099030375
0:00:03.271382000 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1876:gst_buffer_extract: buffer 0xffffa4017b70, offset 0, size 754
0:00:03.271461250 8744 0x3d233770 DEBUG GST_CLOCK gstclock.c:537:gst_clock_id_wait:<GstSystemClock> waiting on clock entry 0xffffa4008580
0:00:03.271489000 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:799:gst_buffer_new: new 0xffffa4028130
0:00:03.271522000 8744 0x3d233770 DEBUG GST_CLOCK gstclock.c:1046:gst_clock_get_internal_time:<GstSystemClock> internal time 0:15:47.618469125
0:00:03.271536250 8744 0x3d233140 DEBUG GST_MEMORY gstmemory.c:139:gst_memory_init: new memory 0xffffa4018160, maxsize:997 offset:0 size:997
0:00:03.271604375 8744 0x3d233770 DEBUG GST_CLOCK gstclock.c:1091:gst_clock_get_time:<GstSystemClock> adjusted time 0:15:47.618469125
0:00:03.271625625 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:414:_memory_add: buffer 0xffffa4028130, idx -1, mem 0xffffa4018160
0:00:03.271663625 8744 0x3d233770 DEBUG GST_CLOCK gstsystemclock.c:718:gst_system_clock_id_wait_jitter_unlocked: entry 0xffffa4008580 time 0:15:48.099030375 now 0:15:47.618469125 diff (time-now) 480561250
0:00:03.271700750 8744 0x3d233140 LOG adapter gstadapter.c:634:gst_adapter_flush_unchecked:<GstAdapter at 0x3d20c120> flushing 997 bytes
0:00:03.271747000 8744 0x3d233770 DEBUG GST_POLL gstpoll.c:1369:gst_poll_wait: 0xffffa0003c00: timeout :0:00:00.480561250
0:00:03.271797250 8744 0x3d233140 LOG adapter gstadapter.c:656:gst_adapter_flush_unchecked:<GstAdapter at 0x3d20c120> flushing out head buffer
0:00:03.271837875 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:725:_gst_buffer_free: finalize 0xffffa40346f0
0:00:03.271881000 8744 0x3d233140 DEBUG GST_MEMORY gstmemory.c:88:_gst_memory_free: free memory 0xffffa400aa10
0:00:03.271946250 8744 0x3d233140 LOG adapter gstadapter.c:656:gst_adapter_flush_unchecked:<GstAdapter at 0x3d20c120> flushing out head buffer
0:00:03.271984375 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:725:_gst_buffer_free: finalize 0xffffa4017a60
0:00:03.272026875 8744 0x3d233140 DEBUG GST_MEMORY gstmemory.c:88:_gst_memory_free: free memory 0xffffa401b380
0:00:03.272086750 8744 0x3d233140 LOG adapter gstadapter.c:656:gst_adapter_flush_unchecked:<GstAdapter at 0x3d20c120> flushing out head buffer
0:00:03.272125250 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:725:_gst_buffer_free: finalize 0xffffa4017950
0:00:03.272167375 8744 0x3d233140 DEBUG GST_MEMORY gstmemory.c:88:_gst_memory_free: free memory 0xffffa4042000
0:00:03.272258500 8744 0x3d233140 LOG adapter gstadapter.c:656:gst_adapter_flush_unchecked:<GstAdapter at 0x3d20c120> flushing out head buffer
0:00:03.272297250 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:725:_gst_buffer_free: finalize 0xffffa4017b70
0:00:03.272339125 8744 0x3d233140 DEBUG GST_MEMORY gstmemory.c:88:_gst_memory_free: free memory 0xffffa403a760
0:00:03.272398375 8744 0x3d233140 LOG adapter gstadapter.c:668:gst_adapter_flush_unchecked:<GstAdapter at 0x3d20c120> adapter empty now
0:00:03.272438125 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:515:gst_buffer_copy_into: copy 0xffffa40172f0 to 0xffffa4028130, offset 0-995/995
0:00:03.272512250 8744 0x3d233140 LOG baseparse gstbaseparse.c:2637:gst_base_parse_finish_frame:<my_h264parse> finished frame at offset 14558, flushing size 995
0:00:03.272574500 8744 0x3d233140 LOG adapter gstadapter.c:634:gst_adapter_flush_unchecked:<GstAdapter at 0x3d20c000> flushing 995 bytes
0:00:03.272630750 8744 0x3d233140 LOG adapter gstadapter.c:656:gst_adapter_flush_unchecked:<GstAdapter at 0x3d20c000> flushing out head buffer
0:00:03.272668375 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:725:_gst_buffer_free: finalize 0xffffa4034090
0:00:03.272724750 8744 0x3d233140 LOG adapter gstadapter.c:668:gst_adapter_flush_unchecked:<GstAdapter at 0x3d20c000> adapter empty now
0:00:03.272763250 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:725:_gst_buffer_free: finalize 0xffffa40172f0
0:00:03.272804500 8744 0x3d233140 DEBUG GST_MEMORY gstmemory.c:88:_gst_memory_free: free memory 0xffffa40180d0
(free_data, 133)
0:00:03.272884000 8744 0x3d233140 DEBUG baseparse gstbaseparse.c:2333:gst_base_parse_handle_and_push_frame:<my_h264parse> no next fallback timestamp
0:00:03.272935000 8744 0x3d233140 LOG baseparse gstbaseparse.c:2392:gst_base_parse_push_frame:<my_h264parse> processing buffer of size 997 with dts 99:99:99.999999999, pts 0:00:05.500000000, duration 0:00:00.500000000
0:00:03.273034250 8744 0x3d233140 DEBUG GST_CAPS gstpad.c:2705:gst_pad_has_current_caps:<my_h264parse:src> check current pad caps video/x-h264, stream-format=(string)byte-stream, alignment=(string)au, framerate=(fraction)0/1, width=(int)176, height=(int)144, interlace-mode=(string)progressive, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8, parsed=(boolean)true, profile=(string)constrained-baseline, level=(string)1.2
0:00:03.273239125 8744 0x3d233140 LOG baseparse gstbaseparse.c:1851:gst_base_parse_update_bitrates:<my_h264parse> frame bitrate 15952, avg bitrate 22590
0:00:03.273301500 8744 0x3d233140 DEBUG h264parse gsth264parse.c:186:gst_h264_parse_reset_frame:<my_h264parse> reset frame
0:00:03.273351250 8744 0x3d233140 LOG baseparse gstbaseparse.c:900:gst_base_parse_queue_tag_event_update:<my_h264parse> upstream : (NULL)
0:00:03.273404125 8744 0x3d233140 LOG baseparse gstbaseparse.c:902:gst_base_parse_queue_tag_event_update:<my_h264parse> parser : taglist, video-codec=(string)"H.264\ \(Constrained\ Baseline\ Profile\)";
0:00:03.273478500 8744 0x3d233140 LOG baseparse gstbaseparse.c:903:gst_base_parse_queue_tag_event_update:<my_h264parse> mode : 2
0:00:03.273550750 8744 0x3d233140 DEBUG baseparse gstbaseparse.c:909:gst_base_parse_queue_tag_event_update:<my_h264parse> merged : taglist, video-codec=(string)"H.264\ \(Constrained\ Baseline\ Profile\)";
0:00:03.273619500 8744 0x3d233140 LOG baseparse gstbaseparse.c:923:gst_base_parse_queue_tag_event_update:<my_h264parse> adding min bitrate 14080
0:00:03.273685625 8744 0x3d233140 LOG baseparse gstbaseparse.c:928:gst_base_parse_queue_tag_event_update:<my_h264parse> adding max bitrate 22352
0:00:03.273745000 8744 0x3d233140 LOG baseparse gstbaseparse.c:934:gst_base_parse_queue_tag_event_update:<my_h264parse> adding avg bitrate 22590
0:00:03.273853500 8744 0x3d233140 DEBUG GST_EVENT gstevent.c:306:gst_event_new_custom: creating new event 0xffffa4008430 tag 20510
0:00:03.273933500 8744 0x3d233140 LOG GST_PADS gstpad.c:5176:store_sticky_event:<my_h264parse:src> stored sticky event tag
0:00:03.273991125 8744 0x3d233140 DEBUG GST_PADS gstpad.c:3937:check_sticky:<my_h264parse:src> pushing all sticky events
0:00:03.274043125 8744 0x3d233140 DEBUG GST_PADS gstpad.c:3867:push_sticky:<my_h264parse:src> event stream-start was already received
0:00:03.274099125 8744 0x3d233140 DEBUG GST_PADS gstpad.c:3867:push_sticky:<my_h264parse:src> event caps was already received
0:00:03.274155500 8744 0x3d233140 DEBUG GST_PADS gstpad.c:3867:push_sticky:<my_h264parse:src> event segment was already received
0:00:03.274213375 8744 0x3d233140 LOG GST_PADS gstpad.c:5351:gst_pad_push_event_unchecked:<my_h264parse:src> sending event 0xffffa4008430 (tag) to peerpad <my_vdec:sink>
0:00:03.274290750 8744 0x3d233140 DEBUG GST_EVENT gstpad.c:5638:gst_pad_send_event_unchecked:<my_vdec:sink> have event type tag event: 0xffffa4008430, time 99:99:99.999999999, seq-num 60, GstTagList-stream, taglist=(taglist)"taglist\,\ video-codec\=\(string\)\"H.264\\\ \\\(Constrained\\\ Baseline\\\ Profile\\\)\"\,\ minimum-bitrate\=\(uint\)14080\,\ maximum-bitrate\=\(uint\)22352\,\ bitrate\=\(uint\)22590\;";
0:00:03.274465000 8744 0x3d233140 DEBUG videodecoder gstvideodecoder.c:1393:gst_video_decoder_sink_event:<my_vdec> received event 20510, tag
0:00:03.752921125 8744 0x3d233770 DEBUG GST_CLOCK gstsystemclock.c:746:gst_system_clock_id_wait_jitter_unlocked: entry 0xffffa4008580 unlocked, status 3, ret 0
0:00:03.753105500 8744 0x3d233770 DEBUG GST_CLOCK gstsystemclock.c:770:gst_system_clock_id_wait_jitter_unlocked: entry 0xffffa4008580 unlocked after timeout
0:00:03.753209000 8744 0x3d233770 DEBUG GST_CLOCK gstclock.c:1046:gst_clock_get_internal_time:<GstSystemClock> internal time 0:15:48.100125125
0:00:03.753282250 8744 0x3d233770 DEBUG GST_CLOCK gstclock.c:1091:gst_clock_get_time:<GstSystemClock> adjusted time 0:15:48.100125125
0:00:03.753337875 8744 0x3d233770 DEBUG GST_CLOCK gstsystemclock.c:792:gst_system_clock_id_wait_jitter_unlocked: entry 0xffffa4008580 finished, diff -1094750
0:00:03.753398625 8744 0x3d233770 DEBUG GST_CLOCK gstclock.c:547:gst_clock_id_wait:<GstSystemClock> done waiting entry 0xffffa4008580, res: 0 (ok)
0:00:03.753472875 8744 0x3d233770 DEBUG basesink gstbasesink.c:2610:gst_base_sink_do_sync:<my_sink> clock returned 0, jitter -0:00:00.480561250
0:00:03.753598625 8744 0x3d233770 DEBUG basesink gstbasesink.c:2921:gst_base_sink_is_too_late:<my_sink> object was scheduled in time
0:00:03.753650500 8744 0x3d233770 DEBUG basesink gstbasesink.c:3538:gst_base_sink_chain_unlocked:<my_sink> rendering object 0xffffa4028ac0
0:00:03.753705375 8744 0x3d233770 DEBUG basesink gstbasesink.c:994:gst_base_sink_set_last_buffer_unlocked:<my_sink> setting last buffer to 0xffffa4028ac0
0:00:03.753770500 8744 0x3d233770 LOG videosink gstvideosink.c:228:gst_video_sink_show_frame:<my_sink> rendering frame, ts=0:00:03.000000000
0:00:03.753839375 8744 0x3d233770 LOG waylandsink gstwaylandsink.c:863:gst_wayland_sink_show_frame:<my_sink> render buffer 0xffffa4028ac0
0:00:03.753913625 8744 0x3d233770 LOG waylandsink gstwaylandsink.c:917:gst_wayland_sink_show_frame:<my_sink> buffer 0xffffa4028ac0 does not have a wl_buffer from our display, creating it
0:00:03.754063750 8744 0x3d233770 DEBUG waylandsink wllinuxdmabuf.c:108:gst_wl_linux_dmabuf_construct_wl_buffer:<GstWlDisplay at 0x3d1da380> Creating wl_buffer from DMABuf of size 98304 (176 x 144), format NV12 modifier 0x0800000000000001
0:00:03.754938375 8744 0x3d1e1590 DEBUG GST_POLL gstpoll.c:1369:gst_poll_wait: 0x3d21fe80: timeout :99:99:99.999999999
0:00:03.754951625 8744 0x3d233770 DEBUG waylandsink wllinuxdmabuf.c:175:gst_wl_linux_dmabuf_construct_wl_buffer:<dmabufallocator2> created linux_dmabuf wl_buffer (0xffff9c0286c0):176x144, fmt=NV12, 2 planes
0:00:03.755151250 8744 0x3d233770 DEBUG GST_QOS gstbasesink.c:2751:gst_base_sink_perform_qos:<my_sink> start: 0:00:03.000000000, stop 0:00:03.500000000, entered 0:00:02.519438750, left 0:00:03.000000000, pt: 0:00:00.019438750, duration 0:00:00.500000000,jitter -480561250
0:00:03.755280750 8744 0x3d233770 DEBUG GST_QOS gstbasesink.c:2755:gst_base_sink_perform_qos:<my_sink> avg_pt: 0:00:00.012081377, avg_rate: 0.0253063
0:00:03.755374750 8744 0x3d233770 DEBUG GST_QOS gstbasesink.c:2785:gst_base_sink_perform_qos:<my_sink> updated: avg_pt: 0:00:00.013001048, avg_rate: 0.0253498
0:00:03.755469750 8744 0x3d233770 DEBUG GST_QOS gstbasesink.c:2679:gst_base_sink_send_qos:<my_sink> qos: type 0, proportion: 0.025350, diff -480561250, timestamp 0:00:03.000000000
0:00:03.755579250 8744 0x3d233770 LOG GST_EVENT gstevent.c:1146:gst_event_new_qos: creating qos type 0, proportion 0.025350, diff -480561250, timestamp 0:00:03.000000000
0:00:03.755677750 8744 0x3d233770 DEBUG GST_EVENT gstevent.c:306:gst_event_new_custom: creating new event 0xffff9c00e870 qos 48641
0:00:03.755858875 8744 0x3d1e1590 LOG waylandsink wlbuffer.c:137:buffer_release:<GstWlBuffer at 0xffff9c00b900> wl_buffer::release (GstBuffer: 0xffffa40289b0)
0:00:03.755912250 8744 0x3d1e1590 LOG GST_BUFFER gstbuffer.c:710:_gst_buffer_dispose: release 0xffffa40289b0 to pool 0xffffa4012e90
0:00:03.755970000 8744 0x3d1e1590 DEBUG GST_BUFFER gstbuffer.c:2383:gst_buffer_foreach_meta: remove metadata 0xffff9c001ec8 (GstDmabufMeta)
0:00:03.755758625 8744 0x3d233770 LOG GST_PADS gstpad.c:5351:gst_pad_push_event_unchecked:<my_sink:sink> sending event 0xffff9c00e870 (qos) to peerpad <my_vdec:src>
0:00:03.756052250 8744 0x3d1e1590 DEBUG v4l2bufferpool gstv4l2bufferpool.c:1420:gst_v4l2_buffer_pool_release_buffer:<my_vdec:pool:src> release buffer 0xffffa40289b0
0:00:03.756123875 8744 0x3d1e1590 LOG v4l2bufferpool gstv4l2bufferpool.c:1059:gst_v4l2_buffer_pool_qbuf:<my_vdec:pool:src> queuing buffer 5
0:00:03.756228500 8744 0x3d1e1590 LOG v4l2allocator gstv4l2allocator.c:1265:gst_v4l2_allocator_qbuf:<my_vdec:pool:src:allocator> queued buffer 5 (flags 0x4003)
0:00:03.756088375 8744 0x3d233770 DEBUG GST_EVENT gstpad.c:5638:gst_pad_send_event_unchecked:<my_vdec:src> have event type qos event: 0xffff9c00e870, time 99:99:99.999999999, seq-num 61, GstEventQOS, type=(GstQOSType)GST_QOS_TYPE_OVERFLOW, proportion=(double)0.0253497524335537, diff=(gint64)-480561250, timestamp=(guint64)3000000000;
0:00:03.756304000 8744 0x3d1e1590 DEBUG GST_POLL gstpoll.c:1369:gst_poll_wait: 0x3d21fe80: timeout :99:99:99.999999999
0:00:03.756351000 8744 0x3d233770 DEBUG videodecoder gstvideodecoder.c:1584:gst_video_decoder_src_event:<my_vdec> received event 48641, qos
0:00:03.756413625 8744 0x3d233770 DEBUG videodecoder gstvideodecoder.c:1485:gst_video_decoder_src_event_default:<my_vdec> received event 48641, qos
0:00:03.756479500 8744 0x3d233770 DEBUG videodecoder gstvideodecoder.c:1556:gst_video_decoder_src_event_default:<my_vdec> got QoS 0:00:03.000000000, -0:00:00.480561250, 0.0253498
0:00:03.756576000 8744 0x3d233770 LOG GST_PADS gstpad.c:5351:gst_pad_push_event_unchecked:<my_vdec:sink> sending event 0xffff9c00e870 (qos) to peerpad <my_h264parse:src>
0:00:03.756654625 8744 0x3d233770 DEBUG GST_EVENT gstpad.c:5638:gst_pad_send_event_unchecked:<my_h264parse:src> have event type qos event: 0xffff9c00e870, time 99:99:99.999999999, seq-num 61, GstEventQOS, type=(GstQOSType)GST_QOS_TYPE_OVERFLOW, proportion=(double)0.0253497524335537, diff=(gint64)-480561250, timestamp=(guint64)3000000000;
0:00:03.756876500 8744 0x3d233770 DEBUG baseparse gstbaseparse.c:1602:gst_base_parse_src_event:<my_h264parse> event 48641, qos
0:00:03.756943500 8744 0x3d233770 LOG GST_PADS gstpad.c:3087:gst_pad_event_default:<my_h264parse:src> default event handler for event qos event: 0xffff9c00e870, time 99:99:99.999999999, seq-num 61, GstEventQOS, type=(GstQOSType)GST_QOS_TYPE_OVERFLOW, proportion=(double)0.0253497524335537, diff=(gint64)-480561250, timestamp=(guint64)3000000000;
0:00:03.757215375 8744 0x3d233770 DEBUG GST_PADS gstpad.c:2897:gst_pad_iterate_internal_links_default:<my_h264parse:src> Making iterator
0:00:03.757281750 8744 0x3d233770 LOG GST_PADS gstpad.c:3007:gst_pad_forward:<my_h264parse:src> calling forward function on pad my_h264parse:sink
0:00:03.757341875 8744 0x3d233770 LOG GST_PADS gstpad.c:3052:event_forward_func:<my_h264parse:sink> Reffing and pushing event 0xffff9c00e870 (qos) to my_h264parse:sink
0:00:03.757411125 8744 0x3d233770 LOG GST_PADS gstpad.c:5351:gst_pad_push_event_unchecked:<my_h264parse:sink> sending event 0xffff9c00e870 (qos) to peerpad <my_appsrc:src>
0:00:03.757487000 8744 0x3d233770 DEBUG GST_EVENT gstpad.c:5638:gst_pad_send_event_unchecked:<my_appsrc:src> have event type qos event: 0xffff9c00e870, time 99:99:99.999999999, seq-num 61, GstEventQOS, type=(GstQOSType)GST_QOS_TYPE_OVERFLOW, proportion=(double)0.0253497524335537, diff=(gint64)-480561250, timestamp=(guint64)3000000000;
0:00:03.757637000 8744 0x3d233770 DEBUG basesrc gstbasesrc.c:2027:gst_base_src_default_event:<my_appsrc> handle event qos event: 0xffff9c00e870, time 99:99:99.999999999, seq-num 61, GstEventQOS, type=(GstQOSType)GST_QOS_TYPE_OVERFLOW, proportion=(double)0.0253497524335537, diff=(gint64)-480561250, timestamp=(guint64)3000000000;
0:00:03.757912125 8744 0x3d233770 DEBUG GST_QOS gstbasesrc.c:2013:gst_base_src_update_qos:<my_appsrc> qos: proportion: 0.025350, diff -480561250, timestamp 0:00:03.000000000
0:00:03.758000250 8744 0x3d233770 DEBUG GST_PADS gstpad.c:5712:gst_pad_send_event_unchecked:<my_appsrc:src> sent event, ret ok
0:00:03.758058375 8744 0x3d233770 LOG GST_PADS gstpad.c:5359:gst_pad_push_event_unchecked:<my_h264parse:sink> sent event 0xffff9c00e870 (qos) to peerpad <my_appsrc:src>, ret ok
0:00:03.758135625 8744 0x3d233770 LOG GST_EVENT gstevent.c:223:_gst_event_free: freeing event 0xffff9c00e870 type qos
0:00:03.758205125 8744 0x3d233770 DEBUG GST_PADS gstpad.c:5712:gst_pad_send_event_unchecked:<my_h264parse:src> sent event, ret ok
0:00:03.758260875 8744 0x3d233770 LOG GST_PADS gstpad.c:5359:gst_pad_push_event_unchecked:<my_vdec:sink> sent event 0xffff9c00e870 (qos) to peerpad <my_h264parse:src>, ret ok
0:00:03.758339250 8744 0x3d233770 DEBUG GST_PADS gstpad.c:5712:gst_pad_send_event_unchecked:<my_vdec:src> sent event, ret ok
0:00:03.758394500 8744 0x3d233770 LOG GST_PADS gstpad.c:5359:gst_pad_push_event_unchecked:<my_sink:sink> sent event 0xffff9c00e870 (qos) to peerpad <my_vdec:src>, ret ok
0:00:03.758469250 8744 0x3d233770 DEBUG basesink gstbasesink.c:3577:gst_base_sink_chain_unlocked:<my_sink> object unref after render 0xffffa4028ac0
0:00:03.758529625 8744 0x3d233770 DEBUG GST_SCHEDULING gstpad.c:4283:gst_pad_chain_data_unchecked:<my_sink:sink> called chainfunction &gst_base_sink_chain with buffer 0xffffa4028ac0, returned ok
0:00:03.758626375 8744 0x3d233770 LOG v4l2videodec gstv4l2videodec.c:605:gst_v4l2_video_dec_loop:<my_vdec> Allocate output buffer
0:00:03.758718500 8744 0x3d233770 DEBUG v4l2bufferpool gstv4l2bufferpool.c:1342:gst_v4l2_buffer_pool_acquire_buffer:<my_vdec:pool:src> acquire
0:00:03.758653625 8744 0x3d233140 INFO videodecoder gstvideodecoder.c:1339:gst_video_decoder_sink_event_default:<my_vdec> upstream tags: taglist, video-codec=(string)"H.264\ \(Constrained\ Baseline\ Profile\)", minimum-bitrate=(uint)14080, maximum-bitrate=(uint)22352, bitrate=(uint)22590;
0:00:03.758821750 8744 0x3d233770 LOG v4l2bufferpool gstv4l2bufferpool.c:999:gst_v4l2_buffer_pool_poll:<my_vdec:pool:src> polling device
0:00:03.758819500 8744 0x3d233140 LOG videodecoder gstvideodecoder.c:805:gst_video_decoder_create_merged_tags_event:<my_vdec> upstream : taglist, video-codec=(string)"H.264\ \(Constrained\ Baseline\ Profile\)", minimum-bitrate=(uint)14080, maximum-bitrate=(uint)22352, bitrate=(uint)22590;
0:00:03.758863375 8744 0x3d233770 DEBUG GST_POLL gstpoll.c:1369:gst_poll_wait: 0xffff9c007400: timeout :99:99:99.999999999
0:00:03.758938375 8744 0x3d233140 LOG videodecoder gstvideodecoder.c:806:gst_video_decoder_create_merged_tags_event:<my_vdec> decoder : (NULL)
0:00:03.758994375 8744 0x3d233140 LOG videodecoder gstvideodecoder.c:807:gst_video_decoder_create_merged_tags_event:<my_vdec> mode : 3
0:00:03.759065750 8744 0x3d233140 DEBUG videodecoder gstvideodecoder.c:813:gst_video_decoder_create_merged_tags_event:<my_vdec> merged : taglist, video-codec=(string)"H.264\ \(Constrained\ Baseline\ Profile\)", minimum-bitrate=(uint)14080, maximum-bitrate=(uint)22352, bitrate=(uint)22590;
0:00:03.759176250 8744 0x3d233140 DEBUG GST_EVENT gstevent.c:306:gst_event_new_custom: creating new event 0xffffa40084a0 tag 20510
0:00:03.759253125 8744 0x3d233140 DEBUG GST_PADS gstpad.c:5712:gst_pad_send_event_unchecked:<my_vdec:sink> sent event, ret ok
0:00:03.759303750 8744 0x3d233140 LOG GST_EVENT gstevent.c:223:_gst_event_free: freeing event 0xffffa4007ec0 type tag
0:00:03.759378000 8744 0x3d233140 LOG GST_PADS gstpad.c:5176:store_sticky_event:<my_vdec:sink> stored sticky event tag
0:00:03.759436875 8744 0x3d233140 LOG GST_PADS gstpad.c:5359:gst_pad_push_event_unchecked:<my_h264parse:src> sent event 0xffffa4008430 (tag) to peerpad <my_vdec:sink>, ret ok
0:00:03.759520000 8744 0x3d233140 DEBUG GST_PADS gstpad.c:3889:push_sticky:<my_h264parse:src> event tag marked received
0:00:03.759581750 8744 0x3d233140 LOG baseparse gstbaseparse.c:2535:gst_base_parse_push_frame:<my_h264parse> pushing frame (997 bytes) now..
0:00:03.759647625 8744 0x3d233140 DEBUG GST_SCHEDULING gstpad.c:4277:gst_pad_chain_data_unchecked:<my_vdec:sink> calling chainfunction &gst_video_decoder_chain with buffer buffer: 0xffffa4028130, pts 0:00:05.500000000, dts 99:99:99.999999999, dur 0:00:00.500000000, size 997, offset 14558, offset_end none, flags 0x2400
0:00:03.759782875 8744 0x3d233140 LOG videodecoder gstvideodecoder.c:2438:gst_video_decoder_chain:<my_vdec> chain PTS 0:00:05.500000000, DTS 99:99:99.999999999 duration 0:00:00.500000000 size 997 flags 2400
0:00:03.759883625 8744 0x3d233140 LOG videodecoder gstvideodecoder.c:2595:gst_video_decoder_new_frame:<my_vdec> Created new frame 0xffffa4028020 (sfn:11)
0:00:03.759945125 8744 0x3d233140 LOG videodecoder gstvideodecoder.c:3410:gst_video_decoder_decode_frame:<my_vdec> PTS 0:00:05.500000000, DTS 99:99:99.999999999, dist 11
0:00:03.760034250 8744 0x3d233140 DEBUG v4l2videodec gstv4l2videodec.c:704:gst_v4l2_video_dec_handle_frame:<my_vdec> Handling frame 11
0:00:03.760094750 8744 0x3d233140 DEBUG v4l2bufferpool gstv4l2bufferpool.c:1745:gst_v4l2_buffer_pool_process:<my_vdec:pool:sink> process buffer 0xffffa4028058
0:00:03.760148125 8744 0x3d233140 LOG v4l2bufferpool gstv4l2bufferpool.c:1923:gst_v4l2_buffer_pool_process:<my_vdec:pool:sink> alloc buffer from our pool
0:00:03.760233000 8744 0x3d233140 DEBUG v4l2bufferpool gstv4l2bufferpool.c:1342:gst_v4l2_buffer_pool_acquire_buffer:<my_vdec:pool:sink> acquire
0:00:03.760283875 8744 0x3d233140 LOG bufferpool gstbufferpool.c:1128:default_acquire_buffer:<my_vdec:pool:sink> acquired buffer 0xffffa4017840
0:00:03.760338125 8744 0x3d233140 LOG v4l2bufferpool gstv4l2bufferpool.c:116:gst_v4l2_buffer_pool_copy_buffer:<my_vdec:pool:sink> copying buffer
0:00:03.760384625 8744 0x3d233140 DEBUG v4l2bufferpool gstv4l2bufferpool.c:141:gst_v4l2_buffer_pool_copy_buffer:<my_vdec:pool:sink> copy raw bytes
0:00:03.760423750 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1721:gst_buffer_map_range: buffer 0xffffa4028130, idx 0, length -1, flags 0001
0:00:03.760488250 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:213:_get_merged_memory: buffer 0xffffa4028130, idx 0, length 1
0:00:03.760547000 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1826:gst_buffer_fill: buffer 0xffffa4017840, offset 0, size 997
0:00:03.760608500 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1582:gst_buffer_resize_range: trim 0xffffa4017840 0-997 size:6291456 offs:0 max:6291456
0:00:03.760673250 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:515:gst_buffer_copy_into: copy 0xffffa4028130 to 0xffffa4017840, offset 0-997/997
0:00:03.760741875 8744 0x3d233140 LOG GST_PERFORMANCE gstv4l2bufferpool.c:155:gst_v4l2_buffer_pool_copy_buffer:<my_vdec:pool:sink> slow copy into buffer 0xffffa4017840
0:00:03.760801375 8744 0x3d233140 LOG v4l2bufferpool gstv4l2bufferpool.c:1059:gst_v4l2_buffer_pool_qbuf:<my_vdec:pool:sink> queuing buffer 1
0:00:03.760929000 8744 0x3d233140 LOG v4l2allocator gstv4l2allocator.c:1265:gst_v4l2_allocator_qbuf:<my_vdec:pool:sink:allocator> queued buffer 1 (flags 0x4003)
0:00:03.760983500 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:710:_gst_buffer_dispose: release 0xffffa4017840 to pool 0xffffa4012410
0:00:03.761094250 8744 0x3d233140 DEBUG v4l2bufferpool gstv4l2bufferpool.c:1420:gst_v4l2_buffer_pool_release_buffer:<my_vdec:pool:sink> release buffer 0xffffa4017840
0:00:03.761160875 8744 0x3d233140 LOG v4l2bufferpool gstv4l2bufferpool.c:1503:gst_v4l2_buffer_pool_release_buffer:<my_vdec:pool:sink> buffer 1 is queued
0:00:03.761216500 8744 0x3d233140 LOG v4l2bufferpool gstv4l2bufferpool.c:999:gst_v4l2_buffer_pool_poll:<my_vdec:pool:sink> polling device
0:00:03.761254875 8744 0x3d233140 DEBUG GST_POLL gstpoll.c:1369:gst_poll_wait: 0xffffa4005cf0: timeout :99:99:99.999999999
0:00:03.761329250 8744 0x3d233140 DEBUG GST_POLL gstpoll.c:1188:gst_poll_fd_has_error: 0xffffa4005cf0: fd (fd:18, idx:1) 0
0:00:03.761386500 8744 0x3d233140 DEBUG GST_POLL gstpoll.c:1265:gst_poll_fd_can_read_pri_unlocked: 0xffffa4005cf0: fd (fd:18, idx:1) 0
0:00:03.761449750 8744 0x3d233140 LOG v4l2bufferpool gstv4l2bufferpool.c:1322:gst_v4l2_buffer_pool_dequeue:<my_vdec:pool:sink> dequeueing a buffer
0:00:03.761438250 8744 0x3d233770 DEBUG GST_POLL gstpoll.c:1188:gst_poll_fd_has_error: 0xffff9c007400: fd (fd:23, idx:1) 0
0:00:03.761529000 8744 0x3d233140 LOG v4l2allocator gstv4l2allocator.c:1312:gst_v4l2_allocator_dqbuf:<my_vdec:pool:sink:allocator> dequeued buffer 0 (flags 0x4001)
0:00:03.761545000 8744 0x3d233770 DEBUG GST_POLL gstpoll.c:1265:gst_poll_fd_can_read_pri_unlocked: 0xffff9c007400: fd (fd:23, idx:1) 0
0:00:03.761616500 8744 0x3d233770 LOG v4l2bufferpool gstv4l2bufferpool.c:1322:gst_v4l2_buffer_pool_dequeue:<my_vdec:pool:src> dequeueing a buffer
0:00:03.761595750 8744 0x3d233140 LOG v4l2bufferpool gstv4l2bufferpool.c:1194:gst_v4l2_buffer_pool_dqbuf:<my_vdec:pool:sink> dequeued buffer 0xffffa40170d0 seq:0 (ix=0), mem 0xffffa40181f0 used 880, plane=0, flags 00004001, ts 0:00:05.000000000, pool-queued=1, buffer=0xffffa40170d0
0:00:03.761682500 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:1312:gst_v4l2_allocator_dqbuf:<my_vdec:pool:src:allocator> dequeued buffer 7 (flags 0x4001)
0:00:03.761729125 8744 0x3d233140 DEBUG v4l2bufferpool gstv4l2bufferpool.c:1420:gst_v4l2_buffer_pool_release_buffer:<my_vdec:pool:sink> release buffer 0xffffa40170d0
0:00:03.761769875 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:1341:gst_v4l2_allocator_dqbuf:<my_vdec:pool:src:allocator> Dequeued capture buffer, length: 65536 bytesused: 65536 data_offset: 0
0:00:03.761791000 8744 0x3d233140 LOG v4l2bufferpool gstv4l2bufferpool.c:1488:gst_v4l2_buffer_pool_release_buffer:<my_vdec:pool:sink> buffer 0 not queued, putting on free list
0:00:03.761873125 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:1341:gst_v4l2_allocator_dqbuf:<my_vdec:pool:src:allocator> Dequeued capture buffer, length: 32768 bytesused: 32768 data_offset: 0
0:00:03.761907000 8744 0x3d233140 LOG bufferpool gstbufferpool.c:1284:default_release_buffer:<my_vdec:pool:sink> released buffer 0xffffa40170d0 0
0:00:03.761960625 8744 0x3d233140 DEBUG GST_BUFFER gstbuffer.c:1375:gst_buffer_is_memory_range_writable: idx 0, length -1
0:00:03.761939250 8744 0x3d233770 LOG v4l2bufferpool gstv4l2bufferpool.c:1194:gst_v4l2_buffer_pool_dqbuf:<my_vdec:pool:src> dequeued buffer 0xffffa4028bd0 seq:0 (ix=7), mem 0xffff9c01ea80 used 65536, plane=0, flags 00004001, ts 0:00:00.000000000, pool-queued=20, buffer=0xffffa4028bd0
0:00:03.762033250 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:799:gst_buffer_new: new 0xffffa4017620
0:00:03.762114000 8744 0x3d233770 LOG v4l2bufferpool gstv4l2bufferpool.c:1194:gst_v4l2_buffer_pool_dqbuf:<my_vdec:pool:src> dequeued buffer 0xffffa4028bd0 seq:0 (ix=7), mem 0xffff9c01eba0 used 32768, plane=1, flags 00004001, ts 0:00:00.000000000, pool-queued=20, buffer=0xffffa4028bd0
0:00:03.762240000 8744 0x3d233770 LOG v4l2videodec gstv4l2videodec.c:629:gst_v4l2_video_dec_loop:<my_vdec> Process output buffer
0:00:03.762235875 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:515:gst_buffer_copy_into: copy 0xffffa4028130 to 0xffffa4017620, offset 0-0/997
0:00:03.762307875 8744 0x3d233770 DEBUG v4l2bufferpool gstv4l2bufferpool.c:1745:gst_v4l2_buffer_pool_process:<my_vdec:pool:src> process buffer 0xffffb1d697e8
0:00:03.762329375 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:725:_gst_buffer_free: finalize 0xffffa4028130
0:00:03.762376500 8744 0x3d233140 DEBUG GST_MEMORY gstmemory.c:88:_gst_memory_free: free memory 0xffffa4018160
0:00:03.762462125 8744 0x3d233140 DEBUG GST_SCHEDULING gstpad.c:4283:gst_pad_chain_data_unchecked:<my_vdec:sink> called chainfunction &gst_video_decoder_chain with buffer 0xffffa4028130, returned ok
0:00:03.762479250 8744 0x3d233770 LOG v4l2videodec gstv4l2videodec.c:460:gst_v4l2_video_dec_get_oldest_frame:<my_vdec> Oldest frame is 7 0:00:03.500000000 and 4 frames left
0:00:03.762531125 8744 0x3d233140 LOG baseparse gstbaseparse.c:2537:gst_base_parse_push_frame:<my_h264parse> frame pushed, flow ok
0:00:03.762555750 8744 0x3d233770 DEBUG GST_BUFFER gstbuffer.c:2201:gst_buffer_add_meta: alloc metadata 0xffff9c0024d8 (GstDmabufMeta) of size 24
0:00:03.762585625 8744 0x3d233140 LOG baseparse gstbaseparse.c:2166:gst_base_parse_handle_buffer:<my_h264parse> handle_frame skipped 0, flushed 995
0:00:03.762621000 8744 0x3d233770 DEBUG v4l2videodec gstv4l2videodec.c:647:gst_v4l2_video_dec_loop:<my_vdec> add drm modifier: 576460752303423489
0:00:03.762648000 8744 0x3d233140 DEBUG baseparse gstbaseparse.c:3215:gst_base_parse_chain:<my_h264parse> not enough data available (only 0 bytes)
0:00:03.762677875 8744 0x3d233770 LOG videodecoder gstvideodecoder.c:2985:gst_video_decoder_finish_frame:<my_vdec> finish frame 0xffffa4034800
0:00:03.762700125 8744 0x3d233140 LOG baseparse gstbaseparse.c:3277:gst_base_parse_chain:<my_h264parse> chain leaving
0:00:03.762786375 8744 0x3d233770 LOG videodecoder gstvideodecoder.c:2625:gst_video_decoder_prepare_finish_frame:<my_vdec> n 5 in 0 out 0
0:00:03.762816375 8744 0x3d233140 DEBUG GST_SCHEDULING gstpad.c:4283:gst_pad_chain_data_unchecked:<my_h264parse:sink> called chainfunction &gst_base_parse_chain with buffer 0xffffa4034090, returned ok
0:00:03.762849375 8744 0x3d233770 LOG videodecoder gstvideodecoder.c:2634:gst_video_decoder_prepare_finish_frame:<my_vdec> finish frame 0xffffa4034800 (#7) sync:0 PTS:0:00:03.500000000 DTS:99:99:99.999999999
0:00:03.762891750 8744 0x3d233140 LOG basesrc gstbasesrc.c:2828:gst_base_src_loop:<my_appsrc> next_ts 0:00:00.000015553 size 4096
0:00:03.762938000 8744 0x3d233770 DEBUG videodecoder gstvideodecoder.c:2676:gst_video_decoder_prepare_finish_frame:<my_vdec> sync timestamp 0:00:03.500000000 diff -0:00:03.500000000
0:00:03.762962375 8744 0x3d233140 DEBUG basesrc gstbasesrc.c:2399:gst_base_src_update_length:<my_appsrc> reading offset 15553, length 4096, size -1, segment.stop -1, maxsize -1
0:00:03.763030750 8744 0x3d233770 DEBUG default gstvideoutils.c:40:_gst_video_codec_frame_free: free frame 0xffffa4034800
0:00:03.763063875 8744 0x3d233140 DEBUG basesrc gstbasesrc.c:2506:gst_base_src_get_range:<my_appsrc> calling create offset 15553 length 4096, time 0
0:00:03.763079000 8744 0x3d233770 LOG GST_BUFFER gstbuffer.c:725:_gst_buffer_free: finalize 0xffffa4034910
(get_data, 99)
(get_data, 108)read_ret: 8, target frame num: 12, read frame num: 12
0:00:03.763194375 8744 0x3d233770 LOG videodecoder gstvideodecoder.c:3130:gst_video_decoder_clip_and_push_buf:<my_vdec> accepting buffer inside segment: 0:00:03.500000000 0:00:04.000000000 seg 0:00:00.000000000 to 99:99:99.999999999 time 0:00:00.000000000
0:00:03.763260125 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:799:gst_buffer_new: new 0xffffa40172f0
0:00:03.763323750 8744 0x3d233770 DEBUG videodecoder gstvideodecoder.c:3197:gst_video_decoder_clip_and_push_buf:<my_vdec> pushing buffer 0xffffa4028bd0 of size 98304, PTS 0:00:03.500000000, dur 0:00:00.500000000
0:00:03.763338875 8744 0x3d233140 DEBUG GST_MEMORY gstmemory.c:139:gst_memory_init: new memory 0xffffa4018040, maxsize:948 offset:0 size:948
0:00:03.763439250 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:414:_memory_add: buffer 0xffffa40172f0, idx -1, mem 0xffffa4018040
0:00:03.763547250 8744 0x3d233140 DEBUG appsrc gstappsrc.c:1863:gst_app_src_push_internal:<my_appsrc> queueing buffer 0xffffa40172f0
0:00:03.763435125 8744 0x3d233770 DEBUG GST_SCHEDULING gstpad.c:4277:gst_pad_chain_data_unchecked:<my_sink:sink> calling chainfunction &gst_base_sink_chain with buffer buffer: 0xffffa4028bd0, pts 0:00:03.500000000, dts 99:99:99.999999999, dur 0:00:00.500000000, size 98304, offset none, offset_end none, flags 0x0
0:00:03.763633250 8744 0x3d233140 LOG appsrc gstappsrc.c:1221:gst_app_src_create:<my_appsrc> have buffer 0xffffa40172f0 of size 948
0:00:03.763659000 8744 0x3d233770 DEBUG basesink gstbasesink.c:3421:gst_base_sink_chain_unlocked:<my_sink> got times start: 0:00:03.500000000, end: 0:00:04.000000000
0:00:03.763700625 8744 0x3d233140 DEBUG basesrc gstbasesrc.c:2360:gst_base_src_do_sync:<my_appsrc> no sync needed
0:00:03.763784500 8744 0x3d233140 DEBUG basesrc gstbasesrc.c:2597:gst_base_src_get_range:<my_appsrc> buffer ok
0:00:03.763758375 8744 0x3d233770 DEBUG basesink gstbasesink.c:2006:gst_base_sink_get_sync_times:<my_sink> got times start: 0:00:03.500000000, stop: 0:00:04.000000000, do_sync 1
0:00:03.763859375 8744 0x3d233140 DEBUG GST_SCHEDULING gstpad.c:4277:gst_pad_chain_data_unchecked:<my_h264parse:sink> calling chainfunction &gst_base_parse_chain with buffer buffer: 0xffffa40172f0, pts 0:00:06.000000000, dts 99:99:99.999999999, dur 0:00:00.500000000, size 948, offset none, offset_end none, flags 0x0
0:00:03.763919500 8744 0x3d233770 LOG basesink gstbasesink.c:2551:gst_base_sink_do_sync:<my_sink> avg frame diff 0:00:00.500000000
0:00:03.763998625 8744 0x3d233140 DEBUG baseparse gstbaseparse.c:3030:gst_base_parse_chain:<my_h264parse> chain
0:00:03.764052250 8744 0x3d233770 DEBUG basesink gstbasesink.c:2591:gst_base_sink_do_sync:<my_sink> reset rc_time to time 0:00:03.500000000
0:00:03.764079375 8744 0x3d233140 LOG baseparse gstbaseparse.c:3150:gst_base_parse_chain:<my_h264parse> buffer size: 948, offset = -1, dts 99:99:99.999999999, pts 0:00:06.000000000
0:00:03.764120250 8744 0x3d233770 DEBUG basesink gstbasesink.c:2603:gst_base_sink_do_sync:<my_sink> possibly waiting for clock to reach 0:00:03.500000000, adjusted 0:00:03.500000000
0:00:03.764179500 8744 0x3d233140 LOG adapter gstadapter.c:389:gst_adapter_push:<GstAdapter at 0x3d20c000> pushing 0xffffa40172f0 first 948 bytes
0:00:03.764199250 8744 0x3d233770 LOG basesink gstbasesink.c:2177:gst_base_sink_wait_clock:<my_sink> time 0:00:03.500000000, base_time 0:15:45.099030375
0:00:03.764246375 8744 0x3d233140 LOG adapter gstadapter.c:290:update_timestamps_and_offset:<GstAdapter at 0x3d20c000> new pts 0:00:06.000000000
0:00:03.764280750 8744 0x3d233770 DEBUG GST_CLOCK gstclock.c:537:gst_clock_id_wait:<GstSystemClock> waiting on clock entry 0xffffa4008580
0:00:03.764318625 8744 0x3d233140 LOG adapter gstadapter.c:974:gst_adapter_get_buffer:<GstAdapter at 0x3d20c000> getting buffer of 948 bytes
0:00:03.764342750 8744 0x3d233770 DEBUG GST_CLOCK gstclock.c:1046:gst_clock_get_internal_time:<GstSystemClock> internal time 0:15:48.111289000
0:00:03.764376375 8744 0x3d233140 LOG adapter gstadapter.c:989:gst_adapter_get_buffer:<GstAdapter at 0x3d20c000> providing buffer of 948 bytes as head buffer
0:00:03.764410625 8744 0x3d233770 DEBUG GST_CLOCK gstclock.c:1091:gst_clock_get_time:<GstSystemClock> adjusted time 0:15:48.111289000
0:00:03.764432875 8744 0x3d233140 LOG baseparse gstbaseparse.c:2148:gst_base_parse_handle_buffer:<my_h264parse> handling buffer of size 948 with dts 99:99:99.999999999, pts 0:00:06.000000000, duration 0:00:00.500000000
0:00:03.764467250 8744 0x3d233770 DEBUG GST_CLOCK gstsystemclock.c:718:gst_system_clock_id_wait_jitter_unlocked: entry 0xffffa4008580 time 0:15:48.599030375 now 0:15:48.111289000 diff (time-now) 487741375
0:00:03.764518875 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:799:gst_buffer_new: new 0xffffa4034090
0:00:03.764539500 8744 0x3d233770 DEBUG GST_POLL gstpoll.c:1369:gst_poll_wait: 0xffffa0003c00: timeout :0:00:00.487741375
0:00:03.764563125 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:515:gst_buffer_copy_into: copy 0xffffa40172f0 to 0xffffa4034090, offset 0-948/948
0:00:03.764623750 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:414:_memory_add: buffer 0xffffa4034090, idx -1, mem 0xffffa4018040
0:00:03.764678125 8744 0x3d233140 DEBUG GST_PERFORMANCE gstminiobject.c:317:gst_mini_object_make_writable: copy GstBuffer miniobject 0xffffa40172f0 -> 0xffffa4034090
0:00:03.764742125 8744 0x3d233140 LOG baseparse gstbaseparse.c:2110:gst_base_parse_prepare_frame:<my_h264parse> preparing frame at offset 18446744073709551615 (0xffffffffffffffff) of size 948
0:00:03.764808250 8744 0x3d233140 LOG baseparse gstbaseparse.c:764:gst_base_parse_update_frame:<my_h264parse> marking as new frame
0:00:03.764849375 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1721:gst_buffer_map_range: buffer 0xffffa4034090, idx 0, length -1, flags 0001
0:00:03.764943375 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:213:_get_merged_memory: buffer 0xffffa4034090, idx 0, length 1
0:00:03.765010500 8744 0x3d233140 LOG h264parse gsth264parse.c:1097:gst_h264_parse_handle_frame:<my_h264parse> parsing new frame
0:00:03.765116250 8744 0x3d233140 DEBUG h264parse gsth264parse.c:186:gst_h264_parse_reset_frame:<my_h264parse> reset frame
0:00:03.765177875 8744 0x3d233140 DEBUG h264parse gsth264parse.c:1112:gst_h264_parse_handle_frame:<my_h264parse> last parse position 0
0:00:03.765230500 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:242:gst_h264_parse_nalu_header: Nal type 9, ref_idc 0
0:00:03.765280875 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:242:gst_h264_parse_nalu_header: Nal type 9, ref_idc 0
0:00:03.765327375 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:1366:gst_h264_parser_identify_nalu: Complete nal found. Off: 4, Size: 2
0:00:03.765384375 8744 0x3d233140 DEBUG h264parse gsth264parse.c:1162:gst_h264_parse_handle_frame:<my_h264parse> complete nal (offset, size): (4, 2)
0:00:03.765441125 8744 0x3d233140 DEBUG h264parse gsth264parse.c:1219:gst_h264_parse_handle_frame:<my_h264parse> 0xffffa4035930 complete nal found. Off: 4, Size: 2
0:00:03.765504750 8744 0x3d233140 DEBUG h264parse gsth264parse.c:721:gst_h264_parse_process_nal:<my_h264parse> processing nal of type 9 AU delimiter, size 2
0:00:03.765566500 8744 0x3d233140 LOG h264parse gsth264parse.c:895:gst_h264_parse_process_nal:<my_h264parse> collecting NAL in AVC frame
0:00:03.765613875 8744 0x3d233140 DEBUG h264parse gsth264parse.c:428:gst_h264_parse_wrap_nal:<my_h264parse> nal length 2
0:00:03.765664625 8744 0x3d233140 DEBUG GST_MEMORY gstmemory.c:139:gst_memory_init: new memory 0xffffa400a970, maxsize:13 offset:0 size:6
0:00:03.765721875 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:799:gst_buffer_new: new 0xffffa4017b70
0:00:03.765764500 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:414:_memory_add: buffer 0xffffa4017b70, idx -1, mem 0xffffa400a970
0:00:03.765815875 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:855:gst_buffer_new_allocate: new buffer 0xffffa4017b70 of size 6 from allocator (nil)
0:00:03.765872250 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1826:gst_buffer_fill: buffer 0xffffa4017b70, offset 0, size 4
0:00:03.765928875 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1826:gst_buffer_fill: buffer 0xffffa4017b70, offset 4, size 2
0:00:03.765983750 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1582:gst_buffer_resize_range: trim 0xffffa4017b70 0-6 size:6 offs:0 max:13
0:00:03.766061625 8744 0x3d233140 LOG adapter gstadapter.c:389:gst_adapter_push:<GstAdapter at 0x3d20c120> pushing 0xffffa4017b70 first 6 bytes
0:00:03.766121250 8744 0x3d233140 DEBUG h264parse gsth264parse.c:914:gst_h264_parse_collect_nal:<my_h264parse> parsing collected nal
0:00:03.766160375 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:242:gst_h264_parse_nalu_header: Nal type 6, ref_idc 0
0:00:03.766216250 8744 0x3d233140 LOG h264parse gsth264parse.c:922:gst_h264_parse_collect_nal:<my_h264parse> nal type: 9 AU delimiter
0:00:03.766272750 8744 0x3d233140 LOG h264parse gsth264parse.c:941:gst_h264_parse_collect_nal:<my_h264parse> next nal type: 6 SEI
0:00:03.766328250 8744 0x3d233140 LOG h264parse gsth264parse.c:948:gst_h264_parse_collect_nal:<my_h264parse> au complete: 0
0:00:03.766379750 8744 0x3d233140 DEBUG h264parse gsth264parse.c:1264:gst_h264_parse_handle_frame:<my_h264parse> Looking for more
0:00:03.766417875 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:242:gst_h264_parse_nalu_header: Nal type 6, ref_idc 0
0:00:03.766506750 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:1366:gst_h264_parser_identify_nalu: Complete nal found. Off: 10, Size: 21
0:00:03.766566000 8744 0x3d233140 DEBUG h264parse gsth264parse.c:1162:gst_h264_parse_handle_frame:<my_h264parse> complete nal (offset, size): (10, 21)
0:00:03.766622625 8744 0x3d233140 DEBUG h264parse gsth264parse.c:1219:gst_h264_parse_handle_frame:<my_h264parse> 0xffffa4035930 complete nal found. Off: 10, Size: 21
0:00:03.766683500 8744 0x3d233140 DEBUG h264parse gsth264parse.c:721:gst_h264_parse_process_nal:<my_h264parse> processing nal of type 6 SEI, size 21
0:00:03.766735375 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:2292:gst_h264_parser_parse_sei: parsing SEI nal
0:00:03.766779375 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:1127:gst_h264_parser_parse_sei_message: parsing "Sei message"
0:00:03.766821250 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:1147:gst_h264_parser_parse_sei_message: SEI message received: payloadType 5, payloadSize = 136 bits
0:00:03.766894375 8744 0x3d233140 DEBUG h264parse gsth264parse.c:807:gst_h264_parse_process_nal:<my_h264parse> marking SEI in frame at offset 6
0:00:03.766947250 8744 0x3d233140 LOG h264parse gsth264parse.c:895:gst_h264_parse_process_nal:<my_h264parse> collecting NAL in AVC frame
0:00:03.766993000 8744 0x3d233140 DEBUG h264parse gsth264parse.c:428:gst_h264_parse_wrap_nal:<my_h264parse> nal length 21
0:00:03.767037875 8744 0x3d233140 DEBUG GST_MEMORY gstmemory.c:139:gst_memory_init: new memory 0xffffa401b2d0, maxsize:32 offset:0 size:25
0:00:03.767093750 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:799:gst_buffer_new: new 0xffffa4017950
0:00:03.767135000 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:414:_memory_add: buffer 0xffffa4017950, idx -1, mem 0xffffa401b2d0
0:00:03.767185250 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:855:gst_buffer_new_allocate: new buffer 0xffffa4017950 of size 25 from allocator (nil)
0:00:03.767236000 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1826:gst_buffer_fill: buffer 0xffffa4017950, offset 0, size 4
0:00:03.767286875 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1826:gst_buffer_fill: buffer 0xffffa4017950, offset 4, size 21
0:00:03.767338750 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1582:gst_buffer_resize_range: trim 0xffffa4017950 0-25 size:25 offs:0 max:32
0:00:03.767412250 8744 0x3d233140 LOG adapter gstadapter.c:395:gst_adapter_push:<GstAdapter at 0x3d20c120> pushing 0xffffa4017950 25 bytes at end, size now 31
0:00:03.767475500 8744 0x3d233140 DEBUG h264parse gsth264parse.c:914:gst_h264_parse_collect_nal:<my_h264parse> parsing collected nal
0:00:03.767514375 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:242:gst_h264_parse_nalu_header: Nal type 1, ref_idc 1
0:00:03.767569000 8744 0x3d233140 LOG h264parse gsth264parse.c:922:gst_h264_parse_collect_nal:<my_h264parse> nal type: 6 SEI
0:00:03.767622750 8744 0x3d233140 LOG h264parse gsth264parse.c:941:gst_h264_parse_collect_nal:<my_h264parse> next nal type: 1 Slice
0:00:03.767676125 8744 0x3d233140 LOG h264parse gsth264parse.c:948:gst_h264_parse_collect_nal:<my_h264parse> au complete: 0
0:00:03.767725875 8744 0x3d233140 DEBUG h264parse gsth264parse.c:1264:gst_h264_parse_handle_frame:<my_h264parse> Looking for more
0:00:03.767763750 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:242:gst_h264_parse_nalu_header: Nal type 1, ref_idc 1
0:00:03.767810125 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:1366:gst_h264_parser_identify_nalu: Complete nal found. Off: 34, Size: 229
0:00:03.767865000 8744 0x3d233140 DEBUG h264parse gsth264parse.c:1162:gst_h264_parse_handle_frame:<my_h264parse> complete nal (offset, size): (34, 229)
0:00:03.767954500 8744 0x3d233140 DEBUG h264parse gsth264parse.c:1219:gst_h264_parse_handle_frame:<my_h264parse> 0xffffa4035930 complete nal found. Off: 34, Size: 229
0:00:03.768016625 8744 0x3d233140 DEBUG h264parse gsth264parse.c:721:gst_h264_parse_process_nal:<my_h264parse> processing nal of type 1 Slice, size 229
0:00:03.768075875 8744 0x3d233140 DEBUG h264parse gsth264parse.c:827:gst_h264_parse_process_nal:<my_h264parse> first_mb_in_slice = 0
0:00:03.768123750 8744 0x3d233140 DEBUG h264parse gsth264parse.c:830:gst_h264_parse_process_nal:<my_h264parse> frame start: 1
0:00:03.768168750 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:2079:gst_h264_parser_parse_slice_hdr: parsing "Slice header", slice type 0
0:00:03.768221875 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:700:gst_h264_slice_parse_dec_ref_pic_marking: parsing "Decoded reference picture marking"
0:00:03.768274250 8744 0x3d233140 DEBUG h264parse gsth264parse.c:840:gst_h264_parse_process_nal:<my_h264parse> parse result 0, first MB: 0, slice type: 0
0:00:03.768302250 8744 0x3d1e1590 LOG waylandsink gstwaylandsink.c:745:frame_redraw_callback: frame_redraw_cb
0:00:03.768335000 8744 0x3d233140 LOG h264parse gsth264parse.c:895:gst_h264_parse_process_nal:<my_h264parse> collecting NAL in AVC frame
0:00:03.768400875 8744 0x3d233140 DEBUG h264parse gsth264parse.c:428:gst_h264_parse_wrap_nal:<my_h264parse> nal length 229
0:00:03.768412750 8744 0x3d1e1590 DEBUG GST_POLL gstpoll.c:1369:gst_poll_wait: 0x3d21fe80: timeout :99:99:99.999999999
0:00:03.768452250 8744 0x3d233140 DEBUG GST_MEMORY gstmemory.c:139:gst_memory_init: new memory 0xffffa0002690, maxsize:240 offset:0 size:233
0:00:03.768510250 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:799:gst_buffer_new: new 0xffffa4017a60
0:00:03.768552750 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:414:_memory_add: buffer 0xffffa4017a60, idx -1, mem 0xffffa0002690
0:00:03.768603250 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:855:gst_buffer_new_allocate: new buffer 0xffffa4017a60 of size 233 from allocator (nil)
0:00:03.768654125 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1826:gst_buffer_fill: buffer 0xffffa4017a60, offset 0, size 4
0:00:03.768704375 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1826:gst_buffer_fill: buffer 0xffffa4017a60, offset 4, size 229
0:00:03.768755000 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1582:gst_buffer_resize_range: trim 0xffffa4017a60 0-233 size:233 offs:0 max:240
0:00:03.768828875 8744 0x3d233140 LOG adapter gstadapter.c:395:gst_adapter_push:<GstAdapter at 0x3d20c120> pushing 0xffffa4017a60 233 bytes at end, size now 264
0:00:03.768890750 8744 0x3d233140 DEBUG h264parse gsth264parse.c:914:gst_h264_parse_collect_nal:<my_h264parse> parsing collected nal
0:00:03.768930250 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:242:gst_h264_parse_nalu_header: Nal type 1, ref_idc 1
0:00:03.768984875 8744 0x3d233140 LOG h264parse gsth264parse.c:922:gst_h264_parse_collect_nal:<my_h264parse> nal type: 1 Slice
0:00:03.769038875 8744 0x3d233140 LOG h264parse gsth264parse.c:941:gst_h264_parse_collect_nal:<my_h264parse> next nal type: 1 Slice
0:00:03.769147500 8744 0x3d233140 LOG h264parse gsth264parse.c:948:gst_h264_parse_collect_nal:<my_h264parse> au complete: 0
0:00:03.769198375 8744 0x3d233140 DEBUG h264parse gsth264parse.c:1264:gst_h264_parse_handle_frame:<my_h264parse> Looking for more
0:00:03.769236250 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:242:gst_h264_parse_nalu_header: Nal type 1, ref_idc 1
0:00:03.769316375 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:1351:gst_h264_parser_identify_nalu: Nal start 266, No end found
0:00:03.769371000 8744 0x3d233140 DEBUG h264parse gsth264parse.c:1166:gst_h264_parse_handle_frame:<my_h264parse> not a complete nal found at offset 266
0:00:03.769422500 8744 0x3d233140 DEBUG h264parse gsth264parse.c:1172:gst_h264_parse_handle_frame:<my_h264parse> draining, accepting with size 682
0:00:03.769473750 8744 0x3d233140 DEBUG h264parse gsth264parse.c:1219:gst_h264_parse_handle_frame:<my_h264parse> 0xffffa4035930 complete nal found. Off: 266, Size: 682
0:00:03.769533250 8744 0x3d233140 DEBUG h264parse gsth264parse.c:721:gst_h264_parse_process_nal:<my_h264parse> processing nal of type 1 Slice, size 682
0:00:03.769590000 8744 0x3d233140 DEBUG h264parse gsth264parse.c:830:gst_h264_parse_process_nal:<my_h264parse> frame start: 1
0:00:03.769633750 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:2079:gst_h264_parser_parse_slice_hdr: parsing "Slice header", slice type 0
0:00:03.769679500 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:700:gst_h264_slice_parse_dec_ref_pic_marking: parsing "Decoded reference picture marking"
0:00:03.769727875 8744 0x3d233140 DEBUG h264parse gsth264parse.c:840:gst_h264_parse_process_nal:<my_h264parse> parse result 0, first MB: 49, slice type: 0
0:00:03.769787250 8744 0x3d233140 LOG h264parse gsth264parse.c:895:gst_h264_parse_process_nal:<my_h264parse> collecting NAL in AVC frame
0:00:03.769832875 8744 0x3d233140 DEBUG h264parse gsth264parse.c:428:gst_h264_parse_wrap_nal:<my_h264parse> nal length 682
0:00:03.769955875 8744 0x3d233140 DEBUG GST_MEMORY gstmemory.c:139:gst_memory_init: new memory 0xffffa40440f0, maxsize:693 offset:0 size:686
0:00:03.770018500 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:799:gst_buffer_new: new 0xffffa40346f0
0:00:03.770059750 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:414:_memory_add: buffer 0xffffa40346f0, idx -1, mem 0xffffa40440f0
0:00:03.770111000 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:855:gst_buffer_new_allocate: new buffer 0xffffa40346f0 of size 686 from allocator (nil)
0:00:03.770161750 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1826:gst_buffer_fill: buffer 0xffffa40346f0, offset 0, size 4
0:00:03.770212250 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1826:gst_buffer_fill: buffer 0xffffa40346f0, offset 4, size 682
0:00:03.770263125 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1582:gst_buffer_resize_range: trim 0xffffa40346f0 0-686 size:686 offs:0 max:693
0:00:03.770339250 8744 0x3d233140 LOG adapter gstadapter.c:395:gst_adapter_push:<GstAdapter at 0x3d20c120> pushing 0xffffa40346f0 686 bytes at end, size now 950
0:00:03.770417750 8744 0x3d233140 DEBUG GST_CAPS gstpad.c:2705:gst_pad_has_current_caps:<my_h264parse:src> check current pad caps video/x-h264, stream-format=(string)byte-stream, alignment=(string)au, framerate=(fraction)0/1, width=(int)176, height=(int)144, interlace-mode=(string)progressive, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8, parsed=(boolean)true, profile=(string)constrained-baseline, level=(string)1.2
0:00:03.770594375 8744 0x3d233140 LOG h264parse gsth264parse.c:2016:gst_h264_parse_get_timestamp:<my_h264parse> Upstream ts 0:00:06.000000000
0:00:03.770660625 8744 0x3d233140 DEBUG h264parse gsth264parse.c:2035:gst_h264_parse_get_timestamp:<my_h264parse> unable to compute timestamp: timing info not present
0:00:03.770714125 8744 0x3d233140 LOG adapter gstadapter.c:974:gst_adapter_get_buffer:<GstAdapter at 0x3d20c120> getting buffer of 950 bytes
0:00:03.770772375 8744 0x3d233140 LOG adapter gstadapter.c:736:gst_adapter_get_internal:<GstAdapter at 0x3d20c120> allocating 950 bytes
0:00:03.770849000 8744 0x3d233140 DEBUG adapter gstadapter.c:344:copy_into_unchecked: bsize 6, skip 0, csize 6
0:00:03.770915375 8744 0x3d233140 LOG GST_PERFORMANCE gstadapter.c:346:copy_into_unchecked:<GstAdapter at 0x3d20c120> extract 6 bytes
0:00:03.770958375 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1876:gst_buffer_extract: buffer 0xffffa4017b70, offset 0, size 6
0:00:03.771024500 8744 0x3d233140 LOG GST_PERFORMANCE gstadapter.c:359:copy_into_unchecked:<GstAdapter at 0x3d20c120> extract 25 bytes
0:00:03.771065750 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1876:gst_buffer_extract: buffer 0xffffa4017950, offset 0, size 25
0:00:03.771130125 8744 0x3d233140 LOG GST_PERFORMANCE gstadapter.c:359:copy_into_unchecked:<GstAdapter at 0x3d20c120> extract 233 bytes
0:00:03.771171250 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1876:gst_buffer_extract: buffer 0xffffa4017a60, offset 0, size 233
0:00:03.771236125 8744 0x3d233140 LOG GST_PERFORMANCE gstadapter.c:359:copy_into_unchecked:<GstAdapter at 0x3d20c120> extract 686 bytes
0:00:03.771277500 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1876:gst_buffer_extract: buffer 0xffffa40346f0, offset 0, size 686
0:00:03.771331250 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:799:gst_buffer_new: new 0xffffa4028130
0:00:03.771374375 8744 0x3d233140 DEBUG GST_MEMORY gstmemory.c:139:gst_memory_init: new memory 0x3d227580, maxsize:950 offset:0 size:950
0:00:03.771429375 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:414:_memory_add: buffer 0xffffa4028130, idx -1, mem 0x3d227580
0:00:03.771496250 8744 0x3d233140 LOG adapter gstadapter.c:634:gst_adapter_flush_unchecked:<GstAdapter at 0x3d20c120> flushing 950 bytes
0:00:03.771551875 8744 0x3d233140 LOG adapter gstadapter.c:656:gst_adapter_flush_unchecked:<GstAdapter at 0x3d20c120> flushing out head buffer
0:00:03.771590750 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:725:_gst_buffer_free: finalize 0xffffa4017b70
0:00:03.771632125 8744 0x3d233140 DEBUG GST_MEMORY gstmemory.c:88:_gst_memory_free: free memory 0xffffa400a970
0:00:03.771696000 8744 0x3d233140 LOG adapter gstadapter.c:656:gst_adapter_flush_unchecked:<GstAdapter at 0x3d20c120> flushing out head buffer
0:00:03.771734500 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:725:_gst_buffer_free: finalize 0xffffa4017950
0:00:03.771775500 8744 0x3d233140 DEBUG GST_MEMORY gstmemory.c:88:_gst_memory_free: free memory 0xffffa401b2d0
0:00:03.771834625 8744 0x3d233140 LOG adapter gstadapter.c:656:gst_adapter_flush_unchecked:<GstAdapter at 0x3d20c120> flushing out head buffer
0:00:03.771872000 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:725:_gst_buffer_free: finalize 0xffffa4017a60
0:00:03.771913125 8744 0x3d233140 DEBUG GST_MEMORY gstmemory.c:88:_gst_memory_free: free memory 0xffffa0002690
0:00:03.771970875 8744 0x3d233140 LOG adapter gstadapter.c:656:gst_adapter_flush_unchecked:<GstAdapter at 0x3d20c120> flushing out head buffer
0:00:03.772008250 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:725:_gst_buffer_free: finalize 0xffffa40346f0
0:00:03.772048875 8744 0x3d233140 DEBUG GST_MEMORY gstmemory.c:88:_gst_memory_free: free memory 0xffffa40440f0
0:00:03.772106375 8744 0x3d233140 LOG adapter gstadapter.c:668:gst_adapter_flush_unchecked:<GstAdapter at 0x3d20c120> adapter empty now
0:00:03.772146250 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:515:gst_buffer_copy_into: copy 0xffffa4034090 to 0xffffa4028130, offset 0-948/948
0:00:03.772218250 8744 0x3d233140 LOG baseparse gstbaseparse.c:2637:gst_base_parse_finish_frame:<my_h264parse> finished frame at offset 15553, flushing size 948
0:00:03.772280250 8744 0x3d233140 LOG adapter gstadapter.c:634:gst_adapter_flush_unchecked:<GstAdapter at 0x3d20c000> flushing 948 bytes
0:00:03.772370250 8744 0x3d233140 LOG adapter gstadapter.c:656:gst_adapter_flush_unchecked:<GstAdapter at 0x3d20c000> flushing out head buffer
0:00:03.772408750 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:725:_gst_buffer_free: finalize 0xffffa40172f0
0:00:03.772464625 8744 0x3d233140 LOG adapter gstadapter.c:668:gst_adapter_flush_unchecked:<GstAdapter at 0x3d20c000> adapter empty now
0:00:03.772503250 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:725:_gst_buffer_free: finalize 0xffffa4034090
0:00:03.772544500 8744 0x3d233140 DEBUG GST_MEMORY gstmemory.c:88:_gst_memory_free: free memory 0xffffa4018040
(free_data, 133)
0:00:03.772621500 8744 0x3d233140 DEBUG baseparse gstbaseparse.c:2333:gst_base_parse_handle_and_push_frame:<my_h264parse> no next fallback timestamp
0:00:03.772671000 8744 0x3d233140 LOG baseparse gstbaseparse.c:2392:gst_base_parse_push_frame:<my_h264parse> processing buffer of size 950 with dts 99:99:99.999999999, pts 0:00:06.000000000, duration 0:00:00.500000000
0:00:03.772767500 8744 0x3d233140 DEBUG GST_CAPS gstpad.c:2705:gst_pad_has_current_caps:<my_h264parse:src> check current pad caps video/x-h264, stream-format=(string)byte-stream, alignment=(string)au, framerate=(fraction)0/1, width=(int)176, height=(int)144, interlace-mode=(string)progressive, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8, parsed=(boolean)true, profile=(string)constrained-baseline, level=(string)1.2
0:00:03.772909375 8744 0x3d233140 LOG baseparse gstbaseparse.c:1851:gst_base_parse_update_bitrates:<my_h264parse> frame bitrate 15200, avg bitrate 21974
0:00:03.772970500 8744 0x3d233140 DEBUG h264parse gsth264parse.c:186:gst_h264_parse_reset_frame:<my_h264parse> reset frame
0:00:03.773018625 8744 0x3d233140 LOG baseparse gstbaseparse.c:900:gst_base_parse_queue_tag_event_update:<my_h264parse> upstream : (NULL)
0:00:03.773107375 8744 0x3d233140 LOG baseparse gstbaseparse.c:902:gst_base_parse_queue_tag_event_update:<my_h264parse> parser : taglist, video-codec=(string)"H.264\ \(Constrained\ Baseline\ Profile\)";
0:00:03.773182750 8744 0x3d233140 LOG baseparse gstbaseparse.c:903:gst_base_parse_queue_tag_event_update:<my_h264parse> mode : 2
0:00:03.773255000 8744 0x3d233140 DEBUG baseparse gstbaseparse.c:909:gst_base_parse_queue_tag_event_update:<my_h264parse> merged : taglist, video-codec=(string)"H.264\ \(Constrained\ Baseline\ Profile\)";
0:00:03.773322250 8744 0x3d233140 LOG baseparse gstbaseparse.c:923:gst_base_parse_queue_tag_event_update:<my_h264parse> adding min bitrate 14080
0:00:03.773386875 8744 0x3d233140 LOG baseparse gstbaseparse.c:928:gst_base_parse_queue_tag_event_update:<my_h264parse> adding max bitrate 22352
0:00:03.773445375 8744 0x3d233140 LOG baseparse gstbaseparse.c:934:gst_base_parse_queue_tag_event_update:<my_h264parse> adding avg bitrate 21974
0:00:03.773511125 8744 0x3d233140 DEBUG GST_EVENT gstevent.c:306:gst_event_new_custom: creating new event 0xffffa4007ec0 tag 20510
0:00:03.773588625 8744 0x3d233140 LOG GST_PADS gstpad.c:5176:store_sticky_event:<my_h264parse:src> stored sticky event tag
0:00:03.773645250 8744 0x3d233140 DEBUG GST_PADS gstpad.c:3937:check_sticky:<my_h264parse:src> pushing all sticky events
0:00:03.773696500 8744 0x3d233140 DEBUG GST_PADS gstpad.c:3867:push_sticky:<my_h264parse:src> event stream-start was already received
0:00:03.773751500 8744 0x3d233140 DEBUG GST_PADS gstpad.c:3867:push_sticky:<my_h264parse:src> event caps was already received
0:00:03.773807625 8744 0x3d233140 DEBUG GST_PADS gstpad.c:3867:push_sticky:<my_h264parse:src> event segment was already received
0:00:03.773899250 8744 0x3d233140 LOG GST_PADS gstpad.c:5351:gst_pad_push_event_unchecked:<my_h264parse:src> sending event 0xffffa4007ec0 (tag) to peerpad <my_vdec:sink>
0:00:03.773977250 8744 0x3d233140 DEBUG GST_EVENT gstpad.c:5638:gst_pad_send_event_unchecked:<my_vdec:sink> have event type tag event: 0xffffa4007ec0, time 99:99:99.999999999, seq-num 63, GstTagList-stream, taglist=(taglist)"taglist\,\ video-codec\=\(string\)\"H.264\\\ \\\(Constrained\\\ Baseline\\\ Profile\\\)\"\,\ minimum-bitrate\=\(uint\)14080\,\ maximum-bitrate\=\(uint\)22352\,\ bitrate\=\(uint\)21974\;";
0:00:03.774140500 8744 0x3d233140 DEBUG videodecoder gstvideodecoder.c:1393:gst_video_decoder_sink_event:<my_vdec> received event 20510, tag
0:00:04.252890000 8744 0x3d233770 DEBUG GST_CLOCK gstsystemclock.c:746:gst_system_clock_id_wait_jitter_unlocked: entry 0xffffa4008580 unlocked, status 3, ret 0
0:00:04.253000250 8744 0x3d233770 DEBUG GST_CLOCK gstsystemclock.c:770:gst_system_clock_id_wait_jitter_unlocked: entry 0xffffa4008580 unlocked after timeout
0:00:04.253138000 8744 0x3d233770 DEBUG GST_CLOCK gstclock.c:1046:gst_clock_get_internal_time:<GstSystemClock> internal time 0:15:48.600063125
0:00:04.253217625 8744 0x3d233770 DEBUG GST_CLOCK gstclock.c:1091:gst_clock_get_time:<GstSystemClock> adjusted time 0:15:48.600063125
0:00:04.253273375 8744 0x3d233770 DEBUG GST_CLOCK gstsystemclock.c:792:gst_system_clock_id_wait_jitter_unlocked: entry 0xffffa4008580 finished, diff -1032750
0:00:04.253333250 8744 0x3d233770 DEBUG GST_CLOCK gstclock.c:547:gst_clock_id_wait:<GstSystemClock> done waiting entry 0xffffa4008580, res: 0 (ok)
0:00:04.253403125 8744 0x3d233770 DEBUG basesink gstbasesink.c:2610:gst_base_sink_do_sync:<my_sink> clock returned 0, jitter -0:00:00.487741375
0:00:04.253473500 8744 0x3d233770 DEBUG basesink gstbasesink.c:2921:gst_base_sink_is_too_late:<my_sink> object was scheduled in time
0:00:04.253522500 8744 0x3d233770 DEBUG basesink gstbasesink.c:3538:gst_base_sink_chain_unlocked:<my_sink> rendering object 0xffffa4028bd0
0:00:04.253576500 8744 0x3d233770 DEBUG basesink gstbasesink.c:994:gst_base_sink_set_last_buffer_unlocked:<my_sink> setting last buffer to 0xffffa4028bd0
0:00:04.253638000 8744 0x3d233770 LOG videosink gstvideosink.c:228:gst_video_sink_show_frame:<my_sink> rendering frame, ts=0:00:03.500000000
0:00:04.253704000 8744 0x3d233770 LOG waylandsink gstwaylandsink.c:863:gst_wayland_sink_show_frame:<my_sink> render buffer 0xffffa4028bd0
0:00:04.253773625 8744 0x3d233770 LOG waylandsink gstwaylandsink.c:917:gst_wayland_sink_show_frame:<my_sink> buffer 0xffffa4028bd0 does not have a wl_buffer from our display, creating it
0:00:04.253858500 8744 0x3d233770 DEBUG waylandsink wllinuxdmabuf.c:108:gst_wl_linux_dmabuf_construct_wl_buffer:<GstWlDisplay at 0x3d1da380> Creating wl_buffer from DMABuf of size 98304 (176 x 144), format NV12 modifier 0x0800000000000001
0:00:04.254685000 8744 0x3d233770 DEBUG waylandsink wllinuxdmabuf.c:175:gst_wl_linux_dmabuf_construct_wl_buffer:<dmabufallocator2> created linux_dmabuf wl_buffer (0xffff9c02c470):176x144, fmt=NV12, 2 planes
0:00:04.254679125 8744 0x3d1e1590 DEBUG GST_POLL gstpoll.c:1369:gst_poll_wait: 0x3d21fe80: timeout :99:99:99.999999999
0:00:04.254857250 8744 0x3d233770 DEBUG GST_QOS gstbasesink.c:2751:gst_base_sink_perform_qos:<my_sink> start: 0:00:03.500000000, stop 0:00:04.000000000, entered 0:00:03.012258625, left 0:00:03.500000000, pt: 0:00:00.012258625, duration 0:00:00.500000000,jitter -487741375
0:00:04.254990250 8744 0x3d233770 DEBUG GST_QOS gstbasesink.c:2755:gst_base_sink_perform_qos:<my_sink> avg_pt: 0:00:00.013001048, avg_rate: 0.0253498
0:00:04.255157125 8744 0x3d233770 DEBUG GST_QOS gstbasesink.c:2785:gst_base_sink_perform_qos:<my_sink> updated: avg_pt: 0:00:00.012908245, avg_rate: 0.0253789
0:00:04.255236625 8744 0x3d233770 DEBUG GST_QOS gstbasesink.c:2679:gst_base_sink_send_qos:<my_sink> qos: type 0, proportion: 0.025379, diff -487741375, timestamp 0:00:03.500000000
0:00:04.255280750 8744 0x3d1e1590 LOG waylandsink wlbuffer.c:137:buffer_release:<GstWlBuffer at 0xffff9c00b940> wl_buffer::release (GstBuffer: 0xffffa4028ac0)
0:00:04.255345750 8744 0x3d1e1590 LOG GST_BUFFER gstbuffer.c:710:_gst_buffer_dispose: release 0xffffa4028ac0 to pool 0xffffa4012e90
0:00:04.255359375 8744 0x3d233770 LOG GST_EVENT gstevent.c:1146:gst_event_new_qos: creating qos type 0, proportion 0.025379, diff -487741375, timestamp 0:00:03.500000000
0:00:04.255403500 8744 0x3d1e1590 DEBUG GST_BUFFER gstbuffer.c:2383:gst_buffer_foreach_meta: remove metadata 0xffff9c001b08 (GstDmabufMeta)
0:00:04.255487000 8744 0x3d1e1590 DEBUG v4l2bufferpool gstv4l2bufferpool.c:1420:gst_v4l2_buffer_pool_release_buffer:<my_vdec:pool:src> release buffer 0xffffa4028ac0
0:00:04.255504125 8744 0x3d233770 DEBUG GST_EVENT gstevent.c:306:gst_event_new_custom: creating new event 0xffff9c00e8e0 qos 48641
0:00:04.255557875 8744 0x3d1e1590 LOG v4l2bufferpool gstv4l2bufferpool.c:1059:gst_v4l2_buffer_pool_qbuf:<my_vdec:pool:src> queuing buffer 6
0:00:04.255587500 8744 0x3d233770 LOG GST_PADS gstpad.c:5351:gst_pad_push_event_unchecked:<my_sink:sink> sending event 0xffff9c00e8e0 (qos) to peerpad <my_vdec:src>
0:00:04.255657125 8744 0x3d1e1590 LOG v4l2allocator gstv4l2allocator.c:1265:gst_v4l2_allocator_qbuf:<my_vdec:pool:src:allocator> queued buffer 6 (flags 0x4003)
0:00:04.255717625 8744 0x3d1e1590 DEBUG GST_POLL gstpoll.c:1369:gst_poll_wait: 0x3d21fe80: timeout :99:99:99.999999999
0:00:04.255670125 8744 0x3d233770 DEBUG GST_EVENT gstpad.c:5638:gst_pad_send_event_unchecked:<my_vdec:src> have event type qos event: 0xffff9c00e8e0, time 99:99:99.999999999, seq-num 64, GstEventQOS, type=(GstQOSType)GST_QOS_TYPE_OVERFLOW, proportion=(double)0.025378923531456592, diff=(gint64)-487741375, timestamp=(guint64)3500000000;
0:00:04.255884125 8744 0x3d233770 DEBUG videodecoder gstvideodecoder.c:1584:gst_video_decoder_src_event:<my_vdec> received event 48641, qos
0:00:04.255944625 8744 0x3d233770 DEBUG videodecoder gstvideodecoder.c:1485:gst_video_decoder_src_event_default:<my_vdec> received event 48641, qos
0:00:04.256009375 8744 0x3d233770 DEBUG videodecoder gstvideodecoder.c:1556:gst_video_decoder_src_event_default:<my_vdec> got QoS 0:00:03.500000000, -0:00:00.487741375, 0.0253789
0:00:04.256103750 8744 0x3d233770 LOG GST_PADS gstpad.c:5351:gst_pad_push_event_unchecked:<my_vdec:sink> sending event 0xffff9c00e8e0 (qos) to peerpad <my_h264parse:src>
0:00:04.256180750 8744 0x3d233770 DEBUG GST_EVENT gstpad.c:5638:gst_pad_send_event_unchecked:<my_h264parse:src> have event type qos event: 0xffff9c00e8e0, time 99:99:99.999999999, seq-num 64, GstEventQOS, type=(GstQOSType)GST_QOS_TYPE_OVERFLOW, proportion=(double)0.025378923531456592, diff=(gint64)-487741375, timestamp=(guint64)3500000000;
0:00:04.256363000 8744 0x3d233770 DEBUG baseparse gstbaseparse.c:1602:gst_base_parse_src_event:<my_h264parse> event 48641, qos
0:00:04.256428375 8744 0x3d233770 LOG GST_PADS gstpad.c:3087:gst_pad_event_default:<my_h264parse:src> default event handler for event qos event: 0xffff9c00e8e0, time 99:99:99.999999999, seq-num 64, GstEventQOS, type=(GstQOSType)GST_QOS_TYPE_OVERFLOW, proportion=(double)0.025378923531456592, diff=(gint64)-487741375, timestamp=(guint64)3500000000;
0:00:04.256583125 8744 0x3d233770 DEBUG GST_PADS gstpad.c:2897:gst_pad_iterate_internal_links_default:<my_h264parse:src> Making iterator
0:00:04.256687750 8744 0x3d233770 LOG GST_PADS gstpad.c:3007:gst_pad_forward:<my_h264parse:src> calling forward function on pad my_h264parse:sink
0:00:04.256751000 8744 0x3d233770 LOG GST_PADS gstpad.c:3052:event_forward_func:<my_h264parse:sink> Reffing and pushing event 0xffff9c00e8e0 (qos) to my_h264parse:sink
0:00:04.256822000 8744 0x3d233770 LOG GST_PADS gstpad.c:5351:gst_pad_push_event_unchecked:<my_h264parse:sink> sending event 0xffff9c00e8e0 (qos) to peerpad <my_appsrc:src>
0:00:04.256898000 8744 0x3d233770 DEBUG GST_EVENT gstpad.c:5638:gst_pad_send_event_unchecked:<my_appsrc:src> have event type qos event: 0xffff9c00e8e0, time 99:99:99.999999999, seq-num 64, GstEventQOS, type=(GstQOSType)GST_QOS_TYPE_OVERFLOW, proportion=(double)0.025378923531456592, diff=(gint64)-487741375, timestamp=(guint64)3500000000;
0:00:04.257099250 8744 0x3d233770 DEBUG basesrc gstbasesrc.c:2027:gst_base_src_default_event:<my_appsrc> handle event qos event: 0xffff9c00e8e0, time 99:99:99.999999999, seq-num 64, GstEventQOS, type=(GstQOSType)GST_QOS_TYPE_OVERFLOW, proportion=(double)0.025378923531456592, diff=(gint64)-487741375, timestamp=(guint64)3500000000;
0:00:04.257256875 8744 0x3d233770 DEBUG GST_QOS gstbasesrc.c:2013:gst_base_src_update_qos:<my_appsrc> qos: proportion: 0.025379, diff -487741375, timestamp 0:00:03.500000000
0:00:04.257344000 8744 0x3d233770 DEBUG GST_PADS gstpad.c:5712:gst_pad_send_event_unchecked:<my_appsrc:src> sent event, ret ok
0:00:04.257401500 8744 0x3d233770 LOG GST_PADS gstpad.c:5359:gst_pad_push_event_unchecked:<my_h264parse:sink> sent event 0xffff9c00e8e0 (qos) to peerpad <my_appsrc:src>, ret ok
0:00:04.257478375 8744 0x3d233770 LOG GST_EVENT gstevent.c:223:_gst_event_free: freeing event 0xffff9c00e8e0 type qos
0:00:04.257548375 8744 0x3d233770 DEBUG GST_PADS gstpad.c:5712:gst_pad_send_event_unchecked:<my_h264parse:src> sent event, ret ok
0:00:04.257604000 8744 0x3d233770 LOG GST_PADS gstpad.c:5359:gst_pad_push_event_unchecked:<my_vdec:sink> sent event 0xffff9c00e8e0 (qos) to peerpad <my_h264parse:src>, ret ok
0:00:04.257682625 8744 0x3d233770 DEBUG GST_PADS gstpad.c:5712:gst_pad_send_event_unchecked:<my_vdec:src> sent event, ret ok
0:00:04.257737500 8744 0x3d233770 LOG GST_PADS gstpad.c:5359:gst_pad_push_event_unchecked:<my_sink:sink> sent event 0xffff9c00e8e0 (qos) to peerpad <my_vdec:src>, ret ok
0:00:04.257812625 8744 0x3d233770 DEBUG basesink gstbasesink.c:3577:gst_base_sink_chain_unlocked:<my_sink> object unref after render 0xffffa4028bd0
0:00:04.257874750 8744 0x3d233770 DEBUG GST_SCHEDULING gstpad.c:4283:gst_pad_chain_data_unchecked:<my_sink:sink> called chainfunction &gst_base_sink_chain with buffer 0xffffa4028bd0, returned ok
0:00:04.257968125 8744 0x3d233770 LOG v4l2videodec gstv4l2videodec.c:605:gst_v4l2_video_dec_loop:<my_vdec> Allocate output buffer
0:00:04.258026500 8744 0x3d233770 DEBUG v4l2bufferpool gstv4l2bufferpool.c:1342:gst_v4l2_buffer_pool_acquire_buffer:<my_vdec:pool:src> acquire
0:00:04.257998000 8744 0x3d233140 INFO videodecoder gstvideodecoder.c:1339:gst_video_decoder_sink_event_default:<my_vdec> upstream tags: taglist, video-codec=(string)"H.264\ \(Constrained\ Baseline\ Profile\)", minimum-bitrate=(uint)14080, maximum-bitrate=(uint)22352, bitrate=(uint)21974;
0:00:04.258077250 8744 0x3d233770 LOG v4l2bufferpool gstv4l2bufferpool.c:999:gst_v4l2_buffer_pool_poll:<my_vdec:pool:src> polling device
0:00:04.258171250 8744 0x3d233770 DEBUG GST_POLL gstpoll.c:1369:gst_poll_wait: 0xffff9c007400: timeout :99:99:99.999999999
0:00:04.258148000 8744 0x3d233140 LOG videodecoder gstvideodecoder.c:805:gst_video_decoder_create_merged_tags_event:<my_vdec> upstream : taglist, video-codec=(string)"H.264\ \(Constrained\ Baseline\ Profile\)", minimum-bitrate=(uint)14080, maximum-bitrate=(uint)22352, bitrate=(uint)21974;
0:00:04.258326625 8744 0x3d233140 LOG videodecoder gstvideodecoder.c:806:gst_video_decoder_create_merged_tags_event:<my_vdec> decoder : (NULL)
0:00:04.258381875 8744 0x3d233140 LOG videodecoder gstvideodecoder.c:807:gst_video_decoder_create_merged_tags_event:<my_vdec> mode : 3
0:00:04.258453625 8744 0x3d233140 DEBUG videodecoder gstvideodecoder.c:813:gst_video_decoder_create_merged_tags_event:<my_vdec> merged : taglist, video-codec=(string)"H.264\ \(Constrained\ Baseline\ Profile\)", minimum-bitrate=(uint)14080, maximum-bitrate=(uint)22352, bitrate=(uint)21974;
0:00:04.258566250 8744 0x3d233140 DEBUG GST_EVENT gstevent.c:306:gst_event_new_custom: creating new event 0xffffa4007de0 tag 20510
0:00:04.258645375 8744 0x3d233140 DEBUG GST_PADS gstpad.c:5712:gst_pad_send_event_unchecked:<my_vdec:sink> sent event, ret ok
0:00:04.258695750 8744 0x3d233140 LOG GST_EVENT gstevent.c:223:_gst_event_free: freeing event 0xffffa4008430 type tag
0:00:04.258767375 8744 0x3d233140 LOG GST_PADS gstpad.c:5176:store_sticky_event:<my_vdec:sink> stored sticky event tag
0:00:04.258825500 8744 0x3d233140 LOG GST_PADS gstpad.c:5359:gst_pad_push_event_unchecked:<my_h264parse:src> sent event 0xffffa4007ec0 (tag) to peerpad <my_vdec:sink>, ret ok
0:00:04.258909125 8744 0x3d233140 DEBUG GST_PADS gstpad.c:3889:push_sticky:<my_h264parse:src> event tag marked received
0:00:04.258971250 8744 0x3d233140 LOG baseparse gstbaseparse.c:2535:gst_base_parse_push_frame:<my_h264parse> pushing frame (950 bytes) now..
0:00:04.259038500 8744 0x3d233140 DEBUG GST_SCHEDULING gstpad.c:4277:gst_pad_chain_data_unchecked:<my_vdec:sink> calling chainfunction &gst_video_decoder_chain with buffer buffer: 0xffffa4028130, pts 0:00:06.000000000, dts 99:99:99.999999999, dur 0:00:00.500000000, size 950, offset 15553, offset_end none, flags 0x2400
0:00:04.259185125 8744 0x3d233140 LOG videodecoder gstvideodecoder.c:2438:gst_video_decoder_chain:<my_vdec> chain PTS 0:00:06.000000000, DTS 99:99:99.999999999 duration 0:00:00.500000000 size 950 flags 2400
0:00:04.259283000 8744 0x3d233140 LOG videodecoder gstvideodecoder.c:2595:gst_video_decoder_new_frame:<my_vdec> Created new frame 0xffffa4017730 (sfn:12)
0:00:04.259345625 8744 0x3d233140 LOG videodecoder gstvideodecoder.c:3410:gst_video_decoder_decode_frame:<my_vdec> PTS 0:00:06.000000000, DTS 99:99:99.999999999, dist 12
0:00:04.259430500 8744 0x3d233140 DEBUG v4l2videodec gstv4l2videodec.c:704:gst_v4l2_video_dec_handle_frame:<my_vdec> Handling frame 12
0:00:04.259489875 8744 0x3d233140 DEBUG v4l2bufferpool gstv4l2bufferpool.c:1745:gst_v4l2_buffer_pool_process:<my_vdec:pool:sink> process buffer 0xffffa4017768
0:00:04.259542250 8744 0x3d233140 LOG v4l2bufferpool gstv4l2bufferpool.c:1923:gst_v4l2_buffer_pool_process:<my_vdec:pool:sink> alloc buffer from our pool
0:00:04.259589625 8744 0x3d233140 DEBUG v4l2bufferpool gstv4l2bufferpool.c:1342:gst_v4l2_buffer_pool_acquire_buffer:<my_vdec:pool:sink> acquire
0:00:04.259639500 8744 0x3d233140 LOG bufferpool gstbufferpool.c:1128:default_acquire_buffer:<my_vdec:pool:sink> acquired buffer 0xffffa40170d0
0:00:04.259693625 8744 0x3d233140 LOG v4l2bufferpool gstv4l2bufferpool.c:116:gst_v4l2_buffer_pool_copy_buffer:<my_vdec:pool:sink> copying buffer
0:00:04.259740750 8744 0x3d233140 DEBUG v4l2bufferpool gstv4l2bufferpool.c:141:gst_v4l2_buffer_pool_copy_buffer:<my_vdec:pool:sink> copy raw bytes
0:00:04.259779875 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1721:gst_buffer_map_range: buffer 0xffffa4028130, idx 0, length -1, flags 0001
0:00:04.259836625 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:213:_get_merged_memory: buffer 0xffffa4028130, idx 0, length 1
0:00:04.259950625 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1826:gst_buffer_fill: buffer 0xffffa40170d0, offset 0, size 950
0:00:04.260014750 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1582:gst_buffer_resize_range: trim 0xffffa40170d0 0-950 size:6291456 offs:0 max:6291456
0:00:04.260080875 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:515:gst_buffer_copy_into: copy 0xffffa4028130 to 0xffffa40170d0, offset 0-950/950
0:00:04.260151750 8744 0x3d233140 LOG GST_PERFORMANCE gstv4l2bufferpool.c:155:gst_v4l2_buffer_pool_copy_buffer:<my_vdec:pool:sink> slow copy into buffer 0xffffa40170d0
0:00:04.260209625 8744 0x3d233140 LOG v4l2bufferpool gstv4l2bufferpool.c:1059:gst_v4l2_buffer_pool_qbuf:<my_vdec:pool:sink> queuing buffer 0
0:00:04.260332250 8744 0x3d233140 LOG v4l2allocator gstv4l2allocator.c:1265:gst_v4l2_allocator_qbuf:<my_vdec:pool:sink:allocator> queued buffer 0 (flags 0x4003)
0:00:04.260388000 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:710:_gst_buffer_dispose: release 0xffffa40170d0 to pool 0xffffa4012410
0:00:04.260447375 8744 0x3d233140 DEBUG v4l2bufferpool gstv4l2bufferpool.c:1420:gst_v4l2_buffer_pool_release_buffer:<my_vdec:pool:sink> release buffer 0xffffa40170d0
0:00:04.260500875 8744 0x3d233140 LOG v4l2bufferpool gstv4l2bufferpool.c:1503:gst_v4l2_buffer_pool_release_buffer:<my_vdec:pool:sink> buffer 0 is queued
0:00:04.260554000 8744 0x3d233140 LOG v4l2bufferpool gstv4l2bufferpool.c:999:gst_v4l2_buffer_pool_poll:<my_vdec:pool:sink> polling device
0:00:04.260592000 8744 0x3d233140 DEBUG GST_POLL gstpoll.c:1369:gst_poll_wait: 0xffffa4005cf0: timeout :99:99:99.999999999
0:00:04.260667250 8744 0x3d233140 DEBUG GST_POLL gstpoll.c:1188:gst_poll_fd_has_error: 0xffffa4005cf0: fd (fd:18, idx:1) 0
0:00:04.260725000 8744 0x3d233140 DEBUG GST_POLL gstpoll.c:1265:gst_poll_fd_can_read_pri_unlocked: 0xffffa4005cf0: fd (fd:18, idx:1) 0
0:00:04.260731625 8744 0x3d233770 DEBUG GST_POLL gstpoll.c:1188:gst_poll_fd_has_error: 0xffff9c007400: fd (fd:23, idx:1) 0
0:00:04.260805500 8744 0x3d233140 LOG v4l2bufferpool gstv4l2bufferpool.c:1322:gst_v4l2_buffer_pool_dequeue:<my_vdec:pool:sink> dequeueing a buffer
0:00:04.260850250 8744 0x3d233770 DEBUG GST_POLL gstpoll.c:1265:gst_poll_fd_can_read_pri_unlocked: 0xffff9c007400: fd (fd:23, idx:1) 0
0:00:04.260910250 8744 0x3d233140 LOG v4l2allocator gstv4l2allocator.c:1312:gst_v4l2_allocator_dqbuf:<my_vdec:pool:sink:allocator> dequeued buffer 1 (flags 0x4001)
0:00:04.260922375 8744 0x3d233770 LOG v4l2bufferpool gstv4l2bufferpool.c:1322:gst_v4l2_buffer_pool_dequeue:<my_vdec:pool:src> dequeueing a buffer
0:00:04.260990500 8744 0x3d233140 LOG v4l2bufferpool gstv4l2bufferpool.c:1194:gst_v4l2_buffer_pool_dqbuf:<my_vdec:pool:sink> dequeued buffer 0xffffa4017840 seq:0 (ix=1), mem 0xffffa4018280 used 997, plane=0, flags 00004001, ts 0:00:05.500000000, pool-queued=1, buffer=0xffffa4017840
0:00:04.261040500 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:1312:gst_v4l2_allocator_dqbuf:<my_vdec:pool:src:allocator> dequeued buffer 8 (flags 0x4001)
0:00:04.261125625 8744 0x3d233140 DEBUG v4l2bufferpool gstv4l2bufferpool.c:1420:gst_v4l2_buffer_pool_release_buffer:<my_vdec:pool:sink> release buffer 0xffffa4017840
0:00:04.261209750 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:1341:gst_v4l2_allocator_dqbuf:<my_vdec:pool:src:allocator> Dequeued capture buffer, length: 65536 bytesused: 65536 data_offset: 0
0:00:04.261241500 8744 0x3d233140 LOG v4l2bufferpool gstv4l2bufferpool.c:1488:gst_v4l2_buffer_pool_release_buffer:<my_vdec:pool:sink> buffer 1 not queued, putting on free list
0:00:04.261277500 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:1341:gst_v4l2_allocator_dqbuf:<my_vdec:pool:src:allocator> Dequeued capture buffer, length: 32768 bytesused: 32768 data_offset: 0
0:00:04.261300375 8744 0x3d233140 LOG bufferpool gstbufferpool.c:1284:default_release_buffer:<my_vdec:pool:sink> released buffer 0xffffa4017840 0
0:00:04.261409750 8744 0x3d233140 DEBUG GST_BUFFER gstbuffer.c:1375:gst_buffer_is_memory_range_writable: idx 0, length -1
0:00:04.261389875 8744 0x3d233770 LOG v4l2bufferpool gstv4l2bufferpool.c:1194:gst_v4l2_buffer_pool_dqbuf:<my_vdec:pool:src> dequeued buffer 0xffffa4028ce0 seq:0 (ix=8), mem 0xffff9c01ed50 used 65536, plane=0, flags 00004001, ts 0:00:00.000000000, pool-queued=20, buffer=0xffffa4028ce0
0:00:04.261487125 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:799:gst_buffer_new: new 0xffffa4034090
0:00:04.261571250 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:515:gst_buffer_copy_into: copy 0xffffa4028130 to 0xffffa4034090, offset 0-0/950
0:00:04.261556125 8744 0x3d233770 LOG v4l2bufferpool gstv4l2bufferpool.c:1194:gst_v4l2_buffer_pool_dqbuf:<my_vdec:pool:src> dequeued buffer 0xffffa4028ce0 seq:0 (ix=8), mem 0xffff9c01ee70 used 32768, plane=1, flags 00004001, ts 0:00:00.000000000, pool-queued=20, buffer=0xffffa4028ce0
0:00:04.261651750 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:725:_gst_buffer_free: finalize 0xffffa4028130
0:00:04.261711500 8744 0x3d233770 LOG v4l2videodec gstv4l2videodec.c:629:gst_v4l2_video_dec_loop:<my_vdec> Process output buffer
0:00:04.261732000 8744 0x3d233140 DEBUG GST_MEMORY gstmemory.c:88:_gst_memory_free: free memory 0x3d227580
0:00:04.261764875 8744 0x3d233770 DEBUG v4l2bufferpool gstv4l2bufferpool.c:1745:gst_v4l2_buffer_pool_process:<my_vdec:pool:src> process buffer 0xffffb1d697e8
0:00:04.261802750 8744 0x3d233140 DEBUG GST_SCHEDULING gstpad.c:4283:gst_pad_chain_data_unchecked:<my_vdec:sink> called chainfunction &gst_video_decoder_chain with buffer 0xffffa4028130, returned ok
0:00:04.261829750 8744 0x3d233770 LOG v4l2videodec gstv4l2videodec.c:460:gst_v4l2_video_dec_get_oldest_frame:<my_vdec> Oldest frame is 8 0:00:04.000000000 and 4 frames left
0:00:04.261869875 8744 0x3d233140 LOG baseparse gstbaseparse.c:2537:gst_base_parse_push_frame:<my_h264parse> frame pushed, flow ok
0:00:04.261940875 8744 0x3d233140 LOG baseparse gstbaseparse.c:2166:gst_base_parse_handle_buffer:<my_h264parse> handle_frame skipped 0, flushed 948
0:00:04.261952375 8744 0x3d233770 DEBUG GST_BUFFER gstbuffer.c:2201:gst_buffer_add_meta: alloc metadata 0xffff9c002538 (GstDmabufMeta) of size 24
0:00:04.262035625 8744 0x3d233770 DEBUG v4l2videodec gstv4l2videodec.c:647:gst_v4l2_video_dec_loop:<my_vdec> add drm modifier: 576460752303423489
0:00:04.262051500 8744 0x3d233140 DEBUG baseparse gstbaseparse.c:3215:gst_base_parse_chain:<my_h264parse> not enough data available (only 0 bytes)
0:00:04.262104125 8744 0x3d233770 LOG videodecoder gstvideodecoder.c:2985:gst_video_decoder_finish_frame:<my_vdec> finish frame 0xffffa4034a20
0:00:04.262136125 8744 0x3d233140 LOG baseparse gstbaseparse.c:3277:gst_base_parse_chain:<my_h264parse> chain leaving
0:00:04.262163000 8744 0x3d233770 LOG videodecoder gstvideodecoder.c:2625:gst_video_decoder_prepare_finish_frame:<my_vdec> n 5 in 0 out 0
0:00:04.262190625 8744 0x3d233140 DEBUG GST_SCHEDULING gstpad.c:4283:gst_pad_chain_data_unchecked:<my_h264parse:sink> called chainfunction &gst_base_parse_chain with buffer 0xffffa40172f0, returned ok
0:00:04.262222375 8744 0x3d233770 LOG videodecoder gstvideodecoder.c:2634:gst_video_decoder_prepare_finish_frame:<my_vdec> finish frame 0xffffa4034a20 (#8) sync:0 PTS:0:00:04.000000000 DTS:99:99:99.999999999
0:00:04.262265750 8744 0x3d233140 LOG basesrc gstbasesrc.c:2828:gst_base_src_loop:<my_appsrc> next_ts 0:00:00.000016501 size 4096
0:00:04.262307625 8744 0x3d233770 DEBUG videodecoder gstvideodecoder.c:2676:gst_video_decoder_prepare_finish_frame:<my_vdec> sync timestamp 0:00:04.000000000 diff -0:00:04.000000000
0:00:04.262388000 8744 0x3d233140 DEBUG basesrc gstbasesrc.c:2399:gst_base_src_update_length:<my_appsrc> reading offset 16501, length 4096, size -1, segment.stop -1, maxsize -1
0:00:04.262420625 8744 0x3d233770 DEBUG default gstvideoutils.c:40:_gst_video_codec_frame_free: free frame 0xffffa4034a20
0:00:04.262478000 8744 0x3d233140 DEBUG basesrc gstbasesrc.c:2506:gst_base_src_get_range:<my_appsrc> calling create offset 16501 length 4096, time 0
0:00:04.262500375 8744 0x3d233770 LOG GST_BUFFER gstbuffer.c:725:_gst_buffer_free: finalize 0xffffa4034b30
(get_data, 99)
(get_data, 108)read_ret: 8, target frame num: 13, read frame num: 13
0:00:04.262628250 8744 0x3d233770 LOG videodecoder gstvideodecoder.c:3130:gst_video_decoder_clip_and_push_buf:<my_vdec> accepting buffer inside segment: 0:00:04.000000000 0:00:04.500000000 seg 0:00:00.000000000 to 99:99:99.999999999 time 0:00:00.000000000
0:00:04.262670625 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:799:gst_buffer_new: new 0xffffa40172f0
0:00:04.262756875 8744 0x3d233770 DEBUG videodecoder gstvideodecoder.c:3197:gst_video_decoder_clip_and_push_buf:<my_vdec> pushing buffer 0xffffa4028ce0 of size 98304, PTS 0:00:04.000000000, dur 0:00:00.500000000
0:00:04.262780375 8744 0x3d233140 DEBUG GST_MEMORY gstmemory.c:139:gst_memory_init: new memory 0x3d227730, maxsize:877 offset:0 size:877
0:00:04.262879375 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:414:_memory_add: buffer 0xffffa40172f0, idx -1, mem 0x3d227730
0:00:04.262868750 8744 0x3d233770 DEBUG GST_SCHEDULING gstpad.c:4277:gst_pad_chain_data_unchecked:<my_sink:sink> calling chainfunction &gst_base_sink_chain with buffer buffer: 0xffffa4028ce0, pts 0:00:04.000000000, dts 99:99:99.999999999, dur 0:00:00.500000000, size 98304, offset none, offset_end none, flags 0x0
0:00:04.262983125 8744 0x3d233140 DEBUG appsrc gstappsrc.c:1863:gst_app_src_push_internal:<my_appsrc> queueing buffer 0xffffa40172f0
0:00:04.262993375 8744 0x3d233770 DEBUG basesink gstbasesink.c:3421:gst_base_sink_chain_unlocked:<my_sink> got times start: 0:00:04.000000000, end: 0:00:04.500000000
0:00:04.263055750 8744 0x3d233140 LOG appsrc gstappsrc.c:1221:gst_app_src_create:<my_appsrc> have buffer 0xffffa40172f0 of size 877
0:00:04.263077375 8744 0x3d233770 DEBUG basesink gstbasesink.c:2006:gst_base_sink_get_sync_times:<my_sink> got times start: 0:00:04.000000000, stop: 0:00:04.500000000, do_sync 1
0:00:04.263122125 8744 0x3d233140 DEBUG basesrc gstbasesrc.c:2360:gst_base_src_do_sync:<my_appsrc> no sync needed
0:00:04.263177500 8744 0x3d233770 LOG basesink gstbasesink.c:2551:gst_base_sink_do_sync:<my_sink> avg frame diff 0:00:00.500000000
0:00:04.263206875 8744 0x3d233140 DEBUG basesrc gstbasesrc.c:2597:gst_base_src_get_range:<my_appsrc> buffer ok
0:00:04.263258250 8744 0x3d233770 DEBUG basesink gstbasesink.c:2591:gst_base_sink_do_sync:<my_sink> reset rc_time to time 0:00:04.000000000
0:00:04.263324625 8744 0x3d233770 DEBUG basesink gstbasesink.c:2603:gst_base_sink_do_sync:<my_sink> possibly waiting for clock to reach 0:00:04.000000000, adjusted 0:00:04.000000000
0:00:04.263299125 8744 0x3d233140 DEBUG GST_SCHEDULING gstpad.c:4277:gst_pad_chain_data_unchecked:<my_h264parse:sink> calling chainfunction &gst_base_parse_chain with buffer buffer: 0xffffa40172f0, pts 0:00:06.500000000, dts 99:99:99.999999999, dur 0:00:00.500000000, size 877, offset none, offset_end none, flags 0x0
0:00:04.263429500 8744 0x3d233140 DEBUG baseparse gstbaseparse.c:3030:gst_base_parse_chain:<my_h264parse> chain
0:00:04.263405375 8744 0x3d233770 LOG basesink gstbasesink.c:2177:gst_base_sink_wait_clock:<my_sink> time 0:00:04.000000000, base_time 0:15:45.099030375
0:00:04.263527125 8744 0x3d233140 LOG baseparse gstbaseparse.c:3150:gst_base_parse_chain:<my_h264parse> buffer size: 877, offset = -1, dts 99:99:99.999999999, pts 0:00:06.500000000
0:00:04.263570500 8744 0x3d233770 DEBUG GST_CLOCK gstclock.c:537:gst_clock_id_wait:<GstSystemClock> waiting on clock entry 0xffffa4008580
0:00:04.263634875 8744 0x3d233140 LOG adapter gstadapter.c:389:gst_adapter_push:<GstAdapter at 0x3d20c000> pushing 0xffffa40172f0 first 877 bytes
0:00:04.263664125 8744 0x3d233770 DEBUG GST_CLOCK gstclock.c:1046:gst_clock_get_internal_time:<GstSystemClock> internal time 0:15:48.610610375
0:00:04.263701500 8744 0x3d233140 LOG adapter gstadapter.c:290:update_timestamps_and_offset:<GstAdapter at 0x3d20c000> new pts 0:00:06.500000000
0:00:04.263735375 8744 0x3d233770 DEBUG GST_CLOCK gstclock.c:1091:gst_clock_get_time:<GstSystemClock> adjusted time 0:15:48.610610375
0:00:04.263774375 8744 0x3d233140 LOG adapter gstadapter.c:974:gst_adapter_get_buffer:<GstAdapter at 0x3d20c000> getting buffer of 877 bytes
0:00:04.263794000 8744 0x3d233770 DEBUG GST_CLOCK gstsystemclock.c:718:gst_system_clock_id_wait_jitter_unlocked: entry 0xffffa4008580 time 0:15:49.099030375 now 0:15:48.610610375 diff (time-now) 488420000
0:00:04.263832750 8744 0x3d233140 LOG adapter gstadapter.c:989:gst_adapter_get_buffer:<GstAdapter at 0x3d20c000> providing buffer of 877 bytes as head buffer
0:00:04.263882125 8744 0x3d233770 DEBUG GST_POLL gstpoll.c:1369:gst_poll_wait: 0xffffa0003c00: timeout :0:00:00.488420000
0:00:04.263926000 8744 0x3d233140 LOG baseparse gstbaseparse.c:2148:gst_base_parse_handle_buffer:<my_h264parse> handling buffer of size 877 with dts 99:99:99.999999999, pts 0:00:06.500000000, duration 0:00:00.500000000
0:00:04.264011250 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:799:gst_buffer_new: new 0xffffa40346f0
0:00:04.264055875 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:515:gst_buffer_copy_into: copy 0xffffa40172f0 to 0xffffa40346f0, offset 0-877/877
0:00:04.264117125 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:414:_memory_add: buffer 0xffffa40346f0, idx -1, mem 0x3d227730
0:00:04.264169625 8744 0x3d233140 DEBUG GST_PERFORMANCE gstminiobject.c:317:gst_mini_object_make_writable: copy GstBuffer miniobject 0xffffa40172f0 -> 0xffffa40346f0
0:00:04.264232375 8744 0x3d233140 LOG baseparse gstbaseparse.c:2110:gst_base_parse_prepare_frame:<my_h264parse> preparing frame at offset 18446744073709551615 (0xffffffffffffffff) of size 877
0:00:04.264298625 8744 0x3d233140 LOG baseparse gstbaseparse.c:764:gst_base_parse_update_frame:<my_h264parse> marking as new frame
0:00:04.264339250 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1721:gst_buffer_map_range: buffer 0xffffa40346f0, idx 0, length -1, flags 0001
0:00:04.264395625 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:213:_get_merged_memory: buffer 0xffffa40346f0, idx 0, length 1
0:00:04.264458500 8744 0x3d233140 LOG h264parse gsth264parse.c:1097:gst_h264_parse_handle_frame:<my_h264parse> parsing new frame
0:00:04.264506500 8744 0x3d233140 DEBUG h264parse gsth264parse.c:186:gst_h264_parse_reset_frame:<my_h264parse> reset frame
0:00:04.264555500 8744 0x3d233140 DEBUG h264parse gsth264parse.c:1112:gst_h264_parse_handle_frame:<my_h264parse> last parse position 0
0:00:04.264605250 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:242:gst_h264_parse_nalu_header: Nal type 9, ref_idc 0
0:00:04.264654625 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:242:gst_h264_parse_nalu_header: Nal type 9, ref_idc 0
0:00:04.264733250 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:1366:gst_h264_parser_identify_nalu: Complete nal found. Off: 4, Size: 2
0:00:04.264792875 8744 0x3d233140 DEBUG h264parse gsth264parse.c:1162:gst_h264_parse_handle_frame:<my_h264parse> complete nal (offset, size): (4, 2)
0:00:04.264848625 8744 0x3d233140 DEBUG h264parse gsth264parse.c:1219:gst_h264_parse_handle_frame:<my_h264parse> 0xffffa4022670 complete nal found. Off: 4, Size: 2
0:00:04.264910500 8744 0x3d233140 DEBUG h264parse gsth264parse.c:721:gst_h264_parse_process_nal:<my_h264parse> processing nal of type 9 AU delimiter, size 2
0:00:04.264970750 8744 0x3d233140 LOG h264parse gsth264parse.c:895:gst_h264_parse_process_nal:<my_h264parse> collecting NAL in AVC frame
0:00:04.265019125 8744 0x3d233140 DEBUG h264parse gsth264parse.c:428:gst_h264_parse_wrap_nal:<my_h264parse> nal length 2
0:00:04.265132875 8744 0x3d233140 DEBUG GST_MEMORY gstmemory.c:139:gst_memory_init: new memory 0xffffa400a8d0, maxsize:13 offset:0 size:6
0:00:04.265193750 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:799:gst_buffer_new: new 0xffffa4017a60
0:00:04.265236750 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:414:_memory_add: buffer 0xffffa4017a60, idx -1, mem 0xffffa400a8d0
0:00:04.265289750 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:855:gst_buffer_new_allocate: new buffer 0xffffa4017a60 of size 6 from allocator (nil)
0:00:04.265345000 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1826:gst_buffer_fill: buffer 0xffffa4017a60, offset 0, size 4
0:00:04.265397750 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1826:gst_buffer_fill: buffer 0xffffa4017a60, offset 4, size 2
0:00:04.265451000 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1582:gst_buffer_resize_range: trim 0xffffa4017a60 0-6 size:6 offs:0 max:13
0:00:04.265528125 8744 0x3d233140 LOG adapter gstadapter.c:389:gst_adapter_push:<GstAdapter at 0x3d20c120> pushing 0xffffa4017a60 first 6 bytes
0:00:04.265586750 8744 0x3d233140 DEBUG h264parse gsth264parse.c:914:gst_h264_parse_collect_nal:<my_h264parse> parsing collected nal
0:00:04.265627125 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:242:gst_h264_parse_nalu_header: Nal type 6, ref_idc 0
0:00:04.265683125 8744 0x3d233140 LOG h264parse gsth264parse.c:922:gst_h264_parse_collect_nal:<my_h264parse> nal type: 9 AU delimiter
0:00:04.265738750 8744 0x3d233140 LOG h264parse gsth264parse.c:941:gst_h264_parse_collect_nal:<my_h264parse> next nal type: 6 SEI
0:00:04.265793375 8744 0x3d233140 LOG h264parse gsth264parse.c:948:gst_h264_parse_collect_nal:<my_h264parse> au complete: 0
0:00:04.265844000 8744 0x3d233140 DEBUG h264parse gsth264parse.c:1264:gst_h264_parse_handle_frame:<my_h264parse> Looking for more
0:00:04.265881875 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:242:gst_h264_parse_nalu_header: Nal type 6, ref_idc 0
0:00:04.265928125 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:1366:gst_h264_parser_identify_nalu: Complete nal found. Off: 10, Size: 21
0:00:04.265982875 8744 0x3d233140 DEBUG h264parse gsth264parse.c:1162:gst_h264_parse_handle_frame:<my_h264parse> complete nal (offset, size): (10, 21)
0:00:04.266038875 8744 0x3d233140 DEBUG h264parse gsth264parse.c:1219:gst_h264_parse_handle_frame:<my_h264parse> 0xffffa4022670 complete nal found. Off: 10, Size: 21
0:00:04.266098500 8744 0x3d233140 DEBUG h264parse gsth264parse.c:721:gst_h264_parse_process_nal:<my_h264parse> processing nal of type 6 SEI, size 21
0:00:04.266149000 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:2292:gst_h264_parser_parse_sei: parsing SEI nal
0:00:04.266191375 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:1127:gst_h264_parser_parse_sei_message: parsing "Sei message"
0:00:04.266276250 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:1147:gst_h264_parser_parse_sei_message: SEI message received: payloadType 5, payloadSize = 136 bits
0:00:04.266352125 8744 0x3d233140 DEBUG h264parse gsth264parse.c:807:gst_h264_parse_process_nal:<my_h264parse> marking SEI in frame at offset 6
0:00:04.266405250 8744 0x3d233140 LOG h264parse gsth264parse.c:895:gst_h264_parse_process_nal:<my_h264parse> collecting NAL in AVC frame
0:00:04.266452750 8744 0x3d233140 DEBUG h264parse gsth264parse.c:428:gst_h264_parse_wrap_nal:<my_h264parse> nal length 21
0:00:04.266499750 8744 0x3d233140 DEBUG GST_MEMORY gstmemory.c:139:gst_memory_init: new memory 0xffffa401b220, maxsize:32 offset:0 size:25
0:00:04.266556500 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:799:gst_buffer_new: new 0xffffa4017950
0:00:04.266598500 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:414:_memory_add: buffer 0xffffa4017950, idx -1, mem 0xffffa401b220
0:00:04.266650625 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:855:gst_buffer_new_allocate: new buffer 0xffffa4017950 of size 25 from allocator (nil)
0:00:04.266702125 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1826:gst_buffer_fill: buffer 0xffffa4017950, offset 0, size 4
0:00:04.266752750 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1826:gst_buffer_fill: buffer 0xffffa4017950, offset 4, size 21
0:00:04.266802875 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1582:gst_buffer_resize_range: trim 0xffffa4017950 0-25 size:25 offs:0 max:32
0:00:04.266875500 8744 0x3d233140 LOG adapter gstadapter.c:395:gst_adapter_push:<GstAdapter at 0x3d20c120> pushing 0xffffa4017950 25 bytes at end, size now 31
0:00:04.266937750 8744 0x3d233140 DEBUG h264parse gsth264parse.c:914:gst_h264_parse_collect_nal:<my_h264parse> parsing collected nal
0:00:04.266976625 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:242:gst_h264_parse_nalu_header: Nal type 1, ref_idc 1
0:00:04.267031125 8744 0x3d233140 LOG h264parse gsth264parse.c:922:gst_h264_parse_collect_nal:<my_h264parse> nal type: 6 SEI
0:00:04.267084750 8744 0x3d233140 LOG h264parse gsth264parse.c:941:gst_h264_parse_collect_nal:<my_h264parse> next nal type: 1 Slice
0:00:04.267139500 8744 0x3d233140 LOG h264parse gsth264parse.c:948:gst_h264_parse_collect_nal:<my_h264parse> au complete: 0
0:00:04.267189750 8744 0x3d233140 DEBUG h264parse gsth264parse.c:1264:gst_h264_parse_handle_frame:<my_h264parse> Looking for more
0:00:04.267227625 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:242:gst_h264_parse_nalu_header: Nal type 1, ref_idc 1
0:00:04.267274250 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:1366:gst_h264_parser_identify_nalu: Complete nal found. Off: 34, Size: 189
0:00:04.267328875 8744 0x3d233140 DEBUG h264parse gsth264parse.c:1162:gst_h264_parse_handle_frame:<my_h264parse> complete nal (offset, size): (34, 189)
0:00:04.267383750 8744 0x3d233140 DEBUG h264parse gsth264parse.c:1219:gst_h264_parse_handle_frame:<my_h264parse> 0xffffa4022670 complete nal found. Off: 34, Size: 189
0:00:04.267442000 8744 0x3d233140 DEBUG h264parse gsth264parse.c:721:gst_h264_parse_process_nal:<my_h264parse> processing nal of type 1 Slice, size 189
0:00:04.267498875 8744 0x3d233140 DEBUG h264parse gsth264parse.c:827:gst_h264_parse_process_nal:<my_h264parse> first_mb_in_slice = 0
0:00:04.267544375 8744 0x3d233140 DEBUG h264parse gsth264parse.c:830:gst_h264_parse_process_nal:<my_h264parse> frame start: 1
0:00:04.267591250 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:2079:gst_h264_parser_parse_slice_hdr: parsing "Slice header", slice type 0
0:00:04.267677250 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:700:gst_h264_slice_parse_dec_ref_pic_marking: parsing "Decoded reference picture marking"
0:00:04.267731625 8744 0x3d233140 DEBUG h264parse gsth264parse.c:840:gst_h264_parse_process_nal:<my_h264parse> parse result 0, first MB: 0, slice type: 0
0:00:04.267790750 8744 0x3d233140 LOG h264parse gsth264parse.c:895:gst_h264_parse_process_nal:<my_h264parse> collecting NAL in AVC frame
0:00:04.267837000 8744 0x3d233140 DEBUG h264parse gsth264parse.c:428:gst_h264_parse_wrap_nal:<my_h264parse> nal length 189
0:00:04.267881500 8744 0x3d233140 DEBUG GST_MEMORY gstmemory.c:139:gst_memory_init: new memory 0xffffa403e1c0, maxsize:200 offset:0 size:193
0:00:04.267936625 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:799:gst_buffer_new: new 0xffffa4017b70
0:00:04.267977750 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:414:_memory_add: buffer 0xffffa4017b70, idx -1, mem 0xffffa403e1c0
0:00:04.268029250 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:855:gst_buffer_new_allocate: new buffer 0xffffa4017b70 of size 193 from allocator (nil)
0:00:04.268081625 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1826:gst_buffer_fill: buffer 0xffffa4017b70, offset 0, size 4
0:00:04.268131750 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1826:gst_buffer_fill: buffer 0xffffa4017b70, offset 4, size 189
0:00:04.268141000 8744 0x3d1e1590 LOG waylandsink gstwaylandsink.c:745:frame_redraw_callback: frame_redraw_cb
0:00:04.268196250 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1582:gst_buffer_resize_range: trim 0xffffa4017b70 0-193 size:193 offs:0 max:200
0:00:04.268246250 8744 0x3d1e1590 DEBUG GST_POLL gstpoll.c:1369:gst_poll_wait: 0x3d21fe80: timeout :99:99:99.999999999
0:00:04.268272500 8744 0x3d233140 LOG adapter gstadapter.c:395:gst_adapter_push:<GstAdapter at 0x3d20c120> pushing 0xffffa4017b70 193 bytes at end, size now 224
0:00:04.268378750 8744 0x3d233140 DEBUG h264parse gsth264parse.c:914:gst_h264_parse_collect_nal:<my_h264parse> parsing collected nal
0:00:04.268418750 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:242:gst_h264_parse_nalu_header: Nal type 1, ref_idc 1
0:00:04.268473625 8744 0x3d233140 LOG h264parse gsth264parse.c:922:gst_h264_parse_collect_nal:<my_h264parse> nal type: 1 Slice
0:00:04.268527625 8744 0x3d233140 LOG h264parse gsth264parse.c:941:gst_h264_parse_collect_nal:<my_h264parse> next nal type: 1 Slice
0:00:04.268581000 8744 0x3d233140 LOG h264parse gsth264parse.c:948:gst_h264_parse_collect_nal:<my_h264parse> au complete: 0
0:00:04.268631000 8744 0x3d233140 DEBUG h264parse gsth264parse.c:1264:gst_h264_parse_handle_frame:<my_h264parse> Looking for more
0:00:04.268669000 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:242:gst_h264_parse_nalu_header: Nal type 1, ref_idc 1
0:00:04.268716875 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:1351:gst_h264_parser_identify_nalu: Nal start 226, No end found
0:00:04.268767500 8744 0x3d233140 DEBUG h264parse gsth264parse.c:1166:gst_h264_parse_handle_frame:<my_h264parse> not a complete nal found at offset 226
0:00:04.268818000 8744 0x3d233140 DEBUG h264parse gsth264parse.c:1172:gst_h264_parse_handle_frame:<my_h264parse> draining, accepting with size 651
0:00:04.268868250 8744 0x3d233140 DEBUG h264parse gsth264parse.c:1219:gst_h264_parse_handle_frame:<my_h264parse> 0xffffa4022670 complete nal found. Off: 226, Size: 651
0:00:04.268926625 8744 0x3d233140 DEBUG h264parse gsth264parse.c:721:gst_h264_parse_process_nal:<my_h264parse> processing nal of type 1 Slice, size 651
0:00:04.268983750 8744 0x3d233140 DEBUG h264parse gsth264parse.c:830:gst_h264_parse_process_nal:<my_h264parse> frame start: 1
0:00:04.269111250 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:2079:gst_h264_parser_parse_slice_hdr: parsing "Slice header", slice type 0
0:00:04.269169125 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:700:gst_h264_slice_parse_dec_ref_pic_marking: parsing "Decoded reference picture marking"
0:00:04.269218875 8744 0x3d233140 DEBUG h264parse gsth264parse.c:840:gst_h264_parse_process_nal:<my_h264parse> parse result 0, first MB: 49, slice type: 0
0:00:04.269277625 8744 0x3d233140 LOG h264parse gsth264parse.c:895:gst_h264_parse_process_nal:<my_h264parse> collecting NAL in AVC frame
0:00:04.269323500 8744 0x3d233140 DEBUG h264parse gsth264parse.c:428:gst_h264_parse_wrap_nal:<my_h264parse> nal length 651
0:00:04.269366500 8744 0x3d233140 DEBUG GST_MEMORY gstmemory.c:139:gst_memory_init: new memory 0xffffa40405b0, maxsize:662 offset:0 size:655
0:00:04.269422750 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:799:gst_buffer_new: new 0xffffa4028130
0:00:04.269464375 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:414:_memory_add: buffer 0xffffa4028130, idx -1, mem 0xffffa40405b0
0:00:04.269515875 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:855:gst_buffer_new_allocate: new buffer 0xffffa4028130 of size 655 from allocator (nil)
0:00:04.269566500 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1826:gst_buffer_fill: buffer 0xffffa4028130, offset 0, size 4
0:00:04.269616500 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1826:gst_buffer_fill: buffer 0xffffa4028130, offset 4, size 651
0:00:04.269667375 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1582:gst_buffer_resize_range: trim 0xffffa4028130 0-655 size:655 offs:0 max:662
0:00:04.269740875 8744 0x3d233140 LOG adapter gstadapter.c:395:gst_adapter_push:<GstAdapter at 0x3d20c120> pushing 0xffffa4028130 655 bytes at end, size now 879
0:00:04.269817000 8744 0x3d233140 DEBUG GST_CAPS gstpad.c:2705:gst_pad_has_current_caps:<my_h264parse:src> check current pad caps video/x-h264, stream-format=(string)byte-stream, alignment=(string)au, framerate=(fraction)0/1, width=(int)176, height=(int)144, interlace-mode=(string)progressive, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8, parsed=(boolean)true, profile=(string)constrained-baseline, level=(string)1.2
0:00:04.269991625 8744 0x3d233140 LOG h264parse gsth264parse.c:2016:gst_h264_parse_get_timestamp:<my_h264parse> Upstream ts 0:00:06.500000000
0:00:04.270056625 8744 0x3d233140 DEBUG h264parse gsth264parse.c:2035:gst_h264_parse_get_timestamp:<my_h264parse> unable to compute timestamp: timing info not present
0:00:04.270109875 8744 0x3d233140 LOG adapter gstadapter.c:974:gst_adapter_get_buffer:<GstAdapter at 0x3d20c120> getting buffer of 879 bytes
0:00:04.270167125 8744 0x3d233140 LOG adapter gstadapter.c:736:gst_adapter_get_internal:<GstAdapter at 0x3d20c120> allocating 879 bytes
0:00:04.270211125 8744 0x3d233140 DEBUG adapter gstadapter.c:344:copy_into_unchecked: bsize 6, skip 0, csize 6
0:00:04.270272500 8744 0x3d233140 LOG GST_PERFORMANCE gstadapter.c:346:copy_into_unchecked:<GstAdapter at 0x3d20c120> extract 6 bytes
0:00:04.270315000 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1876:gst_buffer_extract: buffer 0xffffa4017a60, offset 0, size 6
0:00:04.270378875 8744 0x3d233140 LOG GST_PERFORMANCE gstadapter.c:359:copy_into_unchecked:<GstAdapter at 0x3d20c120> extract 25 bytes
0:00:04.270420125 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1876:gst_buffer_extract: buffer 0xffffa4017950, offset 0, size 25
0:00:04.270483125 8744 0x3d233140 LOG GST_PERFORMANCE gstadapter.c:359:copy_into_unchecked:<GstAdapter at 0x3d20c120> extract 193 bytes
0:00:04.270524250 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1876:gst_buffer_extract: buffer 0xffffa4017b70, offset 0, size 193
0:00:04.270618750 8744 0x3d233140 LOG GST_PERFORMANCE gstadapter.c:359:copy_into_unchecked:<GstAdapter at 0x3d20c120> extract 655 bytes
0:00:04.270661875 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1876:gst_buffer_extract: buffer 0xffffa4028130, offset 0, size 655
0:00:04.270717750 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:799:gst_buffer_new: new 0xffffa40344d0
0:00:04.270761750 8744 0x3d233140 DEBUG GST_MEMORY gstmemory.c:139:gst_memory_init: new memory 0x3d2276a0, maxsize:879 offset:0 size:879
0:00:04.270817000 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:414:_memory_add: buffer 0xffffa40344d0, idx -1, mem 0x3d2276a0
0:00:04.270884750 8744 0x3d233140 LOG adapter gstadapter.c:634:gst_adapter_flush_unchecked:<GstAdapter at 0x3d20c120> flushing 879 bytes
0:00:04.270941375 8744 0x3d233140 LOG adapter gstadapter.c:656:gst_adapter_flush_unchecked:<GstAdapter at 0x3d20c120> flushing out head buffer
0:00:04.270979750 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:725:_gst_buffer_free: finalize 0xffffa4017a60
0:00:04.271021625 8744 0x3d233140 DEBUG GST_MEMORY gstmemory.c:88:_gst_memory_free: free memory 0xffffa400a8d0
0:00:04.271084000 8744 0x3d233140 LOG adapter gstadapter.c:656:gst_adapter_flush_unchecked:<GstAdapter at 0x3d20c120> flushing out head buffer
0:00:04.271122125 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:725:_gst_buffer_free: finalize 0xffffa4017950
0:00:04.271163375 8744 0x3d233140 DEBUG GST_MEMORY gstmemory.c:88:_gst_memory_free: free memory 0xffffa401b220
0:00:04.271222500 8744 0x3d233140 LOG adapter gstadapter.c:656:gst_adapter_flush_unchecked:<GstAdapter at 0x3d20c120> flushing out head buffer
0:00:04.271260375 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:725:_gst_buffer_free: finalize 0xffffa4017b70
0:00:04.271301750 8744 0x3d233140 DEBUG GST_MEMORY gstmemory.c:88:_gst_memory_free: free memory 0xffffa403e1c0
0:00:04.271360750 8744 0x3d233140 LOG adapter gstadapter.c:656:gst_adapter_flush_unchecked:<GstAdapter at 0x3d20c120> flushing out head buffer
0:00:04.271398375 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:725:_gst_buffer_free: finalize 0xffffa4028130
0:00:04.271439500 8744 0x3d233140 DEBUG GST_MEMORY gstmemory.c:88:_gst_memory_free: free memory 0xffffa40405b0
0:00:04.271497125 8744 0x3d233140 LOG adapter gstadapter.c:668:gst_adapter_flush_unchecked:<GstAdapter at 0x3d20c120> adapter empty now
0:00:04.271536500 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:515:gst_buffer_copy_into: copy 0xffffa40346f0 to 0xffffa40344d0, offset 0-877/877
0:00:04.271609125 8744 0x3d233140 LOG baseparse gstbaseparse.c:2637:gst_base_parse_finish_frame:<my_h264parse> finished frame at offset 16501, flushing size 877
0:00:04.271669875 8744 0x3d233140 LOG adapter gstadapter.c:634:gst_adapter_flush_unchecked:<GstAdapter at 0x3d20c000> flushing 877 bytes
0:00:04.271724875 8744 0x3d233140 LOG adapter gstadapter.c:656:gst_adapter_flush_unchecked:<GstAdapter at 0x3d20c000> flushing out head buffer
0:00:04.271762125 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:725:_gst_buffer_free: finalize 0xffffa40172f0
0:00:04.271816750 8744 0x3d233140 LOG adapter gstadapter.c:668:gst_adapter_flush_unchecked:<GstAdapter at 0x3d20c000> adapter empty now
0:00:04.271854875 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:725:_gst_buffer_free: finalize 0xffffa40346f0
0:00:04.271896375 8744 0x3d233140 DEBUG GST_MEMORY gstmemory.c:88:_gst_memory_free: free memory 0x3d227730
(free_data, 133)
0:00:04.271971750 8744 0x3d233140 DEBUG baseparse gstbaseparse.c:2333:gst_base_parse_handle_and_push_frame:<my_h264parse> no next fallback timestamp
0:00:04.272053500 8744 0x3d233140 LOG baseparse gstbaseparse.c:2392:gst_base_parse_push_frame:<my_h264parse> processing buffer of size 879 with dts 99:99:99.999999999, pts 0:00:06.500000000, duration 0:00:00.500000000
0:00:04.272171750 8744 0x3d233140 DEBUG GST_CAPS gstpad.c:2705:gst_pad_has_current_caps:<my_h264parse:src> check current pad caps video/x-h264, stream-format=(string)byte-stream, alignment=(string)au, framerate=(fraction)0/1, width=(int)176, height=(int)144, interlace-mode=(string)progressive, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8, parsed=(boolean)true, profile=(string)constrained-baseline, level=(string)1.2
0:00:04.272315625 8744 0x3d233140 LOG baseparse gstbaseparse.c:1851:gst_base_parse_update_bitrates:<my_h264parse> frame bitrate 14064, avg bitrate 21366
0:00:04.272378625 8744 0x3d233140 DEBUG h264parse gsth264parse.c:186:gst_h264_parse_reset_frame:<my_h264parse> reset frame
0:00:04.272427625 8744 0x3d233140 LOG baseparse gstbaseparse.c:900:gst_base_parse_queue_tag_event_update:<my_h264parse> upstream : (NULL)
0:00:04.272479750 8744 0x3d233140 LOG baseparse gstbaseparse.c:902:gst_base_parse_queue_tag_event_update:<my_h264parse> parser : taglist, video-codec=(string)"H.264\ \(Constrained\ Baseline\ Profile\)";
0:00:04.272552125 8744 0x3d233140 LOG baseparse gstbaseparse.c:903:gst_base_parse_queue_tag_event_update:<my_h264parse> mode : 2
0:00:04.272624000 8744 0x3d233140 DEBUG baseparse gstbaseparse.c:909:gst_base_parse_queue_tag_event_update:<my_h264parse> merged : taglist, video-codec=(string)"H.264\ \(Constrained\ Baseline\ Profile\)";
0:00:04.272691625 8744 0x3d233140 LOG baseparse gstbaseparse.c:923:gst_base_parse_queue_tag_event_update:<my_h264parse> adding min bitrate 14064
0:00:04.272756625 8744 0x3d233140 LOG baseparse gstbaseparse.c:928:gst_base_parse_queue_tag_event_update:<my_h264parse> adding max bitrate 22352
0:00:04.272815500 8744 0x3d233140 LOG baseparse gstbaseparse.c:934:gst_base_parse_queue_tag_event_update:<my_h264parse> adding avg bitrate 21366
0:00:04.272880375 8744 0x3d233140 DEBUG GST_EVENT gstevent.c:306:gst_event_new_custom: creating new event 0xffffa4007d00 tag 20510
0:00:04.272957000 8744 0x3d233140 LOG GST_PADS gstpad.c:5176:store_sticky_event:<my_h264parse:src> stored sticky event tag
0:00:04.273013375 8744 0x3d233140 DEBUG GST_PADS gstpad.c:3937:check_sticky:<my_h264parse:src> pushing all sticky events
0:00:04.273250875 8744 0x3d233140 DEBUG GST_PADS gstpad.c:3867:push_sticky:<my_h264parse:src> event stream-start was already received
0:00:04.273318125 8744 0x3d233140 DEBUG GST_PADS gstpad.c:3867:push_sticky:<my_h264parse:src> event caps was already received
0:00:04.273374750 8744 0x3d233140 DEBUG GST_PADS gstpad.c:3867:push_sticky:<my_h264parse:src> event segment was already received
0:00:04.273432875 8744 0x3d233140 LOG GST_PADS gstpad.c:5351:gst_pad_push_event_unchecked:<my_h264parse:src> sending event 0xffffa4007d00 (tag) to peerpad <my_vdec:sink>
0:00:04.273509250 8744 0x3d233140 DEBUG GST_EVENT gstpad.c:5638:gst_pad_send_event_unchecked:<my_vdec:sink> have event type tag event: 0xffffa4007d00, time 99:99:99.999999999, seq-num 66, GstTagList-stream, taglist=(taglist)"taglist\,\ video-codec\=\(string\)\"H.264\\\ \\\(Constrained\\\ Baseline\\\ Profile\\\)\"\,\ minimum-bitrate\=\(uint\)14064\,\ maximum-bitrate\=\(uint\)22352\,\ bitrate\=\(uint\)21366\;";
0:00:04.273723375 8744 0x3d233140 DEBUG videodecoder gstvideodecoder.c:1393:gst_video_decoder_sink_event:<my_vdec> received event 20510, tag
0:00:04.752925250 8744 0x3d233770 DEBUG GST_CLOCK gstsystemclock.c:746:gst_system_clock_id_wait_jitter_unlocked: entry 0xffffa4008580 unlocked, status 3, ret 0
0:00:04.753182250 8744 0x3d233770 DEBUG GST_CLOCK gstsystemclock.c:770:gst_system_clock_id_wait_jitter_unlocked: entry 0xffffa4008580 unlocked after timeout
0:00:04.753275875 8744 0x3d233770 DEBUG GST_CLOCK gstclock.c:1046:gst_clock_get_internal_time:<GstSystemClock> internal time 0:15:49.100201250
0:00:04.753348375 8744 0x3d233770 DEBUG GST_CLOCK gstclock.c:1091:gst_clock_get_time:<GstSystemClock> adjusted time 0:15:49.100201250
0:00:04.753405125 8744 0x3d233770 DEBUG GST_CLOCK gstsystemclock.c:792:gst_system_clock_id_wait_jitter_unlocked: entry 0xffffa4008580 finished, diff -1170875
0:00:04.753467250 8744 0x3d233770 DEBUG GST_CLOCK gstclock.c:547:gst_clock_id_wait:<GstSystemClock> done waiting entry 0xffffa4008580, res: 0 (ok)
0:00:04.753542750 8744 0x3d233770 DEBUG basesink gstbasesink.c:2610:gst_base_sink_do_sync:<my_sink> clock returned 0, jitter -0:00:00.488420000
0:00:04.753616000 8744 0x3d233770 DEBUG basesink gstbasesink.c:2921:gst_base_sink_is_too_late:<my_sink> object was scheduled in time
0:00:04.753666625 8744 0x3d233770 DEBUG basesink gstbasesink.c:3538:gst_base_sink_chain_unlocked:<my_sink> rendering object 0xffffa4028ce0
0:00:04.753721500 8744 0x3d233770 DEBUG basesink gstbasesink.c:994:gst_base_sink_set_last_buffer_unlocked:<my_sink> setting last buffer to 0xffffa4028ce0
0:00:04.753785250 8744 0x3d233770 LOG videosink gstvideosink.c:228:gst_video_sink_show_frame:<my_sink> rendering frame, ts=0:00:04.000000000
0:00:04.753853625 8744 0x3d233770 LOG waylandsink gstwaylandsink.c:863:gst_wayland_sink_show_frame:<my_sink> render buffer 0xffffa4028ce0
0:00:04.753928750 8744 0x3d233770 LOG waylandsink gstwaylandsink.c:917:gst_wayland_sink_show_frame:<my_sink> buffer 0xffffa4028ce0 does not have a wl_buffer from our display, creating it
0:00:04.754020125 8744 0x3d233770 DEBUG waylandsink wllinuxdmabuf.c:108:gst_wl_linux_dmabuf_construct_wl_buffer:<GstWlDisplay at 0x3d1da380> Creating wl_buffer from DMABuf of size 98304 (176 x 144), format NV12 modifier 0x0800000000000001
0:00:04.754816500 8744 0x3d233770 DEBUG waylandsink wllinuxdmabuf.c:175:gst_wl_linux_dmabuf_construct_wl_buffer:<dmabufallocator2> created linux_dmabuf wl_buffer (0xffff9c027d00):176x144, fmt=NV12, 2 planes
0:00:04.754811875 8744 0x3d1e1590 DEBUG GST_POLL gstpoll.c:1369:gst_poll_wait: 0x3d21fe80: timeout :99:99:99.999999999
0:00:04.754985375 8744 0x3d233770 DEBUG GST_QOS gstbasesink.c:2751:gst_base_sink_perform_qos:<my_sink> start: 0:00:04.000000000, stop 0:00:04.500000000, entered 0:00:03.511580000, left 0:00:04.000000000, pt: 0:00:00.011580000, duration 0:00:00.500000000,jitter -488420000
0:00:04.755114875 8744 0x3d233770 DEBUG GST_QOS gstbasesink.c:2755:gst_base_sink_perform_qos:<my_sink> avg_pt: 0:00:00.012908245, avg_rate: 0.0253789
0:00:04.755206250 8744 0x3d233770 DEBUG GST_QOS gstbasesink.c:2785:gst_base_sink_perform_qos:<my_sink> updated: avg_pt: 0:00:00.012742214, avg_rate: 0.0253855
0:00:04.755282625 8744 0x3d233770 DEBUG GST_QOS gstbasesink.c:2679:gst_base_sink_send_qos:<my_sink> qos: type 0, proportion: 0.025386, diff -488420000, timestamp 0:00:04.000000000
0:00:04.755356875 8744 0x3d233770 LOG GST_EVENT gstevent.c:1146:gst_event_new_qos: creating qos type 0, proportion 0.025386, diff -488420000, timestamp 0:00:04.000000000
0:00:04.755404625 8744 0x3d1e1590 LOG waylandsink wlbuffer.c:137:buffer_release:<GstWlBuffer at 0xffff9c00b980> wl_buffer::release (GstBuffer: 0xffffa4028bd0)
0:00:04.755454250 8744 0x3d233770 DEBUG GST_EVENT gstevent.c:306:gst_event_new_custom: creating new event 0xffff9c00e950 qos 48641
0:00:04.755462000 8744 0x3d1e1590 LOG GST_BUFFER gstbuffer.c:710:_gst_buffer_dispose: release 0xffffa4028bd0 to pool 0xffffa4012e90
0:00:04.755548750 8744 0x3d233770 LOG GST_PADS gstpad.c:5351:gst_pad_push_event_unchecked:<my_sink:sink> sending event 0xffff9c00e950 (qos) to peerpad <my_vdec:src>
0:00:04.755633750 8744 0x3d1e1590 DEBUG GST_BUFFER gstbuffer.c:2383:gst_buffer_foreach_meta: remove metadata 0xffff9c0024d8 (GstDmabufMeta)
0:00:04.755720625 8744 0x3d1e1590 DEBUG v4l2bufferpool gstv4l2bufferpool.c:1420:gst_v4l2_buffer_pool_release_buffer:<my_vdec:pool:src> release buffer 0xffffa4028bd0
0:00:04.755792250 8744 0x3d1e1590 LOG v4l2bufferpool gstv4l2bufferpool.c:1059:gst_v4l2_buffer_pool_qbuf:<my_vdec:pool:src> queuing buffer 7
0:00:04.755734250 8744 0x3d233770 DEBUG GST_EVENT gstpad.c:5638:gst_pad_send_event_unchecked:<my_vdec:src> have event type qos event: 0xffff9c00e950, time 99:99:99.999999999, seq-num 67, GstEventQOS, type=(GstQOSType)GST_QOS_TYPE_OVERFLOW, proportion=(double)0.025385517560740554, diff=(gint64)-488420000, timestamp=(guint64)4000000000;
0:00:04.755892500 8744 0x3d1e1590 LOG v4l2allocator gstv4l2allocator.c:1265:gst_v4l2_allocator_qbuf:<my_vdec:pool:src:allocator> queued buffer 7 (flags 0x4003)
0:00:04.755953625 8744 0x3d233770 DEBUG videodecoder gstvideodecoder.c:1584:gst_video_decoder_src_event:<my_vdec> received event 48641, qos
0:00:04.755983500 8744 0x3d1e1590 DEBUG GST_POLL gstpoll.c:1369:gst_poll_wait: 0x3d21fe80: timeout :99:99:99.999999999
0:00:04.756016500 8744 0x3d233770 DEBUG videodecoder gstvideodecoder.c:1485:gst_video_decoder_src_event_default:<my_vdec> received event 48641, qos
0:00:04.756116000 8744 0x3d233770 DEBUG videodecoder gstvideodecoder.c:1556:gst_video_decoder_src_event_default:<my_vdec> got QoS 0:00:04.000000000, -0:00:00.488420000, 0.0253855
0:00:04.756213375 8744 0x3d233770 LOG GST_PADS gstpad.c:5351:gst_pad_push_event_unchecked:<my_vdec:sink> sending event 0xffff9c00e950 (qos) to peerpad <my_h264parse:src>
0:00:04.756291750 8744 0x3d233770 DEBUG GST_EVENT gstpad.c:5638:gst_pad_send_event_unchecked:<my_h264parse:src> have event type qos event: 0xffff9c00e950, time 99:99:99.999999999, seq-num 67, GstEventQOS, type=(GstQOSType)GST_QOS_TYPE_OVERFLOW, proportion=(double)0.025385517560740554, diff=(gint64)-488420000, timestamp=(guint64)4000000000;
0:00:04.756447375 8744 0x3d233770 DEBUG baseparse gstbaseparse.c:1602:gst_base_parse_src_event:<my_h264parse> event 48641, qos
0:00:04.756512375 8744 0x3d233770 LOG GST_PADS gstpad.c:3087:gst_pad_event_default:<my_h264parse:src> default event handler for event qos event: 0xffff9c00e950, time 99:99:99.999999999, seq-num 67, GstEventQOS, type=(GstQOSType)GST_QOS_TYPE_OVERFLOW, proportion=(double)0.025385517560740554, diff=(gint64)-488420000, timestamp=(guint64)4000000000;
0:00:04.756673000 8744 0x3d233770 DEBUG GST_PADS gstpad.c:2897:gst_pad_iterate_internal_links_default:<my_h264parse:src> Making iterator
0:00:04.756739875 8744 0x3d233770 LOG GST_PADS gstpad.c:3007:gst_pad_forward:<my_h264parse:src> calling forward function on pad my_h264parse:sink
0:00:04.756801875 8744 0x3d233770 LOG GST_PADS gstpad.c:3052:event_forward_func:<my_h264parse:sink> Reffing and pushing event 0xffff9c00e950 (qos) to my_h264parse:sink
0:00:04.756873875 8744 0x3d233770 LOG GST_PADS gstpad.c:5351:gst_pad_push_event_unchecked:<my_h264parse:sink> sending event 0xffff9c00e950 (qos) to peerpad <my_appsrc:src>
0:00:04.756950750 8744 0x3d233770 DEBUG GST_EVENT gstpad.c:5638:gst_pad_send_event_unchecked:<my_appsrc:src> have event type qos event: 0xffff9c00e950, time 99:99:99.999999999, seq-num 67, GstEventQOS, type=(GstQOSType)GST_QOS_TYPE_OVERFLOW, proportion=(double)0.025385517560740554, diff=(gint64)-488420000, timestamp=(guint64)4000000000;
0:00:04.757205750 8744 0x3d233770 DEBUG basesrc gstbasesrc.c:2027:gst_base_src_default_event:<my_appsrc> handle event qos event: 0xffff9c00e950, time 99:99:99.999999999, seq-num 67, GstEventQOS, type=(GstQOSType)GST_QOS_TYPE_OVERFLOW, proportion=(double)0.025385517560740554, diff=(gint64)-488420000, timestamp=(guint64)4000000000;
0:00:04.757361000 8744 0x3d233770 DEBUG GST_QOS gstbasesrc.c:2013:gst_base_src_update_qos:<my_appsrc> qos: proportion: 0.025386, diff -488420000, timestamp 0:00:04.000000000
0:00:04.757449000 8744 0x3d233770 DEBUG GST_PADS gstpad.c:5712:gst_pad_send_event_unchecked:<my_appsrc:src> sent event, ret ok
0:00:04.757506375 8744 0x3d233770 LOG GST_PADS gstpad.c:5359:gst_pad_push_event_unchecked:<my_h264parse:sink> sent event 0xffff9c00e950 (qos) to peerpad <my_appsrc:src>, ret ok
0:00:04.757583125 8744 0x3d233770 LOG GST_EVENT gstevent.c:223:_gst_event_free: freeing event 0xffff9c00e950 type qos
0:00:04.757653750 8744 0x3d233770 DEBUG GST_PADS gstpad.c:5712:gst_pad_send_event_unchecked:<my_h264parse:src> sent event, ret ok
0:00:04.757709750 8744 0x3d233770 LOG GST_PADS gstpad.c:5359:gst_pad_push_event_unchecked:<my_vdec:sink> sent event 0xffff9c00e950 (qos) to peerpad <my_h264parse:src>, ret ok
0:00:04.757789375 8744 0x3d233770 DEBUG GST_PADS gstpad.c:5712:gst_pad_send_event_unchecked:<my_vdec:src> sent event, ret ok
0:00:04.757845000 8744 0x3d233770 LOG GST_PADS gstpad.c:5359:gst_pad_push_event_unchecked:<my_sink:sink> sent event 0xffff9c00e950 (qos) to peerpad <my_vdec:src>, ret ok
0:00:04.757920875 8744 0x3d233770 DEBUG basesink gstbasesink.c:3577:gst_base_sink_chain_unlocked:<my_sink> object unref after render 0xffffa4028ce0
0:00:04.757980875 8744 0x3d233770 DEBUG GST_SCHEDULING gstpad.c:4283:gst_pad_chain_data_unchecked:<my_sink:sink> called chainfunction &gst_base_sink_chain with buffer 0xffffa4028ce0, returned ok
0:00:04.758073500 8744 0x3d233770 LOG v4l2videodec gstv4l2videodec.c:605:gst_v4l2_video_dec_loop:<my_vdec> Allocate output buffer
0:00:04.758129875 8744 0x3d233770 DEBUG v4l2bufferpool gstv4l2bufferpool.c:1342:gst_v4l2_buffer_pool_acquire_buffer:<my_vdec:pool:src> acquire
0:00:04.758101375 8744 0x3d233140 INFO videodecoder gstvideodecoder.c:1339:gst_video_decoder_sink_event_default:<my_vdec> upstream tags: taglist, video-codec=(string)"H.264\ \(Constrained\ Baseline\ Profile\)", minimum-bitrate=(uint)14064, maximum-bitrate=(uint)22352, bitrate=(uint)21366;
0:00:04.758179625 8744 0x3d233770 LOG v4l2bufferpool gstv4l2bufferpool.c:999:gst_v4l2_buffer_pool_poll:<my_vdec:pool:src> polling device
0:00:04.758276375 8744 0x3d233770 DEBUG GST_POLL gstpoll.c:1369:gst_poll_wait: 0xffff9c007400: timeout :99:99:99.999999999
0:00:04.758248250 8744 0x3d233140 LOG videodecoder gstvideodecoder.c:805:gst_video_decoder_create_merged_tags_event:<my_vdec> upstream : taglist, video-codec=(string)"H.264\ \(Constrained\ Baseline\ Profile\)", minimum-bitrate=(uint)14064, maximum-bitrate=(uint)22352, bitrate=(uint)21366;
0:00:04.758402250 8744 0x3d233140 LOG videodecoder gstvideodecoder.c:806:gst_video_decoder_create_merged_tags_event:<my_vdec> decoder : (NULL)
0:00:04.758457750 8744 0x3d233140 LOG videodecoder gstvideodecoder.c:807:gst_video_decoder_create_merged_tags_event:<my_vdec> mode : 3
0:00:04.758528250 8744 0x3d233140 DEBUG videodecoder gstvideodecoder.c:813:gst_video_decoder_create_merged_tags_event:<my_vdec> merged : taglist, video-codec=(string)"H.264\ \(Constrained\ Baseline\ Profile\)", minimum-bitrate=(uint)14064, maximum-bitrate=(uint)22352, bitrate=(uint)21366;
0:00:04.758640375 8744 0x3d233140 DEBUG GST_EVENT gstevent.c:306:gst_event_new_custom: creating new event 0x3d1e22a0 tag 20510
0:00:04.758718500 8744 0x3d233140 DEBUG GST_PADS gstpad.c:5712:gst_pad_send_event_unchecked:<my_vdec:sink> sent event, ret ok
0:00:04.758803250 8744 0x3d233140 LOG GST_EVENT gstevent.c:223:_gst_event_free: freeing event 0xffffa4007ec0 type tag
0:00:04.758877125 8744 0x3d233140 LOG GST_PADS gstpad.c:5176:store_sticky_event:<my_vdec:sink> stored sticky event tag
0:00:04.758935500 8744 0x3d233140 LOG GST_PADS gstpad.c:5359:gst_pad_push_event_unchecked:<my_h264parse:src> sent event 0xffffa4007d00 (tag) to peerpad <my_vdec:sink>, ret ok
0:00:04.759017750 8744 0x3d233140 DEBUG GST_PADS gstpad.c:3889:push_sticky:<my_h264parse:src> event tag marked received
0:00:04.759078750 8744 0x3d233140 LOG baseparse gstbaseparse.c:2535:gst_base_parse_push_frame:<my_h264parse> pushing frame (879 bytes) now..
0:00:04.759145375 8744 0x3d233140 DEBUG GST_SCHEDULING gstpad.c:4277:gst_pad_chain_data_unchecked:<my_vdec:sink> calling chainfunction &gst_video_decoder_chain with buffer buffer: 0xffffa40344d0, pts 0:00:06.500000000, dts 99:99:99.999999999, dur 0:00:00.500000000, size 879, offset 16501, offset_end none, flags 0x2400
0:00:04.759279625 8744 0x3d233140 LOG videodecoder gstvideodecoder.c:2438:gst_video_decoder_chain:<my_vdec> chain PTS 0:00:06.500000000, DTS 99:99:99.999999999 duration 0:00:00.500000000 size 879 flags 2400
0:00:04.759378500 8744 0x3d233140 LOG videodecoder gstvideodecoder.c:2595:gst_video_decoder_new_frame:<my_vdec> Created new frame 0xffffa40341a0 (sfn:13)
0:00:04.759438500 8744 0x3d233140 LOG videodecoder gstvideodecoder.c:3410:gst_video_decoder_decode_frame:<my_vdec> PTS 0:00:06.500000000, DTS 99:99:99.999999999, dist 13
0:00:04.759525375 8744 0x3d233140 DEBUG v4l2videodec gstv4l2videodec.c:704:gst_v4l2_video_dec_handle_frame:<my_vdec> Handling frame 13
0:00:04.759584875 8744 0x3d233140 DEBUG v4l2bufferpool gstv4l2bufferpool.c:1745:gst_v4l2_buffer_pool_process:<my_vdec:pool:sink> process buffer 0xffffa40341d8
0:00:04.759637125 8744 0x3d233140 LOG v4l2bufferpool gstv4l2bufferpool.c:1923:gst_v4l2_buffer_pool_process:<my_vdec:pool:sink> alloc buffer from our pool
0:00:04.759684500 8744 0x3d233140 DEBUG v4l2bufferpool gstv4l2bufferpool.c:1342:gst_v4l2_buffer_pool_acquire_buffer:<my_vdec:pool:sink> acquire
0:00:04.759733500 8744 0x3d233140 LOG bufferpool gstbufferpool.c:1128:default_acquire_buffer:<my_vdec:pool:sink> acquired buffer 0xffffa4017840
0:00:04.759787500 8744 0x3d233140 LOG v4l2bufferpool gstv4l2bufferpool.c:116:gst_v4l2_buffer_pool_copy_buffer:<my_vdec:pool:sink> copying buffer
0:00:04.759833375 8744 0x3d233140 DEBUG v4l2bufferpool gstv4l2bufferpool.c:141:gst_v4l2_buffer_pool_copy_buffer:<my_vdec:pool:sink> copy raw bytes
0:00:04.759872500 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1721:gst_buffer_map_range: buffer 0xffffa40344d0, idx 0, length -1, flags 0001
0:00:04.759929625 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:213:_get_merged_memory: buffer 0xffffa40344d0, idx 0, length 1
0:00:04.759986500 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1826:gst_buffer_fill: buffer 0xffffa4017840, offset 0, size 879
0:00:04.760047500 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1582:gst_buffer_resize_range: trim 0xffffa4017840 0-879 size:6291456 offs:0 max:6291456
0:00:04.760112375 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:515:gst_buffer_copy_into: copy 0xffffa40344d0 to 0xffffa4017840, offset 0-879/879
0:00:04.760182750 8744 0x3d233140 LOG GST_PERFORMANCE gstv4l2bufferpool.c:155:gst_v4l2_buffer_pool_copy_buffer:<my_vdec:pool:sink> slow copy into buffer 0xffffa4017840
0:00:04.760239625 8744 0x3d233140 LOG v4l2bufferpool gstv4l2bufferpool.c:1059:gst_v4l2_buffer_pool_qbuf:<my_vdec:pool:sink> queuing buffer 1
0:00:04.760356500 8744 0x3d233140 LOG v4l2allocator gstv4l2allocator.c:1265:gst_v4l2_allocator_qbuf:<my_vdec:pool:sink:allocator> queued buffer 1 (flags 0x4003)
0:00:04.760443250 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:710:_gst_buffer_dispose: release 0xffffa4017840 to pool 0xffffa4012410
0:00:04.760503375 8744 0x3d233140 DEBUG v4l2bufferpool gstv4l2bufferpool.c:1420:gst_v4l2_buffer_pool_release_buffer:<my_vdec:pool:sink> release buffer 0xffffa4017840
0:00:04.760556875 8744 0x3d233140 LOG v4l2bufferpool gstv4l2bufferpool.c:1503:gst_v4l2_buffer_pool_release_buffer:<my_vdec:pool:sink> buffer 1 is queued
0:00:04.760610250 8744 0x3d233140 LOG v4l2bufferpool gstv4l2bufferpool.c:999:gst_v4l2_buffer_pool_poll:<my_vdec:pool:sink> polling device
0:00:04.760648375 8744 0x3d233140 DEBUG GST_POLL gstpoll.c:1369:gst_poll_wait: 0xffffa4005cf0: timeout :99:99:99.999999999
0:00:04.760724500 8744 0x3d233140 DEBUG GST_POLL gstpoll.c:1188:gst_poll_fd_has_error: 0xffffa4005cf0: fd (fd:18, idx:1) 0
0:00:04.760772250 8744 0x3d233770 DEBUG GST_POLL gstpoll.c:1188:gst_poll_fd_has_error: 0xffff9c007400: fd (fd:23, idx:1) 0
0:00:04.760782000 8744 0x3d233140 DEBUG GST_POLL gstpoll.c:1265:gst_poll_fd_can_read_pri_unlocked: 0xffffa4005cf0: fd (fd:18, idx:1) 0
0:00:04.760845625 8744 0x3d233770 DEBUG GST_POLL gstpoll.c:1265:gst_poll_fd_can_read_pri_unlocked: 0xffff9c007400: fd (fd:23, idx:1) 0
0:00:04.760891125 8744 0x3d233140 LOG v4l2bufferpool gstv4l2bufferpool.c:1322:gst_v4l2_buffer_pool_dequeue:<my_vdec:pool:sink> dequeueing a buffer
0:00:04.760912750 8744 0x3d233770 LOG v4l2bufferpool gstv4l2bufferpool.c:1322:gst_v4l2_buffer_pool_dequeue:<my_vdec:pool:src> dequeueing a buffer
0:00:04.760958875 8744 0x3d233140 LOG v4l2allocator gstv4l2allocator.c:1312:gst_v4l2_allocator_dqbuf:<my_vdec:pool:sink:allocator> dequeued buffer 0 (flags 0x4001)
0:00:04.760977750 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:1312:gst_v4l2_allocator_dqbuf:<my_vdec:pool:src:allocator> dequeued buffer 9 (flags 0x4001)
0:00:04.761097000 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:1341:gst_v4l2_allocator_dqbuf:<my_vdec:pool:src:allocator> Dequeued capture buffer, length: 65536 bytesused: 65536 data_offset: 0
0:00:04.761086250 8744 0x3d233140 LOG v4l2bufferpool gstv4l2bufferpool.c:1194:gst_v4l2_buffer_pool_dqbuf:<my_vdec:pool:sink> dequeued buffer 0xffffa40170d0 seq:0 (ix=0), mem 0xffffa40181f0 used 950, plane=0, flags 00004001, ts 0:00:06.000000000, pool-queued=1, buffer=0xffffa40170d0
0:00:04.761187375 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:1341:gst_v4l2_allocator_dqbuf:<my_vdec:pool:src:allocator> Dequeued capture buffer, length: 32768 bytesused: 32768 data_offset: 0
0:00:04.761220250 8744 0x3d233140 DEBUG v4l2bufferpool gstv4l2bufferpool.c:1420:gst_v4l2_buffer_pool_release_buffer:<my_vdec:pool:sink> release buffer 0xffffa40170d0
0:00:04.761276750 8744 0x3d233140 LOG v4l2bufferpool gstv4l2bufferpool.c:1488:gst_v4l2_buffer_pool_release_buffer:<my_vdec:pool:sink> buffer 0 not queued, putting on free list
0:00:04.761254500 8744 0x3d233770 LOG v4l2bufferpool gstv4l2bufferpool.c:1194:gst_v4l2_buffer_pool_dqbuf:<my_vdec:pool:src> dequeued buffer 0xffffa4028df0 seq:0 (ix=9), mem 0xffff9c0200f0 used 65536, plane=0, flags 00004001, ts 0:00:00.000000000, pool-queued=20, buffer=0xffffa4028df0
0:00:04.761346375 8744 0x3d233140 LOG bufferpool gstbufferpool.c:1284:default_release_buffer:<my_vdec:pool:sink> released buffer 0xffffa40170d0 0
0:00:04.761398500 8744 0x3d233140 DEBUG GST_BUFFER gstbuffer.c:1375:gst_buffer_is_memory_range_writable: idx 0, length -1
0:00:04.761375875 8744 0x3d233770 LOG v4l2bufferpool gstv4l2bufferpool.c:1194:gst_v4l2_buffer_pool_dqbuf:<my_vdec:pool:src> dequeued buffer 0xffffa4028df0 seq:0 (ix=9), mem 0xffff9c020210 used 32768, plane=1, flags 00004001, ts 0:00:00.000000000, pool-queued=20, buffer=0xffffa4028df0
0:00:04.761465500 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:799:gst_buffer_new: new 0xffffa40342b0
0:00:04.761547875 8744 0x3d233770 LOG v4l2videodec gstv4l2videodec.c:629:gst_v4l2_video_dec_loop:<my_vdec> Process output buffer
0:00:04.761588000 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:515:gst_buffer_copy_into: copy 0xffffa40344d0 to 0xffffa40342b0, offset 0-0/879
0:00:04.761628250 8744 0x3d233770 DEBUG v4l2bufferpool gstv4l2bufferpool.c:1745:gst_v4l2_buffer_pool_process:<my_vdec:pool:src> process buffer 0xffffb1d697e8
0:00:04.761651500 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:725:_gst_buffer_free: finalize 0xffffa40344d0
0:00:04.761696125 8744 0x3d233140 DEBUG GST_MEMORY gstmemory.c:88:_gst_memory_free: free memory 0x3d2276a0
0:00:04.761773000 8744 0x3d233140 DEBUG GST_SCHEDULING gstpad.c:4283:gst_pad_chain_data_unchecked:<my_vdec:sink> called chainfunction &gst_video_decoder_chain with buffer 0xffffa40344d0, returned ok
0:00:04.761786000 8744 0x3d233770 LOG v4l2videodec gstv4l2videodec.c:460:gst_v4l2_video_dec_get_oldest_frame:<my_vdec> Oldest frame is 9 0:00:04.500000000 and 4 frames left
0:00:04.761839125 8744 0x3d233140 LOG baseparse gstbaseparse.c:2537:gst_base_parse_push_frame:<my_h264parse> frame pushed, flow ok
0:00:04.761859250 8744 0x3d233770 DEBUG GST_BUFFER gstbuffer.c:2201:gst_buffer_add_meta: alloc metadata 0xffff9c001e98 (GstDmabufMeta) of size 24
0:00:04.761893125 8744 0x3d233140 LOG baseparse gstbaseparse.c:2166:gst_base_parse_handle_buffer:<my_h264parse> handle_frame skipped 0, flushed 877
0:00:04.761923375 8744 0x3d233770 DEBUG v4l2videodec gstv4l2videodec.c:647:gst_v4l2_video_dec_loop:<my_vdec> add drm modifier: 576460752303423489
0:00:04.761954375 8744 0x3d233140 DEBUG baseparse gstbaseparse.c:3215:gst_base_parse_chain:<my_h264parse> not enough data available (only 0 bytes)
0:00:04.761978500 8744 0x3d233770 LOG videodecoder gstvideodecoder.c:2985:gst_video_decoder_finish_frame:<my_vdec> finish frame 0xffffa4034c40
0:00:04.762007125 8744 0x3d233140 LOG baseparse gstbaseparse.c:3277:gst_base_parse_chain:<my_h264parse> chain leaving
0:00:04.762035500 8744 0x3d233770 LOG videodecoder gstvideodecoder.c:2625:gst_video_decoder_prepare_finish_frame:<my_vdec> n 5 in 0 out 0
0:00:04.762059500 8744 0x3d233140 DEBUG GST_SCHEDULING gstpad.c:4283:gst_pad_chain_data_unchecked:<my_h264parse:sink> called chainfunction &gst_base_parse_chain with buffer 0xffffa40172f0, returned ok
0:00:04.762094625 8744 0x3d233770 LOG videodecoder gstvideodecoder.c:2634:gst_video_decoder_prepare_finish_frame:<my_vdec> finish frame 0xffffa4034c40 (#9) sync:0 PTS:0:00:04.500000000 DTS:99:99:99.999999999
0:00:04.762130375 8744 0x3d233140 LOG basesrc gstbasesrc.c:2828:gst_base_src_loop:<my_appsrc> next_ts 0:00:00.000017378 size 4096
0:00:04.762179875 8744 0x3d233770 LOG videodecoder gstvideodecoder.c:2607:gst_video_decoder_push_event_list:<my_vdec> pushing tag event
0:00:04.762201375 8744 0x3d233140 DEBUG basesrc gstbasesrc.c:2399:gst_base_src_update_length:<my_appsrc> reading offset 17378, length 4096, size -1, segment.stop -1, maxsize -1
0:00:04.762231000 8744 0x3d233770 DEBUG videodecoder gstvideodecoder.c:857:gst_video_decoder_push_event:<my_vdec> pushing event tag
0:00:04.762288875 8744 0x3d233140 DEBUG basesrc gstbasesrc.c:2506:gst_base_src_get_range:<my_appsrc> calling create offset 17378 length 4096, time 0
0:00:04.762326500 8744 0x3d233770 LOG GST_PADS gstpad.c:5176:store_sticky_event:<my_vdec:src> stored sticky event tag
(get_data, 99)
(get_data, 108)read_ret: 8, target frame num: 14, read frame num: 14
0:00:04.762399750 8744 0x3d233770 DEBUG GST_PADS gstpad.c:3937:check_sticky:<my_vdec:src> pushing all sticky events
0:00:04.762511750 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:799:gst_buffer_new: new 0xffffa40346f0
0:00:04.762571250 8744 0x3d233140 DEBUG GST_MEMORY gstmemory.c:139:gst_memory_init: new memory 0x3d227610, maxsize:896 offset:0 size:896
0:00:04.762593750 8744 0x3d233770 DEBUG GST_PADS gstpad.c:3867:push_sticky:<my_vdec:src> event stream-start was already received
0:00:04.762640875 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:414:_memory_add: buffer 0xffffa40346f0, idx -1, mem 0x3d227610
0:00:04.762687000 8744 0x3d233770 DEBUG GST_PADS gstpad.c:3867:push_sticky:<my_vdec:src> event caps was already received
0:00:04.762737875 8744 0x3d233140 DEBUG appsrc gstappsrc.c:1863:gst_app_src_push_internal:<my_appsrc> queueing buffer 0xffffa40346f0
0:00:04.762746250 8744 0x3d233770 DEBUG GST_PADS gstpad.c:3867:push_sticky:<my_vdec:src> event segment was already received
0:00:04.762821125 8744 0x3d233140 LOG appsrc gstappsrc.c:1221:gst_app_src_create:<my_appsrc> have buffer 0xffffa40346f0 of size 896
0:00:04.762842625 8744 0x3d233770 LOG GST_PADS gstpad.c:5351:gst_pad_push_event_unchecked:<my_vdec:src> sending event 0xffffa4007e50 (tag) to peerpad <my_sink:sink>
0:00:04.762887250 8744 0x3d233140 DEBUG basesrc gstbasesrc.c:2360:gst_base_src_do_sync:<my_appsrc> no sync needed
0:00:04.762947000 8744 0x3d233140 DEBUG basesrc gstbasesrc.c:2597:gst_base_src_get_range:<my_appsrc> buffer ok
0:00:04.762961750 8744 0x3d233770 DEBUG GST_EVENT gstpad.c:5638:gst_pad_send_event_unchecked:<my_sink:sink> have event type tag event: 0xffffa4007e50, time 99:99:99.999999999, seq-num 56, GstTagList-stream, taglist=(taglist)"taglist\,\ video-codec\=\(string\)\"H.264\\\ \\\(Constrained\\\ Baseline\\\ Profile\\\)\"\,\ minimum-bitrate\=\(uint\)22352\,\ maximum-bitrate\=\(uint\)22352\,\ bitrate\=\(uint\)24273\;";
0:00:04.763004250 8744 0x3d233140 DEBUG GST_SCHEDULING gstpad.c:4277:gst_pad_chain_data_unchecked:<my_h264parse:sink> calling chainfunction &gst_base_parse_chain with buffer buffer: 0xffffa40346f0, pts 0:00:07.000000000, dts 99:99:99.999999999, dur 0:00:00.500000000, size 896, offset none, offset_end none, flags 0x0
0:00:04.763168500 8744 0x3d233140 DEBUG baseparse gstbaseparse.c:3030:gst_base_parse_chain:<my_h264parse> chain
0:00:04.763218000 8744 0x3d233140 LOG baseparse gstbaseparse.c:3150:gst_base_parse_chain:<my_h264parse> buffer size: 896, offset = -1, dts 99:99:99.999999999, pts 0:00:07.000000000
0:00:04.763135500 8744 0x3d233770 DEBUG basesink gstbasesink.c:3252:gst_base_sink_event:<my_sink> received event 0xffffa4007e50 tag event: 0xffffa4007e50, time 99:99:99.999999999, seq-num 56, GstTagList-stream, taglist=(taglist)"taglist\,\ video-codec\=\(string\)\"H.264\\\ \\\(Constrained\\\ Baseline\\\ Profile\\\)\"\,\ minimum-bitrate\=\(uint\)22352\,\ maximum-bitrate\=\(uint\)22352\,\ bitrate\=\(uint\)24273\;";
0:00:04.763326125 8744 0x3d233140 LOG adapter gstadapter.c:389:gst_adapter_push:<GstAdapter at 0x3d20c000> pushing 0xffffa40346f0 first 896 bytes
0:00:04.763389250 8744 0x3d233770 LOG GST_MESSAGE gstmessage.c:301:gst_message_new_custom: source my_sink: creating new message 0xffff9c003480 tag
0:00:04.763392375 8744 0x3d233140 LOG adapter gstadapter.c:290:update_timestamps_and_offset:<GstAdapter at 0x3d20c000> new pts 0:00:07.000000000
0:00:04.763518500 8744 0x3d233140 LOG adapter gstadapter.c:974:gst_adapter_get_buffer:<GstAdapter at 0x3d20c000> getting buffer of 896 bytes
0:00:04.763577875 8744 0x3d233140 LOG adapter gstadapter.c:989:gst_adapter_get_buffer:<GstAdapter at 0x3d20c000> providing buffer of 896 bytes as head buffer
0:00:04.763479250 8744 0x3d233770 DEBUG GST_BUS gstbus.c:318:gst_bus_post:<bus0> [msg 0xffff9c003480] posting on bus tag message: 0xffff9c003480, time 99:99:99.999999999, seq-num 69, element 'my_sink', GstMessageTag, taglist=(taglist)"taglist\,\ video-codec\=\(string\)\"H.264\\\ \\\(Constrained\\\ Baseline\\\ Profile\\\)\"\,\ minimum-bitrate\=\(uint\)22352\,\ maximum-bitrate\=\(uint\)22352\,\ bitrate\=\(uint\)24273\;";
0:00:04.763708500 8744 0x3d233770 DEBUG bin gstbin.c:3715:gst_bin_handle_message_func:<my_pipeline> [msg 0xffff9c003480] handling child my_sink message of type tag
0:00:04.763718125 8744 0x3d233140 LOG baseparse gstbaseparse.c:2148:gst_base_parse_handle_buffer:<my_h264parse> handling buffer of size 896 with dts 99:99:99.999999999, pts 0:00:07.000000000, duration 0:00:00.500000000
0:00:04.763773875 8744 0x3d233770 DEBUG bin gstbin.c:4052:gst_bin_handle_message_func:<my_pipeline> posting message upward
0:00:04.763822375 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:799:gst_buffer_new: new 0xffffa40172f0
0:00:04.763908125 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:515:gst_buffer_copy_into: copy 0xffffa40346f0 to 0xffffa40172f0, offset 0-896/896
0:00:04.763971500 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:414:_memory_add: buffer 0xffffa40172f0, idx -1, mem 0x3d227610
0:00:04.763888250 8744 0x3d233770 DEBUG GST_BUS gstbus.c:318:gst_bus_post:<bus1> [msg 0xffff9c003480] posting on bus tag message: 0xffff9c003480, time 99:99:99.999999999, seq-num 69, element 'my_sink', GstMessageTag, taglist=(taglist)"taglist\,\ video-codec\=\(string\)\"H.264\\\ \\\(Constrained\\\ Baseline\\\ Profile\\\)\"\,\ minimum-bitrate\=\(uint\)22352\,\ maximum-bitrate\=\(uint\)22352\,\ bitrate\=\(uint\)24273\;";
0:00:04.764039625 8744 0x3d233140 DEBUG GST_PERFORMANCE gstminiobject.c:317:gst_mini_object_make_writable: copy GstBuffer miniobject 0xffffa40346f0 -> 0xffffa40172f0
0:00:04.764087750 8744 0x3d233770 DEBUG GST_BUS gstbus.c:357:gst_bus_post:<bus1> [msg 0xffff9c003480] pushing on async queue
0:00:04.764138375 8744 0x3d233770 LOG GST_POLL gstpoll.c:290:raise_wakeup: 0x3d154a30: raise
0:00:04.764109500 8744 0x3d233140 LOG baseparse gstbaseparse.c:2110:gst_base_parse_prepare_frame:<my_h264parse> preparing frame at offset 18446744073709551615 (0xffffffffffffffff) of size 896
0:00:04.764234625 8744 0x3d233770 DEBUG GST_BUS gstbus.c:360:gst_bus_post:<bus1> [msg 0xffff9c003480] pushed on async queue
0:00:04.764266500 8744 0x3d233140 LOG baseparse gstbaseparse.c:764:gst_base_parse_update_frame:<my_h264parse> marking as new frame
0:00:04.764291250 8744 0x3d233770 DEBUG GST_BUS gstbus.c:353:gst_bus_post:<bus0> [msg 0xffff9c003480] dropped
0:00:04.764308625 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1721:gst_buffer_map_range: buffer 0xffffa40172f0, idx 0, length -1, flags 0001
0:00:04.764350500 8744 0x3d233770 DEBUG GST_PADS gstpad.c:5712:gst_pad_send_event_unchecked:<my_sink:sink> sent event, ret ok
0:00:04.764366375 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:213:_get_merged_memory: buffer 0xffffa40172f0, idx 0, length 1
0:00:04.764398375 8744 0x3d233770 LOG GST_EVENT gstevent.c:223:_gst_event_free: freeing event 0xffffa4007d70 type tag
0:00:04.764430625 8744 0x3d233140 LOG h264parse gsth264parse.c:1097:gst_h264_parse_handle_frame:<my_h264parse> parsing new frame
0:00:04.764468250 8744 0x3d233770 LOG GST_PADS gstpad.c:5176:store_sticky_event:<my_sink:sink> stored sticky event tag
0:00:04.764478875 8744 0x3d233140 DEBUG h264parse gsth264parse.c:186:gst_h264_parse_reset_frame:<my_h264parse> reset frame
0:00:04.764540000 8744 0x3d233770 LOG GST_PADS gstpad.c:5359:gst_pad_push_event_unchecked:<my_vdec:src> sent event 0xffffa4007e50 (tag) to peerpad <my_sink:sink>, ret ok
0:00:04.764644500 8744 0x3d233140 DEBUG h264parse gsth264parse.c:1112:gst_h264_parse_handle_frame:<my_h264parse> last parse position 0
0:00:04.764657125 8744 0x3d233770 DEBUG GST_PADS gstpad.c:3889:push_sticky:<my_vdec:src> event tag marked received
0:00:04.764717500 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:242:gst_h264_parse_nalu_header: Nal type 9, ref_idc 0
0:00:04.764755250 8744 0xffffa4002580 LOG GST_BUS gstbus.c:522:gst_bus_timed_pop_filtered:<bus1> have 1 messages
0:00:04.764792875 8744 0x3d233770 DEBUG videodecoder gstvideodecoder.c:2676:gst_video_decoder_prepare_finish_frame:<my_vdec> sync timestamp 0:00:04.500000000 diff -0:00:04.500000000
0:00:04.764811875 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:242:gst_h264_parse_nalu_header: Nal type 9, ref_idc 0
0:00:04.764912000 8744 0xffffa4002580 LOG GST_POLL gstpoll.c:314:release_wakeup: 0x3d154a30: release
0:00:04.764896750 8744 0x3d233770 DEBUG default gstvideoutils.c:40:_gst_video_codec_frame_free: free frame 0xffffa4034c40
0:00:04.765006625 8744 0x3d233770 LOG GST_BUFFER gstbuffer.c:725:_gst_buffer_free: finalize 0xffffa4017d90
0:00:04.765105750 8744 0xffffa4002580 DEBUG GST_BUS gstbus.c:546:gst_bus_timed_pop_filtered:<bus1> got message 0xffff9c003480, tag from my_sink, type mask is 4294967295
0:00:04.765142125 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:1366:gst_h264_parser_identify_nalu: Complete nal found. Off: 4, Size: 2
0:00:04.765142750 8744 0x3d233770 LOG videodecoder gstvideodecoder.c:3130:gst_video_decoder_clip_and_push_buf:<my_vdec> accepting buffer inside segment: 0:00:04.500000000 0:00:05.000000000 seg 0:00:00.000000000 to 99:99:99.999999999 time 0:00:00.000000000
0:00:04.765287750 8744 0x3d233140 DEBUG h264parse gsth264parse.c:1162:gst_h264_parse_handle_frame:<my_h264parse> complete nal (offset, size): (4, 2)
0:00:04.765285625 8744 0x3d233770 DEBUG videodecoder gstvideodecoder.c:3197:gst_video_decoder_clip_and_push_buf:<my_vdec> pushing buffer 0xffffa4028df0 of size 98304, PTS 0:00:04.500000000, dur 0:00:00.500000000
0:00:04.765209125 8744 0xffffa4002580 DEBUG GST_BUS gstbus.c:839:gst_bus_source_dispatch:<bus1> source 0x3d21dc00 calling dispatch with tag message: 0xffff9c003480, time 99:99:99.999999999, seq-num 69, element 'my_sink', GstMessageTag, taglist=(taglist)"taglist\,\ video-codec\=\(string\)\"H.264\\\ \\\(Constrained\\\ Baseline\\\ Profile\\\)\"\,\ minimum-bitrate\=\(uint\)22352\,\ maximum-bitrate\=\(uint\)22352\,\ bitrate\=\(uint\)24273\;";
0:00:04.765349125 8744 0x3d233140 DEBUG h264parse gsth264parse.c:1219:gst_h264_parse_handle_frame:<my_h264parse> 0xffffa403cc10 complete nal found. Off: 4, Size: 2
0:00:04.765446250 8744 0xffffa4002580 LOG GST_MESSAGE gstmessage.c:208:_gst_message_free: finalize message 0xffff9c003480, tag from my_sink
0:00:04.765491375 8744 0x3d233140 DEBUG h264parse gsth264parse.c:721:gst_h264_parse_process_nal:<my_h264parse> processing nal of type 9 AU delimiter, size 2
0:00:04.765555000 8744 0x3d233140 LOG h264parse gsth264parse.c:895:gst_h264_parse_process_nal:<my_h264parse> collecting NAL in AVC frame
0:00:04.765423375 8744 0x3d233770 DEBUG GST_SCHEDULING gstpad.c:4277:gst_pad_chain_data_unchecked:<my_sink:sink> calling chainfunction &gst_base_sink_chain with buffer buffer: 0xffffa4028df0, pts 0:00:04.500000000, dts 99:99:99.999999999, dur 0:00:00.500000000, size 98304, offset none, offset_end none, flags 0x0
0:00:04.765558875 8744 0xffffa4002580 DEBUG GST_BUS gstbus.c:844:gst_bus_source_dispatch:<bus1> source 0x3d21dc00 handler returns 1
0:00:04.765707000 8744 0x3d233140 DEBUG h264parse gsth264parse.c:428:gst_h264_parse_wrap_nal:<my_h264parse> nal length 2
0:00:04.765694625 8744 0x3d233770 DEBUG basesink gstbasesink.c:3421:gst_base_sink_chain_unlocked:<my_sink> got times start: 0:00:04.500000000, end: 0:00:05.000000000
0:00:04.765817625 8744 0x3d233140 DEBUG GST_MEMORY gstmemory.c:139:gst_memory_init: new memory 0x3d0bef00, maxsize:13 offset:0 size:6
0:00:04.765883000 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:799:gst_buffer_new: new 0xffffa4028130
0:00:04.765862875 8744 0x3d233770 DEBUG basesink gstbasesink.c:2006:gst_base_sink_get_sync_times:<my_sink> got times start: 0:00:04.500000000, stop: 0:00:05.000000000, do_sync 1
0:00:04.765938125 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:414:_memory_add: buffer 0xffffa4028130, idx -1, mem 0x3d0bef00
0:00:04.766000750 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:855:gst_buffer_new_allocate: new buffer 0xffffa4028130 of size 6 from allocator (nil)
0:00:04.766031750 8744 0x3d233770 LOG basesink gstbasesink.c:2551:gst_base_sink_do_sync:<my_sink> avg frame diff 0:00:00.500000000
0:00:04.766058125 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1826:gst_buffer_fill: buffer 0xffffa4028130, offset 0, size 4
0:00:04.766130125 8744 0x3d233770 DEBUG basesink gstbasesink.c:2591:gst_base_sink_do_sync:<my_sink> reset rc_time to time 0:00:04.500000000
0:00:04.766151500 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1826:gst_buffer_fill: buffer 0xffffa4028130, offset 4, size 2
0:00:04.766238625 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1582:gst_buffer_resize_range: trim 0xffffa4028130 0-6 size:6 offs:0 max:13
0:00:04.766212375 8744 0x3d233770 DEBUG basesink gstbasesink.c:2603:gst_base_sink_do_sync:<my_sink> possibly waiting for clock to reach 0:00:04.500000000, adjusted 0:00:04.500000000
0:00:04.766370250 8744 0x3d233140 LOG adapter gstadapter.c:389:gst_adapter_push:<GstAdapter at 0x3d20c120> pushing 0xffffa4028130 first 6 bytes
0:00:04.766348875 8744 0x3d233770 LOG basesink gstbasesink.c:2177:gst_base_sink_wait_clock:<my_sink> time 0:00:04.500000000, base_time 0:15:45.099030375
0:00:04.766447000 8744 0x3d233140 DEBUG h264parse gsth264parse.c:914:gst_h264_parse_collect_nal:<my_h264parse> parsing collected nal
0:00:04.766504125 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:242:gst_h264_parse_nalu_header: Nal type 6, ref_idc 0
0:00:04.766533625 8744 0x3d233770 DEBUG GST_CLOCK gstclock.c:537:gst_clock_id_wait:<GstSystemClock> waiting on clock entry 0xffffa4008580
0:00:04.766563125 8744 0x3d233140 LOG h264parse gsth264parse.c:922:gst_h264_parse_collect_nal:<my_h264parse> nal type: 9 AU delimiter
0:00:04.766600875 8744 0x3d233770 DEBUG GST_CLOCK gstclock.c:1046:gst_clock_get_internal_time:<GstSystemClock> internal time 0:15:49.113547125
0:00:04.766620250 8744 0x3d233140 LOG h264parse gsth264parse.c:941:gst_h264_parse_collect_nal:<my_h264parse> next nal type: 6 SEI
0:00:04.766686250 8744 0x3d233770 DEBUG GST_CLOCK gstclock.c:1091:gst_clock_get_time:<GstSystemClock> adjusted time 0:15:49.113547125
0:00:04.766714875 8744 0x3d233140 LOG h264parse gsth264parse.c:948:gst_h264_parse_collect_nal:<my_h264parse> au complete: 0
0:00:04.766760625 8744 0x3d233770 DEBUG GST_CLOCK gstsystemclock.c:718:gst_system_clock_id_wait_jitter_unlocked: entry 0xffffa4008580 time 0:15:49.599030375 now 0:15:49.113547125 diff (time-now) 485483250
0:00:04.766800625 8744 0x3d233140 DEBUG h264parse gsth264parse.c:1264:gst_h264_parse_handle_frame:<my_h264parse> Looking for more
0:00:04.766850875 8744 0x3d233770 DEBUG GST_POLL gstpoll.c:1369:gst_poll_wait: 0xffffa0003c00: timeout :0:00:00.485483250
0:00:04.766882750 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:242:gst_h264_parse_nalu_header: Nal type 6, ref_idc 0
0:00:04.767000625 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:1366:gst_h264_parser_identify_nalu: Complete nal found. Off: 10, Size: 21
0:00:04.767060750 8744 0x3d233140 DEBUG h264parse gsth264parse.c:1162:gst_h264_parse_handle_frame:<my_h264parse> complete nal (offset, size): (10, 21)
0:00:04.767117500 8744 0x3d233140 DEBUG h264parse gsth264parse.c:1219:gst_h264_parse_handle_frame:<my_h264parse> 0xffffa403cc10 complete nal found. Off: 10, Size: 21
0:00:04.767179125 8744 0x3d233140 DEBUG h264parse gsth264parse.c:721:gst_h264_parse_process_nal:<my_h264parse> processing nal of type 6 SEI, size 21
0:00:04.767230000 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:2292:gst_h264_parser_parse_sei: parsing SEI nal
0:00:04.767274250 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:1127:gst_h264_parser_parse_sei_message: parsing "Sei message"
0:00:04.767317000 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:1147:gst_h264_parser_parse_sei_message: SEI message received: payloadType 5, payloadSize = 136 bits
0:00:04.767388250 8744 0x3d233140 DEBUG h264parse gsth264parse.c:807:gst_h264_parse_process_nal:<my_h264parse> marking SEI in frame at offset 6
0:00:04.767440625 8744 0x3d233140 LOG h264parse gsth264parse.c:895:gst_h264_parse_process_nal:<my_h264parse> collecting NAL in AVC frame
0:00:04.767486375 8744 0x3d233140 DEBUG h264parse gsth264parse.c:428:gst_h264_parse_wrap_nal:<my_h264parse> nal length 21
0:00:04.767532625 8744 0x3d233140 DEBUG GST_MEMORY gstmemory.c:139:gst_memory_init: new memory 0xffffa401b170, maxsize:32 offset:0 size:25
0:00:04.767590375 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:799:gst_buffer_new: new 0xffffa4017b70
0:00:04.767632375 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:414:_memory_add: buffer 0xffffa4017b70, idx -1, mem 0xffffa401b170
0:00:04.767682375 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:855:gst_buffer_new_allocate: new buffer 0xffffa4017b70 of size 25 from allocator (nil)
0:00:04.767735125 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1826:gst_buffer_fill: buffer 0xffffa4017b70, offset 0, size 4
0:00:04.767786375 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1826:gst_buffer_fill: buffer 0xffffa4017b70, offset 4, size 21
0:00:04.767837500 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1582:gst_buffer_resize_range: trim 0xffffa4017b70 0-25 size:25 offs:0 max:32
0:00:04.767912250 8744 0x3d233140 LOG adapter gstadapter.c:395:gst_adapter_push:<GstAdapter at 0x3d20c120> pushing 0xffffa4017b70 25 bytes at end, size now 31
0:00:04.767975250 8744 0x3d233140 DEBUG h264parse gsth264parse.c:914:gst_h264_parse_collect_nal:<my_h264parse> parsing collected nal
0:00:04.768015375 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:242:gst_h264_parse_nalu_header: Nal type 1, ref_idc 1
0:00:04.768072250 8744 0x3d233140 LOG h264parse gsth264parse.c:922:gst_h264_parse_collect_nal:<my_h264parse> nal type: 6 SEI
0:00:04.768128250 8744 0x3d233140 LOG h264parse gsth264parse.c:941:gst_h264_parse_collect_nal:<my_h264parse> next nal type: 1 Slice
0:00:04.768138250 8744 0x3d1e1590 LOG waylandsink gstwaylandsink.c:745:frame_redraw_callback: frame_redraw_cb
0:00:04.768197000 8744 0x3d233140 LOG h264parse gsth264parse.c:948:gst_h264_parse_collect_nal:<my_h264parse> au complete: 0
0:00:04.768264000 8744 0x3d233140 DEBUG h264parse gsth264parse.c:1264:gst_h264_parse_handle_frame:<my_h264parse> Looking for more
0:00:04.768283750 8744 0x3d1e1590 DEBUG GST_POLL gstpoll.c:1369:gst_poll_wait: 0x3d21fe80: timeout :99:99:99.999999999
0:00:04.768304500 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:242:gst_h264_parse_nalu_header: Nal type 1, ref_idc 1
0:00:04.768431750 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:1366:gst_h264_parser_identify_nalu: Complete nal found. Off: 34, Size: 240
0:00:04.768491875 8744 0x3d233140 DEBUG h264parse gsth264parse.c:1162:gst_h264_parse_handle_frame:<my_h264parse> complete nal (offset, size): (34, 240)
0:00:04.768547750 8744 0x3d233140 DEBUG h264parse gsth264parse.c:1219:gst_h264_parse_handle_frame:<my_h264parse> 0xffffa403cc10 complete nal found. Off: 34, Size: 240
0:00:04.768608875 8744 0x3d233140 DEBUG h264parse gsth264parse.c:721:gst_h264_parse_process_nal:<my_h264parse> processing nal of type 1 Slice, size 240
0:00:04.768667125 8744 0x3d233140 DEBUG h264parse gsth264parse.c:827:gst_h264_parse_process_nal:<my_h264parse> first_mb_in_slice = 0
0:00:04.768713875 8744 0x3d233140 DEBUG h264parse gsth264parse.c:830:gst_h264_parse_process_nal:<my_h264parse> frame start: 1
0:00:04.768758500 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:2079:gst_h264_parser_parse_slice_hdr: parsing "Slice header", slice type 0
0:00:04.768810125 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:700:gst_h264_slice_parse_dec_ref_pic_marking: parsing "Decoded reference picture marking"
0:00:04.768861000 8744 0x3d233140 DEBUG h264parse gsth264parse.c:840:gst_h264_parse_process_nal:<my_h264parse> parse result 0, first MB: 0, slice type: 0
0:00:04.768919375 8744 0x3d233140 LOG h264parse gsth264parse.c:895:gst_h264_parse_process_nal:<my_h264parse> collecting NAL in AVC frame
0:00:04.768964500 8744 0x3d233140 DEBUG h264parse gsth264parse.c:428:gst_h264_parse_wrap_nal:<my_h264parse> nal length 240
0:00:04.769107375 8744 0x3d233140 DEBUG GST_MEMORY gstmemory.c:139:gst_memory_init: new memory 0xffffa4046000, maxsize:251 offset:0 size:244
0:00:04.769179000 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:799:gst_buffer_new: new 0xffffa4017950
0:00:04.769221250 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:414:_memory_add: buffer 0xffffa4017950, idx -1, mem 0xffffa4046000
0:00:04.769271750 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:855:gst_buffer_new_allocate: new buffer 0xffffa4017950 of size 244 from allocator (nil)
0:00:04.769323125 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1826:gst_buffer_fill: buffer 0xffffa4017950, offset 0, size 4
0:00:04.769373125 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1826:gst_buffer_fill: buffer 0xffffa4017950, offset 4, size 240
0:00:04.769422875 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1582:gst_buffer_resize_range: trim 0xffffa4017950 0-244 size:244 offs:0 max:251
0:00:04.769497375 8744 0x3d233140 LOG adapter gstadapter.c:395:gst_adapter_push:<GstAdapter at 0x3d20c120> pushing 0xffffa4017950 244 bytes at end, size now 275
0:00:04.769559375 8744 0x3d233140 DEBUG h264parse gsth264parse.c:914:gst_h264_parse_collect_nal:<my_h264parse> parsing collected nal
0:00:04.769598250 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:242:gst_h264_parse_nalu_header: Nal type 1, ref_idc 1
0:00:04.769652750 8744 0x3d233140 LOG h264parse gsth264parse.c:922:gst_h264_parse_collect_nal:<my_h264parse> nal type: 1 Slice
0:00:04.769706500 8744 0x3d233140 LOG h264parse gsth264parse.c:941:gst_h264_parse_collect_nal:<my_h264parse> next nal type: 1 Slice
0:00:04.769760000 8744 0x3d233140 LOG h264parse gsth264parse.c:948:gst_h264_parse_collect_nal:<my_h264parse> au complete: 0
0:00:04.769809500 8744 0x3d233140 DEBUG h264parse gsth264parse.c:1264:gst_h264_parse_handle_frame:<my_h264parse> Looking for more
0:00:04.769847375 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:242:gst_h264_parse_nalu_header: Nal type 1, ref_idc 1
0:00:04.769893875 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:1351:gst_h264_parser_identify_nalu: Nal start 277, No end found
0:00:04.769975500 8744 0x3d233140 DEBUG h264parse gsth264parse.c:1166:gst_h264_parse_handle_frame:<my_h264parse> not a complete nal found at offset 277
0:00:04.770026875 8744 0x3d233140 DEBUG h264parse gsth264parse.c:1172:gst_h264_parse_handle_frame:<my_h264parse> draining, accepting with size 619
0:00:04.770077250 8744 0x3d233140 DEBUG h264parse gsth264parse.c:1219:gst_h264_parse_handle_frame:<my_h264parse> 0xffffa403cc10 complete nal found. Off: 277, Size: 619
0:00:04.770136250 8744 0x3d233140 DEBUG h264parse gsth264parse.c:721:gst_h264_parse_process_nal:<my_h264parse> processing nal of type 1 Slice, size 619
0:00:04.770194000 8744 0x3d233140 DEBUG h264parse gsth264parse.c:830:gst_h264_parse_process_nal:<my_h264parse> frame start: 1
0:00:04.770237500 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:2079:gst_h264_parser_parse_slice_hdr: parsing "Slice header", slice type 0
0:00:04.770281500 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:700:gst_h264_slice_parse_dec_ref_pic_marking: parsing "Decoded reference picture marking"
0:00:04.770329250 8744 0x3d233140 DEBUG h264parse gsth264parse.c:840:gst_h264_parse_process_nal:<my_h264parse> parse result 0, first MB: 49, slice type: 0
0:00:04.770386375 8744 0x3d233140 LOG h264parse gsth264parse.c:895:gst_h264_parse_process_nal:<my_h264parse> collecting NAL in AVC frame
0:00:04.770431500 8744 0x3d233140 DEBUG h264parse gsth264parse.c:428:gst_h264_parse_wrap_nal:<my_h264parse> nal length 619
0:00:04.770510750 8744 0x3d233140 DEBUG GST_MEMORY gstmemory.c:139:gst_memory_init: new memory 0xffffa40480c0, maxsize:630 offset:0 size:623
0:00:04.770570750 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:799:gst_buffer_new: new 0xffffa4017a60
0:00:04.770612375 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:414:_memory_add: buffer 0xffffa4017a60, idx -1, mem 0xffffa40480c0
0:00:04.770662125 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:855:gst_buffer_new_allocate: new buffer 0xffffa4017a60 of size 623 from allocator (nil)
0:00:04.770712750 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1826:gst_buffer_fill: buffer 0xffffa4017a60, offset 0, size 4
0:00:04.770762625 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1826:gst_buffer_fill: buffer 0xffffa4017a60, offset 4, size 619
0:00:04.770813500 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1582:gst_buffer_resize_range: trim 0xffffa4017a60 0-623 size:623 offs:0 max:630
0:00:04.770886500 8744 0x3d233140 LOG adapter gstadapter.c:395:gst_adapter_push:<GstAdapter at 0x3d20c120> pushing 0xffffa4017a60 623 bytes at end, size now 898
0:00:04.770963625 8744 0x3d233140 DEBUG GST_CAPS gstpad.c:2705:gst_pad_has_current_caps:<my_h264parse:src> check current pad caps video/x-h264, stream-format=(string)byte-stream, alignment=(string)au, framerate=(fraction)0/1, width=(int)176, height=(int)144, interlace-mode=(string)progressive, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8, parsed=(boolean)true, profile=(string)constrained-baseline, level=(string)1.2
0:00:04.771130375 8744 0x3d233140 LOG h264parse gsth264parse.c:2016:gst_h264_parse_get_timestamp:<my_h264parse> Upstream ts 0:00:07.000000000
0:00:04.771195250 8744 0x3d233140 DEBUG h264parse gsth264parse.c:2035:gst_h264_parse_get_timestamp:<my_h264parse> unable to compute timestamp: timing info not present
0:00:04.771249125 8744 0x3d233140 LOG adapter gstadapter.c:974:gst_adapter_get_buffer:<GstAdapter at 0x3d20c120> getting buffer of 898 bytes
0:00:04.771306750 8744 0x3d233140 LOG adapter gstadapter.c:736:gst_adapter_get_internal:<GstAdapter at 0x3d20c120> allocating 898 bytes
0:00:04.771353625 8744 0x3d233140 DEBUG adapter gstadapter.c:344:copy_into_unchecked: bsize 6, skip 0, csize 6
0:00:04.771447500 8744 0x3d233140 LOG GST_PERFORMANCE gstadapter.c:346:copy_into_unchecked:<GstAdapter at 0x3d20c120> extract 6 bytes
0:00:04.771491500 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1876:gst_buffer_extract: buffer 0xffffa4028130, offset 0, size 6
0:00:04.771557125 8744 0x3d233140 LOG GST_PERFORMANCE gstadapter.c:359:copy_into_unchecked:<GstAdapter at 0x3d20c120> extract 25 bytes
0:00:04.771598625 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1876:gst_buffer_extract: buffer 0xffffa4017b70, offset 0, size 25
0:00:04.771663125 8744 0x3d233140 LOG GST_PERFORMANCE gstadapter.c:359:copy_into_unchecked:<GstAdapter at 0x3d20c120> extract 244 bytes
0:00:04.771704500 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1876:gst_buffer_extract: buffer 0xffffa4017950, offset 0, size 244
0:00:04.771768250 8744 0x3d233140 LOG GST_PERFORMANCE gstadapter.c:359:copy_into_unchecked:<GstAdapter at 0x3d20c120> extract 623 bytes
0:00:04.771809625 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1876:gst_buffer_extract: buffer 0xffffa4017a60, offset 0, size 623
0:00:04.771863625 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:799:gst_buffer_new: new 0xffffa40344d0
0:00:04.771907750 8744 0x3d233140 DEBUG GST_MEMORY gstmemory.c:139:gst_memory_init: new memory 0x3d2276a0, maxsize:898 offset:0 size:898
0:00:04.771962375 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:414:_memory_add: buffer 0xffffa40344d0, idx -1, mem 0x3d2276a0
0:00:04.772028875 8744 0x3d233140 LOG adapter gstadapter.c:634:gst_adapter_flush_unchecked:<GstAdapter at 0x3d20c120> flushing 898 bytes
0:00:04.772085125 8744 0x3d233140 LOG adapter gstadapter.c:656:gst_adapter_flush_unchecked:<GstAdapter at 0x3d20c120> flushing out head buffer
0:00:04.772123375 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:725:_gst_buffer_free: finalize 0xffffa4028130
0:00:04.772165875 8744 0x3d233140 DEBUG GST_MEMORY gstmemory.c:88:_gst_memory_free: free memory 0x3d0bef00
0:00:04.772227250 8744 0x3d233140 LOG adapter gstadapter.c:656:gst_adapter_flush_unchecked:<GstAdapter at 0x3d20c120> flushing out head buffer
0:00:04.772265500 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:725:_gst_buffer_free: finalize 0xffffa4017b70
0:00:04.772307000 8744 0x3d233140 DEBUG GST_MEMORY gstmemory.c:88:_gst_memory_free: free memory 0xffffa401b170
0:00:04.772366000 8744 0x3d233140 LOG adapter gstadapter.c:656:gst_adapter_flush_unchecked:<GstAdapter at 0x3d20c120> flushing out head buffer
0:00:04.772404250 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:725:_gst_buffer_free: finalize 0xffffa4017950
0:00:04.772445875 8744 0x3d233140 DEBUG GST_MEMORY gstmemory.c:88:_gst_memory_free: free memory 0xffffa4046000
0:00:04.772504375 8744 0x3d233140 LOG adapter gstadapter.c:656:gst_adapter_flush_unchecked:<GstAdapter at 0x3d20c120> flushing out head buffer
0:00:04.772542125 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:725:_gst_buffer_free: finalize 0xffffa4017a60
0:00:04.772583000 8744 0x3d233140 DEBUG GST_MEMORY gstmemory.c:88:_gst_memory_free: free memory 0xffffa40480c0
0:00:04.772641125 8744 0x3d233140 LOG adapter gstadapter.c:668:gst_adapter_flush_unchecked:<GstAdapter at 0x3d20c120> adapter empty now
0:00:04.772680625 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:515:gst_buffer_copy_into: copy 0xffffa40172f0 to 0xffffa40344d0, offset 0-896/896
0:00:04.772752500 8744 0x3d233140 LOG baseparse gstbaseparse.c:2637:gst_base_parse_finish_frame:<my_h264parse> finished frame at offset 17378, flushing size 896
0:00:04.772814500 8744 0x3d233140 LOG adapter gstadapter.c:634:gst_adapter_flush_unchecked:<GstAdapter at 0x3d20c000> flushing 896 bytes
0:00:04.772901500 8744 0x3d233140 LOG adapter gstadapter.c:656:gst_adapter_flush_unchecked:<GstAdapter at 0x3d20c000> flushing out head buffer
0:00:04.772940250 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:725:_gst_buffer_free: finalize 0xffffa40346f0
0:00:04.772997625 8744 0x3d233140 LOG adapter gstadapter.c:668:gst_adapter_flush_unchecked:<GstAdapter at 0x3d20c000> adapter empty now
0:00:04.773036250 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:725:_gst_buffer_free: finalize 0xffffa40172f0
0:00:04.773136375 8744 0x3d233140 DEBUG GST_MEMORY gstmemory.c:88:_gst_memory_free: free memory 0x3d227610
(free_data, 133)
0:00:04.773215625 8744 0x3d233140 DEBUG baseparse gstbaseparse.c:2333:gst_base_parse_handle_and_push_frame:<my_h264parse> no next fallback timestamp
0:00:04.773266625 8744 0x3d233140 LOG baseparse gstbaseparse.c:2392:gst_base_parse_push_frame:<my_h264parse> processing buffer of size 898 with dts 99:99:99.999999999, pts 0:00:07.000000000, duration 0:00:00.500000000
0:00:04.773372000 8744 0x3d233140 DEBUG GST_CAPS gstpad.c:2705:gst_pad_has_current_caps:<my_h264parse:src> check current pad caps video/x-h264, stream-format=(string)byte-stream, alignment=(string)au, framerate=(fraction)0/1, width=(int)176, height=(int)144, interlace-mode=(string)progressive, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8, parsed=(boolean)true, profile=(string)constrained-baseline, level=(string)1.2
0:00:04.773513500 8744 0x3d233140 LOG baseparse gstbaseparse.c:1851:gst_base_parse_update_bitrates:<my_h264parse> frame bitrate 14368, avg bitrate 20866
0:00:04.773574375 8744 0x3d233140 DEBUG h264parse gsth264parse.c:186:gst_h264_parse_reset_frame:<my_h264parse> reset frame
0:00:04.773623375 8744 0x3d233140 LOG baseparse gstbaseparse.c:900:gst_base_parse_queue_tag_event_update:<my_h264parse> upstream : (NULL)
0:00:04.773674250 8744 0x3d233140 LOG baseparse gstbaseparse.c:902:gst_base_parse_queue_tag_event_update:<my_h264parse> parser : taglist, video-codec=(string)"H.264\ \(Constrained\ Baseline\ Profile\)";
0:00:04.773746250 8744 0x3d233140 LOG baseparse gstbaseparse.c:903:gst_base_parse_queue_tag_event_update:<my_h264parse> mode : 2
0:00:04.773816125 8744 0x3d233140 DEBUG baseparse gstbaseparse.c:909:gst_base_parse_queue_tag_event_update:<my_h264parse> merged : taglist, video-codec=(string)"H.264\ \(Constrained\ Baseline\ Profile\)";
0:00:04.773883375 8744 0x3d233140 LOG baseparse gstbaseparse.c:923:gst_base_parse_queue_tag_event_update:<my_h264parse> adding min bitrate 14064
0:00:04.773947375 8744 0x3d233140 LOG baseparse gstbaseparse.c:928:gst_base_parse_queue_tag_event_update:<my_h264parse> adding max bitrate 22352
0:00:04.774006125 8744 0x3d233140 LOG baseparse gstbaseparse.c:934:gst_base_parse_queue_tag_event_update:<my_h264parse> adding avg bitrate 20866
0:00:04.774069250 8744 0x3d233140 DEBUG GST_EVENT gstevent.c:306:gst_event_new_custom: creating new event 0xffffa4007ec0 tag 20510
0:00:04.774143875 8744 0x3d233140 LOG GST_PADS gstpad.c:5176:store_sticky_event:<my_h264parse:src> stored sticky event tag
0:00:04.774200125 8744 0x3d233140 DEBUG GST_PADS gstpad.c:3937:check_sticky:<my_h264parse:src> pushing all sticky events
0:00:04.774250250 8744 0x3d233140 DEBUG GST_PADS gstpad.c:3867:push_sticky:<my_h264parse:src> event stream-start was already received
0:00:04.774304625 8744 0x3d233140 DEBUG GST_PADS gstpad.c:3867:push_sticky:<my_h264parse:src> event caps was already received
0:00:04.774359875 8744 0x3d233140 DEBUG GST_PADS gstpad.c:3867:push_sticky:<my_h264parse:src> event segment was already received
0:00:04.774468000 8744 0x3d233140 LOG GST_PADS gstpad.c:5351:gst_pad_push_event_unchecked:<my_h264parse:src> sending event 0xffffa4007ec0 (tag) to peerpad <my_vdec:sink>
0:00:04.774545125 8744 0x3d233140 DEBUG GST_EVENT gstpad.c:5638:gst_pad_send_event_unchecked:<my_vdec:sink> have event type tag event: 0xffffa4007ec0, time 99:99:99.999999999, seq-num 70, GstTagList-stream, taglist=(taglist)"taglist\,\ video-codec\=\(string\)\"H.264\\\ \\\(Constrained\\\ Baseline\\\ Profile\\\)\"\,\ minimum-bitrate\=\(uint\)14064\,\ maximum-bitrate\=\(uint\)22352\,\ bitrate\=\(uint\)20866\;";
0:00:04.774713125 8744 0x3d233140 DEBUG videodecoder gstvideodecoder.c:1393:gst_video_decoder_sink_event:<my_vdec> received event 20510, tag
0:00:05.252967875 8744 0x3d233770 DEBUG GST_CLOCK gstsystemclock.c:746:gst_system_clock_id_wait_jitter_unlocked: entry 0xffffa4008580 unlocked, status 3, ret 0
0:00:05.253158625 8744 0x3d233770 DEBUG GST_CLOCK gstsystemclock.c:770:gst_system_clock_id_wait_jitter_unlocked: entry 0xffffa4008580 unlocked after timeout
0:00:05.253243000 8744 0x3d233770 DEBUG GST_CLOCK gstclock.c:1046:gst_clock_get_internal_time:<GstSystemClock> internal time 0:15:49.600170250
0:00:05.253315375 8744 0x3d233770 DEBUG GST_CLOCK gstclock.c:1091:gst_clock_get_time:<GstSystemClock> adjusted time 0:15:49.600170250
0:00:05.253371625 8744 0x3d233770 DEBUG GST_CLOCK gstsystemclock.c:792:gst_system_clock_id_wait_jitter_unlocked: entry 0xffffa4008580 finished, diff -1139875
0:00:05.253431500 8744 0x3d233770 DEBUG GST_CLOCK gstclock.c:547:gst_clock_id_wait:<GstSystemClock> done waiting entry 0xffffa4008580, res: 0 (ok)
0:00:05.253501875 8744 0x3d233770 DEBUG basesink gstbasesink.c:2610:gst_base_sink_do_sync:<my_sink> clock returned 0, jitter -0:00:00.485483250
0:00:05.253573875 8744 0x3d233770 DEBUG basesink gstbasesink.c:2921:gst_base_sink_is_too_late:<my_sink> object was scheduled in time
0:00:05.253623625 8744 0x3d233770 DEBUG basesink gstbasesink.c:3538:gst_base_sink_chain_unlocked:<my_sink> rendering object 0xffffa4028df0
0:00:05.253677750 8744 0x3d233770 DEBUG basesink gstbasesink.c:994:gst_base_sink_set_last_buffer_unlocked:<my_sink> setting last buffer to 0xffffa4028df0
0:00:05.253740125 8744 0x3d233770 LOG videosink gstvideosink.c:228:gst_video_sink_show_frame:<my_sink> rendering frame, ts=0:00:04.500000000
0:00:05.253808125 8744 0x3d233770 LOG waylandsink gstwaylandsink.c:863:gst_wayland_sink_show_frame:<my_sink> render buffer 0xffffa4028df0
0:00:05.253878375 8744 0x3d233770 LOG waylandsink gstwaylandsink.c:917:gst_wayland_sink_show_frame:<my_sink> buffer 0xffffa4028df0 does not have a wl_buffer from our display, creating it
0:00:05.253963250 8744 0x3d233770 DEBUG waylandsink wllinuxdmabuf.c:108:gst_wl_linux_dmabuf_construct_wl_buffer:<GstWlDisplay at 0x3d1da380> Creating wl_buffer from DMABuf of size 98304 (176 x 144), format NV12 modifier 0x0800000000000001
0:00:05.254647750 8744 0x3d1e1590 DEBUG GST_POLL gstpoll.c:1369:gst_poll_wait: 0x3d21fe80: timeout :99:99:99.999999999
0:00:05.254662875 8744 0x3d233770 DEBUG waylandsink wllinuxdmabuf.c:175:gst_wl_linux_dmabuf_construct_wl_buffer:<dmabufallocator2> created linux_dmabuf wl_buffer (0xffff9c02d0a0):176x144, fmt=NV12, 2 planes
0:00:05.254862250 8744 0x3d233770 DEBUG GST_QOS gstbasesink.c:2751:gst_base_sink_perform_qos:<my_sink> start: 0:00:04.500000000, stop 0:00:05.000000000, entered 0:00:04.014516750, left 0:00:04.500000000, pt: 0:00:00.014516750, duration 0:00:00.500000000,jitter -485483250
0:00:05.254993250 8744 0x3d233770 DEBUG GST_QOS gstbasesink.c:2755:gst_base_sink_perform_qos:<my_sink> avg_pt: 0:00:00.012742214, avg_rate: 0.0253855
0:00:05.255086750 8744 0x3d233770 DEBUG GST_QOS gstbasesink.c:2785:gst_base_sink_perform_qos:<my_sink> updated: avg_pt: 0:00:00.012964031, avg_rate: 0.0254194
0:00:05.255224375 8744 0x3d1e1590 LOG waylandsink wlbuffer.c:137:buffer_release:<GstWlBuffer at 0xffff9c00b9c0> wl_buffer::release (GstBuffer: 0xffffa4028ce0)
0:00:05.255237500 8744 0x3d233770 DEBUG GST_QOS gstbasesink.c:2679:gst_base_sink_send_qos:<my_sink> qos: type 0, proportion: 0.025419, diff -485483250, timestamp 0:00:04.500000000
0:00:05.255282125 8744 0x3d1e1590 LOG GST_BUFFER gstbuffer.c:710:_gst_buffer_dispose: release 0xffffa4028ce0 to pool 0xffffa4012e90
0:00:05.255311875 8744 0x3d233770 LOG GST_EVENT gstevent.c:1146:gst_event_new_qos: creating qos type 0, proportion 0.025419, diff -485483250, timestamp 0:00:04.500000000
0:00:05.255339375 8744 0x3d1e1590 DEBUG GST_BUFFER gstbuffer.c:2383:gst_buffer_foreach_meta: remove metadata 0xffff9c002538 (GstDmabufMeta)
0:00:05.255420625 8744 0x3d233770 DEBUG GST_EVENT gstevent.c:306:gst_event_new_custom: creating new event 0xffff9c00e9c0 qos 48641
0:00:05.255449250 8744 0x3d1e1590 DEBUG v4l2bufferpool gstv4l2bufferpool.c:1420:gst_v4l2_buffer_pool_release_buffer:<my_vdec:pool:src> release buffer 0xffffa4028ce0
0:00:05.255534125 8744 0x3d1e1590 LOG v4l2bufferpool gstv4l2bufferpool.c:1059:gst_v4l2_buffer_pool_qbuf:<my_vdec:pool:src> queuing buffer 8
0:00:05.255555375 8744 0x3d233770 LOG GST_PADS gstpad.c:5351:gst_pad_push_event_unchecked:<my_sink:sink> sending event 0xffff9c00e9c0 (qos) to peerpad <my_vdec:src>
0:00:05.255635875 8744 0x3d1e1590 LOG v4l2allocator gstv4l2allocator.c:1265:gst_v4l2_allocator_qbuf:<my_vdec:pool:src:allocator> queued buffer 8 (flags 0x4003)
0:00:05.255696875 8744 0x3d1e1590 DEBUG GST_POLL gstpoll.c:1369:gst_poll_wait: 0x3d21fe80: timeout :99:99:99.999999999
0:00:05.255640375 8744 0x3d233770 DEBUG GST_EVENT gstpad.c:5638:gst_pad_send_event_unchecked:<my_vdec:src> have event type qos event: 0xffff9c00e9c0, time 99:99:99.999999999, seq-num 71, GstEventQOS, type=(GstQOSType)GST_QOS_TYPE_OVERFLOW, proportion=(double)0.02541942658819427, diff=(gint64)-485483250, timestamp=(guint64)4500000000;
0:00:05.255852750 8744 0x3d233770 DEBUG videodecoder gstvideodecoder.c:1584:gst_video_decoder_src_event:<my_vdec> received event 48641, qos
0:00:05.255913625 8744 0x3d233770 DEBUG videodecoder gstvideodecoder.c:1485:gst_video_decoder_src_event_default:<my_vdec> received event 48641, qos
0:00:05.255979750 8744 0x3d233770 DEBUG videodecoder gstvideodecoder.c:1556:gst_video_decoder_src_event_default:<my_vdec> got QoS 0:00:04.500000000, -0:00:00.485483250, 0.0254194
0:00:05.256075500 8744 0x3d233770 LOG GST_PADS gstpad.c:5351:gst_pad_push_event_unchecked:<my_vdec:sink> sending event 0xffff9c00e9c0 (qos) to peerpad <my_h264parse:src>
0:00:05.256154375 8744 0x3d233770 DEBUG GST_EVENT gstpad.c:5638:gst_pad_send_event_unchecked:<my_h264parse:src> have event type qos event: 0xffff9c00e9c0, time 99:99:99.999999999, seq-num 71, GstEventQOS, type=(GstQOSType)GST_QOS_TYPE_OVERFLOW, proportion=(double)0.02541942658819427, diff=(gint64)-485483250, timestamp=(guint64)4500000000;
0:00:05.256307875 8744 0x3d233770 DEBUG baseparse gstbaseparse.c:1602:gst_base_parse_src_event:<my_h264parse> event 48641, qos
0:00:05.256372875 8744 0x3d233770 LOG GST_PADS gstpad.c:3087:gst_pad_event_default:<my_h264parse:src> default event handler for event qos event: 0xffff9c00e9c0, time 99:99:99.999999999, seq-num 71, GstEventQOS, type=(GstQOSType)GST_QOS_TYPE_OVERFLOW, proportion=(double)0.02541942658819427, diff=(gint64)-485483250, timestamp=(guint64)4500000000;
0:00:05.256527500 8744 0x3d233770 DEBUG GST_PADS gstpad.c:2897:gst_pad_iterate_internal_links_default:<my_h264parse:src> Making iterator
0:00:05.256593625 8744 0x3d233770 LOG GST_PADS gstpad.c:3007:gst_pad_forward:<my_h264parse:src> calling forward function on pad my_h264parse:sink
0:00:05.256691125 8744 0x3d233770 LOG GST_PADS gstpad.c:3052:event_forward_func:<my_h264parse:sink> Reffing and pushing event 0xffff9c00e9c0 (qos) to my_h264parse:sink
0:00:05.256762875 8744 0x3d233770 LOG GST_PADS gstpad.c:5351:gst_pad_push_event_unchecked:<my_h264parse:sink> sending event 0xffff9c00e9c0 (qos) to peerpad <my_appsrc:src>
0:00:05.256837750 8744 0x3d233770 DEBUG GST_EVENT gstpad.c:5638:gst_pad_send_event_unchecked:<my_appsrc:src> have event type qos event: 0xffff9c00e9c0, time 99:99:99.999999999, seq-num 71, GstEventQOS, type=(GstQOSType)GST_QOS_TYPE_OVERFLOW, proportion=(double)0.02541942658819427, diff=(gint64)-485483250, timestamp=(guint64)4500000000;
0:00:05.256994500 8744 0x3d233770 DEBUG basesrc gstbasesrc.c:2027:gst_base_src_default_event:<my_appsrc> handle event qos event: 0xffff9c00e9c0, time 99:99:99.999999999, seq-num 71, GstEventQOS, type=(GstQOSType)GST_QOS_TYPE_OVERFLOW, proportion=(double)0.02541942658819427, diff=(gint64)-485483250, timestamp=(guint64)4500000000;
0:00:05.257360625 8744 0x3d233770 DEBUG GST_QOS gstbasesrc.c:2013:gst_base_src_update_qos:<my_appsrc> qos: proportion: 0.025419, diff -485483250, timestamp 0:00:04.500000000
0:00:05.257449000 8744 0x3d233770 DEBUG GST_PADS gstpad.c:5712:gst_pad_send_event_unchecked:<my_appsrc:src> sent event, ret ok
0:00:05.257506625 8744 0x3d233770 LOG GST_PADS gstpad.c:5359:gst_pad_push_event_unchecked:<my_h264parse:sink> sent event 0xffff9c00e9c0 (qos) to peerpad <my_appsrc:src>, ret ok
0:00:05.257583625 8744 0x3d233770 LOG GST_EVENT gstevent.c:223:_gst_event_free: freeing event 0xffff9c00e9c0 type qos
0:00:05.257653625 8744 0x3d233770 DEBUG GST_PADS gstpad.c:5712:gst_pad_send_event_unchecked:<my_h264parse:src> sent event, ret ok
0:00:05.257709250 8744 0x3d233770 LOG GST_PADS gstpad.c:5359:gst_pad_push_event_unchecked:<my_vdec:sink> sent event 0xffff9c00e9c0 (qos) to peerpad <my_h264parse:src>, ret ok
0:00:05.257789625 8744 0x3d233770 DEBUG GST_PADS gstpad.c:5712:gst_pad_send_event_unchecked:<my_vdec:src> sent event, ret ok
0:00:05.257845000 8744 0x3d233770 LOG GST_PADS gstpad.c:5359:gst_pad_push_event_unchecked:<my_sink:sink> sent event 0xffff9c00e9c0 (qos) to peerpad <my_vdec:src>, ret ok
0:00:05.257920125 8744 0x3d233770 DEBUG basesink gstbasesink.c:3577:gst_base_sink_chain_unlocked:<my_sink> object unref after render 0xffffa4028df0
0:00:05.257979875 8744 0x3d233770 DEBUG GST_SCHEDULING gstpad.c:4283:gst_pad_chain_data_unchecked:<my_sink:sink> called chainfunction &gst_base_sink_chain with buffer 0xffffa4028df0, returned ok
0:00:05.258074000 8744 0x3d233770 LOG v4l2videodec gstv4l2videodec.c:605:gst_v4l2_video_dec_loop:<my_vdec> Allocate output buffer
0:00:05.258130250 8744 0x3d233770 DEBUG v4l2bufferpool gstv4l2bufferpool.c:1342:gst_v4l2_buffer_pool_acquire_buffer:<my_vdec:pool:src> acquire
0:00:05.258098125 8744 0x3d233140 INFO videodecoder gstvideodecoder.c:1339:gst_video_decoder_sink_event_default:<my_vdec> upstream tags: taglist, video-codec=(string)"H.264\ \(Constrained\ Baseline\ Profile\)", minimum-bitrate=(uint)14064, maximum-bitrate=(uint)22352, bitrate=(uint)20866;
0:00:05.258180000 8744 0x3d233770 LOG v4l2bufferpool gstv4l2bufferpool.c:999:gst_v4l2_buffer_pool_poll:<my_vdec:pool:src> polling device
0:00:05.258276125 8744 0x3d233770 DEBUG GST_POLL gstpoll.c:1369:gst_poll_wait: 0xffff9c007400: timeout :99:99:99.999999999
0:00:05.258251500 8744 0x3d233140 LOG videodecoder gstvideodecoder.c:805:gst_video_decoder_create_merged_tags_event:<my_vdec> upstream : taglist, video-codec=(string)"H.264\ \(Constrained\ Baseline\ Profile\)", minimum-bitrate=(uint)14064, maximum-bitrate=(uint)22352, bitrate=(uint)20866;
0:00:05.258438375 8744 0x3d233140 LOG videodecoder gstvideodecoder.c:806:gst_video_decoder_create_merged_tags_event:<my_vdec> decoder : (NULL)
0:00:05.258492125 8744 0x3d233140 LOG videodecoder gstvideodecoder.c:807:gst_video_decoder_create_merged_tags_event:<my_vdec> mode : 3
0:00:05.258563375 8744 0x3d233140 DEBUG videodecoder gstvideodecoder.c:813:gst_video_decoder_create_merged_tags_event:<my_vdec> merged : taglist, video-codec=(string)"H.264\ \(Constrained\ Baseline\ Profile\)", minimum-bitrate=(uint)14064, maximum-bitrate=(uint)22352, bitrate=(uint)20866;
0:00:05.258674750 8744 0x3d233140 DEBUG GST_EVENT gstevent.c:306:gst_event_new_custom: creating new event 0xffffa4008430 tag 20510
0:00:05.258751250 8744 0x3d233140 DEBUG GST_PADS gstpad.c:5712:gst_pad_send_event_unchecked:<my_vdec:sink> sent event, ret ok
0:00:05.258802750 8744 0x3d233140 LOG GST_EVENT gstevent.c:223:_gst_event_free: freeing event 0xffffa4007d00 type tag
0:00:05.258873625 8744 0x3d233140 LOG GST_PADS gstpad.c:5176:store_sticky_event:<my_vdec:sink> stored sticky event tag
0:00:05.258931125 8744 0x3d233140 LOG GST_PADS gstpad.c:5359:gst_pad_push_event_unchecked:<my_h264parse:src> sent event 0xffffa4007ec0 (tag) to peerpad <my_vdec:sink>, ret ok
0:00:05.259012625 8744 0x3d233140 DEBUG GST_PADS gstpad.c:3889:push_sticky:<my_h264parse:src> event tag marked received
0:00:05.259073750 8744 0x3d233140 LOG baseparse gstbaseparse.c:2535:gst_base_parse_push_frame:<my_h264parse> pushing frame (898 bytes) now..
0:00:05.259139750 8744 0x3d233140 DEBUG GST_SCHEDULING gstpad.c:4277:gst_pad_chain_data_unchecked:<my_vdec:sink> calling chainfunction &gst_video_decoder_chain with buffer buffer: 0xffffa40344d0, pts 0:00:07.000000000, dts 99:99:99.999999999, dur 0:00:00.500000000, size 898, offset 17378, offset_end none, flags 0x2400
0:00:05.259273500 8744 0x3d233140 LOG videodecoder gstvideodecoder.c:2438:gst_video_decoder_chain:<my_vdec> chain PTS 0:00:07.000000000, DTS 99:99:99.999999999 duration 0:00:00.500000000 size 898 flags 2400
0:00:05.259373250 8744 0x3d233140 LOG videodecoder gstvideodecoder.c:2595:gst_video_decoder_new_frame:<my_vdec> Created new frame 0xffffa4028350 (sfn:14)
0:00:05.259433625 8744 0x3d233140 LOG videodecoder gstvideodecoder.c:3410:gst_video_decoder_decode_frame:<my_vdec> PTS 0:00:07.000000000, DTS 99:99:99.999999999, dist 14
0:00:05.259522125 8744 0x3d233140 DEBUG v4l2videodec gstv4l2videodec.c:704:gst_v4l2_video_dec_handle_frame:<my_vdec> Handling frame 14
0:00:05.259582375 8744 0x3d233140 DEBUG v4l2bufferpool gstv4l2bufferpool.c:1745:gst_v4l2_buffer_pool_process:<my_vdec:pool:sink> process buffer 0xffffa4028388
0:00:05.259633750 8744 0x3d233140 LOG v4l2bufferpool gstv4l2bufferpool.c:1923:gst_v4l2_buffer_pool_process:<my_vdec:pool:sink> alloc buffer from our pool
0:00:05.259681000 8744 0x3d233140 DEBUG v4l2bufferpool gstv4l2bufferpool.c:1342:gst_v4l2_buffer_pool_acquire_buffer:<my_vdec:pool:sink> acquire
0:00:05.259731125 8744 0x3d233140 LOG bufferpool gstbufferpool.c:1128:default_acquire_buffer:<my_vdec:pool:sink> acquired buffer 0xffffa40170d0
0:00:05.259784250 8744 0x3d233140 LOG v4l2bufferpool gstv4l2bufferpool.c:116:gst_v4l2_buffer_pool_copy_buffer:<my_vdec:pool:sink> copying buffer
0:00:05.259831125 8744 0x3d233140 DEBUG v4l2bufferpool gstv4l2bufferpool.c:141:gst_v4l2_buffer_pool_copy_buffer:<my_vdec:pool:sink> copy raw bytes
0:00:05.259869875 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1721:gst_buffer_map_range: buffer 0xffffa40344d0, idx 0, length -1, flags 0001
0:00:05.259927875 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:213:_get_merged_memory: buffer 0xffffa40344d0, idx 0, length 1
0:00:05.260015625 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1826:gst_buffer_fill: buffer 0xffffa40170d0, offset 0, size 898
0:00:05.260078750 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1582:gst_buffer_resize_range: trim 0xffffa40170d0 0-898 size:6291456 offs:0 max:6291456
0:00:05.260144000 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:515:gst_buffer_copy_into: copy 0xffffa40344d0 to 0xffffa40170d0, offset 0-898/898
0:00:05.260214500 8744 0x3d233140 LOG GST_PERFORMANCE gstv4l2bufferpool.c:155:gst_v4l2_buffer_pool_copy_buffer:<my_vdec:pool:sink> slow copy into buffer 0xffffa40170d0
0:00:05.260271000 8744 0x3d233140 LOG v4l2bufferpool gstv4l2bufferpool.c:1059:gst_v4l2_buffer_pool_qbuf:<my_vdec:pool:sink> queuing buffer 0
0:00:05.260385000 8744 0x3d233140 LOG v4l2allocator gstv4l2allocator.c:1265:gst_v4l2_allocator_qbuf:<my_vdec:pool:sink:allocator> queued buffer 0 (flags 0x4003)
0:00:05.260437875 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:710:_gst_buffer_dispose: release 0xffffa40170d0 to pool 0xffffa4012410
0:00:05.260495250 8744 0x3d233140 DEBUG v4l2bufferpool gstv4l2bufferpool.c:1420:gst_v4l2_buffer_pool_release_buffer:<my_vdec:pool:sink> release buffer 0xffffa40170d0
0:00:05.260548000 8744 0x3d233140 LOG v4l2bufferpool gstv4l2bufferpool.c:1503:gst_v4l2_buffer_pool_release_buffer:<my_vdec:pool:sink> buffer 0 is queued
0:00:05.260601625 8744 0x3d233140 LOG v4l2bufferpool gstv4l2bufferpool.c:999:gst_v4l2_buffer_pool_poll:<my_vdec:pool:sink> polling device
0:00:05.260639625 8744 0x3d233140 DEBUG GST_POLL gstpoll.c:1369:gst_poll_wait: 0xffffa4005cf0: timeout :99:99:99.999999999
0:00:05.260714375 8744 0x3d233140 DEBUG GST_POLL gstpoll.c:1188:gst_poll_fd_has_error: 0xffffa4005cf0: fd (fd:18, idx:1) 0
0:00:05.260771875 8744 0x3d233140 DEBUG GST_POLL gstpoll.c:1265:gst_poll_fd_can_read_pri_unlocked: 0xffffa4005cf0: fd (fd:18, idx:1) 0
0:00:05.260792625 8744 0x3d233770 DEBUG GST_POLL gstpoll.c:1188:gst_poll_fd_has_error: 0xffff9c007400: fd (fd:23, idx:1) 0
0:00:05.260836125 8744 0x3d233140 LOG v4l2bufferpool gstv4l2bufferpool.c:1322:gst_v4l2_buffer_pool_dequeue:<my_vdec:pool:sink> dequeueing a buffer
0:00:05.260855500 8744 0x3d233770 DEBUG GST_POLL gstpoll.c:1265:gst_poll_fd_can_read_pri_unlocked: 0xffff9c007400: fd (fd:23, idx:1) 0
0:00:05.260900750 8744 0x3d233140 LOG v4l2allocator gstv4l2allocator.c:1312:gst_v4l2_allocator_dqbuf:<my_vdec:pool:sink:allocator> dequeued buffer 1 (flags 0x4001)
0:00:05.260922500 8744 0x3d233770 LOG v4l2bufferpool gstv4l2bufferpool.c:1322:gst_v4l2_buffer_pool_dequeue:<my_vdec:pool:src> dequeueing a buffer
0:00:05.260976750 8744 0x3d233140 LOG v4l2bufferpool gstv4l2bufferpool.c:1194:gst_v4l2_buffer_pool_dqbuf:<my_vdec:pool:sink> dequeued buffer 0xffffa4017840 seq:0 (ix=1), mem 0xffffa4018280 used 879, plane=0, flags 00004001, ts 0:00:06.500000000, pool-queued=1, buffer=0xffffa4017840
0:00:05.261019250 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:1312:gst_v4l2_allocator_dqbuf:<my_vdec:pool:src:allocator> dequeued buffer 10 (flags 0x4001)
0:00:05.261148000 8744 0x3d233140 DEBUG v4l2bufferpool gstv4l2bufferpool.c:1420:gst_v4l2_buffer_pool_release_buffer:<my_vdec:pool:sink> release buffer 0xffffa4017840
0:00:05.261220500 8744 0x3d233140 LOG v4l2bufferpool gstv4l2bufferpool.c:1488:gst_v4l2_buffer_pool_release_buffer:<my_vdec:pool:sink> buffer 1 not queued, putting on free list
0:00:05.261239500 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:1341:gst_v4l2_allocator_dqbuf:<my_vdec:pool:src:allocator> Dequeued capture buffer, length: 65536 bytesused: 65536 data_offset: 0
0:00:05.261278375 8744 0x3d233140 LOG bufferpool gstbufferpool.c:1284:default_release_buffer:<my_vdec:pool:sink> released buffer 0xffffa4017840 0
0:00:05.261308250 8744 0x3d233770 LOG v4l2allocator gstv4l2allocator.c:1341:gst_v4l2_allocator_dqbuf:<my_vdec:pool:src:allocator> Dequeued capture buffer, length: 32768 bytesused: 32768 data_offset: 0
0:00:05.261371875 8744 0x3d233140 DEBUG GST_BUFFER gstbuffer.c:1375:gst_buffer_is_memory_range_writable: idx 0, length -1
0:00:05.261463875 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:799:gst_buffer_new: new 0xffffa4017400
0:00:05.261440000 8744 0x3d233770 LOG v4l2bufferpool gstv4l2bufferpool.c:1194:gst_v4l2_buffer_pool_dqbuf:<my_vdec:pool:src> dequeued buffer 0xffff9c01f020 seq:0 (ix=10), mem 0xffff9c0203c0 used 65536, plane=0, flags 00004001, ts 0:00:00.000000000, pool-queued=20, buffer=0xffff9c01f020
0:00:05.261520500 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:515:gst_buffer_copy_into: copy 0xffffa40344d0 to 0xffffa4017400, offset 0-0/898
0:00:05.261583250 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:725:_gst_buffer_free: finalize 0xffffa40344d0
0:00:05.261565750 8744 0x3d233770 LOG v4l2bufferpool gstv4l2bufferpool.c:1194:gst_v4l2_buffer_pool_dqbuf:<my_vdec:pool:src> dequeued buffer 0xffff9c01f020 seq:0 (ix=10), mem 0xffff9c0204e0 used 32768, plane=1, flags 00004001, ts 0:00:00.000000000, pool-queued=20, buffer=0xffff9c01f020
0:00:05.261626250 8744 0x3d233140 DEBUG GST_MEMORY gstmemory.c:88:_gst_memory_free: free memory 0x3d2276a0
0:00:05.261680875 8744 0x3d233770 LOG v4l2videodec gstv4l2videodec.c:629:gst_v4l2_video_dec_loop:<my_vdec> Process output buffer
0:00:05.261741375 8744 0x3d233770 DEBUG v4l2bufferpool gstv4l2bufferpool.c:1745:gst_v4l2_buffer_pool_process:<my_vdec:pool:src> process buffer 0xffffb1d697e8
0:00:05.261773625 8744 0x3d233140 DEBUG GST_SCHEDULING gstpad.c:4283:gst_pad_chain_data_unchecked:<my_vdec:sink> called chainfunction &gst_video_decoder_chain with buffer 0xffffa40344d0, returned ok
0:00:05.261806875 8744 0x3d233770 LOG v4l2videodec gstv4l2videodec.c:460:gst_v4l2_video_dec_get_oldest_frame:<my_vdec> Oldest frame is 10 0:00:05.000000000 and 4 frames left
0:00:05.261841375 8744 0x3d233140 LOG baseparse gstbaseparse.c:2537:gst_base_parse_push_frame:<my_h264parse> frame pushed, flow ok
0:00:05.261890125 8744 0x3d233770 DEBUG GST_BUFFER gstbuffer.c:2201:gst_buffer_add_meta: alloc metadata 0xffff9c02dc98 (GstDmabufMeta) of size 24
0:00:05.261929250 8744 0x3d233140 LOG baseparse gstbaseparse.c:2166:gst_base_parse_handle_buffer:<my_h264parse> handle_frame skipped 0, flushed 896
0:00:05.261954625 8744 0x3d233770 DEBUG v4l2videodec gstv4l2videodec.c:647:gst_v4l2_video_dec_loop:<my_vdec> add drm modifier: 576460752303423489
0:00:05.261992750 8744 0x3d233140 DEBUG baseparse gstbaseparse.c:3215:gst_base_parse_chain:<my_h264parse> not enough data available (only 0 bytes)
0:00:05.262009875 8744 0x3d233770 LOG videodecoder gstvideodecoder.c:2985:gst_video_decoder_finish_frame:<my_vdec> finish frame 0xffffa4028240
0:00:05.262080875 8744 0x3d233770 LOG videodecoder gstvideodecoder.c:2625:gst_video_decoder_prepare_finish_frame:<my_vdec> n 5 in 0 out 0
0:00:05.262094000 8744 0x3d233140 LOG baseparse gstbaseparse.c:3277:gst_base_parse_chain:<my_h264parse> chain leaving
0:00:05.262153500 8744 0x3d233770 LOG videodecoder gstvideodecoder.c:2634:gst_video_decoder_prepare_finish_frame:<my_vdec> finish frame 0xffffa4028240 (#10) sync:0 PTS:0:00:05.000000000 DTS:99:99:99.999999999
0:00:05.262196875 8744 0x3d233140 DEBUG GST_SCHEDULING gstpad.c:4283:gst_pad_chain_data_unchecked:<my_h264parse:sink> called chainfunction &gst_base_parse_chain with buffer 0xffffa40346f0, returned ok
0:00:05.262240125 8744 0x3d233770 LOG videodecoder gstvideodecoder.c:2607:gst_video_decoder_push_event_list:<my_vdec> pushing tag event
0:00:05.262272375 8744 0x3d233140 LOG basesrc gstbasesrc.c:2828:gst_base_src_loop:<my_appsrc> next_ts 0:00:00.000018274 size 4096
0:00:05.262291875 8744 0x3d233770 DEBUG videodecoder gstvideodecoder.c:857:gst_video_decoder_push_event:<my_vdec> pushing event tag
0:00:05.262387250 8744 0x3d233140 DEBUG basesrc gstbasesrc.c:2399:gst_base_src_update_length:<my_appsrc> reading offset 18274, length 4096, size -1, segment.stop -1, maxsize -1
0:00:05.262434125 8744 0x3d233770 LOG GST_PADS gstpad.c:5176:store_sticky_event:<my_vdec:src> stored sticky event tag
0:00:05.262461125 8744 0x3d233140 DEBUG basesrc gstbasesrc.c:2506:gst_base_src_get_range:<my_appsrc> calling create offset 18274 length 4096, time 0
0:00:05.262493000 8744 0x3d233770 DEBUG GST_PADS gstpad.c:3937:check_sticky:<my_vdec:src> pushing all sticky events
0:00:05.262559750 8744 0x3d233770 DEBUG GST_PADS gstpad.c:3867:push_sticky:<my_vdec:src> event stream-start was already received
(get_data, 99)
(get_data, 108)read_ret: 8, target frame num: 15, read frame num: 15
0:00:05.262628750 8744 0x3d233770 DEBUG GST_PADS gstpad.c:3867:push_sticky:<my_vdec:src> event caps was already received
0:00:05.262718250 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:799:gst_buffer_new: new 0xffffa40172f0
0:00:05.262776875 8744 0x3d233770 DEBUG GST_PADS gstpad.c:3867:push_sticky:<my_vdec:src> event segment was already received
0:00:05.262796625 8744 0x3d233140 DEBUG GST_MEMORY gstmemory.c:139:gst_memory_init: new memory 0x3d227730, maxsize:856 offset:0 size:856
0:00:05.262837000 8744 0x3d233770 LOG GST_PADS gstpad.c:5351:gst_pad_push_event_unchecked:<my_vdec:src> sending event 0xffffa4007f30 (tag) to peerpad <my_sink:sink>
0:00:05.262856625 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:414:_memory_add: buffer 0xffffa40172f0, idx -1, mem 0x3d227730
0:00:05.262986125 8744 0x3d233140 DEBUG appsrc gstappsrc.c:1863:gst_app_src_push_internal:<my_appsrc> queueing buffer 0xffffa40172f0
0:00:05.262924125 8744 0x3d233770 DEBUG GST_EVENT gstpad.c:5638:gst_pad_send_event_unchecked:<my_sink:sink> have event type tag event: 0xffffa4007f30, time 99:99:99.999999999, seq-num 59, GstTagList-stream, taglist=(taglist)"taglist\,\ video-codec\=\(string\)\"H.264\\\ \\\(Constrained\\\ Baseline\\\ Profile\\\)\"\,\ minimum-bitrate\=\(uint\)14080\,\ maximum-bitrate\=\(uint\)22352\,\ bitrate\=\(uint\)23254\;";
0:00:05.263058875 8744 0x3d233140 LOG appsrc gstappsrc.c:1221:gst_app_src_create:<my_appsrc> have buffer 0xffffa40172f0 of size 856
0:00:05.263124375 8744 0x3d233140 DEBUG basesrc gstbasesrc.c:2360:gst_base_src_do_sync:<my_appsrc> no sync needed
0:00:05.263171875 8744 0x3d233140 DEBUG basesrc gstbasesrc.c:2597:gst_base_src_get_range:<my_appsrc> buffer ok
0:00:05.263084750 8744 0x3d233770 DEBUG basesink gstbasesink.c:3252:gst_base_sink_event:<my_sink> received event 0xffffa4007f30 tag event: 0xffffa4007f30, time 99:99:99.999999999, seq-num 59, GstTagList-stream, taglist=(taglist)"taglist\,\ video-codec\=\(string\)\"H.264\\\ \\\(Constrained\\\ Baseline\\\ Profile\\\)\"\,\ minimum-bitrate\=\(uint\)14080\,\ maximum-bitrate\=\(uint\)22352\,\ bitrate\=\(uint\)23254\;";
0:00:05.263280250 8744 0x3d233770 LOG GST_MESSAGE gstmessage.c:301:gst_message_new_custom: source my_sink: creating new message 0xffff9c003500 tag
0:00:05.263244750 8744 0x3d233140 DEBUG GST_SCHEDULING gstpad.c:4277:gst_pad_chain_data_unchecked:<my_h264parse:sink> calling chainfunction &gst_base_parse_chain with buffer buffer: 0xffffa40172f0, pts 0:00:07.500000000, dts 99:99:99.999999999, dur 0:00:00.500000000, size 856, offset none, offset_end none, flags 0x0
0:00:05.263370375 8744 0x3d233140 DEBUG baseparse gstbaseparse.c:3030:gst_base_parse_chain:<my_h264parse> chain
0:00:05.263355250 8744 0x3d233770 DEBUG GST_BUS gstbus.c:318:gst_bus_post:<bus0> [msg 0xffff9c003500] posting on bus tag message: 0xffff9c003500, time 99:99:99.999999999, seq-num 73, element 'my_sink', GstMessageTag, taglist=(taglist)"taglist\,\ video-codec\=\(string\)\"H.264\\\ \\\(Constrained\\\ Baseline\\\ Profile\\\)\"\,\ minimum-bitrate\=\(uint\)14080\,\ maximum-bitrate\=\(uint\)22352\,\ bitrate\=\(uint\)23254\;";
0:00:05.263451750 8744 0x3d233140 LOG baseparse gstbaseparse.c:3150:gst_base_parse_chain:<my_h264parse> buffer size: 856, offset = -1, dts 99:99:99.999999999, pts 0:00:07.500000000
0:00:05.263517000 8744 0x3d233770 DEBUG bin gstbin.c:3715:gst_bin_handle_message_func:<my_pipeline> [msg 0xffff9c003500] handling child my_sink message of type tag
0:00:05.263549375 8744 0x3d233140 LOG adapter gstadapter.c:389:gst_adapter_push:<GstAdapter at 0x3d20c000> pushing 0xffffa40172f0 first 856 bytes
0:00:05.263581250 8744 0x3d233770 DEBUG bin gstbin.c:4052:gst_bin_handle_message_func:<my_pipeline> posting message upward
0:00:05.263615000 8744 0x3d233140 LOG adapter gstadapter.c:290:update_timestamps_and_offset:<GstAdapter at 0x3d20c000> new pts 0:00:07.500000000
0:00:05.263685000 8744 0x3d233140 LOG adapter gstadapter.c:974:gst_adapter_get_buffer:<GstAdapter at 0x3d20c000> getting buffer of 856 bytes
0:00:05.263636500 8744 0x3d233770 DEBUG GST_BUS gstbus.c:318:gst_bus_post:<bus1> [msg 0xffff9c003500] posting on bus tag message: 0xffff9c003500, time 99:99:99.999999999, seq-num 73, element 'my_sink', GstMessageTag, taglist=(taglist)"taglist\,\ video-codec\=\(string\)\"H.264\\\ \\\(Constrained\\\ Baseline\\\ Profile\\\)\"\,\ minimum-bitrate\=\(uint\)14080\,\ maximum-bitrate\=\(uint\)22352\,\ bitrate\=\(uint\)23254\;";
0:00:05.263743000 8744 0x3d233140 LOG adapter gstadapter.c:989:gst_adapter_get_buffer:<GstAdapter at 0x3d20c000> providing buffer of 856 bytes as head buffer
0:00:05.263806125 8744 0x3d233770 DEBUG GST_BUS gstbus.c:357:gst_bus_post:<bus1> [msg 0xffff9c003500] pushing on async queue
0:00:05.263855625 8744 0x3d233770 LOG GST_POLL gstpoll.c:290:raise_wakeup: 0x3d154a30: raise
0:00:05.263840125 8744 0x3d233140 LOG baseparse gstbaseparse.c:2148:gst_base_parse_handle_buffer:<my_h264parse> handling buffer of size 856 with dts 99:99:99.999999999, pts 0:00:07.500000000, duration 0:00:00.500000000
0:00:05.263929375 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:799:gst_buffer_new: new 0xffffa40346f0
0:00:05.263949875 8744 0x3d233770 DEBUG GST_BUS gstbus.c:360:gst_bus_post:<bus1> [msg 0xffff9c003500] pushed on async queue
0:00:05.263973375 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:515:gst_buffer_copy_into: copy 0xffffa40172f0 to 0xffffa40346f0, offset 0-856/856
0:00:05.264007375 8744 0x3d233770 DEBUG GST_BUS gstbus.c:353:gst_bus_post:<bus0> [msg 0xffff9c003500] dropped
0:00:05.264081750 8744 0x3d233770 DEBUG GST_PADS gstpad.c:5712:gst_pad_send_event_unchecked:<my_sink:sink> sent event, ret ok
0:00:05.264079125 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:414:_memory_add: buffer 0xffffa40346f0, idx -1, mem 0x3d227730
0:00:05.264142125 8744 0x3d233770 LOG GST_EVENT gstevent.c:223:_gst_event_free: freeing event 0xffffa4007e50 type tag
0:00:05.264172875 8744 0x3d233140 DEBUG GST_PERFORMANCE gstminiobject.c:317:gst_mini_object_make_writable: copy GstBuffer miniobject 0xffffa40172f0 -> 0xffffa40346f0
0:00:05.264216875 8744 0x3d233770 LOG GST_PADS gstpad.c:5176:store_sticky_event:<my_sink:sink> stored sticky event tag
0:00:05.264181000 8744 0xffffa4002580 LOG GST_BUS gstbus.c:522:gst_bus_timed_pop_filtered:<bus1> have 1 messages
0:00:05.264287250 8744 0x3d233770 LOG GST_PADS gstpad.c:5359:gst_pad_push_event_unchecked:<my_vdec:src> sent event 0xffffa4007f30 (tag) to peerpad <my_sink:sink>, ret ok
0:00:05.264482000 8744 0x3d233770 DEBUG GST_PADS gstpad.c:3889:push_sticky:<my_vdec:src> event tag marked received
0:00:05.264546125 8744 0x3d233770 DEBUG videodecoder gstvideodecoder.c:2676:gst_video_decoder_prepare_finish_frame:<my_vdec> sync timestamp 0:00:05.000000000 diff -0:00:05.000000000
0:00:05.264628750 8744 0x3d233770 DEBUG default gstvideoutils.c:40:_gst_video_codec_frame_free: free frame 0xffffa4028240
0:00:05.264676125 8744 0x3d233770 LOG GST_BUFFER gstbuffer.c:725:_gst_buffer_free: finalize 0xffffa4017ea0
0:00:05.264735125 8744 0x3d233770 LOG videodecoder gstvideodecoder.c:3130:gst_video_decoder_clip_and_push_buf:<my_vdec> accepting buffer inside segment: 0:00:05.000000000 0:00:05.500000000 seg 0:00:00.000000000 to 99:99:99.999999999 time 0:00:00.000000000
0:00:05.264848875 8744 0x3d233770 DEBUG videodecoder gstvideodecoder.c:3197:gst_video_decoder_clip_and_push_buf:<my_vdec> pushing buffer 0xffff9c01f020 of size 98304, PTS 0:00:05.000000000, dur 0:00:00.500000000
0:00:05.264943125 8744 0x3d233770 DEBUG GST_SCHEDULING gstpad.c:4277:gst_pad_chain_data_unchecked:<my_sink:sink> calling chainfunction &gst_base_sink_chain with buffer buffer: 0xffff9c01f020, pts 0:00:05.000000000, dts 99:99:99.999999999, dur 0:00:00.500000000, size 98304, offset none, offset_end none, flags 0x0
0:00:05.265136500 8744 0x3d233770 DEBUG basesink gstbasesink.c:3421:gst_base_sink_chain_unlocked:<my_sink> got times start: 0:00:05.000000000, end: 0:00:05.500000000
0:00:05.265232125 8744 0x3d233770 DEBUG basesink gstbasesink.c:2006:gst_base_sink_get_sync_times:<my_sink> got times start: 0:00:05.000000000, stop: 0:00:05.500000000, do_sync 1
0:00:05.265322000 8744 0x3d233770 LOG basesink gstbasesink.c:2551:gst_base_sink_do_sync:<my_sink> avg frame diff 0:00:00.500000000
0:00:05.265390625 8744 0x3d233770 DEBUG basesink gstbasesink.c:2591:gst_base_sink_do_sync:<my_sink> reset rc_time to time 0:00:05.000000000
0:00:05.265454375 8744 0x3d233770 DEBUG basesink gstbasesink.c:2603:gst_base_sink_do_sync:<my_sink> possibly waiting for clock to reach 0:00:05.000000000, adjusted 0:00:05.000000000
0:00:05.265531125 8744 0x3d233770 LOG basesink gstbasesink.c:2177:gst_base_sink_wait_clock:<my_sink> time 0:00:05.000000000, base_time 0:15:45.099030375
0:00:05.265613625 8744 0x3d233770 DEBUG GST_CLOCK gstclock.c:537:gst_clock_id_wait:<GstSystemClock> waiting on clock entry 0xffffa4008580
0:00:05.265676000 8744 0x3d233770 DEBUG GST_CLOCK gstclock.c:1046:gst_clock_get_internal_time:<GstSystemClock> internal time 0:15:49.612622125
0:00:05.265744750 8744 0x3d233770 DEBUG GST_CLOCK gstclock.c:1091:gst_clock_get_time:<GstSystemClock> adjusted time 0:15:49.612622125
0:00:05.265803000 8744 0x3d233770 DEBUG GST_CLOCK gstsystemclock.c:718:gst_system_clock_id_wait_jitter_unlocked: entry 0xffffa4008580 time 0:15:50.099030375 now 0:15:49.612622125 diff (time-now) 486408250
0:00:05.265876000 8744 0x3d233770 DEBUG GST_POLL gstpoll.c:1369:gst_poll_wait: 0xffffa0003c00: timeout :0:00:00.486408250
0:00:05.264304375 8744 0x3d233140 LOG baseparse gstbaseparse.c:2110:gst_base_parse_prepare_frame:<my_h264parse> preparing frame at offset 18446744073709551615 (0xffffffffffffffff) of size 856
0:00:05.266028000 8744 0x3d233140 LOG baseparse gstbaseparse.c:764:gst_base_parse_update_frame:<my_h264parse> marking as new frame
0:00:05.264382750 8744 0xffffa4002580 LOG GST_POLL gstpoll.c:314:release_wakeup: 0x3d154a30: release
0:00:05.266086500 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1721:gst_buffer_map_range: buffer 0xffffa40346f0, idx 0, length -1, flags 0001
0:00:05.266195875 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:213:_get_merged_memory: buffer 0xffffa40346f0, idx 0, length 1
0:00:05.266173375 8744 0xffffa4002580 DEBUG GST_BUS gstbus.c:546:gst_bus_timed_pop_filtered:<bus1> got message 0xffff9c003500, tag from my_sink, type mask is 4294967295
0:00:05.266281750 8744 0x3d233140 LOG h264parse gsth264parse.c:1097:gst_h264_parse_handle_frame:<my_h264parse> parsing new frame
0:00:05.266343375 8744 0x3d233140 DEBUG h264parse gsth264parse.c:186:gst_h264_parse_reset_frame:<my_h264parse> reset frame
0:00:05.266398875 8744 0x3d233140 DEBUG h264parse gsth264parse.c:1112:gst_h264_parse_handle_frame:<my_h264parse> last parse position 0
0:00:05.266455250 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:242:gst_h264_parse_nalu_header: Nal type 9, ref_idc 0
0:00:05.266506500 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:242:gst_h264_parse_nalu_header: Nal type 9, ref_idc 0
0:00:05.266364125 8744 0xffffa4002580 DEBUG GST_BUS gstbus.c:839:gst_bus_source_dispatch:<bus1> source 0x3d21dc00 calling dispatch with tag message: 0xffff9c003500, time 99:99:99.999999999, seq-num 73, element 'my_sink', GstMessageTag, taglist=(taglist)"taglist\,\ video-codec\=\(string\)\"H.264\\\ \\\(Constrained\\\ Baseline\\\ Profile\\\)\"\,\ minimum-bitrate\=\(uint\)14080\,\ maximum-bitrate\=\(uint\)22352\,\ bitrate\=\(uint\)23254\;";
0:00:05.266553500 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:1366:gst_h264_parser_identify_nalu: Complete nal found. Off: 4, Size: 2
0:00:05.266618000 8744 0xffffa4002580 LOG GST_MESSAGE gstmessage.c:208:_gst_message_free: finalize message 0xffff9c003500, tag from my_sink
0:00:05.266656625 8744 0x3d233140 DEBUG h264parse gsth264parse.c:1162:gst_h264_parse_handle_frame:<my_h264parse> complete nal (offset, size): (4, 2)
0:00:05.266699125 8744 0xffffa4002580 DEBUG GST_BUS gstbus.c:844:gst_bus_source_dispatch:<bus1> source 0x3d21dc00 handler returns 1
0:00:05.266715375 8744 0x3d233140 DEBUG h264parse gsth264parse.c:1219:gst_h264_parse_handle_frame:<my_h264parse> 0xffffa4030ae0 complete nal found. Off: 4, Size: 2
0:00:05.266813625 8744 0x3d233140 DEBUG h264parse gsth264parse.c:721:gst_h264_parse_process_nal:<my_h264parse> processing nal of type 9 AU delimiter, size 2
0:00:05.266878750 8744 0x3d233140 LOG h264parse gsth264parse.c:895:gst_h264_parse_process_nal:<my_h264parse> collecting NAL in AVC frame
0:00:05.266927625 8744 0x3d233140 DEBUG h264parse gsth264parse.c:428:gst_h264_parse_wrap_nal:<my_h264parse> nal length 2
0:00:05.266982125 8744 0x3d233140 DEBUG GST_MEMORY gstmemory.c:139:gst_memory_init: new memory 0x3d0bee60, maxsize:13 offset:0 size:6
0:00:05.267041625 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:799:gst_buffer_new: new 0xffffa4017a60
0:00:05.267083375 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:414:_memory_add: buffer 0xffffa4017a60, idx -1, mem 0x3d0bee60
0:00:05.267132875 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:855:gst_buffer_new_allocate: new buffer 0xffffa4017a60 of size 6 from allocator (nil)
0:00:05.267187875 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1826:gst_buffer_fill: buffer 0xffffa4017a60, offset 0, size 4
0:00:05.267241125 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1826:gst_buffer_fill: buffer 0xffffa4017a60, offset 4, size 2
0:00:05.267295875 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1582:gst_buffer_resize_range: trim 0xffffa4017a60 0-6 size:6 offs:0 max:13
0:00:05.267376500 8744 0x3d233140 LOG adapter gstadapter.c:389:gst_adapter_push:<GstAdapter at 0x3d20c120> pushing 0xffffa4017a60 first 6 bytes
0:00:05.267436875 8744 0x3d233140 DEBUG h264parse gsth264parse.c:914:gst_h264_parse_collect_nal:<my_h264parse> parsing collected nal
0:00:05.267510250 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:242:gst_h264_parse_nalu_header: Nal type 6, ref_idc 0
0:00:05.267569625 8744 0x3d233140 LOG h264parse gsth264parse.c:922:gst_h264_parse_collect_nal:<my_h264parse> nal type: 9 AU delimiter
0:00:05.267624625 8744 0x3d233140 LOG h264parse gsth264parse.c:941:gst_h264_parse_collect_nal:<my_h264parse> next nal type: 6 SEI
0:00:05.267679625 8744 0x3d233140 LOG h264parse gsth264parse.c:948:gst_h264_parse_collect_nal:<my_h264parse> au complete: 0
0:00:05.267730500 8744 0x3d233140 DEBUG h264parse gsth264parse.c:1264:gst_h264_parse_handle_frame:<my_h264parse> Looking for more
0:00:05.267769625 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:242:gst_h264_parse_nalu_header: Nal type 6, ref_idc 0
0:00:05.267815750 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:1366:gst_h264_parser_identify_nalu: Complete nal found. Off: 10, Size: 21
0:00:05.267870500 8744 0x3d233140 DEBUG h264parse gsth264parse.c:1162:gst_h264_parse_handle_frame:<my_h264parse> complete nal (offset, size): (10, 21)
0:00:05.267905625 8744 0x3d1e1590 LOG waylandsink gstwaylandsink.c:745:frame_redraw_callback: frame_redraw_cb
0:00:05.267924875 8744 0x3d233140 DEBUG h264parse gsth264parse.c:1219:gst_h264_parse_handle_frame:<my_h264parse> 0xffffa4030ae0 complete nal found. Off: 10, Size: 21
0:00:05.267966500 8744 0x3d1e1590 DEBUG GST_POLL gstpoll.c:1369:gst_poll_wait: 0x3d21fe80: timeout :99:99:99.999999999
0:00:05.267985500 8744 0x3d233140 DEBUG h264parse gsth264parse.c:721:gst_h264_parse_process_nal:<my_h264parse> processing nal of type 6 SEI, size 21
0:00:05.268082375 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:2292:gst_h264_parser_parse_sei: parsing SEI nal
0:00:05.268123500 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:1127:gst_h264_parser_parse_sei_message: parsing "Sei message"
0:00:05.268163375 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:1147:gst_h264_parser_parse_sei_message: SEI message received: payloadType 5, payloadSize = 136 bits
0:00:05.268229875 8744 0x3d233140 DEBUG h264parse gsth264parse.c:807:gst_h264_parse_process_nal:<my_h264parse> marking SEI in frame at offset 6
0:00:05.268281750 8744 0x3d233140 LOG h264parse gsth264parse.c:895:gst_h264_parse_process_nal:<my_h264parse> collecting NAL in AVC frame
0:00:05.268327250 8744 0x3d233140 DEBUG h264parse gsth264parse.c:428:gst_h264_parse_wrap_nal:<my_h264parse> nal length 21
0:00:05.268372375 8744 0x3d233140 DEBUG GST_MEMORY gstmemory.c:139:gst_memory_init: new memory 0xffffa401b0c0, maxsize:32 offset:0 size:25
0:00:05.268428000 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:799:gst_buffer_new: new 0xffffa4017950
0:00:05.268469375 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:414:_memory_add: buffer 0xffffa4017950, idx -1, mem 0xffffa401b0c0
0:00:05.268519125 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:855:gst_buffer_new_allocate: new buffer 0xffffa4017950 of size 25 from allocator (nil)
0:00:05.268570375 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1826:gst_buffer_fill: buffer 0xffffa4017950, offset 0, size 4
0:00:05.268621500 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1826:gst_buffer_fill: buffer 0xffffa4017950, offset 4, size 21
0:00:05.268672750 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1582:gst_buffer_resize_range: trim 0xffffa4017950 0-25 size:25 offs:0 max:32
0:00:05.268746500 8744 0x3d233140 LOG adapter gstadapter.c:395:gst_adapter_push:<GstAdapter at 0x3d20c120> pushing 0xffffa4017950 25 bytes at end, size now 31
0:00:05.268808750 8744 0x3d233140 DEBUG h264parse gsth264parse.c:914:gst_h264_parse_collect_nal:<my_h264parse> parsing collected nal
0:00:05.268881000 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:242:gst_h264_parse_nalu_header: Nal type 1, ref_idc 1
0:00:05.268938375 8744 0x3d233140 LOG h264parse gsth264parse.c:922:gst_h264_parse_collect_nal:<my_h264parse> nal type: 6 SEI
0:00:05.268992625 8744 0x3d233140 LOG h264parse gsth264parse.c:941:gst_h264_parse_collect_nal:<my_h264parse> next nal type: 1 Slice
0:00:05.269107875 8744 0x3d233140 LOG h264parse gsth264parse.c:948:gst_h264_parse_collect_nal:<my_h264parse> au complete: 0
0:00:05.269170375 8744 0x3d233140 DEBUG h264parse gsth264parse.c:1264:gst_h264_parse_handle_frame:<my_h264parse> Looking for more
0:00:05.269209000 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:242:gst_h264_parse_nalu_header: Nal type 1, ref_idc 1
0:00:05.269255500 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:1366:gst_h264_parser_identify_nalu: Complete nal found. Off: 34, Size: 182
0:00:05.269310250 8744 0x3d233140 DEBUG h264parse gsth264parse.c:1162:gst_h264_parse_handle_frame:<my_h264parse> complete nal (offset, size): (34, 182)
0:00:05.269364625 8744 0x3d233140 DEBUG h264parse gsth264parse.c:1219:gst_h264_parse_handle_frame:<my_h264parse> 0xffffa4030ae0 complete nal found. Off: 34, Size: 182
0:00:05.269423625 8744 0x3d233140 DEBUG h264parse gsth264parse.c:721:gst_h264_parse_process_nal:<my_h264parse> processing nal of type 1 Slice, size 182
0:00:05.269481500 8744 0x3d233140 DEBUG h264parse gsth264parse.c:827:gst_h264_parse_process_nal:<my_h264parse> first_mb_in_slice = 0
0:00:05.269527750 8744 0x3d233140 DEBUG h264parse gsth264parse.c:830:gst_h264_parse_process_nal:<my_h264parse> frame start: 1
0:00:05.269572625 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:2079:gst_h264_parser_parse_slice_hdr: parsing "Slice header", slice type 0
0:00:05.269624750 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:700:gst_h264_slice_parse_dec_ref_pic_marking: parsing "Decoded reference picture marking"
0:00:05.269675625 8744 0x3d233140 DEBUG h264parse gsth264parse.c:840:gst_h264_parse_process_nal:<my_h264parse> parse result 0, first MB: 0, slice type: 0
0:00:05.269734500 8744 0x3d233140 LOG h264parse gsth264parse.c:895:gst_h264_parse_process_nal:<my_h264parse> collecting NAL in AVC frame
0:00:05.269780375 8744 0x3d233140 DEBUG h264parse gsth264parse.c:428:gst_h264_parse_wrap_nal:<my_h264parse> nal length 182
0:00:05.269823875 8744 0x3d233140 DEBUG GST_MEMORY gstmemory.c:139:gst_memory_init: new memory 0xffffa403e320, maxsize:193 offset:0 size:186
0:00:05.269878875 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:799:gst_buffer_new: new 0xffffa4017b70
0:00:05.269920375 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:414:_memory_add: buffer 0xffffa4017b70, idx -1, mem 0xffffa403e320
0:00:05.269969750 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:855:gst_buffer_new_allocate: new buffer 0xffffa4017b70 of size 186 from allocator (nil)
0:00:05.270019250 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1826:gst_buffer_fill: buffer 0xffffa4017b70, offset 0, size 4
0:00:05.270069250 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1826:gst_buffer_fill: buffer 0xffffa4017b70, offset 4, size 182
0:00:05.270120375 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1582:gst_buffer_resize_range: trim 0xffffa4017b70 0-186 size:186 offs:0 max:193
0:00:05.270194500 8744 0x3d233140 LOG adapter gstadapter.c:395:gst_adapter_push:<GstAdapter at 0x3d20c120> pushing 0xffffa4017b70 186 bytes at end, size now 217
0:00:05.270255750 8744 0x3d233140 DEBUG h264parse gsth264parse.c:914:gst_h264_parse_collect_nal:<my_h264parse> parsing collected nal
0:00:05.270294500 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:242:gst_h264_parse_nalu_header: Nal type 1, ref_idc 1
0:00:05.270380625 8744 0x3d233140 LOG h264parse gsth264parse.c:922:gst_h264_parse_collect_nal:<my_h264parse> nal type: 1 Slice
0:00:05.270436250 8744 0x3d233140 LOG h264parse gsth264parse.c:941:gst_h264_parse_collect_nal:<my_h264parse> next nal type: 1 Slice
0:00:05.270490250 8744 0x3d233140 LOG h264parse gsth264parse.c:948:gst_h264_parse_collect_nal:<my_h264parse> au complete: 0
0:00:05.270540875 8744 0x3d233140 DEBUG h264parse gsth264parse.c:1264:gst_h264_parse_handle_frame:<my_h264parse> Looking for more
0:00:05.270578875 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:242:gst_h264_parse_nalu_header: Nal type 1, ref_idc 1
0:00:05.270626375 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:1351:gst_h264_parser_identify_nalu: Nal start 219, No end found
0:00:05.270677500 8744 0x3d233140 DEBUG h264parse gsth264parse.c:1166:gst_h264_parse_handle_frame:<my_h264parse> not a complete nal found at offset 219
0:00:05.270728625 8744 0x3d233140 DEBUG h264parse gsth264parse.c:1172:gst_h264_parse_handle_frame:<my_h264parse> draining, accepting with size 637
0:00:05.270806750 8744 0x3d233140 DEBUG h264parse gsth264parse.c:1219:gst_h264_parse_handle_frame:<my_h264parse> 0xffffa4030ae0 complete nal found. Off: 219, Size: 637
0:00:05.270868000 8744 0x3d233140 DEBUG h264parse gsth264parse.c:721:gst_h264_parse_process_nal:<my_h264parse> processing nal of type 1 Slice, size 637
0:00:05.270925375 8744 0x3d233140 DEBUG h264parse gsth264parse.c:830:gst_h264_parse_process_nal:<my_h264parse> frame start: 1
0:00:05.270969250 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:2079:gst_h264_parser_parse_slice_hdr: parsing "Slice header", slice type 0
0:00:05.271014250 8744 0x3d233140 DEBUG codecparsers_h264 gsth264parser.c:700:gst_h264_slice_parse_dec_ref_pic_marking: parsing "Decoded reference picture marking"
0:00:05.271062500 8744 0x3d233140 DEBUG h264parse gsth264parse.c:840:gst_h264_parse_process_nal:<my_h264parse> parse result 0, first MB: 49, slice type: 0
0:00:05.271119875 8744 0x3d233140 LOG h264parse gsth264parse.c:895:gst_h264_parse_process_nal:<my_h264parse> collecting NAL in AVC frame
0:00:05.271165500 8744 0x3d233140 DEBUG h264parse gsth264parse.c:428:gst_h264_parse_wrap_nal:<my_h264parse> nal length 637
0:00:05.271304125 8744 0x3d233140 DEBUG GST_MEMORY gstmemory.c:139:gst_memory_init: new memory 0xffffa404a080, maxsize:648 offset:0 size:641
0:00:05.271365500 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:799:gst_buffer_new: new 0xffffa4028130
0:00:05.271407250 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:414:_memory_add: buffer 0xffffa4028130, idx -1, mem 0xffffa404a080
0:00:05.271457125 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:855:gst_buffer_new_allocate: new buffer 0xffffa4028130 of size 641 from allocator (nil)
0:00:05.271507125 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1826:gst_buffer_fill: buffer 0xffffa4028130, offset 0, size 4
0:00:05.271556875 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1826:gst_buffer_fill: buffer 0xffffa4028130, offset 4, size 637
0:00:05.271607625 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1582:gst_buffer_resize_range: trim 0xffffa4028130 0-641 size:641 offs:0 max:648
0:00:05.271681750 8744 0x3d233140 LOG adapter gstadapter.c:395:gst_adapter_push:<GstAdapter at 0x3d20c120> pushing 0xffffa4028130 641 bytes at end, size now 858
0:00:05.271757250 8744 0x3d233140 DEBUG GST_CAPS gstpad.c:2705:gst_pad_has_current_caps:<my_h264parse:src> check current pad caps video/x-h264, stream-format=(string)byte-stream, alignment=(string)au, framerate=(fraction)0/1, width=(int)176, height=(int)144, interlace-mode=(string)progressive, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8, parsed=(boolean)true, profile=(string)constrained-baseline, level=(string)1.2
0:00:05.271945250 8744 0x3d233140 LOG h264parse gsth264parse.c:2016:gst_h264_parse_get_timestamp:<my_h264parse> Upstream ts 0:00:07.500000000
0:00:05.272011375 8744 0x3d233140 DEBUG h264parse gsth264parse.c:2035:gst_h264_parse_get_timestamp:<my_h264parse> unable to compute timestamp: timing info not present
0:00:05.272065125 8744 0x3d233140 LOG adapter gstadapter.c:974:gst_adapter_get_buffer:<GstAdapter at 0x3d20c120> getting buffer of 858 bytes
0:00:05.272123250 8744 0x3d233140 LOG adapter gstadapter.c:736:gst_adapter_get_internal:<GstAdapter at 0x3d20c120> allocating 858 bytes
0:00:05.272167625 8744 0x3d233140 DEBUG adapter gstadapter.c:344:copy_into_unchecked: bsize 6, skip 0, csize 6
0:00:05.272229375 8744 0x3d233140 LOG GST_PERFORMANCE gstadapter.c:346:copy_into_unchecked:<GstAdapter at 0x3d20c120> extract 6 bytes
0:00:05.272271875 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1876:gst_buffer_extract: buffer 0xffffa4017a60, offset 0, size 6
0:00:05.272336625 8744 0x3d233140 LOG GST_PERFORMANCE gstadapter.c:359:copy_into_unchecked:<GstAdapter at 0x3d20c120> extract 25 bytes
0:00:05.272378000 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1876:gst_buffer_extract: buffer 0xffffa4017950, offset 0, size 25
0:00:05.272441500 8744 0x3d233140 LOG GST_PERFORMANCE gstadapter.c:359:copy_into_unchecked:<GstAdapter at 0x3d20c120> extract 186 bytes
0:00:05.272482125 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1876:gst_buffer_extract: buffer 0xffffa4017b70, offset 0, size 186
0:00:05.272546125 8744 0x3d233140 LOG GST_PERFORMANCE gstadapter.c:359:copy_into_unchecked:<GstAdapter at 0x3d20c120> extract 641 bytes
0:00:05.272587125 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:1876:gst_buffer_extract: buffer 0xffffa4028130, offset 0, size 641
0:00:05.272639375 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:799:gst_buffer_new: new 0xffffa40344d0
0:00:05.272682375 8744 0x3d233140 DEBUG GST_MEMORY gstmemory.c:139:gst_memory_init: new memory 0x3d227580, maxsize:858 offset:0 size:858
0:00:05.272737000 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:414:_memory_add: buffer 0xffffa40344d0, idx -1, mem 0x3d227580
0:00:05.272803000 8744 0x3d233140 LOG adapter gstadapter.c:634:gst_adapter_flush_unchecked:<GstAdapter at 0x3d20c120> flushing 858 bytes
0:00:05.272858625 8744 0x3d233140 LOG adapter gstadapter.c:656:gst_adapter_flush_unchecked:<GstAdapter at 0x3d20c120> flushing out head buffer
0:00:05.272896750 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:725:_gst_buffer_free: finalize 0xffffa4017a60
0:00:05.272938375 8744 0x3d233140 DEBUG GST_MEMORY gstmemory.c:88:_gst_memory_free: free memory 0x3d0bee60
0:00:05.272998250 8744 0x3d233140 LOG adapter gstadapter.c:656:gst_adapter_flush_unchecked:<GstAdapter at 0x3d20c120> flushing out head buffer
0:00:05.273036625 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:725:_gst_buffer_free: finalize 0xffffa4017950
0:00:05.273120875 8744 0x3d233140 DEBUG GST_MEMORY gstmemory.c:88:_gst_memory_free: free memory 0xffffa401b0c0
0:00:05.273181875 8744 0x3d233140 LOG adapter gstadapter.c:656:gst_adapter_flush_unchecked:<GstAdapter at 0x3d20c120> flushing out head buffer
0:00:05.273220250 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:725:_gst_buffer_free: finalize 0xffffa4017b70
0:00:05.273261375 8744 0x3d233140 DEBUG GST_MEMORY gstmemory.c:88:_gst_memory_free: free memory 0xffffa403e320
0:00:05.273319500 8744 0x3d233140 LOG adapter gstadapter.c:656:gst_adapter_flush_unchecked:<GstAdapter at 0x3d20c120> flushing out head buffer
0:00:05.273388500 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:725:_gst_buffer_free: finalize 0xffffa4028130
0:00:05.273431375 8744 0x3d233140 DEBUG GST_MEMORY gstmemory.c:88:_gst_memory_free: free memory 0xffffa404a080
0:00:05.273490000 8744 0x3d233140 LOG adapter gstadapter.c:668:gst_adapter_flush_unchecked:<GstAdapter at 0x3d20c120> adapter empty now
0:00:05.273530375 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:515:gst_buffer_copy_into: copy 0xffffa40346f0 to 0xffffa40344d0, offset 0-856/856
0:00:05.273601375 8744 0x3d233140 LOG baseparse gstbaseparse.c:2637:gst_base_parse_finish_frame:<my_h264parse> finished frame at offset 18274, flushing size 856
0:00:05.273663000 8744 0x3d233140 LOG adapter gstadapter.c:634:gst_adapter_flush_unchecked:<GstAdapter at 0x3d20c000> flushing 856 bytes
0:00:05.273718250 8744 0x3d233140 LOG adapter gstadapter.c:656:gst_adapter_flush_unchecked:<GstAdapter at 0x3d20c000> flushing out head buffer
0:00:05.273755875 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:725:_gst_buffer_free: finalize 0xffffa40172f0
0:00:05.273810750 8744 0x3d233140 LOG adapter gstadapter.c:668:gst_adapter_flush_unchecked:<GstAdapter at 0x3d20c000> adapter empty now
0:00:05.273849125 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:725:_gst_buffer_free: finalize 0xffffa40346f0
0:00:05.273890125 8744 0x3d233140 DEBUG GST_MEMORY gstmemory.c:88:_gst_memory_free: free memory 0x3d227730
(free_data, 133)
0:00:05.273965625 8744 0x3d233140 DEBUG baseparse gstbaseparse.c:2333:gst_base_parse_handle_and_push_frame:<my_h264parse> no next fallback timestamp
0:00:05.274015500 8744 0x3d233140 LOG baseparse gstbaseparse.c:2392:gst_base_parse_push_frame:<my_h264parse> processing buffer of size 858 with dts 99:99:99.999999999, pts 0:00:07.500000000, duration 0:00:00.500000000
0:00:05.274119250 8744 0x3d233140 DEBUG GST_CAPS gstpad.c:2705:gst_pad_has_current_caps:<my_h264parse:src> check current pad caps video/x-h264, stream-format=(string)byte-stream, alignment=(string)au, framerate=(fraction)0/1, width=(int)176, height=(int)144, interlace-mode=(string)progressive, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8, parsed=(boolean)true, profile=(string)constrained-baseline, level=(string)1.2
0:00:05.274260750 8744 0x3d233140 LOG baseparse gstbaseparse.c:1851:gst_base_parse_update_bitrates:<my_h264parse> frame bitrate 13728, avg bitrate 20390
0:00:05.274323000 8744 0x3d233140 DEBUG h264parse gsth264parse.c:186:gst_h264_parse_reset_frame:<my_h264parse> reset frame
0:00:05.274371375 8744 0x3d233140 LOG baseparse gstbaseparse.c:900:gst_base_parse_queue_tag_event_update:<my_h264parse> upstream : (NULL)
0:00:05.274423125 8744 0x3d233140 LOG baseparse gstbaseparse.c:902:gst_base_parse_queue_tag_event_update:<my_h264parse> parser : taglist, video-codec=(string)"H.264\ \(Constrained\ Baseline\ Profile\)";
0:00:05.274493250 8744 0x3d233140 LOG baseparse gstbaseparse.c:903:gst_base_parse_queue_tag_event_update:<my_h264parse> mode : 2
0:00:05.274562625 8744 0x3d233140 DEBUG baseparse gstbaseparse.c:909:gst_base_parse_queue_tag_event_update:<my_h264parse> merged : taglist, video-codec=(string)"H.264\ \(Constrained\ Baseline\ Profile\)";
0:00:05.274629500 8744 0x3d233140 LOG baseparse gstbaseparse.c:923:gst_base_parse_queue_tag_event_update:<my_h264parse> adding min bitrate 13728
0:00:05.274694375 8744 0x3d233140 LOG baseparse gstbaseparse.c:928:gst_base_parse_queue_tag_event_update:<my_h264parse> adding max bitrate 22352
0:00:05.274753125 8744 0x3d233140 LOG baseparse gstbaseparse.c:934:gst_base_parse_queue_tag_event_update:<my_h264parse> adding avg bitrate 20390
0:00:05.274847375 8744 0x3d233140 DEBUG GST_EVENT gstevent.c:306:gst_event_new_custom: creating new event 0xffffa4007d00 tag 20510
0:00:05.274924000 8744 0x3d233140 LOG GST_PADS gstpad.c:5176:store_sticky_event:<my_h264parse:src> stored sticky event tag
0:00:05.274980875 8744 0x3d233140 DEBUG GST_PADS gstpad.c:3937:check_sticky:<my_h264parse:src> pushing all sticky events
0:00:05.275032000 8744 0x3d233140 DEBUG GST_PADS gstpad.c:3867:push_sticky:<my_h264parse:src> event stream-start was already received
0:00:05.275087000 8744 0x3d233140 DEBUG GST_PADS gstpad.c:3867:push_sticky:<my_h264parse:src> event caps was already received
0:00:05.275141250 8744 0x3d233140 DEBUG GST_PADS gstpad.c:3867:push_sticky:<my_h264parse:src> event segment was already received
0:00:05.275198625 8744 0x3d233140 LOG GST_PADS gstpad.c:5351:gst_pad_push_event_unchecked:<my_h264parse:src> sending event 0xffffa4007d00 (tag) to peerpad <my_vdec:sink>
0:00:05.275273250 8744 0x3d233140 DEBUG GST_EVENT gstpad.c:5638:gst_pad_send_event_unchecked:<my_vdec:sink> have event type tag event: 0xffffa4007d00, time 99:99:99.999999999, seq-num 74, GstTagList-stream, taglist=(taglist)"taglist\,\ video-codec\=\(string\)\"H.264\\\ \\\(Constrained\\\ Baseline\\\ Profile\\\)\"\,\ minimum-bitrate\=\(uint\)13728\,\ maximum-bitrate\=\(uint\)22352\,\ bitrate\=\(uint\)20390\;";
0:00:05.275438000 8744 0x3d233140 DEBUG videodecoder gstvideodecoder.c:1393:gst_video_decoder_sink_event:<my_vdec> received event 20510, tag
0:00:05.496970000 8744 0x3d0a0600 DEBUG GST_STATES gstelement.c:2827:gst_element_set_state_func:<my_pipeline> set_state to NULL
0:00:05.497220000 8744 0x3d0a0600 DEBUG GST_STATES gstelement.c:2852:gst_element_set_state_func:<my_pipeline> setting target state to NULL
0:00:05.497323750 8744 0x3d0a0600 DEBUG GST_STATES gstelement.c:2865:gst_element_set_state_func:<my_pipeline> current PLAYING, old_pending VOID_PENDING, next VOID_PENDING, old return SUCCESS
0:00:05.497394250 8744 0x3d0a0600 DEBUG GST_STATES gstelement.c:2899:gst_element_set_state_func:<my_pipeline> intermediate: setting state from PLAYING to PAUSED
0:00:05.497472375 8744 0x3d0a0600 DEBUG GST_CLOCK gstclock.c:1046:gst_clock_get_internal_time:<GstSystemClock> internal time 0:15:49.844417875
0:00:05.497543250 8744 0x3d0a0600 DEBUG GST_CLOCK gstclock.c:1091:gst_clock_get_time:<GstSystemClock> adjusted time 0:15:49.844417875
0:00:05.497613125 8744 0x3d0a0600 DEBUG pipeline gstpipeline.c:370:pipeline_update_start_time:<my_pipeline> start_time=0:00:04.745387500, now=0:15:49.844417875, base_time 0:15:45.099030375
0:00:05.497737125 8744 0x3d0a0600 DEBUG GST_STATES gstbin.c:2852:gst_bin_change_state_func:<my_pipeline> changing state of children from PLAYING to PAUSED
0:00:05.497801625 8744 0x3d0a0600 DEBUG bin gstbin.c:2876:gst_bin_change_state_func:<my_pipeline> clearing EOS elements
0:00:05.497873000 8744 0x3d0a0600 DEBUG bin gstbin.c:2383:gst_bin_sort_iterator_resync:<my_pipeline> resync
0:00:05.497925250 8744 0x3d0a0600 DEBUG bin gstbin.c:2163:add_to_queue:<my_pipeline> adding 'my_sink' to queue
0:00:05.497995500 8744 0x3d0a0600 DEBUG bin gstbin.c:885:find_message:<my_pipeline> no message found matching types 00001000
0:00:05.498052750 8744 0x3d0a0600 DEBUG bin gstbin.c:892:find_message:<my_pipeline> structure-change
0:00:05.498115125 8744 0x3d0a0600 DEBUG bin gstbin.c:2280:update_degree:<my_pipeline> change element my_vdec, degree 0->1, linked to my_sink
0:00:05.498186500 8744 0x3d0a0600 DEBUG bin gstbin.c:885:find_message:<my_pipeline> no message found matching types 00001000
0:00:05.498240625 8744 0x3d0a0600 DEBUG bin gstbin.c:892:find_message:<my_pipeline> structure-change
0:00:05.498415000 8744 0x3d0a0600 DEBUG bin gstbin.c:2280:update_degree:<my_pipeline> change element my_h264parse, degree 0->1, linked to my_vdec
0:00:05.498488750 8744 0x3d0a0600 DEBUG bin gstbin.c:885:find_message:<my_pipeline> no message found matching types 00001000
0:00:05.498543250 8744 0x3d0a0600 DEBUG bin gstbin.c:892:find_message:<my_pipeline> structure-change
0:00:05.498603250 8744 0x3d0a0600 DEBUG bin gstbin.c:2280:update_degree:<my_pipeline> change element my_appsrc, degree 0->1, linked to my_h264parse
0:00:05.498676625 8744 0x3d0a0600 DEBUG bin gstbin.c:2303:update_degree:<my_pipeline> element my_appsrc not linked on any sinkpads
0:00:05.498805000 8744 0x3d0a0600 DEBUG bin gstbin.c:2370:gst_bin_sort_iterator_next:<my_pipeline> queue head gives my_sink
0:00:05.498863875 8744 0x3d0a0600 DEBUG bin gstbin.c:885:find_message:<my_pipeline> no message found matching types 00001000
0:00:05.498918000 8744 0x3d0a0600 DEBUG bin gstbin.c:892:find_message:<my_pipeline> structure-change
0:00:05.498972750 8744 0x3d0a0600 DEBUG bin gstbin.c:2280:update_degree:<my_pipeline> change element my_vdec, degree 1->0, linked to my_sink
0:00:05.499039375 8744 0x3d0a0600 DEBUG bin gstbin.c:2163:add_to_queue:<my_pipeline> adding 'my_vdec' to queue
0:00:05.499107375 8744 0x3d0a0600 INFO GST_STATES gstbin.c:2504:gst_bin_element_set_state:<my_sink> current PLAYING pending VOID_PENDING, desired next PAUSED
0:00:05.499175375 8744 0x3d0a0600 DEBUG bin gstbin.c:885:find_message:<my_pipeline> no message found matching types 00100000
0:00:05.499229250 8744 0x3d0a0600 DEBUG bin gstbin.c:892:find_message:<my_pipeline> async-start
0:00:05.499280625 8744 0x3d0a0600 DEBUG bin gstbin.c:2599:gst_bin_element_set_state:<my_pipeline> setting element my_sink to PAUSED, base_time 0:15:45.099030375
0:00:05.499353125 8744 0x3d0a0600 DEBUG GST_STATES gstelement.c:2827:gst_element_set_state_func:<my_sink> set_state to PAUSED
0:00:05.499433625 8744 0x3d0a0600 DEBUG GST_STATES gstelement.c:2852:gst_element_set_state_func:<my_sink> setting target state to PAUSED
0:00:05.499488750 8744 0x3d0a0600 DEBUG GST_STATES gstelement.c:2865:gst_element_set_state_func:<my_sink> current PLAYING, old_pending VOID_PENDING, next VOID_PENDING, old return SUCCESS
0:00:05.499550875 8744 0x3d0a0600 DEBUG GST_STATES gstelement.c:2899:gst_element_set_state_func:<my_sink> final: setting state from PLAYING to PAUSED
0:00:05.499618875 8744 0x3d0a0600 LOG GST_STATES gstelement.c:3154:gst_element_change_state_func:<my_sink> default handler tries setting state from PLAYING to PAUSED (0023)
0:00:05.499687250 8744 0x3d0a0600 DEBUG basesink gstbasesink.c:5153:gst_base_sink_change_state:<my_sink> PLAYING to PAUSED
0:00:05.499738875 8744 0x3d0a0600 DEBUG basesink gstbasesink.c:5162:gst_base_sink_change_state:<my_sink> got preroll lock
0:00:05.499786000 8744 0x3d0a0600 DEBUG basesink gstbasesink.c:5168:gst_base_sink_change_state:<my_sink> unschedule clock
0:00:05.499867250 8744 0x3d0a0600 DEBUG GST_CLOCK gstsystemclock.c:1005:gst_system_clock_id_unschedule: unscheduling entry 0xffffa4008580
0:00:05.499915500 8744 0x3d0a0600 DEBUG GST_CLOCK gstsystemclock.c:1019:gst_system_clock_id_unschedule: entry was BUSY, doing wakeup
0:00:05.499953750 8744 0x3d0a0600 DEBUG GST_CLOCK gstsystemclock.c:397:gst_system_clock_add_wakeup: writing control
0:00:05.499995625 8744 0x3d0a0600 LOG GST_POLL gstpoll.c:290:raise_wakeup: 0xffffa0003c00: raise
0:00:05.500096375 8744 0x3d0a0600 DEBUG GST_CLOCK gstsystemclock.c:401:gst_system_clock_add_wakeup: wakeup count 1
0:00:05.500297875 8744 0x3d0a0600 DEBUG basesink gstbasesink.c:3341:gst_base_sink_needs_preroll:<my_sink> have_preroll: 0, EOS: 0 => needs preroll: 1
0:00:05.500135875 8744 0x3d233770 DEBUG GST_CLOCK gstsystemclock.c:746:gst_system_clock_id_wait_jitter_unlocked: entry 0xffffa4008580 unlocked, status 2, ret 1
0:00:05.500374625 8744 0x3d0a0600 DEBUG basesink gstbasesink.c:5184:gst_base_sink_change_state:<my_sink> PLAYING to PAUSED, we are not prerolled
0:00:05.500445500 8744 0x3d0a0600 DEBUG basesink gstbasesink.c:5190:gst_base_sink_change_state:<my_sink> doing async state change
0:00:05.500490750 8744 0x3d0a0600 LOG GST_MESSAGE gstmessage.c:301:gst_message_new_custom: source my_sink: creating new message 0x3d231910 async-start
0:00:05.500562000 8744 0x3d0a0600 DEBUG GST_BUS gstbus.c:318:gst_bus_post:<bus0> [msg 0x3d231910] posting on bus async-start message: 0x3d231910, time 99:99:99.999999999, seq-num 75, element 'my_sink', (NULL)
0:00:05.500616125 8744 0x3d233770 DEBUG GST_CLOCK gstsystemclock.c:378:gst_system_clock_remove_wakeup: reading control
0:00:05.500704125 8744 0x3d233770 LOG GST_POLL gstpoll.c:314:release_wakeup: 0xffffa0003c00: release
0:00:05.500803250 8744 0x3d233770 DEBUG GST_CLOCK gstsystemclock.c:391:gst_system_clock_remove_wakeup: wakeup count 0
0:00:05.500865875 8744 0x3d233770 DEBUG GST_CLOCK gstclock.c:547:gst_clock_id_wait:<GstSystemClock> done waiting entry 0xffffa4008580, res: 2 (unscheduled)
0:00:05.500713625 8744 0x3d0a0600 DEBUG bin gstbin.c:3715:gst_bin_handle_message_func:<my_pipeline> [msg 0x3d231910] handling child my_sink message of type async-start
0:00:05.500980625 8744 0x3d0a0600 DEBUG bin gstbin.c:3905:gst_bin_handle_message_func:<my_pipeline> ASYNC_START message 0x3d231910, my_sink
0:00:05.501040625 8744 0x3d0a0600 DEBUG bin gstbin.c:3924:gst_bin_handle_message_func:<my_pipeline> ignoring message, target NULL
0:00:05.501161000 8744 0x3d0a0600 LOG GST_MESSAGE gstmessage.c:208:_gst_message_free: finalize message 0x3d231910, async-start from my_sink
0:00:05.501230875 8744 0x3d0a0600 DEBUG GST_BUS gstbus.c:353:gst_bus_post:<bus0> [msg 0x3d231910] dropped
0:00:05.501285625 8744 0x3d0a0600 DEBUG basesink gstbasesink.c:5198:gst_base_sink_change_state:<my_sink> rendered: 10, dropped: 0
0:00:05.501363750 8744 0x3d0a0600 DEBUG GST_STATES gstelement.c:2970:gst_element_change_state:<my_sink> element will change state ASYNC
0:00:05.501415000 8744 0x3d0a0600 LOG GST_STATES gstelement.c:3010:gst_element_change_state:<my_sink> exit async state change 2
0:00:05.501470250 8744 0x3d0a0600 DEBUG GST_STATES gstelement.c:2911:gst_element_set_state_func:<my_sink> returned ASYNC
0:00:05.501529375 8744 0x3d0a0600 INFO GST_STATES gstbin.c:2958:gst_bin_change_state_func:<my_pipeline> child 'my_sink' is changing state asynchronously to PAUSED
0:00:05.501621000 8744 0x3d0a0600 DEBUG bin gstbin.c:2370:gst_bin_sort_iterator_next:<my_pipeline> queue head gives my_vdec
0:00:05.501677125 8744 0x3d0a0600 DEBUG bin gstbin.c:885:find_message:<my_pipeline> no message found matching types 00001000
0:00:05.501731625 8744 0x3d0a0600 DEBUG bin gstbin.c:892:find_message:<my_pipeline> structure-change
0:00:05.501792250 8744 0x3d0a0600 DEBUG bin gstbin.c:2280:update_degree:<my_pipeline> change element my_h264parse, degree 1->0, linked to my_vdec
0:00:05.501857000 8744 0x3d0a0600 DEBUG bin gstbin.c:2163:add_to_queue:<my_pipeline> adding 'my_h264parse' to queue
0:00:05.501921500 8744 0x3d0a0600 INFO GST_STATES gstbin.c:2504:gst_bin_element_set_state:<my_vdec> current PLAYING pending VOID_PENDING, desired next PAUSED
0:00:05.502035375 8744 0x3d0a0600 DEBUG bin gstbin.c:885:find_message:<my_pipeline> no message found matching types 00100000
0:00:05.502092250 8744 0x3d0a0600 DEBUG bin gstbin.c:892:find_message:<my_pipeline> async-start
0:00:05.502145000 8744 0x3d0a0600 DEBUG bin gstbin.c:2599:gst_bin_element_set_state:<my_pipeline> setting element my_vdec to PAUSED, base_time 0:15:45.099030375
0:00:05.502216375 8744 0x3d0a0600 DEBUG GST_STATES gstelement.c:2827:gst_element_set_state_func:<my_vdec> set_state to PAUSED
0:00:05.502220625 8744 0x3d233770 DEBUG basesink gstbasesink.c:2610:gst_base_sink_do_sync:<my_sink> clock returned 2, jitter -0:00:00.486408250
0:00:05.502270500 8744 0x3d0a0600 DEBUG GST_STATES gstelement.c:2852:gst_element_set_state_func:<my_vdec> setting target state to PAUSED
0:00:05.502330375 8744 0x3d233770 DEBUG basesink gstbasesink.c:2623:gst_base_sink_do_sync:<my_sink> unscheduled, waiting some more
0:00:05.502389500 8744 0x3d0a0600 DEBUG GST_STATES gstelement.c:2865:gst_element_set_state_func:<my_vdec> current PLAYING, old_pending VOID_PENDING, next VOID_PENDING, old return SUCCESS
0:00:05.502454500 8744 0x3d233770 DEBUG basesink gstbasesink.c:2312:gst_base_sink_do_preroll:<my_sink> prerolling object 0xffff9c01f020
0:00:05.502505625 8744 0x3d0a0600 DEBUG GST_STATES gstelement.c:2899:gst_element_set_state_func:<my_vdec> final: setting state from PLAYING to PAUSED
0:00:05.502548125 8744 0x3d233770 DEBUG basesink gstbasesink.c:994:gst_base_sink_set_last_buffer_unlocked:<my_sink> setting last buffer to 0xffff9c01f020
0:00:05.502579125 8744 0x3d0a0600 LOG GST_STATES gstelement.c:3154:gst_element_change_state_func:<my_vdec> default handler tries setting state from PLAYING to PAUSED (0023)
0:00:05.502601250 8744 0x3d233770 DEBUG basesink gstbasesink.c:2335:gst_base_sink_do_preroll:<my_sink> preroll buffer 0:00:05.000000000
0:00:05.502660750 8744 0x3d0a0600 DEBUG GST_STATES gstelement.c:2988:gst_element_change_state:<my_vdec> element changed state SUCCESS
0:00:05.502730750 8744 0x3d233770 LOG videosink gstvideosink.c:208:gst_video_sink_show_preroll_frame:<my_sink> rendering frame, ts=0:00:05.000000000
0:00:05.502809625 8744 0x3d0a0600 INFO GST_STATES gstelement.c:2676:gst_element_continue_state:<my_vdec> completed state change to PAUSED
0:00:05.502878875 8744 0x3d233770 LOG waylandsink gstwaylandsink.c:863:gst_wayland_sink_show_frame:<my_sink> render buffer 0xffff9c01f020
0:00:05.502930250 8744 0x3d0a0600 INFO GST_STATES gstelement.c:2579:_priv_gst_element_state_changed:<my_vdec> notifying about state-changed PLAYING to PAUSED (VOID_PENDING pending)
0:00:05.502982125 8744 0x3d233770 LOG waylandsink gstwaylandsink.c:917:gst_wayland_sink_show_frame:<my_sink> buffer 0xffff9c01f020 does not have a wl_buffer from our display, creating it
0:00:05.503009875 8744 0x3d0a0600 LOG GST_MESSAGE gstmessage.c:301:gst_message_new_custom: source my_vdec: creating new message 0x3d231910 state-changed
0:00:05.503054250 8744 0x3d233770 DEBUG waylandsink wllinuxdmabuf.c:108:gst_wl_linux_dmabuf_construct_wl_buffer:<GstWlDisplay at 0x3d1da380> Creating wl_buffer from DMABuf of size 98304 (176 x 144), format NV12 modifier 0x0800000000000001
0:00:05.503085375 8744 0x3d0a0600 DEBUG GST_BUS gstbus.c:318:gst_bus_post:<bus0> [msg 0x3d231910] posting on bus state-changed message: 0x3d231910, time 99:99:99.999999999, seq-num 76, element 'my_vdec', GstMessageStateChanged, old-state=(GstState)GST_STATE_PLAYING, new-state=(GstState)GST_STATE_PAUSED, pending-state=(GstState)GST_STATE_VOID_PENDING;
0:00:05.503274000 8744 0x3d0a0600 DEBUG bin gstbin.c:3715:gst_bin_handle_message_func:<my_pipeline> [msg 0x3d231910] handling child my_vdec message of type state-changed
0:00:05.503392875 8744 0x3d0a0600 DEBUG bin gstbin.c:4052:gst_bin_handle_message_func:<my_pipeline> posting message upward
0:00:05.503445375 8744 0x3d0a0600 DEBUG GST_BUS gstbus.c:318:gst_bus_post:<bus1> [msg 0x3d231910] posting on bus state-changed message: 0x3d231910, time 99:99:99.999999999, seq-num 76, element 'my_vdec', GstMessageStateChanged, old-state=(GstState)GST_STATE_PLAYING, new-state=(GstState)GST_STATE_PAUSED, pending-state=(GstState)GST_STATE_VOID_PENDING;
0:00:05.503582375 8744 0x3d0a0600 DEBUG GST_BUS gstbus.c:357:gst_bus_post:<bus1> [msg 0x3d231910] pushing on async queue
0:00:05.503630500 8744 0x3d0a0600 LOG GST_POLL gstpoll.c:290:raise_wakeup: 0x3d154a30: raise
0:00:05.503718250 8744 0x3d0a0600 DEBUG GST_BUS gstbus.c:360:gst_bus_post:<bus1> [msg 0x3d231910] pushed on async queue
0:00:05.503715500 8744 0x3d1e1590 DEBUG GST_POLL gstpoll.c:1369:gst_poll_wait: 0x3d21fe80: timeout :99:99:99.999999999
0:00:05.503775875 8744 0x3d0a0600 DEBUG GST_BUS gstbus.c:353:gst_bus_post:<bus0> [msg 0x3d231910] dropped
0:00:05.503731875 8744 0x3d233770 DEBUG waylandsink wllinuxdmabuf.c:175:gst_wl_linux_dmabuf_construct_wl_buffer:<dmabufallocator2> created linux_dmabuf wl_buffer (0xffff9c02c420):176x144, fmt=NV12, 2 planes
0:00:05.503777375 8744 0xffffa4002580 LOG GST_BUS gstbus.c:522:gst_bus_timed_pop_filtered:<bus1> have 1 messages
0:00:05.503953000 8744 0x3d233770 DEBUG basesink gstbasesink.c:1551:gst_base_sink_commit_state:<my_sink> commiting state to PAUSED
0:00:05.503986500 8744 0x3d0a0600 LOG GST_STATES gstelement.c:3004:gst_element_change_state:<my_vdec> exit state change 1
0:00:05.503955250 8744 0xffffa4002580 LOG GST_POLL gstpoll.c:314:release_wakeup: 0x3d154a30: release
0:00:05.504008750 8744 0x3d233770 DEBUG basesink gstbasesink.c:1576:gst_base_sink_commit_state:<my_sink> posting PAUSED state change message
0:00:05.504064125 8744 0x3d0a0600 DEBUG GST_STATES gstelement.c:2911:gst_element_set_state_func:<my_vdec> returned SUCCESS
0:00:05.504217125 8744 0x3d233770 LOG GST_MESSAGE gstmessage.c:301:gst_message_new_custom: source my_sink: creating new message 0xffff9c003580 state-changed
0:00:05.504147125 8744 0xffffa4002580 DEBUG GST_BUS gstbus.c:546:gst_bus_timed_pop_filtered:<bus1> got message 0x3d231910, state-changed from my_vdec, type mask is 4294967295
0:00:05.504287875 8744 0x3d0a0600 INFO GST_STATES gstbin.c:2952:gst_bin_change_state_func:<my_pipeline> child 'my_vdec' changed state to 3(PAUSED) successfully
0:00:05.504284500 8744 0x3d233770 DEBUG GST_BUS gstbus.c:318:gst_bus_post:<bus0> [msg 0xffff9c003580] posting on bus state-changed message: 0xffff9c003580, time 99:99:99.999999999, seq-num 77, element 'my_sink', GstMessageStateChanged, old-state=(GstState)GST_STATE_PLAYING, new-state=(GstState)GST_STATE_PAUSED, pending-state=(GstState)GST_STATE_VOID_PENDING;
0:00:05.504388250 8744 0x3d0a0600 DEBUG bin gstbin.c:2370:gst_bin_sort_iterator_next:<my_pipeline> queue head gives my_h264parse
0:00:05.504415625 8744 0x3d233770 DEBUG bin gstbin.c:3715:gst_bin_handle_message_func:<my_pipeline> [msg 0xffff9c003580] handling child my_sink message of type state-changed
0:00:05.504331000 8744 0xffffa4002580 DEBUG GST_BUS gstbus.c:839:gst_bus_source_dispatch:<bus1> source 0x3d21dc00 calling dispatch with state-changed message: 0x3d231910, time 99:99:99.999999999, seq-num 76, element 'my_vdec', GstMessageStateChanged, old-state=(GstState)GST_STATE_PLAYING, new-state=(GstState)GST_STATE_PAUSED, pending-state=(GstState)GST_STATE_VOID_PENDING;
(bus_call, 87)my_vdec state change, old state: PLAYING, new state: PAUSED
0:00:05.504203125 8744 0x3d1e1590 LOG waylandsink wlbuffer.c:137:buffer_release:<GstWlBuffer at 0xffff9c00ba00> wl_buffer::release (GstBuffer: 0xffffa4028df0)
0:00:05.504488625 8744 0x3d233770 DEBUG bin gstbin.c:4052:gst_bin_handle_message_func:<my_pipeline> posting message upward
0:00:05.504610375 8744 0xffffa4002580 LOG GST_MESSAGE gstmessage.c:208:_gst_message_free: finalize message 0x3d231910, state-changed from my_vdec
0:00:05.504668750 8744 0x3d1e1590 LOG GST_BUFFER gstbuffer.c:710:_gst_buffer_dispose: release 0xffffa4028df0 to pool 0xffffa4012e90
0:00:05.504830875 8744 0xffffa4002580 DEBUG GST_BUS gstbus.c:844:gst_bus_source_dispatch:<bus1> source 0x3d21dc00 handler returns 1
0:00:05.504762500 8744 0x3d0a0600 DEBUG bin gstbin.c:885:find_message:<my_pipeline> no message found matching types 00001000
0:00:05.504922125 8744 0x3d1e1590 DEBUG GST_BUFFER gstbuffer.c:2383:gst_buffer_foreach_meta: remove metadata 0xffff9c001e98 (GstDmabufMeta)
0:00:05.504962750 8744 0x3d0a0600 DEBUG bin gstbin.c:892:find_message:<my_pipeline> structure-change
0:00:05.504996125 8744 0x3d1e1590 DEBUG v4l2bufferpool gstv4l2bufferpool.c:1420:gst_v4l2_buffer_pool_release_buffer:<my_vdec:pool:src> release buffer 0xffffa4028df0
0:00:05.505024500 8744 0x3d0a0600 DEBUG bin gstbin.c:2280:update_degree:<my_pipeline> change element my_appsrc, degree 1->0, linked to my_h264parse
0:00:05.505114250 8744 0x3d1e1590 LOG v4l2bufferpool gstv4l2bufferpool.c:1059:gst_v4l2_buffer_pool_qbuf:<my_vdec:pool:src> queuing buffer 9
0:00:05.505176750 8744 0x3d0a0600 DEBUG bin gstbin.c:2163:add_to_queue:<my_pipeline> adding 'my_appsrc' to queue
0:00:05.505254250 8744 0x3d0a0600 INFO GST_STATES gstbin.c:2504:gst_bin_element_set_state:<my_h264parse> current PLAYING pending VOID_PENDING, desired next PAUSED
0:00:05.505256125 8744 0x3d1e1590 LOG v4l2allocator gstv4l2allocator.c:1265:gst_v4l2_allocator_qbuf:<my_vdec:pool:src:allocator> queued buffer 9 (flags 0x4003)
0:00:05.505331375 8744 0x3d0a0600 DEBUG bin gstbin.c:885:find_message:<my_pipeline> no message found matching types 00100000
0:00:05.505361500 8744 0x3d1e1590 DEBUG GST_POLL gstpoll.c:1369:gst_poll_wait: 0x3d21fe80: timeout :99:99:99.999999999
0:00:05.505397000 8744 0x3d0a0600 DEBUG bin gstbin.c:892:find_message:<my_pipeline> async-start
0:00:05.505290000 8744 0x3d233770 DEBUG GST_BUS gstbus.c:318:gst_bus_post:<bus1> [msg 0xffff9c003580] posting on bus state-changed message: 0xffff9c003580, time 99:99:99.999999999, seq-num 77, element 'my_sink', GstMessageStateChanged, old-state=(GstState)GST_STATE_PLAYING, new-state=(GstState)GST_STATE_PAUSED, pending-state=(GstState)GST_STATE_VOID_PENDING;
0:00:05.505492000 8744 0x3d0a0600 DEBUG bin gstbin.c:2599:gst_bin_element_set_state:<my_pipeline> setting element my_h264parse to PAUSED, base_time 0:15:45.099030375
0:00:05.505551000 8744 0x3d233770 DEBUG GST_BUS gstbus.c:357:gst_bus_post:<bus1> [msg 0xffff9c003580] pushing on async queue
0:00:05.505574125 8744 0x3d0a0600 DEBUG GST_STATES gstelement.c:2827:gst_element_set_state_func:<my_h264parse> set_state to PAUSED
0:00:05.505644375 8744 0x3d0a0600 DEBUG GST_STATES gstelement.c:2852:gst_element_set_state_func:<my_h264parse> setting target state to PAUSED
0:00:05.505594250 8744 0x3d233770 LOG GST_POLL gstpoll.c:290:raise_wakeup: 0x3d154a30: raise
0:00:05.505706125 8744 0x3d0a0600 DEBUG GST_STATES gstelement.c:2865:gst_element_set_state_func:<my_h264parse> current PLAYING, old_pending VOID_PENDING, next VOID_PENDING, old return SUCCESS
0:00:05.505792125 8744 0x3d233770 DEBUG GST_BUS gstbus.c:360:gst_bus_post:<bus1> [msg 0xffff9c003580] pushed on async queue
0:00:05.505826000 8744 0xffffa4002580 LOG GST_BUS gstbus.c:522:gst_bus_timed_pop_filtered:<bus1> have 1 messages
0:00:05.505819000 8744 0x3d0a0600 DEBUG GST_STATES gstelement.c:2899:gst_element_set_state_func:<my_h264parse> final: setting state from PLAYING to PAUSED
0:00:05.505891250 8744 0x3d233770 DEBUG GST_BUS gstbus.c:353:gst_bus_post:<bus0> [msg 0xffff9c003580] dropped
0:00:05.506006750 8744 0x3d0a0600 LOG GST_STATES gstelement.c:3154:gst_element_change_state_func:<my_h264parse> default handler tries setting state from PLAYING to PAUSED (0023)
0:00:05.506088250 8744 0x3d0a0600 DEBUG GST_STATES gstelement.c:2988:gst_element_change_state:<my_h264parse> element changed state SUCCESS
0:00:05.506129875 8744 0x3d233770 DEBUG basesink gstbasesink.c:1582:gst_base_sink_commit_state:<my_sink> posting async-done message
0:00:05.505934375 8744 0xffffa4002580 LOG GST_POLL gstpoll.c:314:release_wakeup: 0x3d154a30: release
0:00:05.506194625 8744 0x3d233770 LOG GST_MESSAGE gstmessage.c:301:gst_message_new_custom: source my_sink: creating new message 0xffff9c003300 async-done
0:00:05.506148875 8744 0x3d0a0600 INFO GST_STATES gstelement.c:2676:gst_element_continue_state:<my_h264parse> completed state change to PAUSED
0:00:05.506299875 8744 0x3d0a0600 INFO GST_STATES gstelement.c:2579:_priv_gst_element_state_changed:<my_h264parse> notifying about state-changed PLAYING to PAUSED (VOID_PENDING pending)
0:00:05.506347750 8744 0xffffa4002580 DEBUG GST_BUS gstbus.c:546:gst_bus_timed_pop_filtered:<bus1> got message 0xffff9c003580, state-changed from my_sink, type mask is 4294967295
0:00:05.506370000 8744 0x3d0a0600 LOG GST_MESSAGE gstmessage.c:301:gst_message_new_custom: source my_h264parse: creating new message 0x3d231a90 state-changed
0:00:05.506325000 8744 0x3d233770 DEBUG GST_BUS gstbus.c:318:gst_bus_post:<bus0> [msg 0xffff9c003300] posting on bus async-done message: 0xffff9c003300, time 99:99:99.999999999, seq-num 78, element 'my_sink', GstMessageAsyncDone, running-time=(guint64)18446744073709551615;
0:00:05.506514750 8744 0x3d233770 DEBUG bin gstbin.c:3715:gst_bin_handle_message_func:<my_pipeline> [msg 0xffff9c003300] handling child my_sink message of type async-done
0:00:05.506458750 8744 0x3d0a0600 DEBUG GST_BUS gstbus.c:318:gst_bus_post:<bus0> [msg 0x3d231a90] posting on bus state-changed message: 0x3d231a90, time 99:99:99.999999999, seq-num 79, element 'my_h264parse', GstMessageStateChanged, old-state=(GstState)GST_STATE_PLAYING, new-state=(GstState)GST_STATE_PAUSED, pending-state=(GstState)GST_STATE_VOID_PENDING;
0:00:05.506478875 8744 0xffffa4002580 DEBUG GST_BUS gstbus.c:839:gst_bus_source_dispatch:<bus1> source 0x3d21dc00 calling dispatch with state-changed message: 0xffff9c003580, time 99:99:99.999999999, seq-num 77, element 'my_sink', GstMessageStateChanged, old-state=(GstState)GST_STATE_PLAYING, new-state=(GstState)GST_STATE_PAUSED, pending-state=(GstState)GST_STATE_VOID_PENDING;
0:00:05.506628500 8744 0x3d0a0600 DEBUG bin gstbin.c:3715:gst_bin_handle_message_func:<my_pipeline> [msg 0x3d231a90] handling child my_h264parse message of type state-changed
(bus_call, 87)my_sink state change, old state: PLAYING, new state: PAUSED
0:00:05.506578375 8744 0x3d233770 DEBUG bin gstbin.c:3936:gst_bin_handle_message_func:<my_pipeline> ASYNC_DONE message 0xffff9c003300, my_sink
0:00:05.506761000 8744 0xffffa4002580 LOG GST_MESSAGE gstmessage.c:208:_gst_message_free: finalize message 0xffff9c003580, state-changed from my_sink
0:00:05.506709375 8744 0x3d0a0600 DEBUG bin gstbin.c:4052:gst_bin_handle_message_func:<my_pipeline> posting message upward
0:00:05.506889875 8744 0xffffa4002580 DEBUG GST_BUS gstbus.c:844:gst_bus_source_dispatch:<bus1> source 0x3d21dc00 handler returns 1
0:00:05.506867625 8744 0x3d0a0600 DEBUG GST_BUS gstbus.c:318:gst_bus_post:<bus1> [msg 0x3d231a90] posting on bus state-changed message: 0x3d231a90, time 99:99:99.999999999, seq-num 79, element 'my_h264parse', GstMessageStateChanged, old-state=(GstState)GST_STATE_PLAYING, new-state=(GstState)GST_STATE_PAUSED, pending-state=(GstState)GST_STATE_VOID_PENDING;
0:00:05.506897000 8744 0x3d233770 DEBUG bin gstbin.c:3971:gst_bin_handle_message_func:<my_pipeline> ignoring message, target NULL
0:00:05.507020750 8744 0x3d0a0600 DEBUG GST_BUS gstbus.c:357:gst_bus_post:<bus1> [msg 0x3d231a90] pushing on async queue
0:00:05.507070000 8744 0x3d233770 LOG GST_MESSAGE gstmessage.c:208:_gst_message_free: finalize message 0xffff9c003300, async-done from my_sink
0:00:05.507135375 8744 0x3d0a0600 LOG GST_POLL gstpoll.c:290:raise_wakeup: 0x3d154a30: raise
0:00:05.507190625 8744 0x3d233770 DEBUG GST_BUS gstbus.c:353:gst_bus_post:<bus0> [msg 0xffff9c003300] dropped
0:00:05.507275375 8744 0x3d0a0600 DEBUG GST_BUS gstbus.c:360:gst_bus_post:<bus1> [msg 0x3d231a90] pushed on async queue
0:00:05.507325375 8744 0xffffa4002580 LOG GST_BUS gstbus.c:522:gst_bus_timed_pop_filtered:<bus1> have 1 messages
0:00:05.507288125 8744 0x3d233770 DEBUG basesink gstbasesink.c:2265:gst_base_sink_wait_preroll:<my_sink> waiting in preroll for flush or PLAYING
0:00:05.507350000 8744 0x3d0a0600 DEBUG GST_BUS gstbus.c:353:gst_bus_post:<bus0> [msg 0x3d231a90] dropped
0:00:05.507391875 8744 0xffffa4002580 LOG GST_POLL gstpoll.c:314:release_wakeup: 0x3d154a30: release
0:00:05.507500125 8744 0x3d0a0600 LOG GST_STATES gstelement.c:3004:gst_element_change_state:<my_h264parse> exit state change 1
0:00:05.507554500 8744 0x3d0a0600 DEBUG GST_STATES gstelement.c:2911:gst_element_set_state_func:<my_h264parse> returned SUCCESS
0:00:05.507546375 8744 0xffffa4002580 DEBUG GST_BUS gstbus.c:546:gst_bus_timed_pop_filtered:<bus1> got message 0x3d231a90, state-changed from my_h264parse, type mask is 4294967295
0:00:05.507617000 8744 0x3d0a0600 INFO GST_STATES gstbin.c:2952:gst_bin_change_state_func:<my_pipeline> child 'my_h264parse' changed state to 3(PAUSED) successfully
0:00:05.507689000 8744 0x3d0a0600 DEBUG bin gstbin.c:2370:gst_bin_sort_iterator_next:<my_pipeline> queue head gives my_appsrc
0:00:05.507741875 8744 0x3d0a0600 DEBUG bin gstbin.c:2303:update_degree:<my_pipeline> element my_appsrc not linked on any sinkpads
0:00:05.507654500 8744 0xffffa4002580 DEBUG GST_BUS gstbus.c:839:gst_bus_source_dispatch:<bus1> source 0x3d21dc00 calling dispatch with state-changed message: 0x3d231a90, time 99:99:99.999999999, seq-num 79, element 'my_h264parse', GstMessageStateChanged, old-state=(GstState)GST_STATE_PLAYING, new-state=(GstState)GST_STATE_PAUSED, pending-state=(GstState)GST_STATE_VOID_PENDING;
(bus_call, 87)my_h264parse state change, old state: PLAYING, new state: PAUSED
0:00:05.507808125 8744 0x3d0a0600 INFO GST_STATES gstbin.c:2504:gst_bin_element_set_state:<my_appsrc> current PLAYING pending VOID_PENDING, desired next PAUSED
0:00:05.507873875 8744 0xffffa4002580 LOG GST_MESSAGE gstmessage.c:208:_gst_message_free: finalize message 0x3d231a90, state-changed from my_h264parse
0:00:05.507919125 8744 0x3d0a0600 DEBUG bin gstbin.c:885:find_message:<my_pipeline> no message found matching types 00100000
0:00:05.507947500 8744 0xffffa4002580 DEBUG GST_BUS gstbus.c:844:gst_bus_source_dispatch:<bus1> source 0x3d21dc00 handler returns 1
0:00:05.507973500 8744 0x3d0a0600 DEBUG bin gstbin.c:892:find_message:<my_pipeline> async-start
0:00:05.508039000 8744 0x3d0a0600 DEBUG bin gstbin.c:2599:gst_bin_element_set_state:<my_pipeline> setting element my_appsrc to PAUSED, base_time 0:15:45.099030375
0:00:05.508151500 8744 0x3d0a0600 DEBUG GST_STATES gstelement.c:2827:gst_element_set_state_func:<my_appsrc> set_state to PAUSED
0:00:05.508204375 8744 0x3d0a0600 DEBUG GST_STATES gstelement.c:2852:gst_element_set_state_func:<my_appsrc> setting target state to PAUSED
0:00:05.508254500 8744 0x3d0a0600 DEBUG GST_STATES gstelement.c:2865:gst_element_set_state_func:<my_appsrc> current PLAYING, old_pending VOID_PENDING, next VOID_PENDING, old return SUCCESS
0:00:05.508315750 8744 0x3d0a0600 DEBUG GST_STATES gstelement.c:2899:gst_element_set_state_func:<my_appsrc> final: setting state from PLAYING to PAUSED
0:00:05.508374875 8744 0x3d0a0600 LOG GST_STATES gstelement.c:3154:gst_element_change_state_func:<my_appsrc> default handler tries setting state from PLAYING to PAUSED (0023)
0:00:05.508434250 8744 0x3d0a0600 DEBUG basesrc gstbasesrc.c:3910:gst_base_src_change_state:<my_appsrc> PLAYING->PAUSED
0:00:05.508483375 8744 0x3d0a0600 DEBUG GST_STATES gstelement.c:2988:gst_element_change_state:<my_appsrc> element changed state SUCCESS
0:00:05.508529125 8744 0x3d0a0600 INFO GST_STATES gstelement.c:2676:gst_element_continue_state:<my_appsrc> completed state change to PAUSED
0:00:05.508578750 8744 0x3d0a0600 INFO GST_STATES gstelement.c:2579:_priv_gst_element_state_changed:<my_appsrc> notifying about state-changed PLAYING to PAUSED (VOID_PENDING pending)
0:00:05.508637750 8744 0x3d0a0600 LOG GST_MESSAGE gstmessage.c:301:gst_message_new_custom: source my_appsrc: creating new message 0x3d231990 state-changed
0:00:05.508701250 8744 0x3d0a0600 DEBUG GST_BUS gstbus.c:318:gst_bus_post:<bus0> [msg 0x3d231990] posting on bus state-changed message: 0x3d231990, time 99:99:99.999999999, seq-num 80, element 'my_appsrc', GstMessageStateChanged, old-state=(GstState)GST_STATE_PLAYING, new-state=(GstState)GST_STATE_PAUSED, pending-state=(GstState)GST_STATE_VOID_PENDING;
0:00:05.508833125 8744 0x3d0a0600 DEBUG bin gstbin.c:3715:gst_bin_handle_message_func:<my_pipeline> [msg 0x3d231990] handling child my_appsrc message of type state-changed
0:00:05.508893625 8744 0x3d0a0600 DEBUG bin gstbin.c:4052:gst_bin_handle_message_func:<my_pipeline> posting message upward
0:00:05.508942000 8744 0x3d0a0600 DEBUG GST_BUS gstbus.c:318:gst_bus_post:<bus1> [msg 0x3d231990] posting on bus state-changed message: 0x3d231990, time 99:99:99.999999999, seq-num 80, element 'my_appsrc', GstMessageStateChanged, old-state=(GstState)GST_STATE_PLAYING, new-state=(GstState)GST_STATE_PAUSED, pending-state=(GstState)GST_STATE_VOID_PENDING;
0:00:05.509107500 8744 0x3d0a0600 DEBUG GST_BUS gstbus.c:357:gst_bus_post:<bus1> [msg 0x3d231990] pushing on async queue
0:00:05.509161000 8744 0x3d0a0600 LOG GST_POLL gstpoll.c:290:raise_wakeup: 0x3d154a30: raise
0:00:05.509237375 8744 0x3d0a0600 DEBUG GST_BUS gstbus.c:360:gst_bus_post:<bus1> [msg 0x3d231990] pushed on async queue
0:00:05.509259625 8744 0xffffa4002580 LOG GST_BUS gstbus.c:522:gst_bus_timed_pop_filtered:<bus1> have 1 messages
0:00:05.509292500 8744 0x3d0a0600 DEBUG GST_BUS gstbus.c:353:gst_bus_post:<bus0> [msg 0x3d231990] dropped
0:00:05.509308000 8744 0xffffa4002580 LOG GST_POLL gstpoll.c:314:release_wakeup: 0x3d154a30: release
0:00:05.509361875 8744 0x3d0a0600 LOG GST_STATES gstelement.c:3004:gst_element_change_state:<my_appsrc> exit state change 1
0:00:05.509415625 8744 0x3d0a0600 DEBUG GST_STATES gstelement.c:2911:gst_element_set_state_func:<my_appsrc> returned SUCCESS
0:00:05.509402000 8744 0xffffa4002580 DEBUG GST_BUS gstbus.c:546:gst_bus_timed_pop_filtered:<bus1> got message 0x3d231990, state-changed from my_appsrc, type mask is 4294967295
0:00:05.509467875 8744 0x3d0a0600 INFO GST_STATES gstbin.c:2952:gst_bin_change_state_func:<my_pipeline> child 'my_appsrc' changed state to 3(PAUSED) successfully
0:00:05.509588250 8744 0x3d0a0600 DEBUG bin gstbin.c:2359:gst_bin_sort_iterator_next:<my_pipeline> queue empty, elements exhausted
0:00:05.509544500 8744 0xffffa4002580 DEBUG GST_BUS gstbus.c:839:gst_bus_source_dispatch:<bus1> source 0x3d21dc00 calling dispatch with state-changed message: 0x3d231990, time 99:99:99.999999999, seq-num 80, element 'my_appsrc', GstMessageStateChanged, old-state=(GstState)GST_STATE_PLAYING, new-state=(GstState)GST_STATE_PAUSED, pending-state=(GstState)GST_STATE_VOID_PENDING;
(bus_call, 87)my_appsrc state change, old state: PLAYING, new state: PAUSED
0:00:05.509639250 8744 0x3d0a0600 DEBUG GST_STATES gstbin.c:3011:gst_bin_change_state_func:<my_pipeline> iterator done
0:00:05.509721250 8744 0xffffa4002580 LOG GST_MESSAGE gstmessage.c:208:_gst_message_free: finalize message 0x3d231990, state-changed from my_appsrc
0:00:05.509764875 8744 0x3d0a0600 LOG GST_STATES gstelement.c:3154:gst_element_change_state_func:<my_pipeline> default handler tries setting state from PLAYING to PAUSED (0023)
0:00:05.509790875 8744 0xffffa4002580 DEBUG GST_BUS gstbus.c:844:gst_bus_source_dispatch:<bus1> source 0x3d21dc00 handler returns 1
0:00:05.509872375 8744 0x3d0a0600 DEBUG GST_STATES gstbin.c:3029:gst_bin_change_state_func:<my_pipeline> we have ASYNC elements SUCCESS -> ASYNC
0:00:05.509930000 8744 0x3d0a0600 DEBUG bin gstbin.c:2401:gst_bin_sort_iterator_free:<my_pipeline> free
0:00:05.509982750 8744 0x3d0a0600 DEBUG bin gstbin.c:3053:gst_bin_change_state_func:<my_pipeline> target state NULL <= READY
0:00:05.510037250 8744 0x3d0a0600 DEBUG GST_STATES gstbin.c:3080:gst_bin_change_state_func:<my_pipeline> done changing bin's state from PLAYING to PAUSED, now in PLAYING, ret ASYNC
0:00:05.510106375 8744 0x3d0a0600 DEBUG GST_CLOCK gstclock.c:1046:gst_clock_get_internal_time:<GstSystemClock> internal time 0:15:49.857053500
0:00:05.510173500 8744 0x3d0a0600 DEBUG GST_CLOCK gstclock.c:1091:gst_clock_get_time:<GstSystemClock> adjusted time 0:15:49.857053500
0:00:05.510239375 8744 0x3d0a0600 DEBUG pipeline gstpipeline.c:370:pipeline_update_start_time:<my_pipeline> start_time=0:00:04.758023125, now=0:15:49.857053500, base_time 0:15:45.099030375
0:00:05.510324125 8744 0x3d0a0600 DEBUG GST_STATES gstelement.c:2970:gst_element_change_state:<my_pipeline> element will change state ASYNC
0:00:05.510372000 8744 0x3d0a0600 INFO GST_STATES gstelement.c:2981:gst_element_change_state:<my_pipeline> forcing commit state NULL <= READY
0:00:05.510427875 8744 0x3d0a0600 INFO GST_STATES gstelement.c:2651:gst_element_continue_state:<my_pipeline> committing state from PLAYING to PAUSED, pending NULL, next READY
0:00:05.510489125 8744 0x3d0a0600 INFO GST_STATES gstelement.c:2579:_priv_gst_element_state_changed:<my_pipeline> notifying about state-changed PLAYING to PAUSED (NULL pending)
0:00:05.510567875 8744 0x3d0a0600 LOG GST_MESSAGE gstmessage.c:301:gst_message_new_custom: source my_pipeline: creating new message 0x3d231890 state-changed
0:00:05.510632625 8744 0x3d0a0600 DEBUG GST_BUS gstbus.c:318:gst_bus_post:<bus1> [msg 0x3d231890] posting on bus state-changed message: 0x3d231890, time 99:99:99.999999999, seq-num 81, element 'my_pipeline', GstMessageStateChanged, old-state=(GstState)GST_STATE_PLAYING, new-state=(GstState)GST_STATE_PAUSED, pending-state=(GstState)GST_STATE_NULL;
0:00:05.510766000 8744 0x3d0a0600 DEBUG GST_BUS gstbus.c:357:gst_bus_post:<bus1> [msg 0x3d231890] pushing on async queue
0:00:05.510811875 8744 0x3d0a0600 LOG GST_POLL gstpoll.c:290:raise_wakeup: 0x3d154a30: raise
0:00:05.510918375 8744 0x3d0a0600 DEBUG GST_BUS gstbus.c:360:gst_bus_post:<bus1> [msg 0x3d231890] pushed on async queue
0:00:05.510944125 8744 0xffffa4002580 LOG GST_BUS gstbus.c:522:gst_bus_timed_pop_filtered:<bus1> have 1 messages
0:00:05.510975750 8744 0x3d0a0600 INFO GST_STATES gstelement.c:2658:gst_element_continue_state:<my_pipeline> continue state change PAUSED to READY, final NULL
0:00:05.510991875 8744 0xffffa4002580 LOG GST_POLL gstpoll.c:314:release_wakeup: 0x3d154a30: release
0:00:05.511051375 8744 0x3d0a0600 DEBUG pipeline gstpipeline.c:306:reset_start_time:<my_pipeline> reset start_time to 0
0:00:05.511090625 8744 0xffffa4002580 DEBUG GST_BUS gstbus.c:546:gst_bus_timed_pop_filtered:<bus1> got message 0x3d231890, state-changed from my_pipeline, type mask is 4294967295
0:00:05.511102125 8744 0x3d0a0600 DEBUG GST_STATES gstbin.c:2852:gst_bin_change_state_func:<my_pipeline> changing state of children from PAUSED to READY
0:00:05.511210250 8744 0x3d0a0600 DEBUG bin gstbin.c:2889:gst_bin_change_state_func:<my_pipeline> clearing all cached messages
0:00:05.511171250 8744 0xffffa4002580 DEBUG GST_BUS gstbus.c:839:gst_bus_source_dispatch:<bus1> source 0x3d21dc00 calling dispatch with state-changed message: 0x3d231890, time 99:99:99.999999999, seq-num 81, element 'my_pipeline', GstMessageStateChanged, old-state=(GstState)GST_STATE_PLAYING, new-state=(GstState)GST_STATE_PAUSED, pending-state=(GstState)GST_STATE_NULL;
(bus_call, 87)my_pipeline state change, old state: PLAYING, new state: PAUSED
0:00:05.511260250 8744 0x3d0a0600 DEBUG bin gstbin.c:2697:gst_bin_src_pads_activate:<my_pipeline> deactivate pads
0:00:05.511347625 8744 0xffffa4002580 LOG GST_MESSAGE gstmessage.c:208:_gst_message_free: finalize message 0x3d231890, state-changed from my_pipeline
0:00:05.511407000 8744 0x3d0a0600 DEBUG bin gstbin.c:2705:gst_bin_src_pads_activate:<my_pipeline> pad deactivation successful
0:00:05.511418500 8744 0xffffa4002580 DEBUG GST_BUS gstbus.c:844:gst_bus_source_dispatch:<bus1> source 0x3d21dc00 handler returns 1
0:00:05.511484500 8744 0x3d0a0600 DEBUG bin gstbin.c:2383:gst_bin_sort_iterator_resync:<my_pipeline> resync
0:00:05.511534250 8744 0x3d0a0600 DEBUG bin gstbin.c:2163:add_to_queue:<my_pipeline> adding 'my_sink' to queue
0:00:05.511594000 8744 0x3d0a0600 DEBUG bin gstbin.c:885:find_message:<my_pipeline> no message found matching types 00001000
0:00:05.511647125 8744 0x3d0a0600 DEBUG bin gstbin.c:892:find_message:<my_pipeline> structure-change
0:00:05.511703500 8744 0x3d0a0600 DEBUG bin gstbin.c:2280:update_degree:<my_pipeline> change element my_vdec, degree 0->1, linked to my_sink
0:00:05.511771250 8744 0x3d0a0600 DEBUG bin gstbin.c:885:find_message:<my_pipeline> no message found matching types 00001000
0:00:05.511823625 8744 0x3d0a0600 DEBUG bin gstbin.c:892:find_message:<my_pipeline> structure-change
0:00:05.511877375 8744 0x3d0a0600 DEBUG bin gstbin.c:2280:update_degree:<my_pipeline> change element my_h264parse, degree 0->1, linked to my_vdec
0:00:05.511942250 8744 0x3d0a0600 DEBUG bin gstbin.c:885:find_message:<my_pipeline> no message found matching types 00001000
0:00:05.511994750 8744 0x3d0a0600 DEBUG bin gstbin.c:892:find_message:<my_pipeline> structure-change
0:00:05.512048750 8744 0x3d0a0600 DEBUG bin gstbin.c:2280:update_degree:<my_pipeline> change element my_appsrc, degree 0->1, linked to my_h264parse
0:00:05.512115000 8744 0x3d0a0600 DEBUG bin gstbin.c:2303:update_degree:<my_pipeline> element my_appsrc not linked on any sinkpads
0:00:05.512208500 8744 0x3d0a0600 DEBUG bin gstbin.c:2370:gst_bin_sort_iterator_next:<my_pipeline> queue head gives my_sink
0:00:05.512262125 8744 0x3d0a0600 DEBUG bin gstbin.c:885:find_message:<my_pipeline> no message found matching types 00001000
0:00:05.512314250 8744 0x3d0a0600 DEBUG bin gstbin.c:892:find_message:<my_pipeline> structure-change
0:00:05.512367500 8744 0x3d0a0600 DEBUG bin gstbin.c:2280:update_degree:<my_pipeline> change element my_vdec, degree 1->0, linked to my_sink
0:00:05.512429375 8744 0x3d0a0600 DEBUG bin gstbin.c:2163:add_to_queue:<my_pipeline> adding 'my_vdec' to queue
0:00:05.512486500 8744 0x3d0a0600 INFO GST_STATES gstbin.c:2504:gst_bin_element_set_state:<my_sink> current PAUSED pending VOID_PENDING, desired next READY
0:00:05.512547250 8744 0x3d0a0600 DEBUG bin gstbin.c:885:find_message:<my_pipeline> no message found matching types 00100000
0:00:05.512599500 8744 0x3d0a0600 DEBUG bin gstbin.c:892:find_message:<my_pipeline> async-start
0:00:05.512649875 8744 0x3d0a0600 DEBUG bin gstbin.c:2599:gst_bin_element_set_state:<my_pipeline> setting element my_sink to READY, base_time 0:15:45.099030375
0:00:05.512720000 8744 0x3d0a0600 DEBUG GST_STATES gstelement.c:2827:gst_element_set_state_func:<my_sink> set_state to READY
0:00:05.512771375 8744 0x3d0a0600 DEBUG GST_STATES gstelement.c:2852:gst_element_set_state_func:<my_sink> setting target state to READY
0:00:05.512821250 8744 0x3d0a0600 DEBUG GST_STATES gstelement.c:2865:gst_element_set_state_func:<my_sink> current PAUSED, old_pending VOID_PENDING, next VOID_PENDING, old return SUCCESS
0:00:05.512882750 8744 0x3d0a0600 DEBUG GST_STATES gstelement.c:2899:gst_element_set_state_func:<my_sink> final: setting state from PAUSED to READY
0:00:05.512942125 8744 0x3d0a0600 LOG GST_STATES gstelement.c:3154:gst_element_change_state_func:<my_sink> default handler tries setting state from PAUSED to READY (001a)
0:00:05.513001750 8744 0x3d0a0600 DEBUG GST_ELEMENT_PADS gstelement.c:3097:gst_element_pads_activate:<my_sink> deactivate pads
0:00:05.513107375 8744 0x3d0a0600 DEBUG GST_PADS gstpad.c:1120:gst_pad_set_active:<my_sink:sink> deactivating pad from push mode
0:00:05.513176000 8744 0x3d0a0600 DEBUG GST_PADS gstpad.c:990:pre_activate:<my_sink:sink> setting PAD_MODE NONE, set flushing
0:00:05.513227375 8744 0x3d0a0600 DEBUG basesink gstbasesink.c:4159:gst_base_sink_set_flushing:<my_sink> flushing out data thread, need preroll to TRUE
0:00:05.513313500 8744 0x3d233770 DEBUG basesink gstbasesink.c:2280:gst_base_sink_wait_preroll:<my_sink> preroll interrupted because of flush
0:00:05.513360625 8744 0x3d233770 DEBUG basesink gstbasesink.c:2388:gst_base_sink_do_preroll:<my_sink> preroll failed: flushing
0:00:05.513402125 8744 0x3d233770 DEBUG basesink gstbasesink.c:2663:gst_base_sink_do_sync:<my_sink> preroll failed
0:00:05.513439250 8744 0x3d233770 DEBUG basesink gstbasesink.c:3616:gst_base_sink_chain_unlocked:<my_sink> do_sync returned flushing
0:00:05.513480750 8744 0x3d233770 DEBUG GST_QOS gstbasesink.c:2751:gst_base_sink_perform_qos:<my_sink> start: 0:00:05.000000000, stop 0:00:05.500000000, entered 0:00:04.514516750, left 0:00:05.000000000, pt: 99:99:99.999999999, duration 99:99:99.999999999,jitter -485483250
0:00:05.513574750 8744 0x3d233770 DEBUG GST_QOS gstbasesink.c:2755:gst_base_sink_perform_qos:<my_sink> avg_pt: 99:99:99.999999999, avg_rate: -1
0:00:05.513639625 8744 0x3d233770 DEBUG GST_QOS gstbasesink.c:2785:gst_base_sink_perform_qos:<my_sink> updated: avg_pt: 99:99:99.999999999, avg_rate: -1
0:00:05.513694500 8744 0x3d233770 DEBUG basesink gstbasesink.c:3577:gst_base_sink_chain_unlocked:<my_sink> object unref after render 0xffff9c01f020
0:00:05.513787500 8744 0x3d233770 DEBUG GST_SCHEDULING gstpad.c:4283:gst_pad_chain_data_unchecked:<my_sink:sink> called chainfunction &gst_base_sink_chain with buffer 0xffff9c01f020, returned flushing
0:00:05.513867750 8744 0x3d233770 DEBUG v4l2videodec gstv4l2videodec.c:684:gst_v4l2_video_dec_loop:<my_vdec> Leaving output thread: flushing
0:00:05.513917375 8744 0x3d233770 LOG v4l2 gstv4l2object.c:4173:gst_v4l2_object_unlock:<my_vdec:sink> start flushing
0:00:05.513948000 8744 0x3d233770 LOG GST_POLL gstpoll.c:1673:gst_poll_set_flushing: 0x3d21fde0: flushing: 1
0:00:05.513996250 8744 0x3d233770 LOG bufferpool gstbufferpool.c:1387:gst_buffer_pool_set_flushing:<my_vdec:pool:sink> flushing 1
0:00:05.514041000 8744 0x3d233770 DEBUG v4l2bufferpool gstv4l2bufferpool.c:956:gst_v4l2_buffer_pool_flush_start:<my_vdec:pool:sink> start flushing
0:00:05.514093250 8744 0x3d0a0600 DEBUG GST_PADS gstpad.c:1053:post_activate:<my_sink:sink> stopped streaming
0:00:05.514103125 8744 0x3d233770 LOG GST_POLL gstpoll.c:1673:gst_poll_set_flushing: 0xffffa4005cf0: flushing: 1
0:00:05.514185625 8744 0x3d0a0600 DEBUG GST_PADS gstpad.c:461:remove_events:<my_sink:sink> notify caps
0:00:05.513960875 8744 0x3d233140 INFO videodecoder gstvideodecoder.c:1339:gst_video_decoder_sink_event_default:<my_vdec> upstream tags: taglist, video-codec=(string)"H.264\ \(Constrained\ Baseline\ Profile\)", minimum-bitrate=(uint)13728, maximum-bitrate=(uint)22352, bitrate=(uint)20390;
0:00:05.514279250 8744 0x3d0a0600 LOG GST_PROPERTIES gstobject.c:448:gst_object_dispatch_properties_changed:<my_sink> deep notification from sink (caps)
0:00:05.514280500 8744 0x3d233770 DEBUG GST_PADS gstpad.c:6137:gst_pad_pause_task:<my_vdec:src> pause task
0:00:05.514396875 8744 0x3d233770 DEBUG task gsttask.c:688:gst_task_set_state:<my_vdec:src> Changing task 0x3d20c5f0 to state 2
0:00:05.514430000 8744 0x3d0a0600 LOG GST_PROPERTIES gstobject.c:448:gst_object_dispatch_properties_changed:<my_pipeline> deep notification from sink (caps)
0:00:05.514468625 8744 0x3d233770 INFO task gsttask.c:316:gst_task_func:<my_vdec:src> Task going to paused
0:00:05.514561625 8744 0x3d0a0600 DEBUG GST_PADS gstpad.c:1234:activate_mode_internal:<my_sink:sink> deactivated in push mode
0:00:05.514380875 8744 0x3d233140 LOG videodecoder gstvideodecoder.c:805:gst_video_decoder_create_merged_tags_event:<my_vdec> upstream : taglist, video-codec=(string)"H.264\ \(Constrained\ Baseline\ Profile\)", minimum-bitrate=(uint)13728, maximum-bitrate=(uint)22352, bitrate=(uint)20390;
0:00:05.514625875 8744 0x3d0a0600 DEBUG GST_ELEMENT_PADS gstelement.c:3116:gst_element_pads_activate:<my_sink> pad deactivation successful
0:00:05.514701375 8744 0x3d233140 LOG videodecoder gstvideodecoder.c:806:gst_video_decoder_create_merged_tags_event:<my_vdec> decoder : (NULL)
0:00:05.514778125 8744 0x3d233140 LOG videodecoder gstvideodecoder.c:807:gst_video_decoder_create_merged_tags_event:<my_vdec> mode : 3
0:00:05.514795250 8744 0x3d0a0600 DEBUG GST_CLOCK gstclock.c:352:_gst_clock_id_free: freed entry 0xffffa4008580
0:00:05.514889750 8744 0x3d0a0600 DEBUG basesink gstbasesink.c:994:gst_base_sink_set_last_buffer_unlocked:<my_sink> setting last buffer to (nil)
0:00:05.514864750 8744 0x3d233140 DEBUG videodecoder gstvideodecoder.c:813:gst_video_decoder_create_merged_tags_event:<my_vdec> merged : taglist, video-codec=(string)"H.264\ \(Constrained\ Baseline\ Profile\)", minimum-bitrate=(uint)13728, maximum-bitrate=(uint)22352, bitrate=(uint)20390;
0:00:05.514936375 8744 0x3d0a0600 DEBUG basesink gstbasesink.c:5238:gst_base_sink_change_state:<my_sink> PAUSED to READY, don't need_preroll
0:00:05.515032250 8744 0x3d233140 DEBUG GST_EVENT gstevent.c:306:gst_event_new_custom: creating new event 0xffffa000d6b0 tag 20510
0:00:05.515136625 8744 0x3d233140 DEBUG GST_PADS gstpad.c:5712:gst_pad_send_event_unchecked:<my_vdec:sink> sent event, ret ok
0:00:05.515194875 8744 0x3d233140 LOG GST_EVENT gstevent.c:223:_gst_event_free: freeing event 0xffffa4007ec0 type tag
0:00:05.515272500 8744 0x3d233140 LOG GST_PADS gstpad.c:5176:store_sticky_event:<my_vdec:sink> stored sticky event tag
0:00:05.515335875 8744 0x3d233140 LOG GST_PADS gstpad.c:5359:gst_pad_push_event_unchecked:<my_h264parse:src> sent event 0xffffa4007d00 (tag) to peerpad <my_vdec:sink>, ret ok
0:00:05.515422125 8744 0x3d233140 DEBUG GST_PADS gstpad.c:3889:push_sticky:<my_h264parse:src> event tag marked received
0:00:05.515539125 8744 0x3d233140 LOG baseparse gstbaseparse.c:2535:gst_base_parse_push_frame:<my_h264parse> pushing frame (858 bytes) now..
0:00:05.515615500 8744 0x3d233140 DEBUG GST_SCHEDULING gstpad.c:4277:gst_pad_chain_data_unchecked:<my_vdec:sink> calling chainfunction &gst_video_decoder_chain with buffer buffer: 0xffffa40344d0, pts 0:00:07.500000000, dts 99:99:99.999999999, dur 0:00:00.500000000, size 858, offset 18274, offset_end none, flags 0x2400
0:00:05.515809750 8744 0x3d233140 LOG videodecoder gstvideodecoder.c:2438:gst_video_decoder_chain:<my_vdec> chain PTS 0:00:07.500000000, DTS 99:99:99.999999999 duration 0:00:00.500000000 size 858 flags 2400
0:00:05.515916000 8744 0x3d233140 LOG videodecoder gstvideodecoder.c:2595:gst_video_decoder_new_frame:<my_vdec> Created new frame 0xffff9c01fdf0 (sfn:15)
0:00:05.515979000 8744 0x3d233140 LOG videodecoder gstvideodecoder.c:3410:gst_video_decoder_decode_frame:<my_vdec> PTS 0:00:07.500000000, DTS 99:99:99.999999999, dist 15
0:00:05.516108250 8744 0x3d233140 DEBUG v4l2videodec gstv4l2videodec.c:704:gst_v4l2_video_dec_handle_frame:<my_vdec> Handling frame 15
0:00:05.516173250 8744 0x3d233140 DEBUG v4l2videodec gstv4l2videodec.c:769:gst_v4l2_video_dec_handle_frame:<my_vdec> Starting decoding thread
0:00:05.516228750 8744 0x3d233140 DEBUG GST_PADS gstpad.c:6081:gst_pad_start_task:<my_vdec:src> start task
0:00:05.516277000 8744 0x3d233140 DEBUG task gsttask.c:688:gst_task_set_state:<my_vdec:src> Changing task 0x3d20c5f0 to state 0
0:00:05.516355750 8744 0x3d233140 DEBUG v4l2bufferpool gstv4l2bufferpool.c:1745:gst_v4l2_buffer_pool_process:<my_vdec:pool:sink> process buffer 0xffff9c01fe28
0:00:05.516376375 8744 0x3d233770 INFO task gsttask.c:318:gst_task_func:<my_vdec:src> Task resume from paused
0:00:05.516422625 8744 0x3d233140 LOG v4l2bufferpool gstv4l2bufferpool.c:1923:gst_v4l2_buffer_pool_process:<my_vdec:pool:sink> alloc buffer from our pool
0:00:05.516481875 8744 0x3d233770 LOG v4l2videodec gstv4l2videodec.c:605:gst_v4l2_video_dec_loop:<my_vdec> Allocate output buffer
0:00:05.516544750 8744 0x3d233140 DEBUG v4l2bufferpool gstv4l2bufferpool.c:1342:gst_v4l2_buffer_pool_acquire_buffer:<my_vdec:pool:sink> acquire
0:00:05.516598625 8744 0x3d233770 DEBUG v4l2bufferpool gstv4l2bufferpool.c:1342:gst_v4l2_buffer_pool_acquire_buffer:<my_vdec:pool:src> acquire
0:00:05.516663750 8744 0x3d233140 DEBUG bufferpool gstbufferpool.c:1185:default_acquire_buffer:<my_vdec:pool:sink> we are flushing
0:00:05.516713125 8744 0x3d233770 LOG v4l2bufferpool gstv4l2bufferpool.c:999:gst_v4l2_buffer_pool_poll:<my_vdec:pool:src> polling device
0:00:05.516773375 8744 0x3d233140 DEBUG v4l2bufferpool gstv4l2bufferpool.c:2015:gst_v4l2_buffer_pool_process:<my_vdec:pool:sink> flushing
0:00:05.516810375 8744 0x3d233770 DEBUG GST_POLL gstpoll.c:1369:gst_poll_wait: 0xffff9c007400: timeout :99:99:99.999999999
0:00:05.516882750 8744 0x3d233140 LOG videodecoder gstvideodecoder.c:2862:gst_video_decoder_drop_frame:<my_vdec> drop frame 0xffff9c01fdf0
0:00:05.517122875 8744 0x3d233140 LOG videodecoder gstvideodecoder.c:2625:gst_video_decoder_prepare_finish_frame:<my_vdec> n 5 in 0 out 0
0:00:05.517197000 8744 0x3d233140 LOG videodecoder gstvideodecoder.c:2634:gst_video_decoder_prepare_finish_frame:<my_vdec> finish frame 0xffff9c01fdf0 (#15) sync:0 PTS:0:00:07.500000000 DTS:99:99:99.999999999
0:00:05.517300875 8744 0x3d233140 DEBUG videodecoder gstvideodecoder.c:2676:gst_video_decoder_prepare_finish_frame:<my_vdec> sync timestamp 0:00:07.500000000 diff -0:00:07.500000000
0:00:05.517386375 8744 0x3d233140 DEBUG videodecoder gstvideodecoder.c:2869:gst_video_decoder_drop_frame:<my_vdec> dropping frame 0:00:07.500000000
0:00:05.517480375 8744 0x3d233140 LOG GST_MESSAGE gstmessage.c:301:gst_message_new_custom: source my_vdec: creating new message 0x3d231c90 qos
0:00:05.517593875 8744 0x3d233140 DEBUG GST_BUS gstbus.c:318:gst_bus_post:<bus0> [msg 0x3d231c90] posting on bus qos message: 0x3d231c90, time 99:99:99.999999999, seq-num 83, element 'my_vdec', GstMessageQOS, live=(boolean)false, running-time=(guint64)7500000000, stream-time=(guint64)7500000000, timestamp=(guint64)7500000000, duration=(guint64)18446744073709551615, jitter=(gint64)-3485483250, proportion=(double)0.02541942658819427, quality=(int)1000000, format=(GstFormat)GST_FORMAT_BUFFERS, processed=(guint64)11, dropped=(guint64)1;
0:00:05.517865250 8744 0x3d233140 DEBUG bin gstbin.c:3715:gst_bin_handle_message_func:<my_pipeline> [msg 0x3d231c90] handling child my_vdec message of type qos
0:00:05.517928625 8744 0x3d233140 DEBUG bin gstbin.c:4052:gst_bin_handle_message_func:<my_pipeline> posting message upward
0:00:05.518050875 8744 0x3d1e1590 LOG waylandsink gstwaylandsink.c:745:frame_redraw_callback: frame_redraw_cb
0:00:05.518118750 8744 0x3d1e1590 DEBUG GST_POLL gstpoll.c:1369:gst_poll_wait: 0x3d21fe80: timeout :99:99:99.999999999
0:00:05.517980500 8744 0x3d233140 DEBUG GST_BUS gstbus.c:318:gst_bus_post:<bus1> [msg 0x3d231c90] posting on bus qos message: 0x3d231c90, time 99:99:99.999999999, seq-num 83, element 'my_vdec', GstMessageQOS, live=(boolean)false, running-time=(guint64)7500000000, stream-time=(guint64)7500000000, timestamp=(guint64)7500000000, duration=(guint64)18446744073709551615, jitter=(gint64)-3485483250, proportion=(double)0.02541942658819427, quality=(int)1000000, format=(GstFormat)GST_FORMAT_BUFFERS, processed=(guint64)11, dropped=(guint64)1;
0:00:05.518250875 8744 0x3d233140 DEBUG GST_BUS gstbus.c:357:gst_bus_post:<bus1> [msg 0x3d231c90] pushing on async queue
0:00:05.518250500 8744 0x3d1e1590 DEBUG GST_POLL gstpoll.c:1369:gst_poll_wait: 0x3d21fe80: timeout :99:99:99.999999999
0:00:05.518307500 8744 0x3d0a0600 DEBUG GST_STATES gstelement.c:2988:gst_element_change_state:<my_sink> element changed state SUCCESS
0:00:05.518317750 8744 0x3d233140 LOG GST_POLL gstpoll.c:290:raise_wakeup: 0x3d154a30: raise
0:00:05.518413375 8744 0x3d0a0600 INFO GST_STATES gstelement.c:2676:gst_element_continue_state:<my_sink> completed state change to READY
0:00:05.518471125 8744 0x3d233140 DEBUG GST_BUS gstbus.c:360:gst_bus_post:<bus1> [msg 0x3d231c90] pushed on async queue
0:00:05.518473250 8744 0x3d0a0600 INFO GST_STATES gstelement.c:2579:_priv_gst_element_state_changed:<my_sink> notifying about state-changed PAUSED to READY (VOID_PENDING pending)
0:00:05.518539625 8744 0x3d233140 DEBUG GST_BUS gstbus.c:353:gst_bus_post:<bus0> [msg 0x3d231c90] dropped
0:00:05.518523250 8744 0xffffa4002580 LOG GST_BUS gstbus.c:522:gst_bus_timed_pop_filtered:<bus1> have 1 messages
0:00:05.518602000 8744 0x3d233140 DEBUG default gstvideoutils.c:40:_gst_video_codec_frame_free: free frame 0xffff9c01fdf0
0:00:05.518714500 8744 0xffffa4002580 LOG GST_POLL gstpoll.c:314:release_wakeup: 0x3d154a30: release
0:00:05.518623375 8744 0x3d0a0600 LOG GST_MESSAGE gstmessage.c:301:gst_message_new_custom: source my_sink: creating new message 0x3d231810 state-changed
0:00:05.518798375 8744 0x3d233140 LOG GST_BUFFER gstbuffer.c:725:_gst_buffer_free: finalize 0xffffa40344d0
0:00:05.518801125 8744 0xffffa4002580 DEBUG GST_BUS gstbus.c:546:gst_bus_timed_pop_filtered:<bus1> got message 0x3d231c90, qos from my_vdec, type mask is 4294967295
0:00:05.518904750 8744 0x3d233140 DEBUG GST_MEMORY gstmemory.c:88:_gst_memory_free: free memory 0x3d227580
0:00:05.518972125 8744 0x3d233140 DEBUG videodecoder gstvideodecoder.c:3427:gst_video_decoder_decode_frame:<my_vdec> flow error flushing
0:00:05.518924250 8744 0x3d0a0600 DEBUG GST_BUS gstbus.c:318:gst_bus_post:<bus0> [msg 0x3d231810] posting on bus state-changed message: 0x3d231810, time 99:99:99.999999999, seq-num 84, element 'my_sink', GstMessageStateChanged, old-state=(GstState)GST_STATE_PAUSED, new-state=(GstState)GST_STATE_READY, pending-state=(GstState)GST_STATE_VOID_PENDING;
0:00:05.519033000 8744 0x3d233140 DEBUG GST_SCHEDULING gstpad.c:4283:gst_pad_chain_data_unchecked:<my_vdec:sink> called chainfunction &gst_video_decoder_chain with buffer 0xffffa40344d0, returned flushing
0:00:05.518894250 8744 0xffffa4002580 DEBUG GST_BUS gstbus.c:839:gst_bus_source_dispatch:<bus1> source 0x3d21dc00 calling dispatch with qos message: 0x3d231c90, time 99:99:99.999999999, seq-num 83, element 'my_vdec', GstMessageQOS, live=(boolean)false, running-time=(guint64)7500000000, stream-time=(guint64)7500000000, timestamp=(guint64)7500000000, duration=(guint64)18446744073709551615, jitter=(gint64)-3485483250, proportion=(double)0.02541942658819427, quality=(int)1000000, format=(GstFormat)GST_FORMAT_BUFFERS, processed=(guint64)11, dropped=(guint64)1;
0:00:05.519101750 8744 0x3d233140 LOG baseparse gstbaseparse.c:2537:gst_base_parse_push_frame:<my_h264parse> frame pushed, flow flushing
0:00:05.519068000 8744 0x3d0a0600 DEBUG bin gstbin.c:3715:gst_bin_handle_message_func:<my_pipeline> [msg 0x3d231810] handling child my_sink message of type state-changed
0:00:05.519180000 8744 0xffffa4002580 LOG GST_MESSAGE gstmessage.c:208:_gst_message_free: finalize message 0x3d231c90, qos from my_vdec
0:00:05.519171625 8744 0x3d233140 LOG baseparse gstbaseparse.c:2166:gst_base_parse_handle_buffer:<my_h264parse> handle_frame skipped 0, flushed 856
0:00:05.519275875 8744 0x3d0a0600 DEBUG bin gstbin.c:4052:gst_bin_handle_message_func:<my_pipeline> posting message upward
0:00:05.519270375 8744 0xffffa4002580 DEBUG GST_BUS gstbus.c:844:gst_bus_source_dispatch:<bus1> source 0x3d21dc00 handler returns 1
0:00:05.519361000 8744 0x3d233140 LOG baseparse gstbaseparse.c:3277:gst_base_parse_chain:<my_h264parse> chain leaving
0:00:05.519340750 8744 0x3d0a0600 DEBUG GST_BUS gstbus.c:318:gst_bus_post:<bus1> [msg 0x3d231810] posting on bus state-changed message: 0x3d231810, time 99:99:99.999999999, seq-num 84, element 'my_sink', GstMessageStateChanged, old-state=(GstState)GST_STATE_PAUSED, new-state=(GstState)GST_STATE_READY, pending-state=(GstState)GST_STATE_VOID_PENDING;
0:00:05.519419125 8744 0x3d233140 DEBUG GST_SCHEDULING gstpad.c:4283:gst_pad_chain_data_unchecked:<my_h264parse:sink> called chainfunction &gst_base_parse_chain with buffer 0xffffa40172f0, returned flushing
0:00:05.519491875 8744 0x3d0a0600 DEBUG GST_BUS gstbus.c:357:gst_bus_post:<bus1> [msg 0x3d231810] pushing on async queue
0:00:05.519530250 8744 0x3d233140 INFO basesrc gstbasesrc.c:2965:gst_base_src_loop:<my_appsrc> pausing after gst_pad_push() = flushing
0:00:05.519540250 8744 0x3d0a0600 LOG GST_POLL gstpoll.c:290:raise_wakeup: 0x3d154a30: raise
0:00:05.519633375 8744 0x3d233140 DEBUG basesrc gstbasesrc.c:3008:gst_base_src_loop:<my_appsrc> pausing task, reason flushing
0:00:05.519683375 8744 0x3d0a0600 DEBUG GST_BUS gstbus.c:360:gst_bus_post:<bus1> [msg 0x3d231810] pushed on async queue
0:00:05.519691125 8744 0x3d233140 DEBUG GST_PADS gstpad.c:6137:gst_pad_pause_task:<my_appsrc:src> pause task
0:00:05.519751000 8744 0x3d0a0600 DEBUG GST_BUS gstbus.c:353:gst_bus_post:<bus0> [msg 0x3d231810] dropped
0:00:05.519701625 8744 0xffffa4002580 LOG GST_BUS gstbus.c:522:gst_bus_timed_pop_filtered:<bus1> have 1 messages
0:00:05.519837500 8744 0x3d233140 DEBUG task gsttask.c:688:gst_task_set_state:<my_appsrc:src> Changing task 0x3d20c4d0 to state 2
0:00:05.519866500 8744 0xffffa4002580 LOG GST_POLL gstpoll.c:314:release_wakeup: 0x3d154a30: release
0:00:05.519816875 8744 0x3d0a0600 LOG GST_STATES gstelement.c:3004:gst_element_change_state:<my_sink> exit state change 1
0:00:05.519961250 8744 0x3d233140 INFO task gsttask.c:316:gst_task_func:<my_appsrc:src> Task going to paused
0:00:05.519985625 8744 0x3d0a0600 DEBUG GST_STATES gstelement.c:2911:gst_element_set_state_func:<my_sink> returned SUCCESS
0:00:05.519947875 8744 0xffffa4002580 DEBUG GST_BUS gstbus.c:546:gst_bus_timed_pop_filtered:<bus1> got message 0x3d231810, state-changed from my_sink, type mask is 4294967295
0:00:05.520052250 8744 0x3d0a0600 INFO GST_STATES gstbin.c:2952:gst_bin_change_state_func:<my_pipeline> child 'my_sink' changed state to 2(READY) successfully
0:00:05.520159625 8744 0x3d0a0600 DEBUG bin gstbin.c:2370:gst_bin_sort_iterator_next:<my_pipeline> queue head gives my_vdec
0:00:05.520217500 8744 0x3d0a0600 DEBUG bin gstbin.c:885:find_message:<my_pipeline> no message found matching types 00001000
0:00:05.520115500 8744 0xffffa4002580 DEBUG GST_BUS gstbus.c:839:gst_bus_source_dispatch:<bus1> source 0x3d21dc00 calling dispatch with state-changed message: 0x3d231810, time 99:99:99.999999999, seq-num 84, element 'my_sink', GstMessageStateChanged, old-state=(GstState)GST_STATE_PAUSED, new-state=(GstState)GST_STATE_READY, pending-state=(GstState)GST_STATE_VOID_PENDING;
0:00:05.520284250 8744 0x3d0a0600 DEBUG bin gstbin.c:892:find_message:<my_pipeline> structure-change
(bus_call, 87)my_sink state change, old state: PAUSED, new state: READY
0:00:05.520354000 8744 0x3d0a0600 DEBUG bin gstbin.c:2280:update_degree:<my_pipeline> change element my_h264parse, degree 1->0, linked to my_vdec
0:00:05.520373375 8744 0xffffa4002580 LOG GST_MESSAGE gstmessage.c:208:_gst_message_free: finalize message 0x3d231810, state-changed from my_sink
0:00:05.520462125 8744 0x3d0a0600 DEBUG bin gstbin.c:2163:add_to_queue:<my_pipeline> adding 'my_h264parse' to queue
0:00:05.520459125 8744 0xffffa4002580 DEBUG GST_BUS gstbus.c:844:gst_bus_source_dispatch:<bus1> source 0x3d21dc00 handler returns 1
0:00:05.520539250 8744 0x3d0a0600 INFO GST_STATES gstbin.c:2504:gst_bin_element_set_state:<my_vdec> current PAUSED pending VOID_PENDING, desired next READY
0:00:05.520604500 8744 0x3d0a0600 DEBUG bin gstbin.c:885:find_message:<my_pipeline> no message found matching types 00100000
0:00:05.520657750 8744 0x3d0a0600 DEBUG bin gstbin.c:892:find_message:<my_pipeline> async-start
0:00:05.520708125 8744 0x3d0a0600 DEBUG bin gstbin.c:2599:gst_bin_element_set_state:<my_pipeline> setting element my_vdec to READY, base_time 0:15:45.099030375
0:00:05.520815125 8744 0x3d0a0600 DEBUG GST_STATES gstelement.c:2827:gst_element_set_state_func:<my_vdec> set_state to READY
0:00:05.520868500 8744 0x3d0a0600 DEBUG GST_STATES gstelement.c:2852:gst_element_set_state_func:<my_vdec> setting target state to READY
0:00:05.520919375 8744 0x3d0a0600 DEBUG GST_STATES gstelement.c:2865:gst_element_set_state_func:<my_vdec> current PAUSED, old_pending VOID_PENDING, next VOID_PENDING, old return SUCCESS
0:00:05.520981875 8744 0x3d0a0600 DEBUG GST_STATES gstelement.c:2899:gst_element_set_state_func:<my_vdec> final: setting state from PAUSED to READY
0:00:05.521102625 8744 0x3d0a0600 LOG v4l2 gstv4l2object.c:4173:gst_v4l2_object_unlock:<my_vdec:sink> start flushing
0:00:05.521153875 8744 0x3d0a0600 LOG GST_POLL gstpoll.c:1673:gst_poll_set_flushing: 0x3d21fde0: flushing: 1
0:00:05.521214250 8744 0x3d0a0600 LOG bufferpool gstbufferpool.c:1387:gst_buffer_pool_set_flushing:<my_vdec:pool:sink> flushing 1
0:00:05.521270125 8744 0x3d0a0600 LOG v4l2 gstv4l2object.c:4173:gst_v4l2_object_unlock:<my_vdec:src> start flushing
0:00:05.521307875 8744 0x3d0a0600 LOG GST_POLL gstpoll.c:1673:gst_poll_set_flushing: 0x3d21fed0: flushing: 1
0:00:05.521364000 8744 0x3d0a0600 LOG bufferpool gstbufferpool.c:1387:gst_buffer_pool_set_flushing:<my_vdec:pool:src> flushing 1
0:00:05.521416375 8744 0x3d0a0600 DEBUG v4l2bufferpool gstv4l2bufferpool.c:956:gst_v4l2_buffer_pool_flush_start:<my_vdec:pool:src> start flushing
0:00:05.521454750 8744 0x3d0a0600 LOG GST_POLL gstpoll.c:1673:gst_poll_set_flushing: 0xffff9c007400: flushing: 1
0:00:05.521500625 8744 0x3d0a0600 LOG GST_POLL gstpoll.c:290:raise_wakeup: 0xffff9c007400: raise
0:00:05.521591750 8744 0x3d0a0600 DEBUG GST_PADS gstpad.c:6224:gst_pad_stop_task:<my_vdec:src> stop task
0:00:05.521597750 8744 0x3d233770 LOG GST_POLL gstpoll.c:341:release_all_wakeup: 0xffff9c007400: releasing 1
0:00:05.521678750 8744 0x3d233770 LOG GST_POLL gstpoll.c:1586:gst_poll_wait: 0xffff9c007400: we are flushing
0:00:05.521686375 8744 0x3d0a0600 DEBUG task gsttask.c:688:gst_task_set_state:<my_vdec:src> Changing task 0x3d20c5f0 to state 1
0:00:05.521751500 8744 0x3d233770 DEBUG v4l2bufferpool gstv4l2bufferpool.c:1030:gst_v4l2_buffer_pool_poll:<my_vdec:pool:src> stop called
0:00:05.521802250 8744 0x3d233770 DEBUG v4l2bufferpool gstv4l2bufferpool.c:1328:gst_v4l2_buffer_pool_dequeue:<my_vdec:pool:src> poll error flushing
0:00:05.521857250 8744 0x3d233770 DEBUG v4l2videodec gstv4l2videodec.c:684:gst_v4l2_video_dec_loop:<my_vdec> Leaving output thread: flushing
0:00:05.521914125 8744 0x3d233770 LOG v4l2 gstv4l2object.c:4173:gst_v4l2_object_unlock:<my_vdec:sink> start flushing
0:00:05.521951875 8744 0x3d233770 LOG GST_POLL gstpoll.c:1673:gst_poll_set_flushing: 0x3d21fde0: flushing: 1
0:00:05.522008875 8744 0x3d233770 LOG bufferpool gstbufferpool.c:1387:gst_buffer_pool_set_flushing:<my_vdec:pool:sink> flushing 1
0:00:05.522064625 8744 0x3d233770 DEBUG GST_PADS gstpad.c:6137:gst_pad_pause_task:<my_vdec:src> pause task
0:00:05.522113875 8744 0x3d233770 DEBUG GST_PADS gstpad.c:6158:gst_pad_pause_task:<my_vdec:src> pad has no task
0:00:05.522178625 8744 0x3d233770 DEBUG GST_PADS gstpad.c:6007:do_stream_status:<my_vdec:src> doing stream-status 2
0:00:05.522183875 8744 0x3d0a0600 DEBUG task gsttask.c:815:gst_task_join:<my_vdec:src> Joining task 0x3d20c5f0, thread 0x3d0a0600
0:00:05.522248500 8744 0x3d233770 LOG GST_MESSAGE gstmessage.c:301:gst_message_new_custom: source src: creating new message 0x3d216dc0 stream-status
0:00:05.522326500 8744 0x3d233770 DEBUG GST_PADS gstpad.c:6036:do_stream_status:<my_vdec:src> posting stream-status 2
0:00:05.522418000 8744 0x3d233770 DEBUG GST_BUS gstbus.c:318:gst_bus_post:<bus0> [msg 0x3d216dc0] posting on bus stream-status message: 0x3d216dc0, time 99:99:99.999999999, seq-num 85, element 'src', GstMessageStreamStatus, type=(GstStreamStatusType)GST_STREAM_STATUS_TYPE_LEAVE, owner=(GstElement)"\(v4l2h264dec\)\ my_vdec", object=(GstTask)"\(GstTask\)\ my_vdec:src";
0:00:05.522606750 8744 0x3d233770 DEBUG bin gstbin.c:3715:gst_bin_handle_message_func:<my_pipeline> [msg 0x3d216dc0] handling child src message of type stream-status
0:00:05.522670500 8744 0x3d233770 DEBUG bin gstbin.c:4052:gst_bin_handle_message_func:<my_pipeline> posting message upward
0:00:05.522720000 8744 0x3d233770 DEBUG GST_BUS gstbus.c:318:gst_bus_post:<bus1> [msg 0x3d216dc0] posting on bus stream-status message: 0x3d216dc0, time 99:99:99.999999999, seq-num 85, element 'src', GstMessageStreamStatus, type=(GstStreamStatusType)GST_STREAM_STATUS_TYPE_LEAVE, owner=(GstElement)"\(v4l2h264dec\)\ my_vdec", object=(GstTask)"\(GstTask\)\ my_vdec:src";
0:00:05.522882125 8744 0x3d233770 DEBUG GST_BUS gstbus.c:357:gst_bus_post:<bus1> [msg 0x3d216dc0] pushing on async queue
0:00:05.522927125 8744 0x3d233770 LOG GST_POLL gstpoll.c:290:raise_wakeup: 0x3d154a30: raise
0:00:05.523004000 8744 0x3d233770 DEBUG GST_BUS gstbus.c:360:gst_bus_post:<bus1> [msg 0x3d216dc0] pushed on async queue
0:00:05.523033125 8744 0xffffa4002580 LOG GST_BUS gstbus.c:522:gst_bus_timed_pop_filtered:<bus1> have 1 messages
0:00:05.523059625 8744 0x3d233770 DEBUG GST_BUS gstbus.c:353:gst_bus_post:<bus0> [msg 0x3d216dc0] dropped
0:00:05.523083000 8744 0xffffa4002580 LOG GST_POLL gstpoll.c:314:release_wakeup: 0x3d154a30: release
0:00:05.523123000 8744 0x3d233770 DEBUG task gsttask.c:359:gst_task_func: Exit task 0x3d20c5f0, thread 0x3d233770
0:00:05.523148125 8744 0xffffa4002580 DEBUG GST_BUS gstbus.c:546:gst_bus_timed_pop_filtered:<bus1> got message 0x3d216dc0, stream-status from src, type mask is 4294967295
0:00:05.523142375 8744 0x3d0a0600 DEBUG task gsttask.c:845:gst_task_join:<my_vdec:src> Joined task 0x3d20c5f0
0:00:05.523261250 8744 0x3d0a0600 LOG GST_STATES gstelement.c:3154:gst_element_change_state_func:<my_vdec> default handler tries setting state from PAUSED to READY (001a)
0:00:05.523324625 8744 0x3d0a0600 DEBUG GST_ELEMENT_PADS gstelement.c:3097:gst_element_pads_activate:<my_vdec> deactivate pads
0:00:05.523231000 8744 0xffffa4002580 DEBUG GST_BUS gstbus.c:839:gst_bus_source_dispatch:<bus1> source 0x3d21dc00 calling dispatch with stream-status message: 0x3d216dc0, time 99:99:99.999999999, seq-num 85, element 'src', GstMessageStreamStatus, type=(GstStreamStatusType)GST_STREAM_STATUS_TYPE_LEAVE, owner=(GstElement)"\(v4l2h264dec\)\ my_vdec", object=(GstTask)"\(GstTask\)\ my_vdec:src";
0:00:05.523394750 8744 0x3d0a0600 DEBUG GST_PADS gstpad.c:1120:gst_pad_set_active:<my_vdec:src> deactivating pad from push mode
0:00:05.523397000 8744 0xffffa4002580 LOG GST_MESSAGE gstmessage.c:208:_gst_message_free: finalize message 0x3d216dc0, stream-status from src
0:00:05.523469250 8744 0x3d0a0600 DEBUG GST_PADS gstpad.c:990:pre_activate:<my_vdec:src> setting PAD_MODE NONE, set flushing
0:00:05.523535875 8744 0x3d0a0600 DEBUG GST_PADS gstpad.c:1053:post_activate:<my_vdec:src> stopped streaming
0:00:05.523553000 8744 0xffffa4002580 DEBUG task gsttask.c:214:gst_task_finalize: task 0x3d20c5f0 finalize
0:00:05.523579625 8744 0x3d0a0600 LOG GST_EVENT gstevent.c:223:_gst_event_free: freeing event 0xffffa4008510 type caps
0:00:05.523635375 8744 0x3d0a0600 LOG GST_EVENT gstevent.c:223:_gst_event_free: freeing event 0xffffa4007f30 type tag
0:00:05.523640750 8744 0xffffa4002580 DEBUG GST_BUS gstbus.c:844:gst_bus_source_dispatch:<bus1> source 0x3d21dc00 handler returns 1
0:00:05.523752750 8744 0x3d0a0600 DEBUG GST_PADS gstpad.c:461:remove_events:<my_vdec:src> notify caps
0:00:05.523816750 8744 0x3d0a0600 LOG GST_PROPERTIES gstobject.c:448:gst_object_dispatch_properties_changed:<my_vdec> deep notification from src (caps)
0:00:05.523880500 8744 0x3d0a0600 LOG GST_PROPERTIES gstobject.c:448:gst_object_dispatch_properties_changed:<my_pipeline> deep notification from src (caps)
0:00:05.523945000 8744 0x3d0a0600 DEBUG GST_PADS gstpad.c:1234:activate_mode_internal:<my_vdec:src> deactivated in push mode
0:00:05.524017875 8744 0x3d0a0600 DEBUG GST_PADS gstpad.c:1120:gst_pad_set_active:<my_vdec:sink> deactivating pad from push mode
0:00:05.524074500 8744 0x3d0a0600 DEBUG GST_PADS gstpad.c:990:pre_activate:<my_vdec:sink> setting PAD_MODE NONE, set flushing
0:00:05.524127125 8744 0x3d0a0600 DEBUG GST_PADS gstpad.c:1053:post_activate:<my_vdec:sink> stopped streaming
0:00:05.524179375 8744 0x3d0a0600 DEBUG GST_PADS gstpad.c:461:remove_events:<my_vdec:sink> notify caps
0:00:05.524231500 8744 0x3d0a0600 LOG GST_PROPERTIES gstobject.c:448:gst_object_dispatch_properties_changed:<my_vdec> deep notification from sink (caps)
0:00:05.524292375 8744 0x3d0a0600 LOG GST_PROPERTIES gstobject.c:448:gst_object_dispatch_properties_changed:<my_pipeline> deep notification from sink (caps)
0:00:05.524356000 8744 0x3d0a0600 DEBUG GST_PADS gstpad.c:1234:activate_mode_internal:<my_vdec:sink> deactivated in push mode
0:00:05.524416875 8744 0x3d0a0600 DEBUG GST_ELEMENT_PADS gstelement.c:3116:gst_element_pads_activate:<my_vdec> pad deactivation successful
0:00:05.524471375 8744 0x3d0a0600 DEBUG v4l2videodec gstv4l2videodec.c:203:gst_v4l2_video_dec_stop:<my_vdec> Stopping
0:00:05.524520375 8744 0x3d0a0600 LOG v4l2 gstv4l2object.c:4173:gst_v4l2_object_unlock:<my_vdec:sink> start flushing
0:00:05.524558000 8744 0x3d0a0600 LOG GST_POLL gstpoll.c:1673:gst_poll_set_flushing: 0x3d21fde0: flushing: 1
0:00:05.524614125 8744 0x3d0a0600 LOG bufferpool gstbufferpool.c:1387:gst_buffer_pool_set_flushing:<my_vdec:pool:sink> flushing 1
0:00:05.524668500 8744 0x3d0a0600 LOG v4l2 gstv4l2object.c:4173:gst_v4l2_object_unlock:<my_vdec:src> start flushing
0:00:05.524706500 8744 0x3d0a0600 LOG GST_POLL gstpoll.c:1673:gst_poll_set_flushing: 0x3d21fed0: flushing: 1
0:00:05.524761625 8744 0x3d0a0600 LOG bufferpool gstbufferpool.c:1387:gst_buffer_pool_set_flushing:<my_vdec:pool:src> flushing 1
0:00:05.524815625 8744 0x3d0a0600 DEBUG GST_PADS gstpad.c:6224:gst_pad_stop_task:<my_vdec:src> stop task
0:00:05.524864250 8744 0x3d0a0600 DEBUG GST_PADS gstpad.c:6249:gst_pad_stop_task:<my_vdec:src> no task
0:00:05.524913625 8744 0x3d0a0600 DEBUG v4l2 gstv4l2object.c:4201:gst_v4l2_object_stop:<my_vdec:sink> stopping
0:00:05.524961750 8744 0x3d0a0600 DEBUG v4l2 gstv4l2object.c:4209:gst_v4l2_object_stop:<my_vdec:sink> deactivating pool
0:00:05.525008625 8744 0x3d0a0600 LOG bufferpool gstbufferpool.c:506:gst_buffer_pool_set_active:<my_vdec:pool:sink> active 0
0:00:05.525117750 8744 0x3d0a0600 LOG bufferpool gstbufferpool.c:538:gst_buffer_pool_set_active:<my_vdec:pool:sink> outstanding buffers 0
0:00:05.525180750 8744 0x3d0a0600 LOG bufferpool gstbufferpool.c:430:do_stop:<my_vdec:pool:sink> stopping
0:00:05.525226250 8744 0x3d0a0600 DEBUG v4l2bufferpool gstv4l2bufferpool.c:919:gst_v4l2_buffer_pool_stop:<my_vdec:pool:sink> stopping pool
0:00:05.537386250 8744 0x3d0a0600 DEBUG v4l2bufferpool gstv4l2bufferpool.c:707:gst_v4l2_buffer_pool_streamoff:<my_vdec:pool:sink> Stopped streaming
0:00:05.537549875 8744 0x3d0a0600 DEBUG v4l2bufferpool gstv4l2bufferpool.c:1420:gst_v4l2_buffer_pool_release_buffer:<my_vdec:pool:sink> release buffer 0xffffa40170d0
0:00:05.537618000 8744 0x3d0a0600 LOG v4l2bufferpool gstv4l2bufferpool.c:1488:gst_v4l2_buffer_pool_release_buffer:<my_vdec:pool:sink> buffer 0 not queued, putting on free list
0:00:05.537676750 8744 0x3d0a0600 LOG bufferpool gstbufferpool.c:1284:default_release_buffer:<my_vdec:pool:sink> released buffer 0xffffa40170d0 0
0:00:05.537730000 8744 0x3d0a0600 DEBUG GST_BUFFER gstbuffer.c:1375:gst_buffer_is_memory_range_writable: idx 0, length -1
0:00:05.537795000 8744 0x3d0a0600 LOG bufferpool gstbufferpool.c:388:do_free_buffer:<my_vdec:pool:sink> freeing buffer 0xffffa4017840 (1 left)
0:00:05.537846875 8744 0x3d0a0600 LOG GST_BUFFER gstbuffer.c:725:_gst_buffer_free: finalize 0xffffa4017840
0:00:05.537904500 8744 0x3d0a0600 LOG v4l2allocator gstv4l2allocator.c:356:gst_v4l2_allocator_release:<my_vdec:pool:sink:allocator> plane 0 of buffer 1 released
0:00:05.537962875 8744 0x3d0a0600 LOG v4l2allocator gstv4l2allocator.c:372:gst_v4l2_allocator_release:<my_vdec:pool:sink:allocator> buffer 1 released
0:00:05.538028625 8744 0x3d0a0600 LOG bufferpool gstbufferpool.c:388:do_free_buffer:<my_vdec:pool:sink> freeing buffer 0xffffa40170d0 (0 left)
0:00:05.538077625 8744 0x3d0a0600 LOG GST_BUFFER gstbuffer.c:725:_gst_buffer_free: finalize 0xffffa40170d0
0:00:05.538130750 8744 0x3d0a0600 LOG v4l2allocator gstv4l2allocator.c:356:gst_v4l2_allocator_release:<my_vdec:pool:sink:allocator> plane 0 of buffer 0 released
0:00:05.538187500 8744 0x3d0a0600 LOG v4l2allocator gstv4l2allocator.c:372:gst_v4l2_allocator_release:<my_vdec:pool:sink:allocator> buffer 0 released
0:00:05.538244500 8744 0x3d0a0600 DEBUG v4l2allocator gstv4l2allocator.c:744:gst_v4l2_allocator_stop:<my_vdec:pool:sink:allocator> stop allocator
0:00:05.538288375 8744 0x3d0a0600 DEBUG GST_MEMORY gstmemory.c:88:_gst_memory_free: free memory 0xffffa40181f0
0:00:05.538346375 8744 0x3d0a0600 LOG v4l2allocator gstv4l2allocator.c:392:gst_v4l2_allocator_free:<my_vdec:pool:sink:allocator> freeing plane 0 of buffer 0
0:00:05.538932500 8744 0x3d0a0600 DEBUG GST_MEMORY gstmemory.c:88:_gst_memory_free: free memory 0xffffa4018280
0:00:05.538995875 8744 0x3d0a0600 LOG v4l2allocator gstv4l2allocator.c:392:gst_v4l2_allocator_free:<my_vdec:pool:sink:allocator> freeing plane 0 of buffer 1
0:00:05.544099375 8744 0x3d0a0600 LOG v4l2allocator gstv4l2allocator.c:413:gst_v4l2_allocator_dispose:<my_vdec:pool:sink:allocator> called
0:00:05.544170750 8744 0x3d0a0600 LOG v4l2allocator gstv4l2allocator.c:430:gst_v4l2_allocator_finalize:<my_vdec:pool:sink:allocator> called
0:00:05.544233000 8744 0x3d0a0600 DEBUG GST_POLL gstpoll.c:772:gst_poll_free: 0xffffa4005cf0: freeing
0:00:05.544374375 8744 0x3d0a0600 DEBUG bufferpool gstbufferpool.c:197:gst_buffer_pool_finalize:<my_vdec:pool:sink> 0xffffa4012410 finalize
0:00:05.544432125 8744 0x3d0a0600 LOG bufferpool gstbufferpool.c:506:gst_buffer_pool_set_active:<my_vdec:pool:sink> active 0
0:00:05.544485000 8744 0x3d0a0600 DEBUG bufferpool gstbufferpool.c:552:gst_buffer_pool_set_active:<my_vdec:pool:sink> pool was in the right state
0:00:05.544526000 8744 0x3d0a0600 DEBUG GST_POLL gstpoll.c:772:gst_poll_free: 0xffffa4006400: freeing
0:00:05.544664875 8744 0x3d0a0600 DEBUG v4l2 gstv4l2object.c:4201:gst_v4l2_object_stop:<my_vdec:src> stopping
0:00:05.544718875 8744 0x3d0a0600 DEBUG v4l2 gstv4l2object.c:4209:gst_v4l2_object_stop:<my_vdec:src> deactivating pool
0:00:05.544806750 8744 0x3d0a0600 LOG bufferpool gstbufferpool.c:506:gst_buffer_pool_set_active:<my_vdec:pool:src> active 0
0:00:05.544860375 8744 0x3d0a0600 LOG bufferpool gstbufferpool.c:538:gst_buffer_pool_set_active:<my_vdec:pool:src> outstanding buffers 1
0:00:05.544914500 8744 0x3d0a0600 DEBUG v4l2videodec gstv4l2videodec.c:226:gst_v4l2_video_dec_stop:<my_vdec> Stopped
0:00:05.544963750 8744 0x3d0a0600 DEBUG videodecoder gstvideodecoder.c:2010:gst_video_decoder_reset:<my_vdec> reset full 1
0:00:05.545013000 8744 0x3d0a0600 DEBUG default gstvideoutils.c:40:_gst_video_codec_frame_free: free frame 0xffffa4028020
0:00:05.545090375 8744 0x3d0a0600 LOG GST_BUFFER gstbuffer.c:725:_gst_buffer_free: finalize 0xffffa4017620
0:00:05.545144250 8744 0x3d0a0600 DEBUG default gstvideoutils.c:40:_gst_video_codec_frame_free: free frame 0xffffa4017730
0:00:05.545188375 8744 0x3d0a0600 LOG GST_BUFFER gstbuffer.c:725:_gst_buffer_free: finalize 0xffffa4034090
0:00:05.545231500 8744 0x3d0a0600 DEBUG default gstvideoutils.c:40:_gst_video_codec_frame_free: free frame 0xffffa40341a0
0:00:05.545273875 8744 0x3d0a0600 LOG GST_BUFFER gstbuffer.c:725:_gst_buffer_free: finalize 0xffffa40342b0
0:00:05.545316875 8744 0x3d0a0600 DEBUG default gstvideoutils.c:40:_gst_video_codec_frame_free: free frame 0xffffa4028350
0:00:05.545358875 8744 0x3d0a0600 LOG GST_BUFFER gstbuffer.c:725:_gst_buffer_free: finalize 0xffffa4017400
0:00:05.545404750 8744 0x3d0a0600 LOG GST_EVENT gstevent.c:223:_gst_event_free: freeing event 0xffffa40084a0 type tag
0:00:05.545466250 8744 0x3d0a0600 LOG GST_EVENT gstevent.c:223:_gst_event_free: freeing event 0xffffa4007de0 type tag
0:00:05.545522125 8744 0x3d0a0600 LOG GST_EVENT gstevent.c:223:_gst_event_free: freeing event 0x3d1e22a0 type tag
0:00:05.545579500 8744 0x3d0a0600 LOG GST_EVENT gstevent.c:223:_gst_event_free: freeing event 0xffffa4008430 type tag
0:00:05.545635375 8744 0x3d0a0600 LOG GST_EVENT gstevent.c:223:_gst_event_free: freeing event 0xffffa000d6b0 type tag
0:00:05.545695000 8744 0x3d0a0600 DEBUG default gstvideoutils.c:161:_gst_video_codec_state_free: free state 0xffffa4010150
0:00:05.545741250 8744 0x3d0a0600 DEBUG default gstvideoutils.c:161:_gst_video_codec_state_free: free state 0xffffa4010540
0:00:05.545796125 8744 0x3d0a0600 DEBUG videodecoder gstvideodecoder.c:2073:gst_video_decoder_reset:<my_vdec> deactivate pool <my_vdec:pool:src>
0:00:05.545859000 8744 0x3d0a0600 LOG bufferpool gstbufferpool.c:506:gst_buffer_pool_set_active:<my_vdec:pool:src> active 0
0:00:05.545909000 8744 0x3d0a0600 DEBUG bufferpool gstbufferpool.c:552:gst_buffer_pool_set_active:<my_vdec:pool:src> pool was in the right state
0:00:05.545966750 8744 0x3d0a0600 DEBUG GST_STATES gstelement.c:2988:gst_element_change_state:<my_vdec> element changed state SUCCESS
0:00:05.546016250 8744 0x3d0a0600 INFO GST_STATES gstelement.c:2676:gst_element_continue_state:<my_vdec> completed state change to READY
0:00:05.546069250 8744 0x3d0a0600 INFO GST_STATES gstelement.c:2579:_priv_gst_element_state_changed:<my_vdec> notifying about state-changed PAUSED to READY (VOID_PENDING pending)
0:00:05.546138375 8744 0x3d0a0600 LOG GST_MESSAGE gstmessage.c:301:gst_message_new_custom: source my_vdec: creating new message 0x3d216f40 state-changed
0:00:05.546207125 8744 0x3d0a0600 DEBUG GST_BUS gstbus.c:318:gst_bus_post:<bus0> [msg 0x3d216f40] posting on bus state-changed message: 0x3d216f40, time 99:99:99.999999999, seq-num 86, element 'my_vdec', GstMessageStateChanged, old-state=(GstState)GST_STATE_PAUSED, new-state=(GstState)GST_STATE_READY, pending-state=(GstState)GST_STATE_VOID_PENDING;
0:00:05.546400625 8744 0x3d0a0600 DEBUG bin gstbin.c:3715:gst_bin_handle_message_func:<my_pipeline> [msg 0x3d216f40] handling child my_vdec message of type state-changed
0:00:05.546465000 8744 0x3d0a0600 DEBUG bin gstbin.c:4052:gst_bin_handle_message_func:<my_pipeline> posting message upward
0:00:05.546515500 8744 0x3d0a0600 DEBUG GST_BUS gstbus.c:318:gst_bus_post:<bus1> [msg 0x3d216f40] posting on bus state-changed message: 0x3d216f40, time 99:99:99.999999999, seq-num 86, element 'my_vdec', GstMessageStateChanged, old-state=(GstState)GST_STATE_PAUSED, new-state=(GstState)GST_STATE_READY, pending-state=(GstState)GST_STATE_VOID_PENDING;
0:00:05.546644250 8744 0x3d0a0600 DEBUG GST_BUS gstbus.c:357:gst_bus_post:<bus1> [msg 0x3d216f40] pushing on async queue
0:00:05.546691750 8744 0x3d0a0600 LOG GST_POLL gstpoll.c:290:raise_wakeup: 0x3d154a30: raise
0:00:05.546785750 8744 0x3d0a0600 DEBUG GST_BUS gstbus.c:360:gst_bus_post:<bus1> [msg 0x3d216f40] pushed on async queue
0:00:05.546842625 8744 0x3d0a0600 DEBUG GST_BUS gstbus.c:353:gst_bus_post:<bus0> [msg 0x3d216f40] dropped
0:00:05.546841000 8744 0xffffa4002580 LOG GST_BUS gstbus.c:522:gst_bus_timed_pop_filtered:<bus1> have 1 messages
0:00:05.546912500 8744 0x3d0a0600 LOG GST_STATES gstelement.c:3004:gst_element_change_state:<my_vdec> exit state change 1
0:00:05.546936625 8744 0xffffa4002580 LOG GST_POLL gstpoll.c:314:release_wakeup: 0x3d154a30: release
0:00:05.546968125 8744 0x3d0a0600 DEBUG GST_STATES gstelement.c:2911:gst_element_set_state_func:<my_vdec> returned SUCCESS
0:00:05.547009500 8744 0xffffa4002580 DEBUG GST_BUS gstbus.c:546:gst_bus_timed_pop_filtered:<bus1> got message 0x3d216f40, state-changed from my_vdec, type mask is 4294967295
0:00:05.547021375 8744 0x3d0a0600 INFO GST_STATES gstbin.c:2952:gst_bin_change_state_func:<my_pipeline> child 'my_vdec' changed state to 2(READY) successfully
0:00:05.547150375 8744 0x3d0a0600 DEBUG bin gstbin.c:2370:gst_bin_sort_iterator_next:<my_pipeline> queue head gives my_h264parse
0:00:05.547100000 8744 0xffffa4002580 DEBUG GST_BUS gstbus.c:839:gst_bus_source_dispatch:<bus1> source 0x3d21dc00 calling dispatch with state-changed message: 0x3d216f40, time 99:99:99.999999999, seq-num 86, element 'my_vdec', GstMessageStateChanged, old-state=(GstState)GST_STATE_PAUSED, new-state=(GstState)GST_STATE_READY, pending-state=(GstState)GST_STATE_VOID_PENDING;
0:00:05.547209375 8744 0x3d0a0600 DEBUG bin gstbin.c:885:find_message:<my_pipeline> no message found matching types 00001000
(bus_call, 87)my_vdec state change, old state: PAUSED, new state: READY
0:00:05.547282625 8744 0x3d0a0600 DEBUG bin gstbin.c:892:find_message:<my_pipeline> structure-change
0:00:05.547325750 8744 0xffffa4002580 LOG GST_MESSAGE gstmessage.c:208:_gst_message_free: finalize message 0x3d216f40, state-changed from my_vdec
0:00:05.547375750 8744 0x3d0a0600 DEBUG bin gstbin.c:2280:update_degree:<my_pipeline> change element my_appsrc, degree 1->0, linked to my_h264parse
0:00:05.547400375 8744 0xffffa4002580 DEBUG GST_BUS gstbus.c:844:gst_bus_source_dispatch:<bus1> source 0x3d21dc00 handler returns 1
0:00:05.547458500 8744 0x3d0a0600 DEBUG bin gstbin.c:2163:add_to_queue:<my_pipeline> adding 'my_appsrc' to queue
0:00:05.547524375 8744 0x3d0a0600 INFO GST_STATES gstbin.c:2504:gst_bin_element_set_state:<my_h264parse> current PAUSED pending VOID_PENDING, desired next READY
0:00:05.547587875 8744 0x3d0a0600 DEBUG bin gstbin.c:885:find_message:<my_pipeline> no message found matching types 00100000
0:00:05.547641625 8744 0x3d0a0600 DEBUG bin gstbin.c:892:find_message:<my_pipeline> async-start
0:00:05.547725375 8744 0x3d0a0600 DEBUG bin gstbin.c:2599:gst_bin_element_set_state:<my_pipeline> setting element my_h264parse to READY, base_time 0:15:45.099030375
0:00:05.547799250 8744 0x3d0a0600 DEBUG GST_STATES gstelement.c:2827:gst_element_set_state_func:<my_h264parse> set_state to READY
0:00:05.547852000 8744 0x3d0a0600 DEBUG GST_STATES gstelement.c:2852:gst_element_set_state_func:<my_h264parse> setting target state to READY
0:00:05.547903375 8744 0x3d0a0600 DEBUG GST_STATES gstelement.c:2865:gst_element_set_state_func:<my_h264parse> current PAUSED, old_pending VOID_PENDING, next VOID_PENDING, old return SUCCESS
0:00:05.547966500 8744 0x3d0a0600 DEBUG GST_STATES gstelement.c:2899:gst_element_set_state_func:<my_h264parse> final: setting state from PAUSED to READY
0:00:05.548026000 8744 0x3d0a0600 LOG GST_STATES gstelement.c:3154:gst_element_change_state_func:<my_h264parse> default handler tries setting state from PAUSED to READY (001a)
0:00:05.548086625 8744 0x3d0a0600 DEBUG GST_ELEMENT_PADS gstelement.c:3097:gst_element_pads_activate:<my_h264parse> deactivate pads
0:00:05.548157250 8744 0x3d0a0600 DEBUG GST_PADS gstpad.c:1120:gst_pad_set_active:<my_h264parse:src> deactivating pad from push mode
0:00:05.548216375 8744 0x3d0a0600 DEBUG GST_PADS gstpad.c:990:pre_activate:<my_h264parse:src> setting PAD_MODE NONE, set flushing
0:00:05.548270250 8744 0x3d0a0600 DEBUG GST_PADS gstpad.c:1053:post_activate:<my_h264parse:src> stopped streaming
0:00:05.548310875 8744 0x3d0a0600 LOG GST_EVENT gstevent.c:223:_gst_event_free: freeing event 0xffffa4007c90 type caps
0:00:05.548376750 8744 0x3d0a0600 LOG GST_EVENT gstevent.c:223:_gst_event_free: freeing event 0xffffa4007c20 type segment
0:00:05.548430875 8744 0x3d0a0600 LOG GST_EVENT gstevent.c:223:_gst_event_free: freeing event 0xffffa4007d00 type tag
0:00:05.548501375 8744 0x3d0a0600 DEBUG GST_PADS gstpad.c:461:remove_events:<my_h264parse:src> notify caps
0:00:05.548565875 8744 0x3d0a0600 LOG GST_PROPERTIES gstobject.c:448:gst_object_dispatch_properties_changed:<my_h264parse> deep notification from src (caps)
0:00:05.548629125 8744 0x3d0a0600 LOG GST_PROPERTIES gstobject.c:448:gst_object_dispatch_properties_changed:<my_pipeline> deep notification from src (caps)
0:00:05.548694625 8744 0x3d0a0600 DEBUG GST_PADS gstpad.c:1234:activate_mode_internal:<my_h264parse:src> deactivated in push mode
0:00:05.548768875 8744 0x3d0a0600 DEBUG GST_PADS gstpad.c:1120:gst_pad_set_active:<my_h264parse:sink> deactivating pad from push mode
0:00:05.548826875 8744 0x3d0a0600 DEBUG GST_PADS gstpad.c:990:pre_activate:<my_h264parse:sink> setting PAD_MODE NONE, set flushing
0:00:05.548878000 8744 0x3d0a0600 DEBUG baseparse gstbaseparse.c:3733:gst_base_parse_sink_activate_mode:<my_h264parse> sink deactivate in push mode
0:00:05.548934375 8744 0x3d0a0600 DEBUG baseparse gstbaseparse.c:3696:gst_base_parse_activate:<my_h264parse> activate 0
0:00:05.548989375 8744 0x3d0a0600 DEBUG h264parse gsth264parse.c:286:gst_h264_parse_stop:<my_h264parse> stop
0:00:05.549037125 8744 0x3d0a0600 DEBUG h264parse gsth264parse.c:186:gst_h264_parse_reset_frame:<my_h264parse> reset frame
0:00:05.549150500 8744 0x3d0a0600 LOG GST_BUFFER gstbuffer.c:725:_gst_buffer_free: finalize 0xffffa4017510
0:00:05.549197750 8744 0x3d0a0600 DEBUG GST_MEMORY gstmemory.c:88:_gst_memory_free: free memory 0xffffa401b010
0:00:05.549248750 8744 0x3d0a0600 LOG GST_BUFFER gstbuffer.c:725:_gst_buffer_free: finalize 0xffffa40171e0
0:00:05.549292375 8744 0x3d0a0600 DEBUG GST_MEMORY gstmemory.c:88:_gst_memory_free: free memory 0xffffa400a830
0:00:05.549722000 8744 0x3d0a0600 DEBUG baseparse gstbaseparse.c:3719:gst_base_parse_activate:<my_h264parse> activate return: 1
0:00:05.549781500 8744 0x3d0a0600 DEBUG baseparse gstbaseparse.c:3756:gst_base_parse_sink_activate_mode:<my_h264parse> sink activate return: 1
0:00:05.549839875 8744 0x3d0a0600 DEBUG GST_PADS gstpad.c:1053:post_activate:<my_h264parse:sink> stopped streaming
0:00:05.549893500 8744 0x3d0a0600 DEBUG GST_PADS gstpad.c:461:remove_events:<my_h264parse:sink> notify caps
0:00:05.549951375 8744 0x3d0a0600 LOG GST_PROPERTIES gstobject.c:448:gst_object_dispatch_properties_changed:<my_h264parse> deep notification from sink (caps)
0:00:05.550014125 8744 0x3d0a0600 LOG GST_PROPERTIES gstobject.c:448:gst_object_dispatch_properties_changed:<my_pipeline> deep notification from sink (caps)
0:00:05.550079625 8744 0x3d0a0600 DEBUG GST_PADS gstpad.c:1234:activate_mode_internal:<my_h264parse:sink> deactivated in push mode
0:00:05.550142750 8744 0x3d0a0600 DEBUG GST_ELEMENT_PADS gstelement.c:3116:gst_element_pads_activate:<my_h264parse> pad deactivation successful
0:00:05.550210375 8744 0x3d0a0600 DEBUG GST_STATES gstelement.c:2988:gst_element_change_state:<my_h264parse> element changed state SUCCESS
0:00:05.550259500 8744 0x3d0a0600 INFO GST_STATES gstelement.c:2676:gst_element_continue_state:<my_h264parse> completed state change to READY
0:00:05.550312125 8744 0x3d0a0600 INFO GST_STATES gstelement.c:2579:_priv_gst_element_state_changed:<my_h264parse> notifying about state-changed PAUSED to READY (VOID_PENDING pending)
0:00:05.550374750 8744 0x3d0a0600 LOG GST_MESSAGE gstmessage.c:301:gst_message_new_custom: source my_h264parse: creating new message 0x3d216e40 state-changed
0:00:05.550438750 8744 0x3d0a0600 DEBUG GST_BUS gstbus.c:318:gst_bus_post:<bus0> [msg 0x3d216e40] posting on bus state-changed message: 0x3d216e40, time 99:99:99.999999999, seq-num 87, element 'my_h264parse', GstMessageStateChanged, old-state=(GstState)GST_STATE_PAUSED, new-state=(GstState)GST_STATE_READY, pending-state=(GstState)GST_STATE_VOID_PENDING;
0:00:05.550576000 8744 0x3d0a0600 DEBUG bin gstbin.c:3715:gst_bin_handle_message_func:<my_pipeline> [msg 0x3d216e40] handling child my_h264parse message of type state-changed
0:00:05.550637500 8744 0x3d0a0600 DEBUG bin gstbin.c:4052:gst_bin_handle_message_func:<my_pipeline> posting message upward
0:00:05.550686625 8744 0x3d0a0600 DEBUG GST_BUS gstbus.c:318:gst_bus_post:<bus1> [msg 0x3d216e40] posting on bus state-changed message: 0x3d216e40, time 99:99:99.999999999, seq-num 87, element 'my_h264parse', GstMessageStateChanged, old-state=(GstState)GST_STATE_PAUSED, new-state=(GstState)GST_STATE_READY, pending-state=(GstState)GST_STATE_VOID_PENDING;
0:00:05.550815125 8744 0x3d0a0600 DEBUG GST_BUS gstbus.c:357:gst_bus_post:<bus1> [msg 0x3d216e40] pushing on async queue
0:00:05.550860875 8744 0x3d0a0600 LOG GST_POLL gstpoll.c:290:raise_wakeup: 0x3d154a30: raise
0:00:05.550940125 8744 0x3d0a0600 DEBUG GST_BUS gstbus.c:360:gst_bus_post:<bus1> [msg 0x3d216e40] pushed on async queue
0:00:05.550975875 8744 0xffffa4002580 LOG GST_BUS gstbus.c:522:gst_bus_timed_pop_filtered:<bus1> have 1 messages
0:00:05.550996125 8744 0x3d0a0600 DEBUG GST_BUS gstbus.c:353:gst_bus_post:<bus0> [msg 0x3d216e40] dropped
0:00:05.551046375 8744 0xffffa4002580 LOG GST_POLL gstpoll.c:314:release_wakeup: 0x3d154a30: release
0:00:05.551102125 8744 0x3d0a0600 LOG GST_STATES gstelement.c:3004:gst_element_change_state:<my_h264parse> exit state change 1
0:00:05.551157000 8744 0x3d0a0600 DEBUG GST_STATES gstelement.c:2911:gst_element_set_state_func:<my_h264parse> returned SUCCESS
0:00:05.551144375 8744 0xffffa4002580 DEBUG GST_BUS gstbus.c:546:gst_bus_timed_pop_filtered:<bus1> got message 0x3d216e40, state-changed from my_h264parse, type mask is 4294967295
0:00:05.551253000 8744 0x3d0a0600 INFO GST_STATES gstbin.c:2952:gst_bin_change_state_func:<my_pipeline> child 'my_h264parse' changed state to 2(READY) successfully
0:00:05.551325375 8744 0x3d0a0600 DEBUG bin gstbin.c:2370:gst_bin_sort_iterator_next:<my_pipeline> queue head gives my_appsrc
0:00:05.551284000 8744 0xffffa4002580 DEBUG GST_BUS gstbus.c:839:gst_bus_source_dispatch:<bus1> source 0x3d21dc00 calling dispatch with state-changed message: 0x3d216e40, time 99:99:99.999999999, seq-num 87, element 'my_h264parse', GstMessageStateChanged, old-state=(GstState)GST_STATE_PAUSED, new-state=(GstState)GST_STATE_READY, pending-state=(GstState)GST_STATE_VOID_PENDING;
(bus_call, 87)my_h264parse state change, old state: PAUSED, new state: READY
0:00:05.551380250 8744 0x3d0a0600 DEBUG bin gstbin.c:2303:update_degree:<my_pipeline> element my_appsrc not linked on any sinkpads
0:00:05.551466250 8744 0xffffa4002580 LOG GST_MESSAGE gstmessage.c:208:_gst_message_free: finalize message 0x3d216e40, state-changed from my_h264parse
0:00:05.551509875 8744 0x3d0a0600 INFO GST_STATES gstbin.c:2504:gst_bin_element_set_state:<my_appsrc> current PAUSED pending VOID_PENDING, desired next READY
0:00:05.551543000 8744 0xffffa4002580 DEBUG GST_BUS gstbus.c:844:gst_bus_source_dispatch:<bus1> source 0x3d21dc00 handler returns 1
0:00:05.551579625 8744 0x3d0a0600 DEBUG bin gstbin.c:885:find_message:<my_pipeline> no message found matching types 00100000
0:00:05.551634125 8744 0x3d0a0600 DEBUG bin gstbin.c:892:find_message:<my_pipeline> async-start
0:00:05.551685125 8744 0x3d0a0600 DEBUG bin gstbin.c:2599:gst_bin_element_set_state:<my_pipeline> setting element my_appsrc to READY, base_time 0:15:45.099030375
0:00:05.551753500 8744 0x3d0a0600 DEBUG GST_STATES gstelement.c:2827:gst_element_set_state_func:<my_appsrc> set_state to READY
0:00:05.551804500 8744 0x3d0a0600 DEBUG GST_STATES gstelement.c:2852:gst_element_set_state_func:<my_appsrc> setting target state to READY
0:00:05.551854500 8744 0x3d0a0600 DEBUG GST_STATES gstelement.c:2865:gst_element_set_state_func:<my_appsrc> current PAUSED, old_pending VOID_PENDING, next VOID_PENDING, old return SUCCESS
0:00:05.551915500 8744 0x3d0a0600 DEBUG GST_STATES gstelement.c:2899:gst_element_set_state_func:<my_appsrc> final: setting state from PAUSED to READY
0:00:05.551975750 8744 0x3d0a0600 LOG GST_STATES gstelement.c:3154:gst_element_change_state_func:<my_appsrc> default handler tries setting state from PAUSED to READY (001a)
0:00:05.552035375 8744 0x3d0a0600 DEBUG GST_ELEMENT_PADS gstelement.c:3097:gst_element_pads_activate:<my_appsrc> deactivate pads
0:00:05.552099500 8744 0x3d0a0600 DEBUG GST_PADS gstpad.c:1120:gst_pad_set_active:<my_appsrc:src> deactivating pad from push mode
0:00:05.552157250 8744 0x3d0a0600 DEBUG GST_PADS gstpad.c:990:pre_activate:<my_appsrc:src> setting PAD_MODE NONE, set flushing
0:00:05.552210750 8744 0x3d0a0600 DEBUG basesrc gstbasesrc.c:3858:gst_base_src_activate_mode:<my_appsrc:src> activating in mode 1
0:00:05.552263000 8744 0x3d0a0600 DEBUG basesrc gstbasesrc.c:3792:gst_base_src_activate_push:<my_appsrc> Deactivating in push mode
0:00:05.552309875 8744 0x3d0a0600 DEBUG basesrc gstbasesrc.c:3629:gst_base_src_stop:<my_appsrc> stopping source
0:00:05.552356000 8744 0x3d0a0600 DEBUG basesrc gstbasesrc.c:3679:gst_base_src_set_flushing:<my_appsrc> flushing 1
0:00:05.552411500 8744 0x3d0a0600 DEBUG appsrc gstappsrc.c:835:gst_app_src_unlock:<my_appsrc> unlock start
0:00:05.552481125 8744 0x3d0a0600 DEBUG GST_PADS gstpad.c:6224:gst_pad_stop_task:<my_appsrc:src> stop task
0:00:05.552550625 8744 0x3d0a0600 DEBUG task gsttask.c:688:gst_task_set_state:<my_appsrc:src> Changing task 0x3d20c4d0 to state 1
0:00:05.552635000 8744 0x3d0a0600 DEBUG task gsttask.c:815:gst_task_join:<my_appsrc:src> Joining task 0x3d20c4d0, thread 0x3d0a0600
0:00:05.552660625 8744 0x3d233140 INFO task gsttask.c:318:gst_task_func:<my_appsrc:src> Task resume from paused
0:00:05.552749375 8744 0x3d233140 DEBUG GST_PADS gstpad.c:6007:do_stream_status:<my_appsrc:src> doing stream-status 2
0:00:05.552813250 8744 0x3d233140 LOG GST_MESSAGE gstmessage.c:301:gst_message_new_custom: source src: creating new message 0x3d231d10 stream-status
0:00:05.552891000 8744 0x3d233140 DEBUG GST_PADS gstpad.c:6036:do_stream_status:<my_appsrc:src> posting stream-status 2
0:00:05.552946750 8744 0x3d233140 DEBUG GST_BUS gstbus.c:318:gst_bus_post:<bus0> [msg 0x3d231d10] posting on bus stream-status message: 0x3d231d10, time 99:99:99.999999999, seq-num 88, element 'src', GstMessageStreamStatus, type=(GstStreamStatusType)GST_STREAM_STATUS_TYPE_LEAVE, owner=(GstElement)"\(GstAppSrc\)\ my_appsrc", object=(GstTask)"\(GstTask\)\ my_appsrc:src";
0:00:05.553181750 8744 0x3d233140 DEBUG bin gstbin.c:3715:gst_bin_handle_message_func:<my_pipeline> [msg 0x3d231d10] handling child src message of type stream-status
0:00:05.553245875 8744 0x3d233140 DEBUG bin gstbin.c:4052:gst_bin_handle_message_func:<my_pipeline> posting message upward
0:00:05.553295125 8744 0x3d233140 DEBUG GST_BUS gstbus.c:318:gst_bus_post:<bus1> [msg 0x3d231d10] posting on bus stream-status message: 0x3d231d10, time 99:99:99.999999999, seq-num 88, element 'src', GstMessageStreamStatus, type=(GstStreamStatusType)GST_STREAM_STATUS_TYPE_LEAVE, owner=(GstElement)"\(GstAppSrc\)\ my_appsrc", object=(GstTask)"\(GstTask\)\ my_appsrc:src";
0:00:05.553458875 8744 0x3d233140 DEBUG GST_BUS gstbus.c:357:gst_bus_post:<bus1> [msg 0x3d231d10] pushing on async queue
0:00:05.553504125 8744 0x3d233140 LOG GST_POLL gstpoll.c:290:raise_wakeup: 0x3d154a30: raise
0:00:05.553577375 8744 0x3d233140 DEBUG GST_BUS gstbus.c:360:gst_bus_post:<bus1> [msg 0x3d231d10] pushed on async queue
0:00:05.553604250 8744 0xffffa4002580 LOG GST_BUS gstbus.c:522:gst_bus_timed_pop_filtered:<bus1> have 1 messages
0:00:05.553632000 8744 0x3d233140 DEBUG GST_BUS gstbus.c:353:gst_bus_post:<bus0> [msg 0x3d231d10] dropped
0:00:05.553652375 8744 0xffffa4002580 LOG GST_POLL gstpoll.c:314:release_wakeup: 0x3d154a30: release
0:00:05.553691500 8744 0x3d233140 DEBUG task gsttask.c:359:gst_task_func: Exit task 0x3d20c4d0, thread 0x3d233140
0:00:05.553717375 8744 0xffffa4002580 DEBUG GST_BUS gstbus.c:546:gst_bus_timed_pop_filtered:<bus1> got message 0x3d231d10, stream-status from src, type mask is 4294967295
0:00:05.553713625 8744 0x3d0a0600 DEBUG task gsttask.c:845:gst_task_join:<my_appsrc:src> Joined task 0x3d20c4d0
0:00:05.553847250 8744 0x3d0a0600 DEBUG basesrc gstbasesrc.c:3679:gst_base_src_set_flushing:<my_appsrc> flushing 0
0:00:05.553903500 8744 0x3d0a0600 DEBUG appsrc gstappsrc.c:850:gst_app_src_unlock_stop:<my_appsrc> unlock stop
0:00:05.553798500 8744 0xffffa4002580 DEBUG GST_BUS gstbus.c:839:gst_bus_source_dispatch:<bus1> source 0x3d21dc00 calling dispatch with stream-status message: 0x3d231d10, time 99:99:99.999999999, seq-num 88, element 'src', GstMessageStreamStatus, type=(GstStreamStatusType)GST_STREAM_STATUS_TYPE_LEAVE, owner=(GstElement)"\(GstAppSrc\)\ my_appsrc", object=(GstTask)"\(GstTask\)\ my_appsrc:src";
0:00:05.553973750 8744 0x3d0a0600 DEBUG appsrc gstappsrc.c:885:gst_app_src_stop:<my_appsrc> stopping
0:00:05.554077375 8744 0x3d0a0600 DEBUG GST_PADS gstpad.c:1053:post_activate:<my_appsrc:src> stopped streaming
0:00:05.554072375 8744 0xffffa4002580 LOG GST_MESSAGE gstmessage.c:208:_gst_message_free: finalize message 0x3d231d10, stream-status from src
0:00:05.554129875 8744 0x3d0a0600 LOG GST_EVENT gstevent.c:223:_gst_event_free: freeing event 0x3d1e21c0 type stream-start
0:00:05.554170500 8744 0xffffa4002580 DEBUG task gsttask.c:214:gst_task_finalize: task 0x3d20c4d0 finalize
0:00:05.554188750 8744 0x3d0a0600 LOG GST_EVENT gstevent.c:223:_gst_event_free: freeing event 0x3d1e2230 type caps
0:00:05.554253625 8744 0x3d0a0600 LOG GST_EVENT gstevent.c:223:_gst_event_free: freeing event 0x3d1e2310 type segment
0:00:05.554278250 8744 0xffffa4002580 DEBUG GST_BUS gstbus.c:844:gst_bus_source_dispatch:<bus1> source 0x3d21dc00 handler returns 1
0:00:05.554321750 8744 0x3d0a0600 DEBUG GST_PADS gstpad.c:461:remove_events:<my_appsrc:src> notify caps
0:00:05.554377625 8744 0x3d0a0600 LOG GST_PROPERTIES gstobject.c:448:gst_object_dispatch_properties_changed:<my_appsrc> deep notification from src (caps)
0:00:05.554441375 8744 0x3d0a0600 LOG GST_PROPERTIES gstobject.c:448:gst_object_dispatch_properties_changed:<my_pipeline> deep notification from src (caps)
0:00:05.554506375 8744 0x3d0a0600 DEBUG GST_PADS gstpad.c:1234:activate_mode_internal:<my_appsrc:src> deactivated in push mode
0:00:05.554573125 8744 0x3d0a0600 DEBUG GST_ELEMENT_PADS gstelement.c:3116:gst_element_pads_activate:<my_appsrc> pad deactivation successful
0:00:05.554628875 8744 0x3d0a0600 DEBUG GST_STATES gstelement.c:2988:gst_element_change_state:<my_appsrc> element changed state SUCCESS
0:00:05.554676000 8744 0x3d0a0600 INFO GST_STATES gstelement.c:2676:gst_element_continue_state:<my_appsrc> completed state change to READY
0:00:05.554727125 8744 0x3d0a0600 INFO GST_STATES gstelement.c:2579:_priv_gst_element_state_changed:<my_appsrc> notifying about state-changed PAUSED to READY (VOID_PENDING pending)
0:00:05.554787625 8744 0x3d0a0600 LOG GST_MESSAGE gstmessage.c:301:gst_message_new_custom: source my_appsrc: creating new message 0x3d216d40 state-changed
0:00:05.554849000 8744 0x3d0a0600 DEBUG GST_BUS gstbus.c:318:gst_bus_post:<bus0> [msg 0x3d216d40] posting on bus state-changed message: 0x3d216d40, time 99:99:99.999999999, seq-num 89, element 'my_appsrc', GstMessageStateChanged, old-state=(GstState)GST_STATE_PAUSED, new-state=(GstState)GST_STATE_READY, pending-state=(GstState)GST_STATE_VOID_PENDING;
0:00:05.554980625 8744 0x3d0a0600 DEBUG bin gstbin.c:3715:gst_bin_handle_message_func:<my_pipeline> [msg 0x3d216d40] handling child my_appsrc message of type state-changed
0:00:05.555042250 8744 0x3d0a0600 DEBUG bin gstbin.c:4052:gst_bin_handle_message_func:<my_pipeline> posting message upward
0:00:05.555090750 8744 0x3d0a0600 DEBUG GST_BUS gstbus.c:318:gst_bus_post:<bus1> [msg 0x3d216d40] posting on bus state-changed message: 0x3d216d40, time 99:99:99.999999999, seq-num 89, element 'my_appsrc', GstMessageStateChanged, old-state=(GstState)GST_STATE_PAUSED, new-state=(GstState)GST_STATE_READY, pending-state=(GstState)GST_STATE_VOID_PENDING;
0:00:05.555218625 8744 0x3d0a0600 DEBUG GST_BUS gstbus.c:357:gst_bus_post:<bus1> [msg 0x3d216d40] pushing on async queue
0:00:05.555264000 8744 0x3d0a0600 LOG GST_POLL gstpoll.c:290:raise_wakeup: 0x3d154a30: raise
0:00:05.555337375 8744 0x3d0a0600 DEBUG GST_BUS gstbus.c:360:gst_bus_post:<bus1> [msg 0x3d216d40] pushed on async queue
0:00:05.555362125 8744 0xffffa4002580 LOG GST_BUS gstbus.c:522:gst_bus_timed_pop_filtered:<bus1> have 1 messages
0:00:05.555393125 8744 0x3d0a0600 DEBUG GST_BUS gstbus.c:353:gst_bus_post:<bus0> [msg 0x3d216d40] dropped
0:00:05.555457625 8744 0xffffa4002580 LOG GST_POLL gstpoll.c:314:release_wakeup: 0x3d154a30: release
0:00:05.555536875 8744 0x3d0a0600 LOG GST_STATES gstelement.c:3004:gst_element_change_state:<my_appsrc> exit state change 1
0:00:05.555538375 8744 0xffffa4002580 DEBUG GST_BUS gstbus.c:546:gst_bus_timed_pop_filtered:<bus1> got message 0x3d216d40, state-changed from my_appsrc, type mask is 4294967295
0:00:05.555606375 8744 0x3d0a0600 DEBUG GST_STATES gstelement.c:2911:gst_element_set_state_func:<my_appsrc> returned SUCCESS
0:00:05.555660500 8744 0x3d0a0600 INFO GST_STATES gstbin.c:2952:gst_bin_change_state_func:<my_pipeline> child 'my_appsrc' changed state to 2(READY) successfully
0:00:05.555639875 8744 0xffffa4002580 DEBUG GST_BUS gstbus.c:839:gst_bus_source_dispatch:<bus1> source 0x3d21dc00 calling dispatch with state-changed message: 0x3d216d40, time 99:99:99.999999999, seq-num 89, element 'my_appsrc', GstMessageStateChanged, old-state=(GstState)GST_STATE_PAUSED, new-state=(GstState)GST_STATE_READY, pending-state=(GstState)GST_STATE_VOID_PENDING;
(bus_call, 87)my_appsrc state change, old state: PAUSED, new state: READY
0:00:05.555734250 8744 0x3d0a0600 DEBUG bin gstbin.c:2359:gst_bin_sort_iterator_next:<my_pipeline> queue empty, elements exhausted
0:00:05.555821000 8744 0xffffa4002580 LOG GST_MESSAGE gstmessage.c:208:_gst_message_free: finalize message 0x3d216d40, state-changed from my_appsrc
0:00:05.555862500 8744 0x3d0a0600 DEBUG GST_STATES gstbin.c:3011:gst_bin_change_state_func:<my_pipeline> iterator done
0:00:05.555890625 8744 0xffffa4002580 DEBUG GST_BUS gstbus.c:844:gst_bus_source_dispatch:<bus1> source 0x3d21dc00 handler returns 1
0:00:05.555912250 8744 0x3d0a0600 LOG GST_STATES gstelement.c:3154:gst_element_change_state_func:<my_pipeline> default handler tries setting state from PAUSED to READY (001a)
0:00:05.555973625 8744 0x3d0a0600 DEBUG GST_ELEMENT_PADS gstelement.c:3097:gst_element_pads_activate:<my_pipeline> deactivate pads
0:00:05.556035750 8744 0x3d0a0600 DEBUG GST_ELEMENT_PADS gstelement.c:3116:gst_element_pads_activate:<my_pipeline> pad deactivation successful
0:00:05.556093125 8744 0x3d0a0600 DEBUG bin gstbin.c:2401:gst_bin_sort_iterator_free:<my_pipeline> free
0:00:05.556145125 8744 0x3d0a0600 DEBUG bin gstbin.c:3046:gst_bin_change_state_func:<my_pipeline> no async elements
0:00:05.556192750 8744 0x3d0a0600 DEBUG GST_STATES gstbin.c:3080:gst_bin_change_state_func:<my_pipeline> done changing bin's state from PAUSED to READY, now in PAUSED, ret SUCCESS
0:00:05.556257000 8744 0x3d0a0600 DEBUG GST_STATES gstelement.c:2988:gst_element_change_state:<my_pipeline> element changed state SUCCESS
0:00:05.556305125 8744 0x3d0a0600 INFO GST_STATES gstelement.c:2651:gst_element_continue_state:<my_pipeline> committing state from PAUSED to READY, pending NULL, next NULL
0:00:05.556367375 8744 0x3d0a0600 INFO GST_STATES gstelement.c:2579:_priv_gst_element_state_changed:<my_pipeline> notifying about state-changed PAUSED to READY (NULL pending)
0:00:05.556425250 8744 0x3d0a0600 LOG GST_MESSAGE gstmessage.c:301:gst_message_new_custom: source my_pipeline: creating new message 0x3d216cc0 state-changed
0:00:05.556488250 8744 0x3d0a0600 DEBUG GST_BUS gstbus.c:318:gst_bus_post:<bus1> [msg 0x3d216cc0] posting on bus state-changed message: 0x3d216cc0, time 99:99:99.999999999, seq-num 90, element 'my_pipeline', GstMessageStateChanged, old-state=(GstState)GST_STATE_PAUSED, new-state=(GstState)GST_STATE_READY, pending-state=(GstState)GST_STATE_NULL;
0:00:05.556616625 8744 0x3d0a0600 DEBUG GST_BUS gstbus.c:357:gst_bus_post:<bus1> [msg 0x3d216cc0] pushing on async queue
0:00:05.556692625 8744 0x3d0a0600 LOG GST_POLL gstpoll.c:290:raise_wakeup: 0x3d154a30: raise
0:00:05.556766625 8744 0x3d0a0600 DEBUG GST_BUS gstbus.c:360:gst_bus_post:<bus1> [msg 0x3d216cc0] pushed on async queue
0:00:05.556786000 8744 0xffffa4002580 LOG GST_BUS gstbus.c:522:gst_bus_timed_pop_filtered:<bus1> have 1 messages
0:00:05.556847125 8744 0xffffa4002580 LOG GST_POLL gstpoll.c:314:release_wakeup: 0x3d154a30: release
0:00:05.556868125 8744 0x3d0a0600 INFO GST_STATES gstelement.c:2658:gst_element_continue_state:<my_pipeline> continue state change READY to NULL, final NULL
0:00:05.556912250 8744 0xffffa4002580 DEBUG GST_BUS gstbus.c:546:gst_bus_timed_pop_filtered:<bus1> got message 0x3d216cc0, state-changed from my_pipeline, type mask is 4294967295
0:00:05.556932375 8744 0x3d0a0600 DEBUG GST_STATES gstbin.c:2852:gst_bin_change_state_func:<my_pipeline> changing state of children from READY to NULL
0:00:05.557023375 8744 0x3d0a0600 DEBUG bin gstbin.c:2900:gst_bin_change_state_func:<my_pipeline> clearing all cached messages
0:00:05.557109750 8744 0x3d0a0600 DEBUG bin gstbin.c:2697:gst_bin_src_pads_activate:<my_pipeline> deactivate pads
0:00:05.556992625 8744 0xffffa4002580 DEBUG GST_BUS gstbus.c:839:gst_bus_source_dispatch:<bus1> source 0x3d21dc00 calling dispatch with state-changed message: 0x3d216cc0, time 99:99:99.999999999, seq-num 90, element 'my_pipeline', GstMessageStateChanged, old-state=(GstState)GST_STATE_PAUSED, new-state=(GstState)GST_STATE_READY, pending-state=(GstState)GST_STATE_NULL;
0:00:05.557171625 8744 0x3d0a0600 DEBUG bin gstbin.c:2705:gst_bin_src_pads_activate:<my_pipeline> pad deactivation successful
(bus_call, 87)my_pipeline state change, old state: PAUSED, new state: READY
0:00:05.557250125 8744 0x3d0a0600 DEBUG bin gstbin.c:2383:gst_bin_sort_iterator_resync:<my_pipeline> resync
0:00:05.557291625 8744 0xffffa4002580 LOG GST_MESSAGE gstmessage.c:208:_gst_message_free: finalize message 0x3d216cc0, state-changed from my_pipeline
0:00:05.557336250 8744 0x3d0a0600 DEBUG bin gstbin.c:2163:add_to_queue:<my_pipeline> adding 'my_sink' to queue
0:00:05.557365625 8744 0xffffa4002580 DEBUG GST_BUS gstbus.c:844:gst_bus_source_dispatch:<bus1> source 0x3d21dc00 handler returns 1
0:00:05.557401000 8744 0x3d0a0600 DEBUG bin gstbin.c:885:find_message:<my_pipeline> no message found matching types 00001000
0:00:05.557456625 8744 0x3d0a0600 DEBUG bin gstbin.c:892:find_message:<my_pipeline> structure-change
0:00:05.557514875 8744 0x3d0a0600 DEBUG bin gstbin.c:2280:update_degree:<my_pipeline> change element my_vdec, degree 0->1, linked to my_sink
0:00:05.557583375 8744 0x3d0a0600 DEBUG bin gstbin.c:885:find_message:<my_pipeline> no message found matching types 00001000
0:00:05.557636750 8744 0x3d0a0600 DEBUG bin gstbin.c:892:find_message:<my_pipeline> structure-change
0:00:05.557691625 8744 0x3d0a0600 DEBUG bin gstbin.c:2280:update_degree:<my_pipeline> change element my_h264parse, degree 0->1, linked to my_vdec
0:00:05.557757125 8744 0x3d0a0600 DEBUG bin gstbin.c:885:find_message:<my_pipeline> no message found matching types 00001000
0:00:05.557810875 8744 0x3d0a0600 DEBUG bin gstbin.c:892:find_message:<my_pipeline> structure-change
0:00:05.557865750 8744 0x3d0a0600 DEBUG bin gstbin.c:2280:update_degree:<my_pipeline> change element my_appsrc, degree 0->1, linked to my_h264parse
0:00:05.557931875 8744 0x3d0a0600 DEBUG bin gstbin.c:2303:update_degree:<my_pipeline> element my_appsrc not linked on any sinkpads
0:00:05.557996250 8744 0x3d0a0600 DEBUG bin gstbin.c:2370:gst_bin_sort_iterator_next:<my_pipeline> queue head gives my_sink
0:00:05.558081875 8744 0x3d0a0600 DEBUG bin gstbin.c:885:find_message:<my_pipeline> no message found matching types 00001000
0:00:05.558136375 8744 0x3d0a0600 DEBUG bin gstbin.c:892:find_message:<my_pipeline> structure-change
0:00:05.558191250 8744 0x3d0a0600 DEBUG bin gstbin.c:2280:update_degree:<my_pipeline> change element my_vdec, degree 1->0, linked to my_sink
0:00:05.558253500 8744 0x3d0a0600 DEBUG bin gstbin.c:2163:add_to_queue:<my_pipeline> adding 'my_vdec' to queue
0:00:05.558314250 8744 0x3d0a0600 INFO GST_STATES gstbin.c:2504:gst_bin_element_set_state:<my_sink> current READY pending VOID_PENDING, desired next NULL
0:00:05.558376875 8744 0x3d0a0600 DEBUG bin gstbin.c:885:find_message:<my_pipeline> no message found matching types 00100000
0:00:05.558430125 8744 0x3d0a0600 DEBUG bin gstbin.c:892:find_message:<my_pipeline> async-start
0:00:05.558481250 8744 0x3d0a0600 DEBUG bin gstbin.c:2599:gst_bin_element_set_state:<my_pipeline> setting element my_sink to NULL, base_time 0:15:45.099030375
0:00:05.558549500 8744 0x3d0a0600 DEBUG GST_STATES gstelement.c:2827:gst_element_set_state_func:<my_sink> set_state to NULL
0:00:05.558601000 8744 0x3d0a0600 DEBUG GST_STATES gstelement.c:2852:gst_element_set_state_func:<my_sink> setting target state to NULL
0:00:05.558651000 8744 0x3d0a0600 DEBUG GST_STATES gstelement.c:2865:gst_element_set_state_func:<my_sink> current READY, old_pending VOID_PENDING, next VOID_PENDING, old return SUCCESS
0:00:05.558712625 8744 0x3d0a0600 DEBUG GST_STATES gstelement.c:2899:gst_element_set_state_func:<my_sink> final: setting state from READY to NULL
0:00:05.558772750 8744 0x3d0a0600 LOG GST_STATES gstelement.c:3154:gst_element_change_state_func:<my_sink> default handler tries setting state from READY to NULL (0011)
0:00:05.558830250 8744 0x3d0a0600 DEBUG GST_ELEMENT_PADS gstelement.c:3097:gst_element_pads_activate:<my_sink> deactivate pads
0:00:05.558896375 8744 0x3d0a0600 DEBUG GST_PADS gstpad.c:1116:gst_pad_set_active:<my_sink:sink> pad was inactive
0:00:05.558948375 8744 0x3d0a0600 DEBUG GST_ELEMENT_PADS gstelement.c:3116:gst_element_pads_activate:<my_sink> pad deactivation successful
0:00:05.559006000 8744 0x3d0a0600 LOG GST_POLL gstpoll.c:1673:gst_poll_set_flushing: 0x3d21fe80: flushing: 1
0:00:05.559053750 8744 0x3d0a0600 LOG GST_POLL gstpoll.c:290:raise_wakeup: 0x3d21fe80: raise
0:00:05.559146125 8744 0x3d1e1590 LOG GST_POLL gstpoll.c:341:release_all_wakeup: 0x3d21fe80: releasing 1
0:00:05.559217125 8744 0x3d1e1590 LOG GST_POLL gstpoll.c:1586:gst_poll_wait: 0x3d21fe80: we are flushing
0:00:05.559522000 8744 0x3d0a0600 DEBUG waylandsink wlbuffer.c:199:gst_wl_buffer_force_release_and_unref:<GstWlBuffer at 0xffff9c00ba40> forcing wl_buffer::release (GstBuffer: 0xffff9c01f020)
0:00:05.559572500 8744 0x3d0a0600 LOG GST_BUFFER gstbuffer.c:710:_gst_buffer_dispose: release 0xffff9c01f020 to pool 0xffffa4012e90
0:00:05.559624250 8744 0x3d0a0600 DEBUG GST_BUFFER gstbuffer.c:2383:gst_buffer_foreach_meta: remove metadata 0xffff9c02dc98 (GstDmabufMeta)
0:00:05.559685000 8744 0x3d0a0600 DEBUG v4l2bufferpool gstv4l2bufferpool.c:1420:gst_v4l2_buffer_pool_release_buffer:<my_vdec:pool:src> release buffer 0xffff9c01f020
0:00:05.559750750 8744 0x3d0a0600 LOG v4l2bufferpool gstv4l2bufferpool.c:1059:gst_v4l2_buffer_pool_qbuf:<my_vdec:pool:src> queuing buffer 10
0:00:05.559845750 8744 0x3d0a0600 LOG v4l2allocator gstv4l2allocator.c:1265:gst_v4l2_allocator_qbuf:<my_vdec:pool:src:allocator> queued buffer 10 (flags 0x4003)
0:00:05.559941125 8744 0x3d0a0600 LOG bufferpool gstbufferpool.c:430:do_stop:<my_vdec:pool:src> stopping
0:00:05.559989000 8744 0x3d0a0600 DEBUG v4l2bufferpool gstv4l2bufferpool.c:919:gst_v4l2_buffer_pool_stop:<my_vdec:pool:src> stopping pool
0:00:05.560106625 8744 0x3d0a0600 DEBUG v4l2bufferpool gstv4l2bufferpool.c:707:gst_v4l2_buffer_pool_streamoff:<my_vdec:pool:src> Stopped streaming
0:00:05.560193375 8744 0x3d0a0600 LOG bufferpool gstbufferpool.c:1284:default_release_buffer:<my_vdec:pool:src> released buffer 0xffffa4028460 0
0:00:05.560245500 8744 0x3d0a0600 DEBUG GST_BUFFER gstbuffer.c:1375:gst_buffer_is_memory_range_writable: idx 0, length -1
0:00:05.560304750 8744 0x3d0a0600 LOG bufferpool gstbufferpool.c:1284:default_release_buffer:<my_vdec:pool:src> released buffer 0xffffa4028570 0
0:00:05.560352125 8744 0x3d0a0600 DEBUG GST_BUFFER gstbuffer.c:1375:gst_buffer_is_memory_range_writable: idx 0, length -1
0:00:05.560408000 8744 0x3d0a0600 LOG bufferpool gstbufferpool.c:1284:default_release_buffer:<my_vdec:pool:src> released buffer 0xffffa4028680 0
0:00:05.560454750 8744 0x3d0a0600 DEBUG GST_BUFFER gstbuffer.c:1375:gst_buffer_is_memory_range_writable: idx 0, length -1
0:00:05.560510375 8744 0x3d0a0600 LOG bufferpool gstbufferpool.c:1284:default_release_buffer:<my_vdec:pool:src> released buffer 0xffffa4028790 0
0:00:05.560557250 8744 0x3d0a0600 DEBUG GST_BUFFER gstbuffer.c:1375:gst_buffer_is_memory_range_writable: idx 0, length -1
0:00:05.560612625 8744 0x3d0a0600 LOG bufferpool gstbufferpool.c:1284:default_release_buffer:<my_vdec:pool:src> released buffer 0xffffa40288a0 0
0:00:05.560659125 8744 0x3d0a0600 DEBUG GST_BUFFER gstbuffer.c:1375:gst_buffer_is_memory_range_writable: idx 0, length -1
0:00:05.560714750 8744 0x3d0a0600 LOG bufferpool gstbufferpool.c:1284:default_release_buffer:<my_vdec:pool:src> released buffer 0xffffa40289b0 0
0:00:05.560761500 8744 0x3d0a0600 DEBUG GST_BUFFER gstbuffer.c:1375:gst_buffer_is_memory_range_writable: idx 0, length -1
0:00:05.560816875 8744 0x3d0a0600 LOG bufferpool gstbufferpool.c:1284:default_release_buffer:<my_vdec:pool:src> released buffer 0xffffa4028ac0 0
0:00:05.560863875 8744 0x3d0a0600 DEBUG GST_BUFFER gstbuffer.c:1375:gst_buffer_is_memory_range_writable: idx 0, length -1
0:00:05.560919875 8744 0x3d0a0600 LOG bufferpool gstbufferpool.c:1284:default_release_buffer:<my_vdec:pool:src> released buffer 0xffffa4028bd0 0
0:00:05.560966375 8744 0x3d0a0600 DEBUG GST_BUFFER gstbuffer.c:1375:gst_buffer_is_memory_range_writable: idx 0, length -1
0:00:05.561020875 8744 0x3d0a0600 LOG bufferpool gstbufferpool.c:1284:default_release_buffer:<my_vdec:pool:src> released buffer 0xffffa4028ce0 0
0:00:05.561133375 8744 0x3d0a0600 DEBUG GST_BUFFER gstbuffer.c:1375:gst_buffer_is_memory_range_writable: idx 0, length -1
0:00:05.561191750 8744 0x3d0a0600 LOG bufferpool gstbufferpool.c:1284:default_release_buffer:<my_vdec:pool:src> released buffer 0xffffa4028df0 0
0:00:05.561239250 8744 0x3d0a0600 DEBUG GST_BUFFER gstbuffer.c:1375:gst_buffer_is_memory_range_writable: idx 0, length -1
0:00:05.561294625 8744 0x3d0a0600 LOG bufferpool gstbufferpool.c:1284:default_release_buffer:<my_vdec:pool:src> released buffer 0xffff9c01f020 0
0:00:05.561341375 8744 0x3d0a0600 DEBUG GST_BUFFER gstbuffer.c:1375:gst_buffer_is_memory_range_writable: idx 0, length -1
0:00:05.561397250 8744 0x3d0a0600 LOG bufferpool gstbufferpool.c:1284:default_release_buffer:<my_vdec:pool:src> released buffer 0xffff9c01f130 0
0:00:05.561444000 8744 0x3d0a0600 DEBUG GST_BUFFER gstbuffer.c:1375:gst_buffer_is_memory_range_writable: idx 0, length -1
0:00:05.561499625 8744 0x3d0a0600 LOG bufferpool gstbufferpool.c:1284:default_release_buffer:<my_vdec:pool:src> released buffer 0xffff9c01f240 0
0:00:05.561577750 8744 0x3d0a0600 DEBUG GST_BUFFER gstbuffer.c:1375:gst_buffer_is_memory_range_writable: idx 0, length -1
0:00:05.561635125 8744 0x3d0a0600 LOG bufferpool gstbufferpool.c:1284:default_release_buffer:<my_vdec:pool:src> released buffer 0xffff9c01f350 0
0:00:05.561682625 8744 0x3d0a0600 DEBUG GST_BUFFER gstbuffer.c:1375:gst_buffer_is_memory_range_writable: idx 0, length -1
0:00:05.561738625 8744 0x3d0a0600 LOG bufferpool gstbufferpool.c:1284:default_release_buffer:<my_vdec:pool:src> released buffer 0xffff9c01f460 0
0:00:05.561785875 8744 0x3d0a0600 DEBUG GST_BUFFER gstbuffer.c:1375:gst_buffer_is_memory_range_writable: idx 0, length -1
0:00:05.561841500 8744 0x3d0a0600 LOG bufferpool gstbufferpool.c:1284:default_release_buffer:<my_vdec:pool:src> released buffer 0xffff9c01f570 0
0:00:05.561887875 8744 0x3d0a0600 DEBUG GST_BUFFER gstbuffer.c:1375:gst_buffer_is_memory_range_writable: idx 0, length -1
0:00:05.561944375 8744 0x3d0a0600 LOG bufferpool gstbufferpool.c:1284:default_release_buffer:<my_vdec:pool:src> released buffer 0xffff9c01f680 0
0:00:05.561991375 8744 0x3d0a0600 DEBUG GST_BUFFER gstbuffer.c:1375:gst_buffer_is_memory_range_writable: idx 0, length -1
0:00:05.562050125 8744 0x3d0a0600 LOG bufferpool gstbufferpool.c:1284:default_release_buffer:<my_vdec:pool:src> released buffer 0xffff9c01f790 0
0:00:05.562097625 8744 0x3d0a0600 DEBUG GST_BUFFER gstbuffer.c:1375:gst_buffer_is_memory_range_writable: idx 0, length -1
0:00:05.562153875 8744 0x3d0a0600 LOG bufferpool gstbufferpool.c:1284:default_release_buffer:<my_vdec:pool:src> released buffer 0xffff9c01f8a0 0
0:00:05.562201125 8744 0x3d0a0600 DEBUG GST_BUFFER gstbuffer.c:1375:gst_buffer_is_memory_range_writable: idx 0, length -1
0:00:05.562257375 8744 0x3d0a0600 LOG bufferpool gstbufferpool.c:1284:default_release_buffer:<my_vdec:pool:src> released buffer 0xffff9c01f9b0 0
0:00:05.562303875 8744 0x3d0a0600 DEBUG GST_BUFFER gstbuffer.c:1375:gst_buffer_is_memory_range_writable: idx 0, length -1
0:00:05.562359375 8744 0x3d0a0600 LOG bufferpool gstbufferpool.c:1284:default_release_buffer:<my_vdec:pool:src> released buffer 0xffff9c01fac0 0
0:00:05.562406625 8744 0x3d0a0600 DEBUG GST_BUFFER gstbuffer.c:1375:gst_buffer_is_memory_range_writable: idx 0, length -1
0:00:05.562462250 8744 0x3d0a0600 LOG bufferpool gstbufferpool.c:1284:default_release_buffer:<my_vdec:pool:src> released buffer 0xffff9c01fbd0 0
0:00:05.562509375 8744 0x3d0a0600 DEBUG GST_BUFFER gstbuffer.c:1375:gst_buffer_is_memory_range_writable: idx 0, length -1
0:00:05.562567875 8744 0x3d0a0600 LOG bufferpool gstbufferpool.c:388:do_free_buffer:<my_vdec:pool:src> freeing buffer 0xffffa4028460 (21 left)
0:00:05.562618750 8744 0x3d0a0600 LOG GST_BUFFER gstbuffer.c:725:_gst_buffer_free: finalize 0xffffa4028460
0:00:05.562674875 8744 0x3d0a0600 LOG v4l2allocator gstv4l2allocator.c:356:gst_v4l2_allocator_release:<my_vdec:pool:src:allocator> plane 0 of buffer 0 released
0:00:05.562724375 8744 0x3d0a0600 DEBUG GST_MEMORY gstmemory.c:88:_gst_memory_free: free memory 0xffffa40184c0
0:00:05.562777125 8744 0x3d0a0600 DEBUG fdmemory gstfdmemory.c:74:gst_fd_mem_free: 0xffffa40184c0: freed
0:00:05.562834375 8744 0x3d0a0600 LOG v4l2allocator gstv4l2allocator.c:356:gst_v4l2_allocator_release:<my_vdec:pool:src:allocator> plane 1 of buffer 0 released
0:00:05.562890625 8744 0x3d0a0600 LOG v4l2allocator gstv4l2allocator.c:372:gst_v4l2_allocator_release:<my_vdec:pool:src:allocator> buffer 0 released
0:00:05.562937750 8744 0x3d0a0600 DEBUG GST_MEMORY gstmemory.c:88:_gst_memory_free: free memory 0xffffa40185e0
0:00:05.563021375 8744 0x3d0a0600 DEBUG fdmemory gstfdmemory.c:74:gst_fd_mem_free: 0xffffa40185e0: freed
0:00:05.563081875 8744 0x3d0a0600 LOG bufferpool gstbufferpool.c:388:do_free_buffer:<my_vdec:pool:src> freeing buffer 0xffffa4028570 (20 left)
0:00:05.563139750 8744 0x3d0a0600 LOG GST_BUFFER gstbuffer.c:725:_gst_buffer_free: finalize 0xffffa4028570
0:00:05.563195875 8744 0x3d0a0600 LOG v4l2allocator gstv4l2allocator.c:356:gst_v4l2_allocator_release:<my_vdec:pool:src:allocator> plane 0 of buffer 1 released
0:00:05.563243875 8744 0x3d0a0600 DEBUG GST_MEMORY gstmemory.c:88:_gst_memory_free: free memory 0xffff9c018820
0:00:05.563291125 8744 0x3d0a0600 DEBUG fdmemory gstfdmemory.c:74:gst_fd_mem_free: 0xffff9c018820: freed
0:00:05.563345750 8744 0x3d0a0600 LOG v4l2allocator gstv4l2allocator.c:356:gst_v4l2_allocator_release:<my_vdec:pool:src:allocator> plane 1 of buffer 1 released
0:00:05.563402500 8744 0x3d0a0600 LOG v4l2allocator gstv4l2allocator.c:372:gst_v4l2_allocator_release:<my_vdec:pool:src:allocator> buffer 1 released
0:00:05.563447875 8744 0x3d0a0600 DEBUG GST_MEMORY gstmemory.c:88:_gst_memory_free: free memory 0xffff9c018940
0:00:05.563496625 8744 0x3d0a0600 DEBUG fdmemory gstfdmemory.c:74:gst_fd_mem_free: 0xffff9c018940: freed
0:00:05.563551125 8744 0x3d0a0600 LOG bufferpool gstbufferpool.c:388:do_free_buffer:<my_vdec:pool:src> freeing buffer 0xffffa4028680 (19 left)
0:00:05.563605750 8744 0x3d0a0600 LOG GST_BUFFER gstbuffer.c:725:_gst_buffer_free: finalize 0xffffa4028680
0:00:05.563660875 8744 0x3d0a0600 LOG v4l2allocator gstv4l2allocator.c:356:gst_v4l2_allocator_release:<my_vdec:pool:src:allocator> plane 0 of buffer 2 released
0:00:05.563707500 8744 0x3d0a0600 DEBUG GST_MEMORY gstmemory.c:88:_gst_memory_free: free memory 0xffff9c018af0
0:00:05.563756875 8744 0x3d0a0600 DEBUG fdmemory gstfdmemory.c:74:gst_fd_mem_free: 0xffff9c018af0: freed
0:00:05.563812750 8744 0x3d0a0600 LOG v4l2allocator gstv4l2allocator.c:356:gst_v4l2_allocator_release:<my_vdec:pool:src:allocator> plane 1 of buffer 2 released
0:00:05.563869250 8744 0x3d0a0600 LOG v4l2allocator gstv4l2allocator.c:372:gst_v4l2_allocator_release:<my_vdec:pool:src:allocator> buffer 2 released
0:00:05.563914750 8744 0x3d0a0600 DEBUG GST_MEMORY gstmemory.c:88:_gst_memory_free: free memory 0xffff9c018c10
0:00:05.563962750 8744 0x3d0a0600 DEBUG fdmemory gstfdmemory.c:74:gst_fd_mem_free: 0xffff9c018c10: freed
0:00:05.564017625 8744 0x3d0a0600 LOG bufferpool gstbufferpool.c:388:do_free_buffer:<my_vdec:pool:src> freeing buffer 0xffffa4028790 (18 left)
0:00:05.564072500 8744 0x3d0a0600 LOG GST_BUFFER gstbuffer.c:725:_gst_buffer_free: finalize 0xffffa4028790
0:00:05.564128375 8744 0x3d0a0600 LOG v4l2allocator gstv4l2allocator.c:356:gst_v4l2_allocator_release:<my_vdec:pool:src:allocator> plane 0 of buffer 3 released
0:00:05.564176000 8744 0x3d0a0600 DEBUG GST_MEMORY gstmemory.c:88:_gst_memory_free: free memory 0xffff9c018dc0
0:00:05.564225250 8744 0x3d0a0600 DEBUG fdmemory gstfdmemory.c:74:gst_fd_mem_free: 0xffff9c018dc0: freed
0:00:05.564281125 8744 0x3d0a0600 LOG v4l2allocator gstv4l2allocator.c:356:gst_v4l2_allocator_release:<my_vdec:pool:src:allocator> plane 1 of buffer 3 released
0:00:05.564337750 8744 0x3d0a0600 LOG v4l2allocator gstv4l2allocator.c:372:gst_v4l2_allocator_release:<my_vdec:pool:src:allocator> buffer 3 released
0:00:05.564382750 8744 0x3d0a0600 DEBUG GST_MEMORY gstmemory.c:88:_gst_memory_free: free memory 0xffff9c018ee0
0:00:05.564432875 8744 0x3d0a0600 DEBUG fdmemory gstfdmemory.c:74:gst_fd_mem_free: 0xffff9c018ee0: freed
0:00:05.564518750 8744 0x3d0a0600 LOG bufferpool gstbufferpool.c:388:do_free_buffer:<my_vdec:pool:src> freeing buffer 0xffffa40288a0 (17 left)
0:00:05.564574750 8744 0x3d0a0600 LOG GST_BUFFER gstbuffer.c:725:_gst_buffer_free: finalize 0xffffa40288a0
0:00:05.564630250 8744 0x3d0a0600 LOG v4l2allocator gstv4l2allocator.c:356:gst_v4l2_allocator_release:<my_vdec:pool:src:allocator> plane 0 of buffer 4 released
0:00:05.564677625 8744 0x3d0a0600 DEBUG GST_MEMORY gstmemory.c:88:_gst_memory_free: free memory 0xffff9c01e150
0:00:05.564725875 8744 0x3d0a0600 DEBUG fdmemory gstfdmemory.c:74:gst_fd_mem_free: 0xffff9c01e150: freed
0:00:05.564781500 8744 0x3d0a0600 LOG v4l2allocator gstv4l2allocator.c:356:gst_v4l2_allocator_release:<my_vdec:pool:src:allocator> plane 1 of buffer 4 released
0:00:05.564837875 8744 0x3d0a0600 LOG v4l2allocator gstv4l2allocator.c:372:gst_v4l2_allocator_release:<my_vdec:pool:src:allocator> buffer 4 released
0:00:05.564883375 8744 0x3d0a0600 DEBUG GST_MEMORY gstmemory.c:88:_gst_memory_free: free memory 0xffff9c01e270
0:00:05.564930875 8744 0x3d0a0600 DEBUG fdmemory gstfdmemory.c:74:gst_fd_mem_free: 0xffff9c01e270: freed
0:00:05.564985500 8744 0x3d0a0600 LOG bufferpool gstbufferpool.c:388:do_free_buffer:<my_vdec:pool:src> freeing buffer 0xffffa40289b0 (16 left)
0:00:05.565040000 8744 0x3d0a0600 LOG GST_BUFFER gstbuffer.c:725:_gst_buffer_free: finalize 0xffffa40289b0
0:00:05.565138500 8744 0x3d0a0600 LOG v4l2allocator gstv4l2allocator.c:356:gst_v4l2_allocator_release:<my_vdec:pool:src:allocator> plane 0 of buffer 5 released
0:00:05.565187375 8744 0x3d0a0600 DEBUG GST_MEMORY gstmemory.c:88:_gst_memory_free: free memory 0xffff9c01e420
0:00:05.565235250 8744 0x3d0a0600 DEBUG fdmemory gstfdmemory.c:74:gst_fd_mem_free: 0xffff9c01e420: freed
0:00:05.565290875 8744 0x3d0a0600 LOG v4l2allocator gstv4l2allocator.c:356:gst_v4l2_allocator_release:<my_vdec:pool:src:allocator> plane 1 of buffer 5 released
0:00:05.565347375 8744 0x3d0a0600 LOG v4l2allocator gstv4l2allocator.c:372:gst_v4l2_allocator_release:<my_vdec:pool:src:allocator> buffer 5 released
0:00:05.565392625 8744 0x3d0a0600 DEBUG GST_MEMORY gstmemory.c:88:_gst_memory_free: free memory 0xffff9c01e540
0:00:05.565440500 8744 0x3d0a0600 DEBUG fdmemory gstfdmemory.c:74:gst_fd_mem_free: 0xffff9c01e540: freed
0:00:05.565495375 8744 0x3d0a0600 LOG bufferpool gstbufferpool.c:388:do_free_buffer:<my_vdec:pool:src> freeing buffer 0xffffa4028ac0 (15 left)
0:00:05.565549375 8744 0x3d0a0600 LOG GST_BUFFER gstbuffer.c:725:_gst_buffer_free: finalize 0xffffa4028ac0
0:00:05.565604125 8744 0x3d0a0600 LOG v4l2allocator gstv4l2allocator.c:356:gst_v4l2_allocator_release:<my_vdec:pool:src:allocator> plane 0 of buffer 6 released
0:00:05.565651125 8744 0x3d0a0600 DEBUG GST_MEMORY gstmemory.c:88:_gst_memory_free: free memory 0xffff9c01e6f0
0:00:05.565699250 8744 0x3d0a0600 DEBUG fdmemory gstfdmemory.c:74:gst_fd_mem_free: 0xffff9c01e6f0: freed
0:00:05.565754500 8744 0x3d0a0600 LOG v4l2allocator gstv4l2allocator.c:356:gst_v4l2_allocator_release:<my_vdec:pool:src:allocator> plane 1 of buffer 6 released
0:00:05.565810500 8744 0x3d0a0600 LOG v4l2allocator gstv4l2allocator.c:372:gst_v4l2_allocator_release:<my_vdec:pool:src:allocator> buffer 6 released
0:00:05.565855875 8744 0x3d0a0600 DEBUG GST_MEMORY gstmemory.c:88:_gst_memory_free: free memory 0xffff9c01e8d0
0:00:05.565903250 8744 0x3d0a0600 DEBUG fdmemory gstfdmemory.c:74:gst_fd_mem_free: 0xffff9c01e8d0: freed
0:00:05.565959500 8744 0x3d0a0600 LOG bufferpool gstbufferpool.c:388:do_free_buffer:<my_vdec:pool:src> freeing buffer 0xffffa4028bd0 (14 left)
0:00:05.566044125 8744 0x3d0a0600 LOG GST_BUFFER gstbuffer.c:725:_gst_buffer_free: finalize 0xffffa4028bd0
0:00:05.566103500 8744 0x3d0a0600 LOG v4l2allocator gstv4l2allocator.c:356:gst_v4l2_allocator_release:<my_vdec:pool:src:allocator> plane 0 of buffer 7 released
0:00:05.566152125 8744 0x3d0a0600 DEBUG GST_MEMORY gstmemory.c:88:_gst_memory_free: free memory 0xffff9c01ea80
0:00:05.566199750 8744 0x3d0a0600 DEBUG fdmemory gstfdmemory.c:74:gst_fd_mem_free: 0xffff9c01ea80: freed
0:00:05.566254750 8744 0x3d0a0600 LOG v4l2allocator gstv4l2allocator.c:356:gst_v4l2_allocator_release:<my_vdec:pool:src:allocator> plane 1 of buffer 7 released
0:00:05.566311375 8744 0x3d0a0600 LOG v4l2allocator gstv4l2allocator.c:372:gst_v4l2_allocator_release:<my_vdec:pool:src:allocator> buffer 7 released
0:00:05.566356500 8744 0x3d0a0600 DEBUG GST_MEMORY gstmemory.c:88:_gst_memory_free: free memory 0xffff9c01eba0
0:00:05.566404250 8744 0x3d0a0600 DEBUG fdmemory gstfdmemory.c:74:gst_fd_mem_free: 0xffff9c01eba0: freed
0:00:05.566458750 8744 0x3d0a0600 LOG bufferpool gstbufferpool.c:388:do_free_buffer:<my_vdec:pool:src> freeing buffer 0xffffa4028ce0 (13 left)
0:00:05.566514000 8744 0x3d0a0600 LOG GST_BUFFER gstbuffer.c:725:_gst_buffer_free: finalize 0xffffa4028ce0
0:00:05.566569375 8744 0x3d0a0600 LOG v4l2allocator gstv4l2allocator.c:356:gst_v4l2_allocator_release:<my_vdec:pool:src:allocator> plane 0 of buffer 8 released
0:00:05.566616875 8744 0x3d0a0600 DEBUG GST_MEMORY gstmemory.c:88:_gst_memory_free: free memory 0xffff9c01ed50
0:00:05.566665000 8744 0x3d0a0600 DEBUG fdmemory gstfdmemory.c:74:gst_fd_mem_free: 0xffff9c01ed50: freed
0:00:05.566720250 8744 0x3d0a0600 LOG v4l2allocator gstv4l2allocator.c:356:gst_v4l2_allocator_release:<my_vdec:pool:src:allocator> plane 1 of buffer 8 released
0:00:05.566776750 8744 0x3d0a0600 LOG v4l2allocator gstv4l2allocator.c:372:gst_v4l2_allocator_release:<my_vdec:pool:src:allocator> buffer 8 released
0:00:05.566822500 8744 0x3d0a0600 DEBUG GST_MEMORY gstmemory.c:88:_gst_memory_free: free memory 0xffff9c01ee70
0:00:05.566870375 8744 0x3d0a0600 DEBUG fdmemory gstfdmemory.c:74:gst_fd_mem_free: 0xffff9c01ee70: freed
0:00:05.566925125 8744 0x3d0a0600 LOG bufferpool gstbufferpool.c:388:do_free_buffer:<my_vdec:pool:src> freeing buffer 0xffffa4028df0 (12 left)
0:00:05.566979250 8744 0x3d0a0600 LOG GST_BUFFER gstbuffer.c:725:_gst_buffer_free: finalize 0xffffa4028df0
0:00:05.567034500 8744 0x3d0a0600 LOG v4l2allocator gstv4l2allocator.c:356:gst_v4l2_allocator_release:<my_vdec:pool:src:allocator> plane 0 of buffer 9 released
0:00:05.567082500 8744 0x3d0a0600 DEBUG GST_MEMORY gstmemory.c:88:_gst_memory_free: free memory 0xffff9c0200f0
0:00:05.567129875 8744 0x3d0a0600 DEBUG fdmemory gstfdmemory.c:74:gst_fd_mem_free: 0xffff9c0200f0: freed
0:00:05.567185375 8744 0x3d0a0600 LOG v4l2allocator gstv4l2allocator.c:356:gst_v4l2_allocator_release:<my_vdec:pool:src:allocator> plane 1 of buffer 9 released
0:00:05.567242250 8744 0x3d0a0600 LOG v4l2allocator gstv4l2allocator.c:372:gst_v4l2_allocator_release:<my_vdec:pool:src:allocator> buffer 9 released
0:00:05.567287250 8744 0x3d0a0600 DEBUG GST_MEMORY gstmemory.c:88:_gst_memory_free: free memory 0xffff9c020210
0:00:05.567335000 8744 0x3d0a0600 DEBUG fdmemory gstfdmemory.c:74:gst_fd_mem_free: 0xffff9c020210: freed
0:00:05.567390250 8744 0x3d0a0600 LOG bufferpool gstbufferpool.c:388:do_free_buffer:<my_vdec:pool:src> freeing buffer 0xffff9c01f020 (11 left)
0:00:05.567440000 8744 0x3d0a0600 LOG GST_BUFFER gstbuffer.c:725:_gst_buffer_free: finalize 0xffff9c01f020
0:00:05.567524500 8744 0x3d0a0600 LOG v4l2allocator gstv4l2allocator.c:356:gst_v4l2_allocator_release:<my_vdec:pool:src:allocator> plane 0 of buffer 10 released
0:00:05.567573250 8744 0x3d0a0600 DEBUG GST_MEMORY gstmemory.c:88:_gst_memory_free: free memory 0xffff9c0203c0
0:00:05.567622000 8744 0x3d0a0600 DEBUG fdmemory gstfdmemory.c:74:gst_fd_mem_free: 0xffff9c0203c0: freed
0:00:05.567677625 8744 0x3d0a0600 LOG v4l2allocator gstv4l2allocator.c:356:gst_v4l2_allocator_release:<my_vdec:pool:src:allocator> plane 1 of buffer 10 released
0:00:05.567734625 8744 0x3d0a0600 LOG v4l2allocator gstv4l2allocator.c:372:gst_v4l2_allocator_release:<my_vdec:pool:src:allocator> buffer 10 released
0:00:05.567780250 8744 0x3d0a0600 DEBUG GST_MEMORY gstmemory.c:88:_gst_memory_free: free memory 0xffff9c0204e0
0:00:05.567829125 8744 0x3d0a0600 DEBUG fdmemory gstfdmemory.c:74:gst_fd_mem_free: 0xffff9c0204e0: freed
0:00:05.567884375 8744 0x3d0a0600 LOG bufferpool gstbufferpool.c:388:do_free_buffer:<my_vdec:pool:src> freeing buffer 0xffff9c01f130 (10 left)
0:00:05.567932625 8744 0x3d0a0600 LOG GST_BUFFER gstbuffer.c:725:_gst_buffer_free: finalize 0xffff9c01f130
0:00:05.567986375 8744 0x3d0a0600 LOG v4l2allocator gstv4l2allocator.c:356:gst_v4l2_allocator_release:<my_vdec:pool:src:allocator> plane 0 of buffer 11 released
0:00:05.568034375 8744 0x3d0a0600 DEBUG GST_MEMORY gstmemory.c:88:_gst_memory_free: free memory 0xffff9c020690
0:00:05.568082125 8744 0x3d0a0600 DEBUG fdmemory gstfdmemory.c:74:gst_fd_mem_free: 0xffff9c020690: freed
0:00:05.568138125 8744 0x3d0a0600 LOG v4l2allocator gstv4l2allocator.c:356:gst_v4l2_allocator_release:<my_vdec:pool:src:allocator> plane 1 of buffer 11 released
0:00:05.568194625 8744 0x3d0a0600 LOG v4l2allocator gstv4l2allocator.c:372:gst_v4l2_allocator_release:<my_vdec:pool:src:allocator> buffer 11 released
0:00:05.568239625 8744 0x3d0a0600 DEBUG GST_MEMORY gstmemory.c:88:_gst_memory_free: free memory 0xffff9c020870
0:00:05.568287375 8744 0x3d0a0600 DEBUG fdmemory gstfdmemory.c:74:gst_fd_mem_free: 0xffff9c020870: freed
0:00:05.568341875 8744 0x3d0a0600 LOG bufferpool gstbufferpool.c:388:do_free_buffer:<my_vdec:pool:src> freeing buffer 0xffff9c01f240 (9 left)
0:00:05.568389875 8744 0x3d0a0600 LOG GST_BUFFER gstbuffer.c:725:_gst_buffer_free: finalize 0xffff9c01f240
0:00:05.568443125 8744 0x3d0a0600 LOG v4l2allocator gstv4l2allocator.c:356:gst_v4l2_allocator_release:<my_vdec:pool:src:allocator> plane 0 of buffer 12 released
0:00:05.568490375 8744 0x3d0a0600 DEBUG GST_MEMORY gstmemory.c:88:_gst_memory_free: free memory 0xffff9c020a20
0:00:05.568538375 8744 0x3d0a0600 DEBUG fdmemory gstfdmemory.c:74:gst_fd_mem_free: 0xffff9c020a20: freed
0:00:05.568593875 8744 0x3d0a0600 LOG v4l2allocator gstv4l2allocator.c:356:gst_v4l2_allocator_release:<my_vdec:pool:src:allocator> plane 1 of buffer 12 released
0:00:05.568650625 8744 0x3d0a0600 LOG v4l2allocator gstv4l2allocator.c:372:gst_v4l2_allocator_release:<my_vdec:pool:src:allocator> buffer 12 released
0:00:05.568696000 8744 0x3d0a0600 DEBUG GST_MEMORY gstmemory.c:88:_gst_memory_free: free memory 0xffff9c020b40
0:00:05.568743750 8744 0x3d0a0600 DEBUG fdmemory gstfdmemory.c:74:gst_fd_mem_free: 0xffff9c020b40: freed
0:00:05.568798500 8744 0x3d0a0600 LOG bufferpool gstbufferpool.c:388:do_free_buffer:<my_vdec:pool:src> freeing buffer 0xffff9c01f350 (8 left)
0:00:05.568846125 8744 0x3d0a0600 LOG GST_BUFFER gstbuffer.c:725:_gst_buffer_free: finalize 0xffff9c01f350
0:00:05.568899625 8744 0x3d0a0600 LOG v4l2allocator gstv4l2allocator.c:356:gst_v4l2_allocator_release:<my_vdec:pool:src:allocator> plane 0 of buffer 13 released
0:00:05.568978125 8744 0x3d0a0600 DEBUG GST_MEMORY gstmemory.c:88:_gst_memory_free: free memory 0xffff9c020cf0
0:00:05.569028000 8744 0x3d0a0600 DEBUG fdmemory gstfdmemory.c:74:gst_fd_mem_free: 0xffff9c020cf0: freed
0:00:05.569134625 8744 0x3d0a0600 LOG v4l2allocator gstv4l2allocator.c:356:gst_v4l2_allocator_release:<my_vdec:pool:src:allocator> plane 1 of buffer 13 released
0:00:05.569192875 8744 0x3d0a0600 LOG v4l2allocator gstv4l2allocator.c:372:gst_v4l2_allocator_release:<my_vdec:pool:src:allocator> buffer 13 released
0:00:05.569239625 8744 0x3d0a0600 DEBUG GST_MEMORY gstmemory.c:88:_gst_memory_free: free memory 0xffff9c020e10
0:00:05.569287875 8744 0x3d0a0600 DEBUG fdmemory gstfdmemory.c:74:gst_fd_mem_free: 0xffff9c020e10: freed
0:00:05.569342750 8744 0x3d0a0600 LOG bufferpool gstbufferpool.c:388:do_free_buffer:<my_vdec:pool:src> freeing buffer 0xffff9c01f460 (7 left)
0:00:05.569391375 8744 0x3d0a0600 LOG GST_BUFFER gstbuffer.c:725:_gst_buffer_free: finalize 0xffff9c01f460
0:00:05.569445500 8744 0x3d0a0600 LOG v4l2allocator gstv4l2allocator.c:356:gst_v4l2_allocator_release:<my_vdec:pool:src:allocator> plane 0 of buffer 14 released
0:00:05.569492750 8744 0x3d0a0600 DEBUG GST_MEMORY gstmemory.c:88:_gst_memory_free: free memory 0xffff9c021000
0:00:05.569542125 8744 0x3d0a0600 DEBUG fdmemory gstfdmemory.c:74:gst_fd_mem_free: 0xffff9c021000: freed
0:00:05.569597625 8744 0x3d0a0600 LOG v4l2allocator gstv4l2allocator.c:356:gst_v4l2_allocator_release:<my_vdec:pool:src:allocator> plane 1 of buffer 14 released
0:00:05.569653875 8744 0x3d0a0600 LOG v4l2allocator gstv4l2allocator.c:372:gst_v4l2_allocator_release:<my_vdec:pool:src:allocator> buffer 14 released
0:00:05.569699375 8744 0x3d0a0600 DEBUG GST_MEMORY gstmemory.c:88:_gst_memory_free: free memory 0xffff9c021120
0:00:05.569746875 8744 0x3d0a0600 DEBUG fdmemory gstfdmemory.c:74:gst_fd_mem_free: 0xffff9c021120: freed
0:00:05.569801375 8744 0x3d0a0600 LOG bufferpool gstbufferpool.c:388:do_free_buffer:<my_vdec:pool:src> freeing buffer 0xffff9c01f570 (6 left)
0:00:05.569848875 8744 0x3d0a0600 LOG GST_BUFFER gstbuffer.c:725:_gst_buffer_free: finalize 0xffff9c01f570
0:00:05.569901875 8744 0x3d0a0600 LOG v4l2allocator gstv4l2allocator.c:356:gst_v4l2_allocator_release:<my_vdec:pool:src:allocator> plane 0 of buffer 15 released
0:00:05.569949125 8744 0x3d0a0600 DEBUG GST_MEMORY gstmemory.c:88:_gst_memory_free: free memory 0xffff9c0212d0
0:00:05.569996750 8744 0x3d0a0600 DEBUG fdmemory gstfdmemory.c:74:gst_fd_mem_free: 0xffff9c0212d0: freed
0:00:05.570051625 8744 0x3d0a0600 LOG v4l2allocator gstv4l2allocator.c:356:gst_v4l2_allocator_release:<my_vdec:pool:src:allocator> plane 1 of buffer 15 released
0:00:05.570108000 8744 0x3d0a0600 LOG v4l2allocator gstv4l2allocator.c:372:gst_v4l2_allocator_release:<my_vdec:pool:src:allocator> buffer 15 released
0:00:05.570153500 8744 0x3d0a0600 DEBUG GST_MEMORY gstmemory.c:88:_gst_memory_free: free memory 0xffff9c0213f0
0:00:05.570201500 8744 0x3d0a0600 DEBUG fdmemory gstfdmemory.c:74:gst_fd_mem_free: 0xffff9c0213f0: freed
0:00:05.570256125 8744 0x3d0a0600 LOG bufferpool gstbufferpool.c:388:do_free_buffer:<my_vdec:pool:src> freeing buffer 0xffff9c01f680 (5 left)
0:00:05.570303625 8744 0x3d0a0600 LOG GST_BUFFER gstbuffer.c:725:_gst_buffer_free: finalize 0xffff9c01f680
0:00:05.570357125 8744 0x3d0a0600 LOG v4l2allocator gstv4l2allocator.c:356:gst_v4l2_allocator_release:<my_vdec:pool:src:allocator> plane 0 of buffer 16 released
0:00:05.570404250 8744 0x3d0a0600 DEBUG GST_MEMORY gstmemory.c:88:_gst_memory_free: free memory 0xffff9c0215a0
0:00:05.570451625 8744 0x3d0a0600 DEBUG fdmemory gstfdmemory.c:74:gst_fd_mem_free: 0xffff9c0215a0: freed
0:00:05.570539000 8744 0x3d0a0600 LOG v4l2allocator gstv4l2allocator.c:356:gst_v4l2_allocator_release:<my_vdec:pool:src:allocator> plane 1 of buffer 16 released
0:00:05.570596500 8744 0x3d0a0600 LOG v4l2allocator gstv4l2allocator.c:372:gst_v4l2_allocator_release:<my_vdec:pool:src:allocator> buffer 16 released
0:00:05.570642250 8744 0x3d0a0600 DEBUG GST_MEMORY gstmemory.c:88:_gst_memory_free: free memory 0xffff9c0216c0
0:00:05.570690500 8744 0x3d0a0600 DEBUG fdmemory gstfdmemory.c:74:gst_fd_mem_free: 0xffff9c0216c0: freed
0:00:05.570744750 8744 0x3d0a0600 LOG bufferpool gstbufferpool.c:388:do_free_buffer:<my_vdec:pool:src> freeing buffer 0xffff9c01f790 (4 left)
0:00:05.570793000 8744 0x3d0a0600 LOG GST_BUFFER gstbuffer.c:725:_gst_buffer_free: finalize 0xffff9c01f790
0:00:05.570846125 8744 0x3d0a0600 LOG v4l2allocator gstv4l2allocator.c:356:gst_v4l2_allocator_release:<my_vdec:pool:src:allocator> plane 0 of buffer 17 released
0:00:05.570893875 8744 0x3d0a0600 DEBUG GST_MEMORY gstmemory.c:88:_gst_memory_free: free memory 0xffff9c022130
0:00:05.570941500 8744 0x3d0a0600 DEBUG fdmemory gstfdmemory.c:74:gst_fd_mem_free: 0xffff9c022130: freed
0:00:05.570997000 8744 0x3d0a0600 LOG v4l2allocator gstv4l2allocator.c:356:gst_v4l2_allocator_release:<my_vdec:pool:src:allocator> plane 1 of buffer 17 released
0:00:05.571053125 8744 0x3d0a0600 LOG v4l2allocator gstv4l2allocator.c:372:gst_v4l2_allocator_release:<my_vdec:pool:src:allocator> buffer 17 released
0:00:05.571097750 8744 0x3d0a0600 DEBUG GST_MEMORY gstmemory.c:88:_gst_memory_free: free memory 0xffff9c022250
0:00:05.571145250 8744 0x3d0a0600 DEBUG fdmemory gstfdmemory.c:74:gst_fd_mem_free: 0xffff9c022250: freed
0:00:05.571199500 8744 0x3d0a0600 LOG bufferpool gstbufferpool.c:388:do_free_buffer:<my_vdec:pool:src> freeing buffer 0xffff9c01f8a0 (3 left)
0:00:05.571247875 8744 0x3d0a0600 LOG GST_BUFFER gstbuffer.c:725:_gst_buffer_free: finalize 0xffff9c01f8a0
0:00:05.571302750 8744 0x3d0a0600 LOG v4l2allocator gstv4l2allocator.c:356:gst_v4l2_allocator_release:<my_vdec:pool:src:allocator> plane 0 of buffer 18 released
0:00:05.571350500 8744 0x3d0a0600 DEBUG GST_MEMORY gstmemory.c:88:_gst_memory_free: free memory 0xffff9c022400
0:00:05.571398250 8744 0x3d0a0600 DEBUG fdmemory gstfdmemory.c:74:gst_fd_mem_free: 0xffff9c022400: freed
0:00:05.571453375 8744 0x3d0a0600 LOG v4l2allocator gstv4l2allocator.c:356:gst_v4l2_allocator_release:<my_vdec:pool:src:allocator> plane 1 of buffer 18 released
0:00:05.571510000 8744 0x3d0a0600 LOG v4l2allocator gstv4l2allocator.c:372:gst_v4l2_allocator_release:<my_vdec:pool:src:allocator> buffer 18 released
0:00:05.571555625 8744 0x3d0a0600 DEBUG GST_MEMORY gstmemory.c:88:_gst_memory_free: free memory 0xffff9c022520
0:00:05.571602875 8744 0x3d0a0600 DEBUG fdmemory gstfdmemory.c:74:gst_fd_mem_free: 0xffff9c022520: freed
0:00:05.571659375 8744 0x3d0a0600 LOG bufferpool gstbufferpool.c:388:do_free_buffer:<my_vdec:pool:src> freeing buffer 0xffff9c01f9b0 (2 left)
0:00:05.571707125 8744 0x3d0a0600 LOG GST_BUFFER gstbuffer.c:725:_gst_buffer_free: finalize 0xffff9c01f9b0
0:00:05.571760750 8744 0x3d0a0600 LOG v4l2allocator gstv4l2allocator.c:356:gst_v4l2_allocator_release:<my_vdec:pool:src:allocator> plane 0 of buffer 19 released
0:00:05.571808000 8744 0x3d0a0600 DEBUG GST_MEMORY gstmemory.c:88:_gst_memory_free: free memory 0xffff9c0226d0
0:00:05.571855625 8744 0x3d0a0600 DEBUG fdmemory gstfdmemory.c:74:gst_fd_mem_free: 0xffff9c0226d0: freed
0:00:05.571911000 8744 0x3d0a0600 LOG v4l2allocator gstv4l2allocator.c:356:gst_v4l2_allocator_release:<my_vdec:pool:src:allocator> plane 1 of buffer 19 released
0:00:05.572010750 8744 0x3d0a0600 LOG v4l2allocator gstv4l2allocator.c:372:gst_v4l2_allocator_release:<my_vdec:pool:src:allocator> buffer 19 released
0:00:05.572058000 8744 0x3d0a0600 DEBUG GST_MEMORY gstmemory.c:88:_gst_memory_free: free memory 0xffff9c0228b0
0:00:05.572106750 8744 0x3d0a0600 DEBUG fdmemory gstfdmemory.c:74:gst_fd_mem_free: 0xffff9c0228b0: freed
0:00:05.572161875 8744 0x3d0a0600 LOG bufferpool gstbufferpool.c:388:do_free_buffer:<my_vdec:pool:src> freeing buffer 0xffff9c01fac0 (1 left)
0:00:05.572209875 8744 0x3d0a0600 LOG GST_BUFFER gstbuffer.c:725:_gst_buffer_free: finalize 0xffff9c01fac0
0:00:05.572263625 8744 0x3d0a0600 LOG v4l2allocator gstv4l2allocator.c:356:gst_v4l2_allocator_release:<my_vdec:pool:src:allocator> plane 0 of buffer 20 released
0:00:05.572310500 8744 0x3d0a0600 DEBUG GST_MEMORY gstmemory.c:88:_gst_memory_free: free memory 0xffff9c022a60
0:00:05.572358000 8744 0x3d0a0600 DEBUG fdmemory gstfdmemory.c:74:gst_fd_mem_free: 0xffff9c022a60: freed
0:00:05.572413625 8744 0x3d0a0600 LOG v4l2allocator gstv4l2allocator.c:356:gst_v4l2_allocator_release:<my_vdec:pool:src:allocator> plane 1 of buffer 20 released
0:00:05.572470000 8744 0x3d0a0600 LOG v4l2allocator gstv4l2allocator.c:372:gst_v4l2_allocator_release:<my_vdec:pool:src:allocator> buffer 20 released
0:00:05.572515125 8744 0x3d0a0600 DEBUG GST_MEMORY gstmemory.c:88:_gst_memory_free: free memory 0xffff9c022b80
0:00:05.572562375 8744 0x3d0a0600 DEBUG fdmemory gstfdmemory.c:74:gst_fd_mem_free: 0xffff9c022b80: freed
0:00:05.572616750 8744 0x3d0a0600 LOG bufferpool gstbufferpool.c:388:do_free_buffer:<my_vdec:pool:src> freeing buffer 0xffff9c01fbd0 (0 left)
0:00:05.572664375 8744 0x3d0a0600 LOG GST_BUFFER gstbuffer.c:725:_gst_buffer_free: finalize 0xffff9c01fbd0
0:00:05.572717500 8744 0x3d0a0600 LOG v4l2allocator gstv4l2allocator.c:356:gst_v4l2_allocator_release:<my_vdec:pool:src:allocator> plane 0 of buffer 21 released
0:00:05.572764625 8744 0x3d0a0600 DEBUG GST_MEMORY gstmemory.c:88:_gst_memory_free: free memory 0xffff9c022d30
0:00:05.572812125 8744 0x3d0a0600 DEBUG fdmemory gstfdmemory.c:74:gst_fd_mem_free: 0xffff9c022d30: freed
0:00:05.572867250 8744 0x3d0a0600 LOG v4l2allocator gstv4l2allocator.c:356:gst_v4l2_allocator_release:<my_vdec:pool:src:allocator> plane 1 of buffer 21 released
0:00:05.572924375 8744 0x3d0a0600 LOG v4l2allocator gstv4l2allocator.c:372:gst_v4l2_allocator_release:<my_vdec:pool:src:allocator> buffer 21 released
0:00:05.572970000 8744 0x3d0a0600 DEBUG GST_MEMORY gstmemory.c:88:_gst_memory_free: free memory 0xffff9c022e50
0:00:05.573019250 8744 0x3d0a0600 DEBUG fdmemory gstfdmemory.c:74:gst_fd_mem_free: 0xffff9c022e50: freed
0:00:05.573115375 8744 0x3d0a0600 DEBUG v4l2allocator gstv4l2allocator.c:744:gst_v4l2_allocator_stop:<my_vdec:pool:src:allocator> stop allocator
0:00:05.573160000 8744 0x3d0a0600 DEBUG GST_MEMORY gstmemory.c:88:_gst_memory_free: free memory 0xffffa4018430
0:00:05.573216625 8744 0x3d0a0600 LOG v4l2allocator gstv4l2allocator.c:392:gst_v4l2_allocator_free:<my_vdec:pool:src:allocator> freeing plane 0 of buffer 0
0:00:05.573267875 8744 0x3d0a0600 DEBUG GST_MEMORY gstmemory.c:88:_gst_memory_free: free memory 0xffffa4018550
0:00:05.573322750 8744 0x3d0a0600 LOG v4l2allocator gstv4l2allocator.c:392:gst_v4l2_allocator_free:<my_vdec:pool:src:allocator> freeing plane 1 of buffer 0
0:00:05.573373375 8744 0x3d0a0600 DEBUG GST_MEMORY gstmemory.c:88:_gst_memory_free: free memory 0xffffa4018700
0:00:05.573428375 8744 0x3d0a0600 LOG v4l2allocator gstv4l2allocator.c:392:gst_v4l2_allocator_free:<my_vdec:pool:src:allocator> freeing plane 0 of buffer 1
0:00:05.573509250 8744 0x3d0a0600 DEBUG GST_MEMORY gstmemory.c:88:_gst_memory_free: free memory 0xffff9c0188b0
0:00:05.573565500 8744 0x3d0a0600 LOG v4l2allocator gstv4l2allocator.c:392:gst_v4l2_allocator_free:<my_vdec:pool:src:allocator> freeing plane 1 of buffer 1
0:00:05.573615875 8744 0x3d0a0600 DEBUG GST_MEMORY gstmemory.c:88:_gst_memory_free: free memory 0xffff9c018a60
0:00:05.573670750 8744 0x3d0a0600 LOG v4l2allocator gstv4l2allocator.c:392:gst_v4l2_allocator_free:<my_vdec:pool:src:allocator> freeing plane 0 of buffer 2
0:00:05.573720250 8744 0x3d0a0600 DEBUG GST_MEMORY gstmemory.c:88:_gst_memory_free: free memory 0xffff9c018b80
0:00:05.573774250 8744 0x3d0a0600 LOG v4l2allocator gstv4l2allocator.c:392:gst_v4l2_allocator_free:<my_vdec:pool:src:allocator> freeing plane 1 of buffer 2
0:00:05.573825000 8744 0x3d0a0600 DEBUG GST_MEMORY gstmemory.c:88:_gst_memory_free: free memory 0xffff9c018d30
0:00:05.573879125 8744 0x3d0a0600 LOG v4l2allocator gstv4l2allocator.c:392:gst_v4l2_allocator_free:<my_vdec:pool:src:allocator> freeing plane 0 of buffer 3
0:00:05.573928500 8744 0x3d0a0600 DEBUG GST_MEMORY gstmemory.c:88:_gst_memory_free: free memory 0xffff9c018e50
0:00:05.573982250 8744 0x3d0a0600 LOG v4l2allocator gstv4l2allocator.c:392:gst_v4l2_allocator_free:<my_vdec:pool:src:allocator> freeing plane 1 of buffer 3
0:00:05.574032250 8744 0x3d0a0600 DEBUG GST_MEMORY gstmemory.c:88:_gst_memory_free: free memory 0xffff9c01e0c0
0:00:05.574087250 8744 0x3d0a0600 LOG v4l2allocator gstv4l2allocator.c:392:gst_v4l2_allocator_free:<my_vdec:pool:src:allocator> freeing plane 0 of buffer 4
0:00:05.574136750 8744 0x3d0a0600 DEBUG GST_MEMORY gstmemory.c:88:_gst_memory_free: free memory 0xffff9c01e1e0
0:00:05.574190750 8744 0x3d0a0600 LOG v4l2allocator gstv4l2allocator.c:392:gst_v4l2_allocator_free:<my_vdec:pool:src:allocator> freeing plane 1 of buffer 4
0:00:05.574240375 8744 0x3d0a0600 DEBUG GST_MEMORY gstmemory.c:88:_gst_memory_free: free memory 0xffff9c01e390
0:00:05.574294750 8744 0x3d0a0600 LOG v4l2allocator gstv4l2allocator.c:392:gst_v4l2_allocator_free:<my_vdec:pool:src:allocator> freeing plane 0 of buffer 5
0:00:05.574345375 8744 0x3d0a0600 DEBUG GST_MEMORY gstmemory.c:88:_gst_memory_free: free memory 0xffff9c01e4b0
0:00:05.574399750 8744 0x3d0a0600 LOG v4l2allocator gstv4l2allocator.c:392:gst_v4l2_allocator_free:<my_vdec:pool:src:allocator> freeing plane 1 of buffer 5
0:00:05.574449875 8744 0x3d0a0600 DEBUG GST_MEMORY gstmemory.c:88:_gst_memory_free: free memory 0xffff9c01e660
0:00:05.574503750 8744 0x3d0a0600 LOG v4l2allocator gstv4l2allocator.c:392:gst_v4l2_allocator_free:<my_vdec:pool:src:allocator> freeing plane 0 of buffer 6
0:00:05.574553000 8744 0x3d0a0600 DEBUG GST_MEMORY gstmemory.c:88:_gst_memory_free: free memory 0xffff9c01e840
0:00:05.574607125 8744 0x3d0a0600 LOG v4l2allocator gstv4l2allocator.c:392:gst_v4l2_allocator_free:<my_vdec:pool:src:allocator> freeing plane 1 of buffer 6
0:00:05.574658500 8744 0x3d0a0600 DEBUG GST_MEMORY gstmemory.c:88:_gst_memory_free: free memory 0xffff9c01e9f0
0:00:05.574713125 8744 0x3d0a0600 LOG v4l2allocator gstv4l2allocator.c:392:gst_v4l2_allocator_free:<my_vdec:pool:src:allocator> freeing plane 0 of buffer 7
0:00:05.574762250 8744 0x3d0a0600 DEBUG GST_MEMORY gstmemory.c:88:_gst_memory_free: free memory 0xffff9c01eb10
0:00:05.574816625 8744 0x3d0a0600 LOG v4l2allocator gstv4l2allocator.c:392:gst_v4l2_allocator_free:<my_vdec:pool:src:allocator> freeing plane 1 of buffer 7
0:00:05.574867125 8744 0x3d0a0600 DEBUG GST_MEMORY gstmemory.c:88:_gst_memory_free: free memory 0xffff9c01ecc0
0:00:05.574951875 8744 0x3d0a0600 LOG v4l2allocator gstv4l2allocator.c:392:gst_v4l2_allocator_free:<my_vdec:pool:src:allocator> freeing plane 0 of buffer 8
0:00:05.575002375 8744 0x3d0a0600 DEBUG GST_MEMORY gstmemory.c:88:_gst_memory_free: free memory 0xffff9c01ede0
0:00:05.575057625 8744 0x3d0a0600 LOG v4l2allocator gstv4l2allocator.c:392:gst_v4l2_allocator_free:<my_vdec:pool:src:allocator> freeing plane 1 of buffer 8
0:00:05.575107375 8744 0x3d0a0600 DEBUG GST_MEMORY gstmemory.c:88:_gst_memory_free: free memory 0xffff9c020060
0:00:05.575162000 8744 0x3d0a0600 LOG v4l2allocator gstv4l2allocator.c:392:gst_v4l2_allocator_free:<my_vdec:pool:src:allocator> freeing plane 0 of buffer 9
0:00:05.575211500 8744 0x3d0a0600 DEBUG GST_MEMORY gstmemory.c:88:_gst_memory_free: free memory 0xffff9c020180
0:00:05.575265375 8744 0x3d0a0600 LOG v4l2allocator gstv4l2allocator.c:392:gst_v4l2_allocator_free:<my_vdec:pool:src:allocator> freeing plane 1 of buffer 9
0:00:05.575314750 8744 0x3d0a0600 DEBUG GST_MEMORY gstmemory.c:88:_gst_memory_free: free memory 0xffff9c020330
0:00:05.575369125 8744 0x3d0a0600 LOG v4l2allocator gstv4l2allocator.c:392:gst_v4l2_allocator_free:<my_vdec:pool:src:allocator> freeing plane 0 of buffer 10
0:00:05.575419750 8744 0x3d0a0600 DEBUG GST_MEMORY gstmemory.c:88:_gst_memory_free: free memory 0xffff9c020450
0:00:05.575473750 8744 0x3d0a0600 LOG v4l2allocator gstv4l2allocator.c:392:gst_v4l2_allocator_free:<my_vdec:pool:src:allocator> freeing plane 1 of buffer 10
0:00:05.575526875 8744 0x3d0a0600 DEBUG GST_MEMORY gstmemory.c:88:_gst_memory_free: free memory 0xffff9c020600
0:00:05.575581750 8744 0x3d0a0600 LOG v4l2allocator gstv4l2allocator.c:392:gst_v4l2_allocator_free:<my_vdec:pool:src:allocator> freeing plane 0 of buffer 11
0:00:05.575652000 8744 0x3d0a0600 DEBUG GST_MEMORY gstmemory.c:88:_gst_memory_free: free memory 0xffff9c020720
0:00:05.575708500 8744 0x3d0a0600 LOG v4l2allocator gstv4l2allocator.c:392:gst_v4l2_allocator_free:<my_vdec:pool:src:allocator> freeing plane 1 of buffer 11
0:00:05.575770125 8744 0x3d0a0600 DEBUG GST_MEMORY gstmemory.c:88:_gst_memory_free: free memory 0xffff9c020990
0:00:05.575825750 8744 0x3d0a0600 LOG v4l2allocator gstv4l2allocator.c:392:gst_v4l2_allocator_free:<my_vdec:pool:src:allocator> freeing plane 0 of buffer 12
0:00:05.575886750 8744 0x3d0a0600 DEBUG GST_MEMORY gstmemory.c:88:_gst_memory_free: free memory 0xffff9c020ab0
0:00:05.575941750 8744 0x3d0a0600 LOG v4l2allocator gstv4l2allocator.c:392:gst_v4l2_allocator_free:<my_vdec:pool:src:allocator> freeing plane 1 of buffer 12
0:00:05.576003000 8744 0x3d0a0600 DEBUG GST_MEMORY gstmemory.c:88:_gst_memory_free: free memory 0xffff9c020c60
0:00:05.576058750 8744 0x3d0a0600 LOG v4l2allocator gstv4l2allocator.c:392:gst_v4l2_allocator_free:<my_vdec:pool:src:allocator> freeing plane 0 of buffer 13
0:00:05.576119875 8744 0x3d0a0600 DEBUG GST_MEMORY gstmemory.c:88:_gst_memory_free: free memory 0xffff9c020d80
0:00:05.576175500 8744 0x3d0a0600 LOG v4l2allocator gstv4l2allocator.c:392:gst_v4l2_allocator_free:<my_vdec:pool:src:allocator> freeing plane 1 of buffer 13
0:00:05.576237375 8744 0x3d0a0600 DEBUG GST_MEMORY gstmemory.c:88:_gst_memory_free: free memory 0xffff9c020f30
0:00:05.576292875 8744 0x3d0a0600 LOG v4l2allocator gstv4l2allocator.c:392:gst_v4l2_allocator_free:<my_vdec:pool:src:allocator> freeing plane 0 of buffer 14
0:00:05.576355625 8744 0x3d0a0600 DEBUG GST_MEMORY gstmemory.c:88:_gst_memory_free: free memory 0xffff9c021090
0:00:05.576411375 8744 0x3d0a0600 LOG v4l2allocator gstv4l2allocator.c:392:gst_v4l2_allocator_free:<my_vdec:pool:src:allocator> freeing plane 1 of buffer 14
0:00:05.576505750 8744 0x3d0a0600 DEBUG GST_MEMORY gstmemory.c:88:_gst_memory_free: free memory 0xffff9c021240
0:00:05.576563875 8744 0x3d0a0600 LOG v4l2allocator gstv4l2allocator.c:392:gst_v4l2_allocator_free:<my_vdec:pool:src:allocator> freeing plane 0 of buffer 15
0:00:05.576626000 8744 0x3d0a0600 DEBUG GST_MEMORY gstmemory.c:88:_gst_memory_free: free memory 0xffff9c021360
0:00:05.576681625 8744 0x3d0a0600 LOG v4l2allocator gstv4l2allocator.c:392:gst_v4l2_allocator_free:<my_vdec:pool:src:allocator> freeing plane 1 of buffer 15
0:00:05.576743125 8744 0x3d0a0600 DEBUG GST_MEMORY gstmemory.c:88:_gst_memory_free: free memory 0xffff9c021510
0:00:05.576798875 8744 0x3d0a0600 LOG v4l2allocator gstv4l2allocator.c:392:gst_v4l2_allocator_free:<my_vdec:pool:src:allocator> freeing plane 0 of buffer 16
0:00:05.576862000 8744 0x3d0a0600 DEBUG GST_MEMORY gstmemory.c:88:_gst_memory_free: free memory 0xffff9c021630
0:00:05.576918000 8744 0x3d0a0600 LOG v4l2allocator gstv4l2allocator.c:392:gst_v4l2_allocator_free:<my_vdec:pool:src:allocator> freeing plane 1 of buffer 16
0:00:05.576980000 8744 0x3d0a0600 DEBUG GST_MEMORY gstmemory.c:88:_gst_memory_free: free memory 0xffff9c0220a0
0:00:05.577035500 8744 0x3d0a0600 LOG v4l2allocator gstv4l2allocator.c:392:gst_v4l2_allocator_free:<my_vdec:pool:src:allocator> freeing plane 0 of buffer 17
0:00:05.577137000 8744 0x3d0a0600 DEBUG GST_MEMORY gstmemory.c:88:_gst_memory_free: free memory 0xffff9c0221c0
0:00:05.577194125 8744 0x3d0a0600 LOG v4l2allocator gstv4l2allocator.c:392:gst_v4l2_allocator_free:<my_vdec:pool:src:allocator> freeing plane 1 of buffer 17
0:00:05.577256000 8744 0x3d0a0600 DEBUG GST_MEMORY gstmemory.c:88:_gst_memory_free: free memory 0xffff9c022370
0:00:05.577311625 8744 0x3d0a0600 LOG v4l2allocator gstv4l2allocator.c:392:gst_v4l2_allocator_free:<my_vdec:pool:src:allocator> freeing plane 0 of buffer 18
0:00:05.577372500 8744 0x3d0a0600 DEBUG GST_MEMORY gstmemory.c:88:_gst_memory_free: free memory 0xffff9c022490
0:00:05.577428000 8744 0x3d0a0600 LOG v4l2allocator gstv4l2allocator.c:392:gst_v4l2_allocator_free:<my_vdec:pool:src:allocator> freeing plane 1 of buffer 18
0:00:05.577492500 8744 0x3d0a0600 DEBUG GST_MEMORY gstmemory.c:88:_gst_memory_free: free memory 0xffff9c022640
0:00:05.577548500 8744 0x3d0a0600 LOG v4l2allocator gstv4l2allocator.c:392:gst_v4l2_allocator_free:<my_vdec:pool:src:allocator> freeing plane 0 of buffer 19
0:00:05.577610000 8744 0x3d0a0600 DEBUG GST_MEMORY gstmemory.c:88:_gst_memory_free: free memory 0xffff9c022820
0:00:05.577665500 8744 0x3d0a0600 LOG v4l2allocator gstv4l2allocator.c:392:gst_v4l2_allocator_free:<my_vdec:pool:src:allocator> freeing plane 1 of buffer 19
0:00:05.577726625 8744 0x3d0a0600 DEBUG GST_MEMORY gstmemory.c:88:_gst_memory_free: free memory 0xffff9c0229d0
0:00:05.577782500 8744 0x3d0a0600 LOG v4l2allocator gstv4l2allocator.c:392:gst_v4l2_allocator_free:<my_vdec:pool:src:allocator> freeing plane 0 of buffer 20
0:00:05.577843875 8744 0x3d0a0600 DEBUG GST_MEMORY gstmemory.c:88:_gst_memory_free: free memory 0xffff9c022af0
0:00:05.577899375 8744 0x3d0a0600 LOG v4l2allocator gstv4l2allocator.c:392:gst_v4l2_allocator_free:<my_vdec:pool:src:allocator> freeing plane 1 of buffer 20
0:00:05.577960500 8744 0x3d0a0600 DEBUG GST_MEMORY gstmemory.c:88:_gst_memory_free: free memory 0xffff9c022ca0
0:00:05.578016125 8744 0x3d0a0600 LOG v4l2allocator gstv4l2allocator.c:392:gst_v4l2_allocator_free:<my_vdec:pool:src:allocator> freeing plane 0 of buffer 21
0:00:05.578077250 8744 0x3d0a0600 DEBUG GST_MEMORY gstmemory.c:88:_gst_memory_free: free memory 0xffff9c022dc0
0:00:05.578132500 8744 0x3d0a0600 LOG v4l2allocator gstv4l2allocator.c:392:gst_v4l2_allocator_free:<my_vdec:pool:src:allocator> freeing plane 1 of buffer 21
0:00:05.578360500 8744 0x3d0a0600 WARN v4l2allocator gstv4l2allocator.c:771:gst_v4l2_allocator_stop:<my_vdec:pool:src:allocator> error releasing buffers buffers: Device or resource busy
0:00:05.578422250 8744 0x3d0a0600 LOG v4l2allocator gstv4l2allocator.c:413:gst_v4l2_allocator_dispose:<my_vdec:pool:src:allocator> called
0:00:05.578493500 8744 0x3d0a0600 LOG v4l2allocator gstv4l2allocator.c:430:gst_v4l2_allocator_finalize:<my_vdec:pool:src:allocator> called
0:00:05.578556000 8744 0x3d0a0600 DEBUG GST_POLL gstpoll.c:772:gst_poll_free: 0xffff9c007400: freeing
0:00:05.578677500 8744 0x3d0a0600 DEBUG bufferpool gstbufferpool.c:197:gst_buffer_pool_finalize:<my_vdec:pool:src> 0xffffa4012e90 finalize
0:00:05.578734375 8744 0x3d0a0600 LOG bufferpool gstbufferpool.c:506:gst_buffer_pool_set_active:<my_vdec:pool:src> active 0
0:00:05.578786000 8744 0x3d0a0600 DEBUG bufferpool gstbufferpool.c:552:gst_buffer_pool_set_active:<my_vdec:pool:src> pool was in the right state
0:00:05.578826750 8744 0x3d0a0600 DEBUG GST_POLL gstpoll.c:772:gst_poll_free: 0xffffa4006770: freeing
0:00:05.578998375 8744 0x3d0a0600 DEBUG GST_POLL gstpoll.c:772:gst_poll_free: 0x3d21fe80: freeing
0:00:05.579204875 8744 0x3d0a0600 LOG videopool gstvideopool.c:328:gst_video_buffer_pool_finalize:<waylandpool0> finalize video buffer pool 0xffffa402cb20
0:00:05.579266500 8744 0x3d0a0600 DEBUG bufferpool gstbufferpool.c:197:gst_buffer_pool_finalize:<waylandpool0> 0xffffa402cb20 finalize
0:00:05.579320375 8744 0x3d0a0600 LOG bufferpool gstbufferpool.c:506:gst_buffer_pool_set_active:<waylandpool0> active 0
0:00:05.579371250 8744 0x3d0a0600 DEBUG bufferpool gstbufferpool.c:552:gst_buffer_pool_set_active:<waylandpool0> pool was in the right state
0:00:05.579412875 8744 0x3d0a0600 DEBUG GST_POLL gstpoll.c:772:gst_poll_free: 0xffff9c007540: freeing
Total showed frames (12), playing for (0:00:04.745387500), fps (2.529).
0:00:05.579739375 8744 0x3d0a0600 DEBUG GST_STATES gstelement.c:2988:gst_element_change_state:<my_sink> element changed state SUCCESS
0:00:05.579791125 8744 0x3d0a0600 INFO GST_STATES gstelement.c:2676:gst_element_continue_state:<my_sink> completed state change to NULL
0:00:05.579846500 8744 0x3d0a0600 INFO GST_STATES gstelement.c:2579:_priv_gst_element_state_changed:<my_sink> notifying about state-changed READY to NULL (VOID_PENDING pending)
0:00:05.579910375 8744 0x3d0a0600 LOG GST_MESSAGE gstmessage.c:301:gst_message_new_custom: source my_sink: creating new message 0x3d216c40 state-changed
0:00:05.579977125 8744 0x3d0a0600 DEBUG GST_BUS gstbus.c:318:gst_bus_post:<bus0> [msg 0x3d216c40] posting on bus state-changed message: 0x3d216c40, time 99:99:99.999999999, seq-num 91, element 'my_sink', GstMessageStateChanged, old-state=(GstState)GST_STATE_READY, new-state=(GstState)GST_STATE_NULL, pending-state=(GstState)GST_STATE_VOID_PENDING;
0:00:05.580134875 8744 0x3d0a0600 DEBUG bin gstbin.c:3715:gst_bin_handle_message_func:<my_pipeline> [msg 0x3d216c40] handling child my_sink message of type state-changed
0:00:05.580198375 8744 0x3d0a0600 DEBUG bin gstbin.c:4052:gst_bin_handle_message_func:<my_pipeline> posting message upward
0:00:05.580248625 8744 0x3d0a0600 DEBUG GST_BUS gstbus.c:318:gst_bus_post:<bus1> [msg 0x3d216c40] posting on bus state-changed message: 0x3d216c40, time 99:99:99.999999999, seq-num 91, element 'my_sink', GstMessageStateChanged, old-state=(GstState)GST_STATE_READY, new-state=(GstState)GST_STATE_NULL, pending-state=(GstState)GST_STATE_VOID_PENDING;
0:00:05.580383625 8744 0x3d0a0600 DEBUG GST_BUS gstbus.c:357:gst_bus_post:<bus1> [msg 0x3d216c40] pushing on async queue
0:00:05.580464125 8744 0x3d0a0600 LOG GST_POLL gstpoll.c:290:raise_wakeup: 0x3d154a30: raise
0:00:05.580551875 8744 0x3d0a0600 DEBUG GST_BUS gstbus.c:360:gst_bus_post:<bus1> [msg 0x3d216c40] pushed on async queue
0:00:05.580607500 8744 0x3d0a0600 DEBUG GST_BUS gstbus.c:353:gst_bus_post:<bus0> [msg 0x3d216c40] dropped
0:00:05.580661250 8744 0x3d0a0600 LOG GST_STATES gstelement.c:3004:gst_element_change_state:<my_sink> exit state change 1
0:00:05.580713375 8744 0x3d0a0600 DEBUG GST_STATES gstelement.c:2911:gst_element_set_state_func:<my_sink> returned SUCCESS
0:00:05.580764500 8744 0x3d0a0600 INFO GST_STATES gstbin.c:2952:gst_bin_change_state_func:<my_pipeline> child 'my_sink' changed state to 1(NULL) successfully
0:00:05.580838125 8744 0x3d0a0600 DEBUG bin gstbin.c:2370:gst_bin_sort_iterator_next:<my_pipeline> queue head gives my_vdec
0:00:05.580893000 8744 0x3d0a0600 DEBUG bin gstbin.c:885:find_message:<my_pipeline> no message found matching types 00001000
0:00:05.580946750 8744 0x3d0a0600 DEBUG bin gstbin.c:892:find_message:<my_pipeline> structure-change
0:00:05.581003625 8744 0x3d0a0600 DEBUG bin gstbin.c:2280:update_degree:<my_pipeline> change element my_h264parse, degree 1->0, linked to my_vdec
0:00:05.581100375 8744 0x3d0a0600 DEBUG bin gstbin.c:2163:add_to_queue:<my_pipeline> adding 'my_h264parse' to queue
0:00:05.581158875 8744 0xffffa4002580 LOG GST_BUS gstbus.c:522:gst_bus_timed_pop_filtered:<bus1> have 1 messages
0:00:05.581172500 8744 0x3d0a0600 INFO GST_STATES gstbin.c:2504:gst_bin_element_set_state:<my_vdec> current READY pending VOID_PENDING, desired next NULL
0:00:05.581229750 8744 0xffffa4002580 LOG GST_POLL gstpoll.c:314:release_wakeup: 0x3d154a30: release
0:00:05.581301875 8744 0x3d0a0600 DEBUG bin gstbin.c:885:find_message:<my_pipeline> no message found matching types 00100000
0:00:05.581371500 8744 0x3d0a0600 DEBUG bin gstbin.c:892:find_message:<my_pipeline> async-start
0:00:05.581391375 8744 0xffffa4002580 DEBUG GST_BUS gstbus.c:546:gst_bus_timed_pop_filtered:<bus1> got message 0x3d216c40, state-changed from my_sink, type mask is 4294967295
0:00:05.581425000 8744 0x3d0a0600 DEBUG bin gstbin.c:2599:gst_bin_element_set_state:<my_pipeline> setting element my_vdec to NULL, base_time 0:15:45.099030375
0:00:05.581498000 8744 0x3d0a0600 DEBUG GST_STATES gstelement.c:2827:gst_element_set_state_func:<my_vdec> set_state to NULL
0:00:05.581550250 8744 0x3d0a0600 DEBUG GST_STATES gstelement.c:2852:gst_element_set_state_func:<my_vdec> setting target state to NULL
0:00:05.581468875 8744 0xffffa4002580 DEBUG GST_BUS gstbus.c:839:gst_bus_source_dispatch:<bus1> source 0x3d21dc00 calling dispatch with state-changed message: 0x3d216c40, time 99:99:99.999999999, seq-num 91, element 'my_sink', GstMessageStateChanged, old-state=(GstState)GST_STATE_READY, new-state=(GstState)GST_STATE_NULL, pending-state=(GstState)GST_STATE_VOID_PENDING;
0:00:05.581617375 8744 0x3d0a0600 DEBUG GST_STATES gstelement.c:2865:gst_element_set_state_func:<my_vdec> current READY, old_pending VOID_PENDING, next VOID_PENDING, old return SUCCESS
(bus_call, 87)my_sink state change, old state: READY, new state: NULL
0:00:05.581695625 8744 0x3d0a0600 DEBUG GST_STATES gstelement.c:2899:gst_element_set_state_func:<my_vdec> final: setting state from READY to NULL
0:00:05.581727500 8744 0xffffa4002580 LOG GST_MESSAGE gstmessage.c:208:_gst_message_free: finalize message 0x3d216c40, state-changed from my_sink
0:00:05.581761125 8744 0x3d0a0600 LOG GST_STATES gstelement.c:3154:gst_element_change_state_func:<my_vdec> default handler tries setting state from READY to NULL (0011)
0:00:05.581807000 8744 0xffffa4002580 DEBUG GST_BUS gstbus.c:844:gst_bus_source_dispatch:<bus1> source 0x3d21dc00 handler returns 1
0:00:05.581868250 8744 0x3d0a0600 DEBUG GST_ELEMENT_PADS gstelement.c:3097:gst_element_pads_activate:<my_vdec> deactivate pads
0:00:05.581939250 8744 0x3d0a0600 DEBUG GST_PADS gstpad.c:1116:gst_pad_set_active:<my_vdec:src> pad was inactive
0:00:05.582003125 8744 0x3d0a0600 DEBUG GST_PADS gstpad.c:1116:gst_pad_set_active:<my_vdec:sink> pad was inactive
0:00:05.582074875 8744 0x3d0a0600 DEBUG GST_ELEMENT_PADS gstelement.c:3116:gst_element_pads_activate:<my_vdec> pad deactivation successful
0:00:05.582136375 8744 0x3d0a0600 DEBUG v4l2videodec gstv4l2videodec.c:174:gst_v4l2_video_dec_close:<my_vdec> Closing
0:00:05.582187875 8744 0x3d0a0600 DEBUG v4l2 v4l2_calls.c:760:gst_v4l2_close:<my_vdec:sink> Trying to close /dev/video12
0:00:05.582247750 8744 0x3d0a0600 DEBUG v4l2 v4l2_calls.c:464:gst_v4l2_empty_lists:<my_vdec:sink> deleting enumerations
0:00:05.582321000 8744 0x3d0a0600 DEBUG v4l2 v4l2_calls.c:760:gst_v4l2_close:<my_vdec:src> Trying to close /dev/video12
0:00:05.588839125 8744 0x3d0a0600 DEBUG v4l2 v4l2_calls.c:464:gst_v4l2_empty_lists:<my_vdec:src> deleting enumerations
0:00:05.588989125 8744 0x3d0a0600 DEBUG GST_STATES gstelement.c:2988:gst_element_change_state:<my_vdec> element changed state SUCCESS
0:00:05.589029375 8744 0x3d0a0600 INFO GST_STATES gstelement.c:2676:gst_element_continue_state:<my_vdec> completed state change to NULL
0:00:05.589668875 8744 0x3d0a0600 INFO GST_STATES gstelement.c:2579:_priv_gst_element_state_changed:<my_vdec> notifying about state-changed READY to NULL (VOID_PENDING pending)
0:00:05.589728000 8744 0x3d0a0600 LOG GST_MESSAGE gstmessage.c:301:gst_message_new_custom: source my_vdec: creating new message 0x3d216bc0 state-changed
0:00:05.589780875 8744 0x3d0a0600 DEBUG GST_BUS gstbus.c:318:gst_bus_post:<bus0> [msg 0x3d216bc0] posting on bus state-changed message: 0x3d216bc0, time 99:99:99.999999999, seq-num 92, element 'my_vdec', GstMessageStateChanged, old-state=(GstState)GST_STATE_READY, new-state=(GstState)GST_STATE_NULL, pending-state=(GstState)GST_STATE_VOID_PENDING;
0:00:05.589938250 8744 0x3d0a0600 DEBUG bin gstbin.c:3715:gst_bin_handle_message_func:<my_pipeline> [msg 0x3d216bc0] handling child my_vdec message of type state-changed
0:00:05.589981125 8744 0x3d0a0600 DEBUG bin gstbin.c:4052:gst_bin_handle_message_func:<my_pipeline> posting message upward
0:00:05.590016125 8744 0x3d0a0600 DEBUG GST_BUS gstbus.c:318:gst_bus_post:<bus1> [msg 0x3d216bc0] posting on bus state-changed message: 0x3d216bc0, time 99:99:99.999999999, seq-num 92, element 'my_vdec', GstMessageStateChanged, old-state=(GstState)GST_STATE_READY, new-state=(GstState)GST_STATE_NULL, pending-state=(GstState)GST_STATE_VOID_PENDING;
0:00:05.590109250 8744 0x3d0a0600 DEBUG GST_BUS gstbus.c:357:gst_bus_post:<bus1> [msg 0x3d216bc0] pushing on async queue
0:00:05.590145000 8744 0x3d0a0600 LOG GST_POLL gstpoll.c:290:raise_wakeup: 0x3d154a30: raise
0:00:05.590204750 8744 0x3d0a0600 DEBUG GST_BUS gstbus.c:360:gst_bus_post:<bus1> [msg 0x3d216bc0] pushed on async queue
0:00:05.590244375 8744 0x3d0a0600 DEBUG GST_BUS gstbus.c:353:gst_bus_post:<bus0> [msg 0x3d216bc0] dropped
0:00:05.590247250 8744 0xffffa4002580 LOG GST_BUS gstbus.c:522:gst_bus_timed_pop_filtered:<bus1> have 1 messages
0:00:05.590301125 8744 0x3d0a0600 LOG GST_STATES gstelement.c:3004:gst_element_change_state:<my_vdec> exit state change 1
0:00:05.590346625 8744 0x3d0a0600 DEBUG GST_STATES gstelement.c:2911:gst_element_set_state_func:<my_vdec> returned SUCCESS
0:00:05.590348125 8744 0xffffa4002580 LOG GST_POLL gstpoll.c:314:release_wakeup: 0x3d154a30: release
0:00:05.590438500 8744 0x3d0a0600 INFO GST_STATES gstbin.c:2952:gst_bin_change_state_func:<my_pipeline> child 'my_vdec' changed state to 1(NULL) successfully
0:00:05.590471625 8744 0xffffa4002580 DEBUG GST_BUS gstbus.c:546:gst_bus_timed_pop_filtered:<bus1> got message 0x3d216bc0, state-changed from my_vdec, type mask is 4294967295
0:00:05.590500500 8744 0x3d0a0600 DEBUG bin gstbin.c:2370:gst_bin_sort_iterator_next:<my_pipeline> queue head gives my_h264parse
0:00:05.590549750 8744 0x3d0a0600 DEBUG bin gstbin.c:885:find_message:<my_pipeline> no message found matching types 00001000
0:00:05.590592875 8744 0x3d0a0600 DEBUG bin gstbin.c:892:find_message:<my_pipeline> structure-change
0:00:05.590554125 8744 0xffffa4002580 DEBUG GST_BUS gstbus.c:839:gst_bus_source_dispatch:<bus1> source 0x3d21dc00 calling dispatch with state-changed message: 0x3d216bc0, time 99:99:99.999999999, seq-num 92, element 'my_vdec', GstMessageStateChanged, old-state=(GstState)GST_STATE_READY, new-state=(GstState)GST_STATE_NULL, pending-state=(GstState)GST_STATE_VOID_PENDING;
(bus_call, 87)my_vdec state change, old state: READY, new state: NULL
0:00:05.590635125 8744 0x3d0a0600 DEBUG bin gstbin.c:2280:update_degree:<my_pipeline> change element my_appsrc, degree 1->0, linked to my_h264parse
0:00:05.590684125 8744 0xffffa4002580 LOG GST_MESSAGE gstmessage.c:208:_gst_message_free: finalize message 0x3d216bc0, state-changed from my_vdec
0:00:05.590711375 8744 0x3d0a0600 DEBUG bin gstbin.c:2163:add_to_queue:<my_pipeline> adding 'my_appsrc' to queue
0:00:05.590734250 8744 0xffffa4002580 DEBUG GST_BUS gstbus.c:844:gst_bus_source_dispatch:<bus1> source 0x3d21dc00 handler returns 1
0:00:05.590757500 8744 0x3d0a0600 INFO GST_STATES gstbin.c:2504:gst_bin_element_set_state:<my_h264parse> current READY pending VOID_PENDING, desired next NULL
0:00:05.590801250 8744 0x3d0a0600 DEBUG bin gstbin.c:885:find_message:<my_pipeline> no message found matching types 00100000
0:00:05.590836625 8744 0x3d0a0600 DEBUG bin gstbin.c:892:find_message:<my_pipeline> async-start
0:00:05.590872875 8744 0x3d0a0600 DEBUG bin gstbin.c:2599:gst_bin_element_set_state:<my_pipeline> setting element my_h264parse to NULL, base_time 0:15:45.099030375
0:00:05.590922250 8744 0x3d0a0600 DEBUG GST_STATES gstelement.c:2827:gst_element_set_state_func:<my_h264parse> set_state to NULL
0:00:05.590957000 8744 0x3d0a0600 DEBUG GST_STATES gstelement.c:2852:gst_element_set_state_func:<my_h264parse> setting target state to NULL
0:00:05.590991750 8744 0x3d0a0600 DEBUG GST_STATES gstelement.c:2865:gst_element_set_state_func:<my_h264parse> current READY, old_pending VOID_PENDING, next VOID_PENDING, old return SUCCESS
0:00:05.591033375 8744 0x3d0a0600 DEBUG GST_STATES gstelement.c:2899:gst_element_set_state_func:<my_h264parse> final: setting state from READY to NULL
0:00:05.591075000 8744 0x3d0a0600 LOG GST_STATES gstelement.c:3154:gst_element_change_state_func:<my_h264parse> default handler tries setting state from READY to NULL (0011)
0:00:05.591116625 8744 0x3d0a0600 DEBUG GST_ELEMENT_PADS gstelement.c:3097:gst_element_pads_activate:<my_h264parse> deactivate pads
0:00:05.591167750 8744 0x3d0a0600 DEBUG GST_PADS gstpad.c:1116:gst_pad_set_active:<my_h264parse:src> pad was inactive
0:00:05.591212125 8744 0x3d0a0600 DEBUG GST_PADS gstpad.c:1116:gst_pad_set_active:<my_h264parse:sink> pad was inactive
0:00:05.591248875 8744 0x3d0a0600 DEBUG GST_ELEMENT_PADS gstelement.c:3116:gst_element_pads_activate:<my_h264parse> pad deactivation successful
0:00:05.591311125 8744 0x3d0a0600 DEBUG GST_STATES gstelement.c:2988:gst_element_change_state:<my_h264parse> element changed state SUCCESS
0:00:05.591343625 8744 0x3d0a0600 INFO GST_STATES gstelement.c:2676:gst_element_continue_state:<my_h264parse> completed state change to NULL
0:00:05.591378625 8744 0x3d0a0600 INFO GST_STATES gstelement.c:2579:_priv_gst_element_state_changed:<my_h264parse> notifying about state-changed READY to NULL (VOID_PENDING pending)
0:00:05.591420500 8744 0x3d0a0600 LOG GST_MESSAGE gstmessage.c:301:gst_message_new_custom: source my_h264parse: creating new message 0x3d216b40 state-changed
0:00:05.591463500 8744 0x3d0a0600 DEBUG GST_BUS gstbus.c:318:gst_bus_post:<bus0> [msg 0x3d216b40] posting on bus state-changed message: 0x3d216b40, time 99:99:99.999999999, seq-num 93, element 'my_h264parse', GstMessageStateChanged, old-state=(GstState)GST_STATE_READY, new-state=(GstState)GST_STATE_NULL, pending-state=(GstState)GST_STATE_VOID_PENDING;
0:00:05.591558875 8744 0x3d0a0600 DEBUG bin gstbin.c:3715:gst_bin_handle_message_func:<my_pipeline> [msg 0x3d216b40] handling child my_h264parse message of type state-changed
0:00:05.591602125 8744 0x3d0a0600 DEBUG bin gstbin.c:4052:gst_bin_handle_message_func:<my_pipeline> posting message upward
0:00:05.591635500 8744 0x3d0a0600 DEBUG GST_BUS gstbus.c:318:gst_bus_post:<bus1> [msg 0x3d216b40] posting on bus state-changed message: 0x3d216b40, time 99:99:99.999999999, seq-num 93, element 'my_h264parse', GstMessageStateChanged, old-state=(GstState)GST_STATE_READY, new-state=(GstState)GST_STATE_NULL, pending-state=(GstState)GST_STATE_VOID_PENDING;
0:00:05.591726625 8744 0x3d0a0600 DEBUG GST_BUS gstbus.c:357:gst_bus_post:<bus1> [msg 0x3d216b40] pushing on async queue
0:00:05.591757625 8744 0x3d0a0600 LOG GST_POLL gstpoll.c:290:raise_wakeup: 0x3d154a30: raise
0:00:05.591809250 8744 0x3d0a0600 DEBUG GST_BUS gstbus.c:360:gst_bus_post:<bus1> [msg 0x3d216b40] pushed on async queue
0:00:05.591823875 8744 0xffffa4002580 LOG GST_BUS gstbus.c:522:gst_bus_timed_pop_filtered:<bus1> have 1 messages
0:00:05.591846375 8744 0x3d0a0600 DEBUG GST_BUS gstbus.c:353:gst_bus_post:<bus0> [msg 0x3d216b40] dropped
0:00:05.591856750 8744 0xffffa4002580 LOG GST_POLL gstpoll.c:314:release_wakeup: 0x3d154a30: release
0:00:05.591894125 8744 0x3d0a0600 LOG GST_STATES gstelement.c:3004:gst_element_change_state:<my_h264parse> exit state change 1
0:00:05.591931625 8744 0x3d0a0600 DEBUG GST_STATES gstelement.c:2911:gst_element_set_state_func:<my_h264parse> returned SUCCESS
0:00:05.591923500 8744 0xffffa4002580 DEBUG GST_BUS gstbus.c:546:gst_bus_timed_pop_filtered:<bus1> got message 0x3d216b40, state-changed from my_h264parse, type mask is 4294967295
0:00:05.591974000 8744 0x3d0a0600 INFO GST_STATES gstbin.c:2952:gst_bin_change_state_func:<my_pipeline> child 'my_h264parse' changed state to 1(NULL) successfully
0:00:05.592021875 8744 0x3d0a0600 DEBUG bin gstbin.c:2370:gst_bin_sort_iterator_next:<my_pipeline> queue head gives my_appsrc
0:00:05.591998000 8744 0xffffa4002580 DEBUG GST_BUS gstbus.c:839:gst_bus_source_dispatch:<bus1> source 0x3d21dc00 calling dispatch with state-changed message: 0x3d216b40, time 99:99:99.999999999, seq-num 93, element 'my_h264parse', GstMessageStateChanged, old-state=(GstState)GST_STATE_READY, new-state=(GstState)GST_STATE_NULL, pending-state=(GstState)GST_STATE_VOID_PENDING;
(bus_call, 87)my_h264parse state change, old state: READY, new state: NULL
0:00:05.592057000 8744 0x3d0a0600 DEBUG bin gstbin.c:2303:update_degree:<my_pipeline> element my_appsrc not linked on any sinkpads
0:00:05.592118750 8744 0xffffa4002580 LOG GST_MESSAGE gstmessage.c:208:_gst_message_free: finalize message 0x3d216b40, state-changed from my_h264parse
0:00:05.592148000 8744 0x3d0a0600 INFO GST_STATES gstbin.c:2504:gst_bin_element_set_state:<my_appsrc> current READY pending VOID_PENDING, desired next NULL
0:00:05.592199000 8744 0xffffa4002580 DEBUG GST_BUS gstbus.c:844:gst_bus_source_dispatch:<bus1> source 0x3d21dc00 handler returns 1
0:00:05.592216250 8744 0x3d0a0600 DEBUG bin gstbin.c:885:find_message:<my_pipeline> no message found matching types 00100000
0:00:05.592253125 8744 0x3d0a0600 DEBUG bin gstbin.c:892:find_message:<my_pipeline> async-start
0:00:05.592287375 8744 0x3d0a0600 DEBUG bin gstbin.c:2599:gst_bin_element_set_state:<my_pipeline> setting element my_appsrc to NULL, base_time 0:15:45.099030375
0:00:05.592333875 8744 0x3d0a0600 DEBUG GST_STATES gstelement.c:2827:gst_element_set_state_func:<my_appsrc> set_state to NULL
0:00:05.592368000 8744 0x3d0a0600 DEBUG GST_STATES gstelement.c:2852:gst_element_set_state_func:<my_appsrc> setting target state to NULL
0:00:05.592401750 8744 0x3d0a0600 DEBUG GST_STATES gstelement.c:2865:gst_element_set_state_func:<my_appsrc> current READY, old_pending VOID_PENDING, next VOID_PENDING, old return SUCCESS
0:00:05.592442875 8744 0x3d0a0600 DEBUG GST_STATES gstelement.c:2899:gst_element_set_state_func:<my_appsrc> final: setting state from READY to NULL
0:00:05.592482000 8744 0x3d0a0600 LOG GST_STATES gstelement.c:3154:gst_element_change_state_func:<my_appsrc> default handler tries setting state from READY to NULL (0011)
0:00:05.592522125 8744 0x3d0a0600 DEBUG GST_ELEMENT_PADS gstelement.c:3097:gst_element_pads_activate:<my_appsrc> deactivate pads
0:00:05.592565000 8744 0x3d0a0600 DEBUG GST_PADS gstpad.c:1116:gst_pad_set_active:<my_appsrc:src> pad was inactive
0:00:05.592603000 8744 0x3d0a0600 DEBUG GST_ELEMENT_PADS gstelement.c:3116:gst_element_pads_activate:<my_appsrc> pad deactivation successful
0:00:05.592639250 8744 0x3d0a0600 DEBUG GST_STATES gstelement.c:2988:gst_element_change_state:<my_appsrc> element changed state SUCCESS
0:00:05.592669625 8744 0x3d0a0600 INFO GST_STATES gstelement.c:2676:gst_element_continue_state:<my_appsrc> completed state change to NULL
0:00:05.592703625 8744 0x3d0a0600 INFO GST_STATES gstelement.c:2579:_priv_gst_element_state_changed:<my_appsrc> notifying about state-changed READY to NULL (VOID_PENDING pending)
0:00:05.592744250 8744 0x3d0a0600 LOG GST_MESSAGE gstmessage.c:301:gst_message_new_custom: source my_appsrc: creating new message 0x3d216a40 state-changed
0:00:05.592786875 8744 0x3d0a0600 DEBUG GST_BUS gstbus.c:318:gst_bus_post:<bus0> [msg 0x3d216a40] posting on bus state-changed message: 0x3d216a40, time 99:99:99.999999999, seq-num 94, element 'my_appsrc', GstMessageStateChanged, old-state=(GstState)GST_STATE_READY, new-state=(GstState)GST_STATE_NULL, pending-state=(GstState)GST_STATE_VOID_PENDING;
0:00:05.592883500 8744 0x3d0a0600 DEBUG bin gstbin.c:3715:gst_bin_handle_message_func:<my_pipeline> [msg 0x3d216a40] handling child my_appsrc message of type state-changed
0:00:05.592924375 8744 0x3d0a0600 DEBUG bin gstbin.c:4052:gst_bin_handle_message_func:<my_pipeline> posting message upward
0:00:05.592957875 8744 0x3d0a0600 DEBUG GST_BUS gstbus.c:318:gst_bus_post:<bus1> [msg 0x3d216a40] posting on bus state-changed message: 0x3d216a40, time 99:99:99.999999999, seq-num 94, element 'my_appsrc', GstMessageStateChanged, old-state=(GstState)GST_STATE_READY, new-state=(GstState)GST_STATE_NULL, pending-state=(GstState)GST_STATE_VOID_PENDING;
0:00:05.593094500 8744 0x3d0a0600 DEBUG GST_BUS gstbus.c:357:gst_bus_post:<bus1> [msg 0x3d216a40] pushing on async queue
0:00:05.593156875 8744 0x3d0a0600 LOG GST_POLL gstpoll.c:290:raise_wakeup: 0x3d154a30: raise
0:00:05.593212125 8744 0x3d0a0600 DEBUG GST_BUS gstbus.c:360:gst_bus_post:<bus1> [msg 0x3d216a40] pushed on async queue
0:00:05.593237500 8744 0xffffa4002580 LOG GST_BUS gstbus.c:522:gst_bus_timed_pop_filtered:<bus1> have 1 messages
0:00:05.593252125 8744 0x3d0a0600 DEBUG GST_BUS gstbus.c:353:gst_bus_post:<bus0> [msg 0x3d216a40] dropped
0:00:05.593286875 8744 0xffffa4002580 LOG GST_POLL gstpoll.c:314:release_wakeup: 0x3d154a30: release
0:00:05.593338500 8744 0x3d0a0600 LOG GST_STATES gstelement.c:3004:gst_element_change_state:<my_appsrc> exit state change 1
0:00:05.593343250 8744 0xffffa4002580 DEBUG GST_BUS gstbus.c:546:gst_bus_timed_pop_filtered:<bus1> got message 0x3d216a40, state-changed from my_appsrc, type mask is 4294967295
0:00:05.593375500 8744 0x3d0a0600 DEBUG GST_STATES gstelement.c:2911:gst_element_set_state_func:<my_appsrc> returned SUCCESS
0:00:05.593410875 8744 0x3d0a0600 INFO GST_STATES gstbin.c:2952:gst_bin_change_state_func:<my_pipeline> child 'my_appsrc' changed state to 1(NULL) successfully
0:00:05.593393625 8744 0xffffa4002580 DEBUG GST_BUS gstbus.c:839:gst_bus_source_dispatch:<bus1> source 0x3d21dc00 calling dispatch with state-changed message: 0x3d216a40, time 99:99:99.999999999, seq-num 94, element 'my_appsrc', GstMessageStateChanged, old-state=(GstState)GST_STATE_READY, new-state=(GstState)GST_STATE_NULL, pending-state=(GstState)GST_STATE_VOID_PENDING;
(bus_call, 87)my_appsrc state change, old state: READY, new state: NULL
0:00:05.593458375 8744 0x3d0a0600 DEBUG bin gstbin.c:2359:gst_bin_sort_iterator_next:<my_pipeline> queue empty, elements exhausted
0:00:05.593519250 8744 0xffffa4002580 LOG GST_MESSAGE gstmessage.c:208:_gst_message_free: finalize message 0x3d216a40, state-changed from my_appsrc
0:00:05.593545625 8744 0x3d0a0600 DEBUG GST_STATES gstbin.c:3011:gst_bin_change_state_func:<my_pipeline> iterator done
0:00:05.593567000 8744 0xffffa4002580 DEBUG GST_BUS gstbus.c:844:gst_bus_source_dispatch:<bus1> source 0x3d21dc00 handler returns 1
0:00:05.593578625 8744 0x3d0a0600 LOG GST_STATES gstelement.c:3154:gst_element_change_state_func:<my_pipeline> default handler tries setting state from READY to NULL (0011)
0:00:05.593620875 8744 0x3d0a0600 DEBUG GST_ELEMENT_PADS gstelement.c:3097:gst_element_pads_activate:<my_pipeline> deactivate pads
0:00:05.593664625 8744 0x3d0a0600 DEBUG GST_ELEMENT_PADS gstelement.c:3116:gst_element_pads_activate:<my_pipeline> pad deactivation successful
0:00:05.593703625 8744 0x3d0a0600 DEBUG bin gstbin.c:2401:gst_bin_sort_iterator_free:<my_pipeline> free
0:00:05.593739500 8744 0x3d0a0600 DEBUG bin gstbin.c:3046:gst_bin_change_state_func:<my_pipeline> no async elements
0:00:05.593771750 8744 0x3d0a0600 DEBUG GST_STATES gstbin.c:3080:gst_bin_change_state_func:<my_pipeline> done changing bin's state from READY to NULL, now in READY, ret SUCCESS
0:00:05.593816000 8744 0x3d0a0600 DEBUG GST_BUS gstbus.c:467:gst_bus_set_flushing:<bus1> set bus flushing
0:00:05.593847625 8744 0x3d0a0600 LOG GST_BUS gstbus.c:522:gst_bus_timed_pop_filtered:<bus1> have 0 messages
0:00:05.593888375 8744 0x3d0a0600 DEBUG GST_STATES gstelement.c:2988:gst_element_change_state:<my_pipeline> element changed state SUCCESS
0:00:05.593921750 8744 0x3d0a0600 INFO GST_STATES gstelement.c:2676:gst_element_continue_state:<my_pipeline> completed state change to NULL
0:00:05.593957125 8744 0x3d0a0600 INFO GST_STATES gstelement.c:2579:_priv_gst_element_state_changed:<my_pipeline> notifying about state-changed READY to NULL (VOID_PENDING pending)
0:00:05.593999875 8744 0x3d0a0600 LOG GST_MESSAGE gstmessage.c:301:gst_message_new_custom: source my_pipeline: creating new message 0x3d231b10 state-changed
0:00:05.594071500 8744 0x3d0a0600 DEBUG GST_BUS gstbus.c:318:gst_bus_post:<bus1> [msg 0x3d231b10] posting on bus state-changed message: 0x3d231b10, time 99:99:99.999999999, seq-num 95, element 'my_pipeline', GstMessageStateChanged, old-state=(GstState)GST_STATE_READY, new-state=(GstState)GST_STATE_NULL, pending-state=(GstState)GST_STATE_VOID_PENDING;
0:00:05.594174250 8744 0x3d0a0600 DEBUG GST_BUS gstbus.c:410:gst_bus_post:<bus1> bus is flushing
0:00:05.594202375 8744 0x3d0a0600 LOG GST_MESSAGE gstmessage.c:208:_gst_message_free: finalize message 0x3d231b10, state-changed from my_pipeline
0:00:05.594247875 8744 0x3d0a0600 LOG GST_STATES gstelement.c:3004:gst_element_change_state:<my_pipeline> exit state change 1
0:00:05.594283125 8744 0x3d0a0600 LOG GST_STATES gstelement.c:3004:gst_element_change_state:<my_pipeline> exit state change 1
0:00:05.594317375 8744 0x3d0a0600 LOG GST_STATES gstelement.c:3004:gst_element_change_state:<my_pipeline> exit state change 1
0:00:05.594351625 8744 0x3d0a0600 DEBUG GST_STATES gstelement.c:2911:gst_element_set_state_func:<my_pipeline> returned SUCCESS
(main, 308)unref the pipeline
0:00:05.594449375 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstpipeline.c:247:gst_pipeline_dispose:<my_pipeline> 0x3d1de1d0 dispose
0:00:05.594487000 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstbin.c:520:gst_bin_dispose:<my_pipeline> 0x3d1de1d0 dispose
0:00:05.594519500 8744 0x3d0a0600 DEBUG GST_PARENTAGE gstbin.c:1869:gst_bin_remove: removing element my_sink from bin my_pipeline
0:00:05.594564750 8744 0x3d0a0600 DEBUG bin gstbin.c:1569:gst_bin_remove_func:<my_pipeline> element :my_sink
0:00:05.594606625 8744 0x3d0a0600 DEBUG bin gstbin.c:1652:gst_bin_remove_func:<my_pipeline> we removed the last sink
0:00:05.594644250 8744 0x3d0a0600 DEBUG bin gstbin.c:1766:gst_bin_remove_func:<my_pipeline> recalc state preroll: 0, other async: 0, this async 0
0:00:05.594688000 8744 0x3d0a0600 DEBUG GST_PARENTAGE gstelement.c:3346:gst_element_set_bus_func:<my_sink> setting bus to (nil)
0:00:05.594726375 8744 0x3d0a0600 DEBUG GST_CLOCK gstelement.c:429:gst_element_set_clock:<my_sink> setting clock (nil)
0:00:05.594769750 8744 0x3d0a0600 INFO GST_ELEMENT_PADS gstpad.c:2134:gst_pad_unlink: unlinking my_vdec:src(0x3d206aa0) and my_sink:sink(0x3d206cf0)
0:00:05.594825625 8744 0x3d0a0600 LOG GST_MESSAGE gstmessage.c:301:gst_message_new_custom: source sink: creating new message 0x3d231b90 structure-change
0:00:05.594870375 8744 0x3d0a0600 DEBUG GST_BUS gstbus.c:318:gst_bus_post:<bus0> [msg 0x3d231b90] posting on bus structure-change message: 0x3d231b90, time 99:99:99.999999999, seq-num 96, element 'sink', GstMessageStructureChange, type=(GstStructureChangeType)GST_STRUCTURE_CHANGE_TYPE_PAD_UNLINK, owner=(GstElement)"\(v4l2h264dec\)\ my_vdec", busy=(boolean)true;
0:00:05.594990250 8744 0x3d0a0600 DEBUG bin gstbin.c:3715:gst_bin_handle_message_func:<my_pipeline> [msg 0x3d231b90] handling child sink message of type structure-change
0:00:05.595036750 8744 0x3d0a0600 DEBUG bin gstbin.c:885:find_message:<my_pipeline> no message found matching types 00001000
0:00:05.595073000 8744 0x3d0a0600 DEBUG bin gstbin.c:892:find_message:<my_pipeline> structure-change
0:00:05.595110000 8744 0x3d0a0600 DEBUG bin gstbin.c:932:bin_replace_message:<my_pipeline> got new message 0x3d231b90, structure-change from sink
0:00:05.595151500 8744 0x3d0a0600 DEBUG GST_BUS gstbus.c:353:gst_bus_post:<bus0> [msg 0x3d231b90] dropped
0:00:05.595192000 8744 0x3d0a0600 INFO GST_ELEMENT_PADS gstpad.c:2188:gst_pad_unlink: unlinked my_vdec:src and my_sink:sink
0:00:05.595263500 8744 0x3d0a0600 LOG GST_MESSAGE gstmessage.c:301:gst_message_new_custom: source sink: creating new message 0x3d231b10 structure-change
0:00:05.595306750 8744 0x3d0a0600 DEBUG GST_BUS gstbus.c:318:gst_bus_post:<bus0> [msg 0x3d231b10] posting on bus structure-change message: 0x3d231b10, time 99:99:99.999999999, seq-num 97, element 'sink', GstMessageStructureChange, type=(GstStructureChangeType)GST_STRUCTURE_CHANGE_TYPE_PAD_UNLINK, owner=(GstElement)"\(v4l2h264dec\)\ my_vdec", busy=(boolean)false;
0:00:05.595409125 8744 0x3d0a0600 DEBUG bin gstbin.c:3715:gst_bin_handle_message_func:<my_pipeline> [msg 0x3d231b10] handling child sink message of type structure-change
0:00:05.595446625 8744 0x3d0a0600 LOG bin gstbin.c:863:message_check: looking at message 0x3d231b90: 1
0:00:05.595487625 8744 0x3d0a0600 DEBUG bin gstbin.c:961:bin_remove_messages:<my_sink:sink> deleting message 0x3d231b90 of type structure-change (types 0x00001000)
0:00:05.595524875 8744 0x3d0a0600 LOG GST_MESSAGE gstmessage.c:208:_gst_message_free: finalize message 0x3d231b90, structure-change from sink
0:00:05.595563750 8744 0x3d0a0600 LOG GST_MESSAGE gstmessage.c:208:_gst_message_free: finalize message 0x3d231b10, structure-change from sink
0:00:05.595607125 8744 0x3d0a0600 DEBUG GST_BUS gstbus.c:353:gst_bus_post:<bus0> [msg 0x3d231b10] dropped
0:00:05.595648875 8744 0x3d0a0600 INFO GST_PARENTAGE gstbin.c:1799:gst_bin_remove_func:<my_pipeline> removed child "my_sink"
0:00:05.595728875 8744 0x3d0a0600 LOG bin gstbin.c:1479:gst_bin_deep_element_removed_func:<my_pipeline> no parent, reached top-level
0:00:05.595769750 8744 0x3d0a0600 INFO GST_REFCOUNTING gstelement.c:3251:gst_element_dispose:<my_sink> 0x3d2279f0 dispose
0:00:05.595805875 8744 0x3d0a0600 DEBUG GST_ELEMENT_PADS gstelement.c:3280:gst_element_dispose:<my_sink> removing pad my_sink:sink
0:00:05.595845375 8744 0x3d0a0600 INFO GST_ELEMENT_PADS gstelement.c:789:gst_element_remove_pad:<my_sink> removing pad 'sink'
0:00:05.595907125 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstpad.c:710:gst_pad_dispose:<'':sink> 0x3d206cf0 dispose
0:00:05.595974875 8744 0x3d0a0600 INFO GST_REFCOUNTING gstelement.c:3297:gst_element_dispose:<my_sink> 0x3d2279f0 parent class dispose
0:00:05.596016750 8744 0x3d0a0600 DEBUG waylandsink gstwaylandsink.c:322:gst_wayland_sink_finalize:<my_sink> Finalizing the sink..
0:00:05.596071750 8744 0x3d0a0600 INFO GST_REFCOUNTING gstelement.c:3328:gst_element_finalize:<my_sink> 0x3d2279f0 finalize
0:00:05.596108500 8744 0x3d0a0600 INFO GST_REFCOUNTING gstelement.c:3334:gst_element_finalize:<my_sink> 0x3d2279f0 finalize parent
0:00:05.596142750 8744 0x3d0a0600 DEBUG GST_PARENTAGE gstbin.c:1869:gst_bin_remove: removing element my_vdec from bin my_pipeline
0:00:05.596181000 8744 0x3d0a0600 DEBUG bin gstbin.c:1569:gst_bin_remove_func:<my_pipeline> element :my_vdec
0:00:05.596220125 8744 0x3d0a0600 DEBUG bin gstbin.c:1766:gst_bin_remove_func:<my_pipeline> recalc state preroll: 0, other async: 0, this async 0
0:00:05.596261625 8744 0x3d0a0600 DEBUG GST_PARENTAGE gstelement.c:3346:gst_element_set_bus_func:<my_vdec> setting bus to (nil)
0:00:05.596297500 8744 0x3d0a0600 DEBUG GST_CLOCK gstelement.c:429:gst_element_set_clock:<my_vdec> setting clock (nil)
0:00:05.596336375 8744 0x3d0a0600 INFO GST_ELEMENT_PADS gstpad.c:2134:gst_pad_unlink: unlinking my_h264parse:src(0x3d206600) and my_vdec:sink(0x3d206850)
0:00:05.596389250 8744 0x3d0a0600 LOG GST_MESSAGE gstmessage.c:301:gst_message_new_custom: source sink: creating new message 0x3d231b10 structure-change
0:00:05.596433125 8744 0x3d0a0600 DEBUG GST_BUS gstbus.c:318:gst_bus_post:<bus0> [msg 0x3d231b10] posting on bus structure-change message: 0x3d231b10, time 99:99:99.999999999, seq-num 98, element 'sink', GstMessageStructureChange, type=(GstStructureChangeType)GST_STRUCTURE_CHANGE_TYPE_PAD_UNLINK, owner=(GstElement)"\(GstH264Parse\)\ my_h264parse", busy=(boolean)true;
0:00:05.596577125 8744 0x3d0a0600 DEBUG bin gstbin.c:3715:gst_bin_handle_message_func:<my_pipeline> [msg 0x3d231b10] handling child sink message of type structure-change
0:00:05.596623750 8744 0x3d0a0600 DEBUG bin gstbin.c:885:find_message:<my_pipeline> no message found matching types 00001000
0:00:05.596661375 8744 0x3d0a0600 DEBUG bin gstbin.c:892:find_message:<my_pipeline> structure-change
0:00:05.596698000 8744 0x3d0a0600 DEBUG bin gstbin.c:932:bin_replace_message:<my_pipeline> got new message 0x3d231b10, structure-change from sink
0:00:05.596738375 8744 0x3d0a0600 DEBUG GST_BUS gstbus.c:353:gst_bus_post:<bus0> [msg 0x3d231b10] dropped
0:00:05.596772000 8744 0x3d0a0600 INFO GST_ELEMENT_PADS gstpad.c:2188:gst_pad_unlink: unlinked my_h264parse:src and my_vdec:sink
0:00:05.596816250 8744 0x3d0a0600 LOG GST_MESSAGE gstmessage.c:301:gst_message_new_custom: source sink: creating new message 0x3d231b90 structure-change
0:00:05.596859750 8744 0x3d0a0600 DEBUG GST_BUS gstbus.c:318:gst_bus_post:<bus0> [msg 0x3d231b90] posting on bus structure-change message: 0x3d231b90, time 99:99:99.999999999, seq-num 99, element 'sink', GstMessageStructureChange, type=(GstStructureChangeType)GST_STRUCTURE_CHANGE_TYPE_PAD_UNLINK, owner=(GstElement)"\(GstH264Parse\)\ my_h264parse", busy=(boolean)false;
0:00:05.596965750 8744 0x3d0a0600 DEBUG bin gstbin.c:3715:gst_bin_handle_message_func:<my_pipeline> [msg 0x3d231b90] handling child sink message of type structure-change
0:00:05.597002500 8744 0x3d0a0600 LOG bin gstbin.c:863:message_check: looking at message 0x3d231b10: 1
0:00:05.597094375 8744 0x3d0a0600 DEBUG bin gstbin.c:961:bin_remove_messages:<my_vdec:sink> deleting message 0x3d231b10 of type structure-change (types 0x00001000)
0:00:05.597141875 8744 0x3d0a0600 LOG GST_MESSAGE gstmessage.c:208:_gst_message_free: finalize message 0x3d231b10, structure-change from sink
0:00:05.597188375 8744 0x3d0a0600 LOG GST_MESSAGE gstmessage.c:208:_gst_message_free: finalize message 0x3d231b90, structure-change from sink
0:00:05.597235875 8744 0x3d0a0600 DEBUG GST_BUS gstbus.c:353:gst_bus_post:<bus0> [msg 0x3d231b90] dropped
0:00:05.597284375 8744 0x3d0a0600 INFO GST_PARENTAGE gstbin.c:1799:gst_bin_remove_func:<my_pipeline> removed child "my_vdec"
0:00:05.597359000 8744 0x3d0a0600 LOG bin gstbin.c:1479:gst_bin_deep_element_removed_func:<my_pipeline> no parent, reached top-level
0:00:05.597405375 8744 0x3d0a0600 INFO GST_REFCOUNTING gstelement.c:3251:gst_element_dispose:<my_vdec> 0x3d2171a0 dispose
0:00:05.597444375 8744 0x3d0a0600 DEBUG GST_ELEMENT_PADS gstelement.c:3280:gst_element_dispose:<my_vdec> removing pad my_vdec:sink
0:00:05.597484000 8744 0x3d0a0600 INFO GST_ELEMENT_PADS gstelement.c:789:gst_element_remove_pad:<my_vdec> removing pad 'sink'
0:00:05.597531125 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstpad.c:710:gst_pad_dispose:<'':sink> 0x3d206850 dispose
0:00:05.597589875 8744 0x3d0a0600 DEBUG GST_ELEMENT_PADS gstelement.c:3280:gst_element_dispose:<my_vdec> removing pad my_vdec:src
0:00:05.597629500 8744 0x3d0a0600 INFO GST_ELEMENT_PADS gstelement.c:789:gst_element_remove_pad:<my_vdec> removing pad 'src'
0:00:05.597671625 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstpad.c:710:gst_pad_dispose:<'':src> 0x3d206aa0 dispose
0:00:05.597720750 8744 0x3d0a0600 INFO GST_REFCOUNTING gstelement.c:3297:gst_element_dispose:<my_vdec> 0x3d2171a0 parent class dispose
0:00:05.597794375 8744 0x3d0a0600 DEBUG GST_POLL gstpoll.c:772:gst_poll_free: 0x3d21fed0: freeing
0:00:05.597888750 8744 0x3d0a0600 DEBUG GST_POLL gstpoll.c:772:gst_poll_free: 0x3d21fde0: freeing
0:00:05.597976250 8744 0x3d0a0600 DEBUG videodecoder gstvideodecoder.c:745:gst_video_decoder_finalize:<my_vdec> finalize
0:00:05.598027750 8744 0x3d0a0600 INFO GST_REFCOUNTING gstelement.c:3328:gst_element_finalize:<my_vdec> 0x3d2171a0 finalize
0:00:05.598067250 8744 0x3d0a0600 INFO GST_REFCOUNTING gstelement.c:3334:gst_element_finalize:<my_vdec> 0x3d2171a0 finalize parent
0:00:05.598103125 8744 0x3d0a0600 DEBUG GST_PARENTAGE gstbin.c:1869:gst_bin_remove: removing element my_h264parse from bin my_pipeline
0:00:05.598145125 8744 0x3d0a0600 DEBUG bin gstbin.c:1569:gst_bin_remove_func:<my_pipeline> element :my_h264parse
0:00:05.598186375 8744 0x3d0a0600 DEBUG bin gstbin.c:1766:gst_bin_remove_func:<my_pipeline> recalc state preroll: 0, other async: 0, this async 0
0:00:05.598233625 8744 0x3d0a0600 DEBUG GST_PARENTAGE gstelement.c:3346:gst_element_set_bus_func:<my_h264parse> setting bus to (nil)
0:00:05.598276125 8744 0x3d0a0600 DEBUG GST_CLOCK gstelement.c:429:gst_element_set_clock:<my_h264parse> setting clock (nil)
0:00:05.598332250 8744 0x3d0a0600 INFO GST_ELEMENT_PADS gstpad.c:2134:gst_pad_unlink: unlinking my_appsrc:src(0x3d206160) and my_h264parse:sink(0x3d2063b0)
0:00:05.598409375 8744 0x3d0a0600 LOG GST_MESSAGE gstmessage.c:301:gst_message_new_custom: source sink: creating new message 0x3d231b90 structure-change
0:00:05.598459750 8744 0x3d0a0600 DEBUG GST_BUS gstbus.c:318:gst_bus_post:<bus0> [msg 0x3d231b90] posting on bus structure-change message: 0x3d231b90, time 99:99:99.999999999, seq-num 100, element 'sink', GstMessageStructureChange, type=(GstStructureChangeType)GST_STRUCTURE_CHANGE_TYPE_PAD_UNLINK, owner=(GstElement)"\(GstAppSrc\)\ my_appsrc", busy=(boolean)true;
0:00:05.598661125 8744 0x3d0a0600 DEBUG bin gstbin.c:3715:gst_bin_handle_message_func:<my_pipeline> [msg 0x3d231b90] handling child sink message of type structure-change
0:00:05.598710875 8744 0x3d0a0600 DEBUG bin gstbin.c:885:find_message:<my_pipeline> no message found matching types 00001000
0:00:05.598749000 8744 0x3d0a0600 DEBUG bin gstbin.c:892:find_message:<my_pipeline> structure-change
0:00:05.598786500 8744 0x3d0a0600 DEBUG bin gstbin.c:932:bin_replace_message:<my_pipeline> got new message 0x3d231b90, structure-change from sink
0:00:05.598828875 8744 0x3d0a0600 DEBUG GST_BUS gstbus.c:353:gst_bus_post:<bus0> [msg 0x3d231b90] dropped
0:00:05.598869375 8744 0x3d0a0600 INFO GST_ELEMENT_PADS gstpad.c:2188:gst_pad_unlink: unlinked my_appsrc:src and my_h264parse:sink
0:00:05.598918125 8744 0x3d0a0600 LOG GST_MESSAGE gstmessage.c:301:gst_message_new_custom: source sink: creating new message 0x3d231b10 structure-change
0:00:05.598961625 8744 0x3d0a0600 DEBUG GST_BUS gstbus.c:318:gst_bus_post:<bus0> [msg 0x3d231b10] posting on bus structure-change message: 0x3d231b10, time 99:99:99.999999999, seq-num 101, element 'sink', GstMessageStructureChange, type=(GstStructureChangeType)GST_STRUCTURE_CHANGE_TYPE_PAD_UNLINK, owner=(GstElement)"\(GstAppSrc\)\ my_appsrc", busy=(boolean)false;
0:00:05.599103250 8744 0x3d0a0600 DEBUG bin gstbin.c:3715:gst_bin_handle_message_func:<my_pipeline> [msg 0x3d231b10] handling child sink message of type structure-change
0:00:05.599145750 8744 0x3d0a0600 LOG bin gstbin.c:863:message_check: looking at message 0x3d231b90: 1
0:00:05.599189625 8744 0x3d0a0600 DEBUG bin gstbin.c:961:bin_remove_messages:<my_h264parse:sink> deleting message 0x3d231b90 of type structure-change (types 0x00001000)
0:00:05.599279375 8744 0x3d0a0600 LOG GST_MESSAGE gstmessage.c:208:_gst_message_free: finalize message 0x3d231b90, structure-change from sink
0:00:05.599326250 8744 0x3d0a0600 LOG GST_MESSAGE gstmessage.c:208:_gst_message_free: finalize message 0x3d231b10, structure-change from sink
0:00:05.599371250 8744 0x3d0a0600 DEBUG GST_BUS gstbus.c:353:gst_bus_post:<bus0> [msg 0x3d231b10] dropped
0:00:05.599426750 8744 0x3d0a0600 INFO GST_PARENTAGE gstbin.c:1799:gst_bin_remove_func:<my_pipeline> removed child "my_h264parse"
0:00:05.599541625 8744 0x3d0a0600 LOG bin gstbin.c:1479:gst_bin_deep_element_removed_func:<my_pipeline> no parent, reached top-level
0:00:05.599593500 8744 0x3d0a0600 INFO GST_REFCOUNTING gstelement.c:3251:gst_element_dispose:<my_h264parse> 0x3d209a60 dispose
0:00:05.599633375 8744 0x3d0a0600 DEBUG GST_ELEMENT_PADS gstelement.c:3280:gst_element_dispose:<my_h264parse> removing pad my_h264parse:sink
0:00:05.599676000 8744 0x3d0a0600 INFO GST_ELEMENT_PADS gstelement.c:789:gst_element_remove_pad:<my_h264parse> removing pad 'sink'
0:00:05.599730375 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstpad.c:710:gst_pad_dispose:<'':sink> 0x3d2063b0 dispose
0:00:05.599808875 8744 0x3d0a0600 DEBUG GST_ELEMENT_PADS gstelement.c:3280:gst_element_dispose:<my_h264parse> removing pad my_h264parse:src
0:00:05.599855375 8744 0x3d0a0600 INFO GST_ELEMENT_PADS gstelement.c:789:gst_element_remove_pad:<my_h264parse> removing pad 'src'
0:00:05.599901250 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstpad.c:710:gst_pad_dispose:<'':src> 0x3d206600 dispose
0:00:05.599953250 8744 0x3d0a0600 INFO GST_REFCOUNTING gstelement.c:3297:gst_element_dispose:<my_h264parse> 0x3d209a60 parent class dispose
0:00:05.600075500 8744 0x3d0a0600 INFO GST_REFCOUNTING gstelement.c:3328:gst_element_finalize:<my_h264parse> 0x3d209a60 finalize
0:00:05.600115750 8744 0x3d0a0600 INFO GST_REFCOUNTING gstelement.c:3334:gst_element_finalize:<my_h264parse> 0x3d209a60 finalize parent
0:00:05.600152125 8744 0x3d0a0600 DEBUG GST_PARENTAGE gstbin.c:1869:gst_bin_remove: removing element my_appsrc from bin my_pipeline
0:00:05.600192250 8744 0x3d0a0600 DEBUG bin gstbin.c:1569:gst_bin_remove_func:<my_pipeline> element :my_appsrc
0:00:05.600232375 8744 0x3d0a0600 DEBUG bin gstbin.c:1658:gst_bin_remove_func:<my_pipeline> we removed the last source
0:00:05.600265500 8744 0x3d0a0600 DEBUG bin gstbin.c:1766:gst_bin_remove_func:<my_pipeline> recalc state preroll: 0, other async: 0, this async 0
0:00:05.600309000 8744 0x3d0a0600 DEBUG GST_PARENTAGE gstelement.c:3346:gst_element_set_bus_func:<my_appsrc> setting bus to (nil)
0:00:05.600359000 8744 0x3d0a0600 DEBUG GST_CLOCK gstelement.c:429:gst_element_set_clock:<my_appsrc> setting clock (nil)
0:00:05.600414250 8744 0x3d0a0600 INFO GST_PARENTAGE gstbin.c:1799:gst_bin_remove_func:<my_pipeline> removed child "my_appsrc"
0:00:05.600484125 8744 0x3d0a0600 LOG bin gstbin.c:1479:gst_bin_deep_element_removed_func:<my_pipeline> no parent, reached top-level
0:00:05.600540500 8744 0x3d0a0600 INFO GST_REFCOUNTING gstelement.c:3251:gst_element_dispose:<my_appsrc> 0x3d1e29d0 dispose
0:00:05.600576500 8744 0x3d0a0600 DEBUG GST_ELEMENT_PADS gstelement.c:3280:gst_element_dispose:<my_appsrc> removing pad my_appsrc:src
0:00:05.600615875 8744 0x3d0a0600 INFO GST_ELEMENT_PADS gstelement.c:789:gst_element_remove_pad:<my_appsrc> removing pad 'src'
0:00:05.600662375 8744 0x3d0a0600 DEBUG GST_REFCOUNTING gstpad.c:710:gst_pad_dispose:<'':src> 0x3d206160 dispose
0:00:05.600713250 8744 0x3d0a0600 INFO GST_REFCOUNTING gstelement.c:3297:gst_element_dispose:<my_appsrc> 0x3d1e29d0 parent class dispose
0:00:05.600815875 8744 0x3d0a0600 INFO GST_REFCOUNTING gstelement.c:3328:gst_element_finalize:<my_appsrc> 0x3d1e29d0 finalize
0:00:05.600854875 8744 0x3d0a0600 INFO GST_REFCOUNTING gstelement.c:3334:gst_element_finalize:<my_appsrc> 0x3d1e29d0 finalize parent
0:00:05.600896375 8744 0x3d0a0600 INFO GST_REFCOUNTING gstelement.c:3251:gst_element_dispose:<my_pipeline> 0x3d1de1d0 dispose
0:00:05.600934500 8744 0x3d0a0600 INFO GST_REFCOUNTING gstelement.c:3297:gst_element_dispose:<my_pipeline> 0x3d1de1d0 parent class dispose
0:00:05.600974625 8744 0x3d0a0600 INFO GST_REFCOUNTING gstelement.c:3328:gst_element_finalize:<my_pipeline> 0x3d1de1d0 finalize
0:00:05.601010000 8744 0x3d0a0600 INFO GST_REFCOUNTING gstelement.c:3334:gst_element_finalize:<my_pipeline> 0x3d1de1d0 finalize parent
0:00:05.601849125 8744 0x3d0a0600 DEBUG GST_BUS gstbus.c:865:gst_bus_source_finalize:<bus1> finalize source 0x3d21dc00
0:00:05.601892750 8744 0x3d0a0600 DEBUG GST_POLL gstpoll.c:772:gst_poll_free: 0x3d154a30: freeing
-------------- next part --------------
A non-text attachment was scrubbed...
Name: appsrc-codec.c
Type: application/octet-stream
Size: 8914 bytes
Desc: not available
URL: <https://lists.freedesktop.org/archives/gstreamer-devel/attachments/20190520/37ab8e78/attachment-0001.obj>
More information about the gstreamer-devel
mailing list