GStreamer aravissrc with GStreamer x264enc

Hi @Emmanuel ,

I’m trying to get a stream from Aravis to a GStreamer RTSP Server.

My current pipeline looks like this:

./test-launch --gst-debug-level=3 "( aravissrc camera-name=192.168.---.--- ! x264enc ! rtph264pay name=pay0 pt=96 )"

When I launch the pipeline I get an error:

stream ready at rtsp://127.0.0.1:8554/test

** (test-launch:575): CRITICAL **: 15:27:08.262: arv_camera_uv_set_usb_mode: assertion 'arv_camera_is_uv_device (camera)' failed
0:00:02.685039241   575 0x7fe84400e520 FIXME                default gstutils.c:3980:gst_pad_create_stream_id_internal:<aravis0:src> Creating random stream-id, consider implementing a deterministic way of creating a stream-id
0:00:02.685185374   575 0x7fe84400e520 WARN                 basesrc gstbasesrc.c:3072:gst_base_src_loop:<aravis0> error: Internal data stream error.
0:00:02.685192037   575 0x7fe84400e520 WARN                 basesrc gstbasesrc.c:3072:gst_base_src_loop:<aravis0> error: streaming stopped, reason not-negotiated (-4)
0:00:02.685236053   575 0x7fe854522760 WARN               rtspmedia rtsp-media.c:3001:default_handle_message: 0x7fe85453c1b0: got error Internal data stream error. (gstbasesrc.c(3072): gst_base_src_loop (): /GstPipeline:media-pipeline/GstBin:bin0/GstAravis:aravis0:
streaming stopped, reason not-negotiated (-4))
0:00:02.685287120   575 0x55bf84051460 WARN               rtspmedia rtsp-media.c:3272:wait_preroll: failed to preroll pipeline
0:00:02.685297964   575 0x55bf84051460 WARN               rtspmedia rtsp-media.c:3652:gst_rtsp_media_prepare: failed to preroll pipeline
0:00:02.687736707   575 0x55bf84051460 ERROR             rtspclient rtsp-client.c:1077:find_media: client 0x55bf8404d5e0: can't prepare media
0:00:02.697167425   575 0x55bf84051460 ERROR             rtspclient rtsp-client.c:2963:handle_describe_request: client 0x55bf8404d5e0: no media

When I try to set explicit caps, for example:
./test-launch --gst-debug-level=3 "( aravissrc camera-name=192.168.---.--- ! video/x-raw,format=RGB,profile=main ! x264enc ! rtph264pay name=pay0 pt=96 )"

I will get another error:

stream ready at rtsp://127.0.0.1:8554/test

** (test-launch:473): CRITICAL **: 14:54:40.200: arv_camera_uv_set_usb_mode: assertion 'arv_camera_is_uv_device (camera)' failed
0:00:05.162511494   473 0x55e98e2e7460 ERROR           GST_PIPELINE grammar.y:723:gst_parse_perform_link: could not link aravis0 to x264enc0, x264enc0 can't handle caps video/x-raw, profile=(string)main, format=(string)GRAY8
0:00:05.162538120   473 0x55e98e2e7460 WARN        rtspmediafactory rtsp-media-factory.c:1659:default_create_element: recoverable parsing error: could not link aravis0 to x264enc0, x264enc0 can't handle caps video/x-raw, profile=(string)main, format=(string)GRAY8
0:00:05.472283859   473 0x7fad4000e640 FIXME                default gstutils.c:3980:gst_pad_create_stream_id_internal:<aravis0:src> Creating random stream-id, consider implementing a deterministic way of creating a stream-id
0:00:07.797881417   473 0x7fad4000e640 WARN                 basesrc gstbasesrc.c:3072:gst_base_src_loop:<aravis0> error: Internal data stream error.
0:00:07.797895120   473 0x7fad4000e640 WARN                 basesrc gstbasesrc.c:3072:gst_base_src_loop:<aravis0> error: streaming stopped, reason error (-5)
0:00:07.797960015   473 0x7fad505241e0 WARN               rtspmedia rtsp-media.c:3001:default_handle_message: 0x7fad505441c0: got error Internal data stream error. (gstbasesrc.c(3072): gst_base_src_loop (): /GstPipeline:media-pipeline/GstBin:bin0/GstAravis:aravis0:
streaming stopped, reason error (-5))
0:00:07.797990018   473 0x55e98e2e7460 WARN               rtspmedia rtsp-media.c:3272:wait_preroll: failed to preroll pipeline
0:00:07.797998686   473 0x55e98e2e7460 WARN               rtspmedia rtsp-media.c:3652:gst_rtsp_media_prepare: failed to preroll pipeline
0:00:07.883699054   473 0x55e98e2e7460 ERROR             rtspclient rtsp-client.c:1077:find_media: client 0x55e98e2e34b0: can't prepare media
0:00:07.893778723   473 0x55e98e2e7460 ERROR             rtspclient rtsp-client.c:2963:handle_describe_request: client 0x55e98e2e34b0: no media

Is this actually a problem of the selected caps and is there a list of the supported caps?

Thank you!

Hi,

You can find the list of supported caps in the code, here:

It looks like you just need a videoconvert element in your pipeline, between aravissrc and x264enc.

Emmanuel.

Thank you so much!

I changed the pipeline to:
./test-launch --gst-debug-level=3 "( aravissrc camera-name=192.168.---.--- ! video/x-raw, format=RGB ! videoconvert ! x264enc ! rtph264pay name=pay0 pt=96 )"

But the pipeline is still not working:

stream ready at rtsp://127.0.0.1:8554/test

** (test-launch:1800): CRITICAL **: 16:26:05.848: arv_camera_uv_set_usb_mode: assertion 'arv_camera_is_uv_device (camera)' failed
0:00:02.027861896  1800 0x7f368c00e520 FIXME                default gstutils.c:3980:gst_pad_create_stream_id_internal:<aravis0:src> Creating random stream-id, consider implementing a deterministic way of creating a stream-id
x264 [error]: baseline profile doesn't support 4:4:4
0:00:02.347793935  1800 0x7f368c00e520 WARN                 x264enc gstx264enc.c:1802:gst_x264_enc_init_encoder:<x264enc0> Bad downstream profile name: baseline
0:00:04.350373795  1800 0x7f368c00e520 WARN                 basesrc gstbasesrc.c:3072:gst_base_src_loop:<aravis0> error: Internal data stream error.
0:00:04.350396072  1800 0x7f368c00e520 WARN                 basesrc gstbasesrc.c:3072:gst_base_src_loop:<aravis0> error: streaming stopped, reason error (-5)
0:00:04.350517773  1800 0x7f369c522f60 WARN               rtspmedia rtsp-media.c:3001:default_handle_message: 0x7f369c54b240: got error Internal data stream error. (gstbasesrc.c(3072): gst_base_src_loop (): /GstPipeline:media-pipeline/GstBin:bin0/GstAravis:aravis0:
streaming stopped, reason error (-5))
0:00:04.350607091  1800 0x55c2f74ca460 WARN               rtspmedia rtsp-media.c:3272:wait_preroll: failed to preroll pipeline
0:00:04.350622597  1800 0x55c2f74ca460 WARN               rtspmedia rtsp-media.c:3652:gst_rtsp_media_prepare: failed to preroll pipeline
0:00:04.645264954  1800 0x55c2f74ca460 ERROR             rtspclient rtsp-client.c:1077:find_media: client 0x55c2f74c65e0: can't prepare media
0:00:04.658985949  1800 0x55c2f74ca460 ERROR             rtspclient rtsp-client.c:2963:handle_describe_request: client 0x55c2f74c65e0: no media

UPDATE:
Adding video/x-h264, profile=high between x264enc and rtph264pay resolves the Bad downstream profile name warning.
The internal error still exists.

@Emmanuel
I tested the pipeline with a video convert element with another camera and got another error:

stream ready at rtsp://127.0.0.1:8554/test

** (test-launch:3371): CRITICAL **: 09:48:54.272: arv_camera_uv_set_usb_mode: assertion 'arv_camera_is_uv_device (camera)' failed
0:00:06.617225825  3371 0x7f395400ee40 FIXME                default gstutils.c:3980:gst_pad_create_stream_id_internal:<aravis0:src> Creating random stream-id, consider implementing a deterministic way of creating a stream-id
0:00:06.617306744  3371 0x7f395400ee40 WARN                 basesrc gstbasesrc.c:3072:gst_base_src_loop:<aravis0> error: Internal data stream error.
0:00:06.617314099  3371 0x7f395400ee40 WARN                 basesrc gstbasesrc.c:3072:gst_base_src_loop:<aravis0> error: streaming stopped, reason not-negotiated (-4)
0:00:06.617366611  3371 0x7f396483d800 WARN               rtspmedia rtsp-media.c:3001:default_handle_message: 0x7f39648631e0: got error Internal data stream error. (gstbasesrc.c(3072): gst_base_src_loop (): /GstPipeline:media-pipeline/GstBin:bin0/GstAravis:aravis0:
streaming stopped, reason not-negotiated (-4))
0:00:06.617391947  3371 0x5648ca852460 WARN               rtspmedia rtsp-media.c:3272:wait_preroll: failed to preroll pipeline
0:00:06.617402954  3371 0x5648ca852460 WARN               rtspmedia rtsp-media.c:3652:gst_rtsp_media_prepare: failed to preroll pipeline
0:00:06.618763742  3371 0x5648ca852460 ERROR             rtspclient rtsp-client.c:1077:find_media: client 0x5648ca84e5e0: can't prepare media
0:00:06.634149625  3371 0x5648ca852460 ERROR             rtspclient rtsp-client.c:2963:handle_describe_request: client 0x5648ca84e5e0: no media

Do you have any pointers what could be wrong?

Hey, just a short update as I was able to solve this:

error: Internal data stream error. had nothing to to with the pipeline, as it was an issue with docker.
Note: To get it to work within docker, the network_mode has to be set to host.

The final and working pipeline looks like this:

 ./test-launch \
 --gst-debug-level=3 \
 " ( \
    aravissrc camera-name=${CAMERA} \
    ! video/x-raw, format=RGB \
    ! videoconvert \
    ! x264enc \
    ! video/x-h264, profile=high \
    ! rtph264pay name=pay0 pt=96 \
 ) "
1 Like

Hi @Emmanuel

The exact same pipeline doesn’t work anymore.
When started now, I will get the following Error:

CAMERA=192.168.1.126 --network=host -p80:80 -p8554:8554 --privileged -it converter bash
WARNING: Published ports are discarded when using host network mode
0:00:00.000402715     7 0x563ec7a248c0 INFO                GST_INIT gstmessage.c:128:_priv_gst_message_initialize: init messages
0:00:00.001007110     7 0x563ec7a248c0 INFO                GST_INIT gstcontext.c:84:_priv_gst_context_initialize: init contexts
0:00:00.001262316     7 0x563ec7a248c0 INFO      GST_PLUGIN_LOADING gstplugin.c:318:_priv_gst_plugin_initialize: registering 0 static plugins
0:00:00.001368799     7 0x563ec7a248c0 INFO      GST_PLUGIN_LOADING gstplugin.c:226:gst_plugin_register_static: registered static plugin "staticelements"
0:00:00.001389401     7 0x563ec7a248c0 INFO      GST_PLUGIN_LOADING gstplugin.c:228:gst_plugin_register_static: added static plugin "staticelements", result: 1
0:00:00.001424013     7 0x563ec7a248c0 INFO            GST_REGISTRY gstregistry.c:1720:ensure_current_registry: reading registry cache: /root/.cache/gstreamer-1.0/registry.x86_64.bin
0:00:00.001502097     7 0x563ec7a248c0 INFO            GST_REGISTRY gstregistrybinary.c:539:priv_gst_registry_binary_read_cache: Unable to mmap file /root/.cache/gstreamer-1.0/registry.x86_64.bin : Failed to open file “/root/.cache/gstreamer-1.0/registry.x86_64.bin”: open() failed: No such file or directory
0:00:00.001529478     7 0x563ec7a248c0 INFO            GST_REGISTRY gstregistrybinary.c:549:priv_gst_registry_binary_read_cache: Unable to read file /root/.cache/gstreamer-1.0/registry.x86_64.bin : Failed to open file “/root/.cache/gstreamer-1.0/registry.x86_64.bin”: No such file or directory
0:00:00.001541445     7 0x563ec7a248c0 INFO            GST_REGISTRY gstregistry.c:1579:scan_and_update_registry: Validating plugins from registry cache: /root/.cache/gstreamer-1.0/registry.x86_64.bin
0:00:00.078526465     7 0x563ec7a248c0 INFO            GST_REGISTRY gstregistry.c:1687:scan_and_update_registry: Registry cache changed. Writing new registry cache
0:00:00.078563569     7 0x563ec7a248c0 INFO            GST_REGISTRY gstregistrybinary.c:369:priv_gst_registry_binary_write_cache: Building binary registry cache image
0:00:00.083737469     7 0x563ec7a248c0 INFO            GST_REGISTRY gstregistrybinary.c:401:priv_gst_registry_binary_write_cache: Writing binary registry cache
0:00:00.100568490     7 0x563ec7a248c0 INFO            GST_REGISTRY gstregistrybinary.c:262:gst_registry_binary_cache_finish: Wrote binary registry cache
0:00:00.100583679     7 0x563ec7a248c0 INFO            GST_REGISTRY gstregistry.c:1696:scan_and_update_registry: Registry cache written successfully
0:00:00.100590711     7 0x563ec7a248c0 INFO            GST_REGISTRY gstregistry.c:1755:ensure_current_registry: registry reading and updating done, result = 1
0:00:00.100596772     7 0x563ec7a248c0 INFO                GST_INIT gst.c:806:init_post: GLib runtime version: 2.64.6
0:00:00.100603217     7 0x563ec7a248c0 INFO                GST_INIT gst.c:808:init_post: GLib headers version: 2.63.1
0:00:00.100607419     7 0x563ec7a248c0 INFO                GST_INIT gst.c:810:init_post: initialized GStreamer successfully
0:00:00.101054647     7 0x563ec7a248c0 INFO         rtspmountpoints rtsp-mount-points.c:333:gst_rtsp_mount_points_add_factory: adding media factory 0x563ec7b33180 for path /test
stream ready at rtsp://127.0.0.1:8554/test
0:00:04.016656548     7 0x563ec7a248c0 INFO              rtspclient rtsp-client.c:4157:gst_rtsp_client_set_connection: client 0x563ec7b3d4b0 connected to server ip 192.168.1.45, ipv6 = 0
0:00:04.016713856     7 0x563ec7a248c0 INFO              rtspclient rtsp-client.c:4161:gst_rtsp_client_set_connection: added new client 0x563ec7b3d4b0 ip 192.168.1.50:59334
0:00:04.017011532     7 0x563ec7a248c0 INFO              rtspclient rtsp-client.c:4763:gst_rtsp_client_attach: client 0x563ec7b3d4b0: attaching to context 0x563ec7b6ca00
0:00:04.017084282     7 0x563ec7be2460 INFO          rtspthreadpool rtsp-thread-pool.c:329:do_loop: enter mainloop of thread 0x563ec7be6840
0:00:04.017747678     7 0x563ec7be2460 INFO              rtspclient rtsp-client.c:3533:handle_request: client 0x563ec7b3d4b0: received a request OPTIONS rtsp://192.168.1.45:8554/test 1.0
0:00:04.057447340     7 0x563ec7be2460 INFO              rtspclient rtsp-client.c:3533:handle_request: client 0x563ec7b3d4b0: received a request DESCRIBE rtsp://192.168.1.45:8554/test 1.0
0:00:04.057533429     7 0x563ec7be2460 INFO         rtspmountpoints rtsp-mount-points.c:300:gst_rtsp_mount_points_match: found media factory 0x563ec7b33180 for path /test
0:00:04.057578773     7 0x563ec7be2460 INFO            GST_PIPELINE gstparse.c:336:gst_parse_launch_full: parsing pipeline description ' (     aravissrc camera-name=192.168.1.126     ! video/x-raw, format=RGB, width=1024, height=764     ! videoconvert     ! x264enc     ! video/x-h264, profile=high     ! rtph264pay name=pay0 pt=96  ) '
0:00:04.064269359     7 0x563ec7be2460 INFO      GST_PLUGIN_LOADING gstplugin.c:902:_priv_gst_plugin_load_file_for_registry: plugin "/streamconversion/aravis-0.8.20/build/gst/libgstaravis.0.8.so" loaded
0:00:04.064284921     7 0x563ec7be2460 INFO     GST_ELEMENT_FACTORY gstelementfactory.c:361:gst_element_factory_create: creating element "aravissrc"
0:00:04.064629094     7 0x563ec7be2460 INFO        GST_ELEMENT_PADS gstelement.c:668:gst_element_add_pad:<GstBaseSrc@0x7fb4b8021170> adding pad 'src'

** (test-launch:7): CRITICAL **: 16:51:32.292: arv_camera_uv_set_usb_mode: assertion 'arv_camera_is_uv_device (camera)' failed
0:00:04.400571788     7 0x563ec7be2460 INFO      GST_PLUGIN_LOADING gstplugin.c:902:_priv_gst_plugin_load_file_for_registry: plugin "/usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstvideoconvert.so" loaded
0:00:04.400607665     7 0x563ec7be2460 INFO     GST_ELEMENT_FACTORY gstelementfactory.c:361:gst_element_factory_create: creating element "videoconvert"
0:00:04.400951301     7 0x563ec7be2460 INFO        GST_ELEMENT_PADS gstelement.c:668:gst_element_add_pad:<GstBaseTransform@0x7fb4b85290d0> adding pad 'sink'
0:00:04.400981114     7 0x563ec7be2460 INFO        GST_ELEMENT_PADS gstelement.c:668:gst_element_add_pad:<GstBaseTransform@0x7fb4b85290d0> adding pad 'src'
0:00:04.401849140     7 0x563ec7be2460 INFO                 x264enc gstx264enc.c:3002:plugin_init: linked against x264 build: 155
0:00:04.401898331     7 0x563ec7be2460 INFO      GST_PLUGIN_LOADING gstplugin.c:902:_priv_gst_plugin_load_file_for_registry: plugin "/usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstx264.so" loaded
0:00:04.401922272     7 0x563ec7be2460 INFO     GST_ELEMENT_FACTORY gstelementfactory.c:361:gst_element_factory_create: creating element "x264enc"
0:00:04.402096167     7 0x563ec7be2460 INFO                 x264enc gstx264enc.c:225:gst_x264_enc_add_x264_chroma_format: 8-bit depth supported
0:00:04.402107420     7 0x563ec7be2460 INFO                 x264enc gstx264enc.c:250:gst_x264_enc_add_x264_chroma_format: 10-bit depth supported
0:00:04.402163296     7 0x563ec7be2460 INFO        GST_ELEMENT_PADS gstelement.c:668:gst_element_add_pad:<GstVideoEncoder@0x7fb4b852f110> adding pad 'sink'
0:00:04.402179078     7 0x563ec7be2460 INFO        GST_ELEMENT_PADS gstelement.c:668:gst_element_add_pad:<GstVideoEncoder@0x7fb4b852f110> adding pad 'src'
0:00:04.402822845     7 0x563ec7be2460 INFO      GST_PLUGIN_LOADING gstplugin.c:902:_priv_gst_plugin_load_file_for_registry: plugin "/usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstrtp.so" loaded
0:00:04.402836206     7 0x563ec7be2460 INFO     GST_ELEMENT_FACTORY gstelementfactory.c:361:gst_element_factory_create: creating element "rtph264pay"
0:00:04.402962571     7 0x563ec7be2460 INFO        GST_ELEMENT_PADS gstelement.c:668:gst_element_add_pad:<GstRTPBasePayload@0x7fb4b853a0e0> adding pad 'src'
0:00:04.402998325     7 0x563ec7be2460 INFO        GST_ELEMENT_PADS gstelement.c:668:gst_element_add_pad:<GstRTPBasePayload@0x7fb4b853a0e0> adding pad 'sink'
0:00:04.403041458     7 0x563ec7be2460 INFO     GST_ELEMENT_FACTORY gstelementfactory.c:361:gst_element_factory_create: creating element "bin"
0:00:04.403117544     7 0x563ec7be2460 INFO            GST_PIPELINE grammar.y:648:gst_parse_perform_link: linking some pad of GstAravis named aravis0 to some pad of GstVideoConvert named videoconvert0 (0/0) with caps "video/x-raw, format=(string)RGB, width=(int)1024, height=(int)764"
0:00:04.403456515     7 0x563ec7be2460 INFO      GST_PLUGIN_LOADING gstplugin.c:902:_priv_gst_plugin_load_file_for_registry: plugin "/usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstcoreelements.so" loaded
0:00:04.403468216     7 0x563ec7be2460 INFO     GST_ELEMENT_FACTORY gstelementfactory.c:361:gst_element_factory_create: creating element "capsfilter"
0:00:04.403554120     7 0x563ec7be2460 INFO        GST_ELEMENT_PADS gstelement.c:668:gst_element_add_pad:<GstBaseTransform@0x7fb4b8542150> adding pad 'sink'
0:00:04.403583482     7 0x563ec7be2460 INFO        GST_ELEMENT_PADS gstelement.c:668:gst_element_add_pad:<GstBaseTransform@0x7fb4b8542150> adding pad 'src'
0:00:04.403600279     7 0x563ec7be2460 INFO              GST_STATES gstbin.c:2090:gst_bin_get_state_func:<bin0> getting state
0:00:04.403623814     7 0x563ec7be2460 INFO              GST_STATES gstelement.c:2675:gst_element_continue_state:<capsfilter0> completed state change to NULL
0:00:04.403641189     7 0x563ec7be2460 INFO               GST_EVENT gstevent.c:1579:gst_event_new_reconfigure: creating reconfigure event
0:00:04.403659167     7 0x563ec7be2460 INFO        GST_ELEMENT_PADS gstutils.c:1771:gst_element_link_pads_full: trying to link element aravis0:(any) to element capsfilter0:sink
0:00:04.403672432     7 0x563ec7be2460 INFO        GST_ELEMENT_PADS gstelement.c:915:gst_element_get_static_pad: found pad capsfilter0:sink
0:00:04.403686259     7 0x563ec7be2460 INFO                GST_PADS gstutils.c:1587:prepare_link_maybe_ghosting: aravis0 and capsfilter0 in same bin, no need for ghost pads
0:00:04.403705541     7 0x563ec7be2460 INFO                GST_PADS gstpad.c:2377:gst_pad_link_prepare: trying to link aravis0:src and capsfilter0:sink
0:00:04.403729006     7 0x563ec7be2460 INFO                GST_PADS gstpad.c:4237:gst_pad_peer_query:<capsfilter0:src> pad has no peer
0:00:04.403749055     7 0x563ec7be2460 INFO                GST_PADS gstpad.c:2585:gst_pad_link_full: linked aravis0:src and capsfilter0:sink, successful
0:00:04.403759902     7 0x563ec7be2460 INFO               GST_EVENT gstevent.c:1579:gst_event_new_reconfigure: creating reconfigure event
0:00:04.403771174     7 0x563ec7be2460 INFO               GST_EVENT gstpad.c:5812:gst_pad_send_event_unchecked:<aravis0:src> Received event on flushing pad. Discarding
0:00:04.403790667     7 0x563ec7be2460 INFO        GST_ELEMENT_PADS gstutils.c:1771:gst_element_link_pads_full: trying to link element capsfilter0:src to element videoconvert0:(any)
0:00:04.403802578     7 0x563ec7be2460 INFO        GST_ELEMENT_PADS gstelement.c:915:gst_element_get_static_pad: found pad capsfilter0:src
0:00:04.403816076     7 0x563ec7be2460 INFO                GST_PADS gstutils.c:1034:gst_pad_check_link: trying to link capsfilter0:src and videoconvert0:sink
0:00:04.403835960     7 0x563ec7be2460 INFO                GST_PADS gstpad.c:4237:gst_pad_peer_query:<videoconvert0:src> pad has no peer
0:00:04.404730843     7 0x563ec7be2460 INFO                GST_PADS gstutils.c:1587:prepare_link_maybe_ghosting: capsfilter0 and videoconvert0 in same bin, no need for ghost pads
0:00:04.404745773     7 0x563ec7be2460 INFO                GST_PADS gstpad.c:2377:gst_pad_link_prepare: trying to link capsfilter0:src and videoconvert0:sink
0:00:04.404760239     7 0x563ec7be2460 INFO                GST_PADS gstpad.c:4237:gst_pad_peer_query:<videoconvert0:src> pad has no peer
0:00:04.405628358     7 0x563ec7be2460 INFO                GST_PADS gstpad.c:2585:gst_pad_link_full: linked capsfilter0:src and videoconvert0:sink, successful
0:00:04.405637418     7 0x563ec7be2460 INFO               GST_EVENT gstevent.c:1579:gst_event_new_reconfigure: creating reconfigure event
0:00:04.405644413     7 0x563ec7be2460 INFO               GST_EVENT gstpad.c:5812:gst_pad_send_event_unchecked:<capsfilter0:src> Received event on flushing pad. Discarding
0:00:04.405672048     7 0x563ec7be2460 INFO            GST_PIPELINE grammar.y:648:gst_parse_perform_link: linking some pad of GstVideoConvert named videoconvert0 to some pad of GstX264Enc named x264enc0 (0/0) with caps "(NULL)"
0:00:04.405683812     7 0x563ec7be2460 INFO        GST_ELEMENT_PADS gstutils.c:1771:gst_element_link_pads_full: trying to link element videoconvert0:(any) to element x264enc0:(any)
0:00:04.405693455     7 0x563ec7be2460 INFO                GST_PADS gstutils.c:1034:gst_pad_check_link: trying to link videoconvert0:src and x264enc0:sink
0:00:04.405802918     7 0x563ec7be2460 INFO                GST_PADS gstutils.c:1587:prepare_link_maybe_ghosting: videoconvert0 and x264enc0 in same bin, no need for ghost pads
0:00:04.405821918     7 0x563ec7be2460 INFO                GST_PADS gstpad.c:2377:gst_pad_link_prepare: trying to link videoconvert0:src and x264enc0:sink
0:00:04.405927904     7 0x563ec7be2460 INFO                GST_PADS gstpad.c:2585:gst_pad_link_full: linked videoconvert0:src and x264enc0:sink, successful
0:00:04.405936364     7 0x563ec7be2460 INFO               GST_EVENT gstevent.c:1579:gst_event_new_reconfigure: creating reconfigure event
0:00:04.405957722     7 0x563ec7be2460 INFO               GST_EVENT gstpad.c:5812:gst_pad_send_event_unchecked:<videoconvert0:src> Received event on flushing pad. Discarding
0:00:04.405976601     7 0x563ec7be2460 INFO            GST_PIPELINE grammar.y:648:gst_parse_perform_link: linking some pad of GstX264Enc named x264enc0 to some pad of GstRtpH264Pay named pay0 (0/0) with caps "video/x-h264, profile=(string)high"
0:00:04.405988526     7 0x563ec7be2460 INFO     GST_ELEMENT_FACTORY gstelementfactory.c:361:gst_element_factory_create: creating element "capsfilter"
0:00:04.406012161     7 0x563ec7be2460 INFO        GST_ELEMENT_PADS gstelement.c:668:gst_element_add_pad:<GstBaseTransform@0x7fb4b8542490> adding pad 'sink'
0:00:04.406033819     7 0x563ec7be2460 INFO        GST_ELEMENT_PADS gstelement.c:668:gst_element_add_pad:<GstBaseTransform@0x7fb4b8542490> adding pad 'src'
0:00:04.406050144     7 0x563ec7be2460 INFO              GST_STATES gstbin.c:2090:gst_bin_get_state_func:<bin0> getting state
0:00:04.406072432     7 0x563ec7be2460 INFO              GST_STATES gstelement.c:2675:gst_element_continue_state:<capsfilter1> completed state change to NULL
0:00:04.406085143     7 0x563ec7be2460 INFO               GST_EVENT gstevent.c:1579:gst_event_new_reconfigure: creating reconfigure event
0:00:04.406100444     7 0x563ec7be2460 INFO        GST_ELEMENT_PADS gstutils.c:1771:gst_element_link_pads_full: trying to link element x264enc0:(any) to element capsfilter1:sink
0:00:04.406112238     7 0x563ec7be2460 INFO        GST_ELEMENT_PADS gstelement.c:915:gst_element_get_static_pad: found pad capsfilter1:sink
0:00:04.406124367     7 0x563ec7be2460 INFO                GST_PADS gstutils.c:1587:prepare_link_maybe_ghosting: x264enc0 and capsfilter1 in same bin, no need for ghost pads
0:00:04.406140955     7 0x563ec7be2460 INFO                GST_PADS gstpad.c:2377:gst_pad_link_prepare: trying to link x264enc0:src and capsfilter1:sink
0:00:04.406154896     7 0x563ec7be2460 INFO                GST_PADS gstpad.c:4237:gst_pad_peer_query:<capsfilter1:src> pad has no peer
0:00:04.406173415     7 0x563ec7be2460 INFO                GST_PADS gstpad.c:2585:gst_pad_link_full: linked x264enc0:src and capsfilter1:sink, successful
0:00:04.406184466     7 0x563ec7be2460 INFO               GST_EVENT gstevent.c:1579:gst_event_new_reconfigure: creating reconfigure event
0:00:04.406193629     7 0x563ec7be2460 INFO               GST_EVENT gstpad.c:5812:gst_pad_send_event_unchecked:<x264enc0:src> Received event on flushing pad. Discarding
0:00:04.406205137     7 0x563ec7be2460 INFO        GST_ELEMENT_PADS gstutils.c:1771:gst_element_link_pads_full: trying to link element capsfilter1:src to element pay0:(any)
0:00:04.406212172     7 0x563ec7be2460 INFO        GST_ELEMENT_PADS gstelement.c:915:gst_element_get_static_pad: found pad capsfilter1:src
0:00:04.406220355     7 0x563ec7be2460 INFO                GST_PADS gstutils.c:1034:gst_pad_check_link: trying to link capsfilter1:src and pay0:sink
0:00:04.406236421     7 0x563ec7be2460 INFO                GST_PADS gstpad.c:4237:gst_pad_peer_query:<pay0:src> pad has no peer
0:00:04.406254610     7 0x563ec7be2460 INFO                GST_PADS gstutils.c:1587:prepare_link_maybe_ghosting: capsfilter1 and pay0 in same bin, no need for ghost pads
0:00:04.406270425     7 0x563ec7be2460 INFO                GST_PADS gstpad.c:2377:gst_pad_link_prepare: trying to link capsfilter1:src and pay0:sink
0:00:04.406291227     7 0x563ec7be2460 INFO                GST_PADS gstpad.c:4237:gst_pad_peer_query:<pay0:src> pad has no peer
0:00:04.406309559     7 0x563ec7be2460 INFO                GST_PADS gstpad.c:2585:gst_pad_link_full: linked capsfilter1:src and pay0:sink, successful
0:00:04.406321230     7 0x563ec7be2460 INFO               GST_EVENT gstevent.c:1579:gst_event_new_reconfigure: creating reconfigure event
0:00:04.406331647     7 0x563ec7be2460 INFO               GST_EVENT gstpad.c:5812:gst_pad_send_event_unchecked:<capsfilter1:src> Received event on flushing pad. Discarding
0:00:04.406427094     7 0x563ec7be2460 INFO           GST_PARENTAGE gstbin.c:4478:gst_bin_get_by_name: [bin0]: looking up child element pay0
0:00:04.406443706     7 0x563ec7be2460 INFO               rtspmedia rtsp-media.c:2066:gst_rtsp_media_collect_streams: found stream 0 with payloader 0x7fb4b853a0e0
0:00:04.406451481     7 0x563ec7be2460 INFO        GST_ELEMENT_PADS gstelement.c:915:gst_element_get_static_pad: found pad pay0:src
0:00:04.406517949     7 0x563ec7be2460 INFO                GST_PADS gstpad.c:2377:gst_pad_link_prepare: trying to link pay0:src and src_0:proxypad0
0:00:04.406529036     7 0x563ec7be2460 INFO                GST_PADS gstpad.c:2585:gst_pad_link_full: linked pay0:src and src_0:proxypad0, successful
0:00:04.406535199     7 0x563ec7be2460 INFO               GST_EVENT gstevent.c:1579:gst_event_new_reconfigure: creating reconfigure event
0:00:04.406541425     7 0x563ec7be2460 INFO               GST_EVENT gstpad.c:5812:gst_pad_send_event_unchecked:<pay0:src> Received event on flushing pad. Discarding
0:00:04.406558174     7 0x563ec7be2460 INFO        GST_ELEMENT_PADS gstelement.c:668:gst_element_add_pad:<bin0> adding pad 'src_0'
0:00:04.406611335     7 0x563ec7be2460 INFO           GST_PARENTAGE gstbin.c:4478:gst_bin_get_by_name: [bin0]: looking up child element dynpay0
0:00:04.406630330     7 0x563ec7be2460 INFO           GST_PARENTAGE gstbin.c:4478:gst_bin_get_by_name: [bin0]: looking up child element depay0
0:00:04.406644836     7 0x563ec7be2460 INFO           GST_PARENTAGE gstbin.c:4478:gst_bin_get_by_name: [bin0]: looking up child element pay1
0:00:04.406659253     7 0x563ec7be2460 INFO           GST_PARENTAGE gstbin.c:4478:gst_bin_get_by_name: [bin0]: looking up child element dynpay1
0:00:04.406673319     7 0x563ec7be2460 INFO           GST_PARENTAGE gstbin.c:4478:gst_bin_get_by_name: [bin0]: looking up child element depay1
0:00:04.406690478     7 0x563ec7be2460 INFO     GST_ELEMENT_FACTORY gstelementfactory.c:358:gst_element_factory_create: creating element "pipeline" named "media-pipeline"
0:00:04.406767700     7 0x563ec7be2460 INFO        rtspmediafactory rtsp-media-factory.c:1356:gst_rtsp_media_factory_construct: constructed media 0x7fb4b8546220 for url /test
0:00:04.406829339     7 0x563ec7be2460 INFO               rtspmedia rtsp-media.c:3571:gst_rtsp_media_prepare: preparing media 0x7fb4b8546220
0:00:04.406870636     7 0x7fb4b851e9e0 INFO          rtspthreadpool rtsp-thread-pool.c:329:do_loop: enter mainloop of thread 0x7fb4b8539020
0:00:04.407152754     7 0x563ec7be2460 INFO      GST_PLUGIN_LOADING gstplugin.c:902:_priv_gst_plugin_load_file_for_registry: plugin "/usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstrtpmanager.so" loaded
0:00:04.407164843     7 0x563ec7be2460 INFO     GST_ELEMENT_FACTORY gstelementfactory.c:361:gst_element_factory_create: creating element "rtpbin"
0:00:04.407518348     7 0x7fb4b851e9e0 INFO              rtspstream rtsp-stream.c:3691:gst_rtsp_stream_join_bin: stream 0x7fb4b854c300 joining bin as session 0
0:00:04.407536151     7 0x7fb4b851e9e0 INFO        GST_ELEMENT_PADS gstelement.c:912:gst_element_get_static_pad: no such pad 'send_rtp_sink_0' in element "rtpbin0"
0:00:04.407553792     7 0x7fb4b851e9e0 INFO     GST_ELEMENT_FACTORY gstelementfactory.c:361:gst_element_factory_create: creating element "rtpsession"
0:00:04.407804363     7 0x7fb4b851e9e0 INFO     GST_ELEMENT_FACTORY gstelementfactory.c:361:gst_element_factory_create: creating element "rtpssrcdemux"
0:00:04.407871567     7 0x7fb4b851e9e0 INFO        GST_ELEMENT_PADS gstelement.c:668:gst_element_add_pad:<GstRtpSsrcDemux@0x7fb4b83442a0> adding pad 'sink'
0:00:04.407893600     7 0x7fb4b851e9e0 INFO        GST_ELEMENT_PADS gstelement.c:668:gst_element_add_pad:<GstRtpSsrcDemux@0x7fb4b83442a0> adding pad 'rtcp_sink'
0:00:04.407909312     7 0x7fb4b851e9e0 INFO     GST_ELEMENT_FACTORY gstelementfactory.c:361:gst_element_factory_create: creating element "rtpstorage"
0:00:04.407973810     7 0x7fb4b851e9e0 INFO        GST_ELEMENT_PADS gstelement.c:668:gst_element_add_pad:<GstRtpStorage@0x7fb4b853d5a0> adding pad 'src'
0:00:04.407984774     7 0x7fb4b851e9e0 INFO        GST_ELEMENT_PADS gstelement.c:668:gst_element_add_pad:<GstRtpStorage@0x7fb4b853d5a0> adding pad 'sink'
0:00:04.408054688     7 0x7fb4b851e9e0 INFO              GST_STATES gstelement.c:2675:gst_element_continue_state:<rtpssrcdemux0> completed state change to NULL
0:00:04.408065989     7 0x7fb4b851e9e0 INFO              GST_STATES gstelement.c:2675:gst_element_continue_state:<rtpsession0> completed state change to NULL
0:00:04.408079878     7 0x7fb4b851e9e0 INFO              GST_STATES gstelement.c:2675:gst_element_continue_state:<rtpstorage0> completed state change to NULL
0:00:04.408092339     7 0x7fb4b851e9e0 INFO        GST_ELEMENT_PADS gstelement.c:912:gst_element_get_static_pad: no such pad 'send_rtp_sink' in element "rtpsession0"
0:00:04.408124125     7 0x7fb4b851e9e0 INFO        GST_ELEMENT_PADS gstelement.c:668:gst_element_add_pad:<rtpsession0> adding pad 'send_rtp_sink'
0:00:04.408150648     7 0x7fb4b851e9e0 INFO        GST_ELEMENT_PADS gstelement.c:668:gst_element_add_pad:<rtpsession0> adding pad 'send_rtp_src'
0:00:04.408164521     7 0x7fb4b851e9e0 INFO        GST_ELEMENT_PADS gstelement.c:915:gst_element_get_static_pad: found pad rtpsession0:send_rtp_src
0:00:04.408209072     7 0x7fb4b851e9e0 INFO                GST_PADS gstpad.c:2377:gst_pad_link_prepare: trying to link rtpsession0:send_rtp_src and send_rtp_src_0:proxypad1
0:00:04.408223931     7 0x7fb4b851e9e0 INFO                GST_PADS gstpad.c:2585:gst_pad_link_full: linked rtpsession0:send_rtp_src and send_rtp_src_0:proxypad1, successful
0:00:04.408234192     7 0x7fb4b851e9e0 INFO               GST_EVENT gstevent.c:1579:gst_event_new_reconfigure: creating reconfigure event
0:00:04.408254652     7 0x7fb4b851e9e0 INFO        GST_ELEMENT_PADS gstelement.c:668:gst_element_add_pad:<rtpbin0> adding pad 'send_rtp_src_0'
0:00:04.408284134     7 0x7fb4b851e9e0 INFO                GST_PADS gstpad.c:2377:gst_pad_link_prepare: trying to link send_rtp_sink_0:proxypad2 and rtpsession0:send_rtp_sink
0:00:04.408295952     7 0x7fb4b851e9e0 INFO                GST_PADS gstpad.c:2585:gst_pad_link_full: linked send_rtp_sink_0:proxypad2 and rtpsession0:send_rtp_sink, successful
0:00:04.408304057     7 0x7fb4b851e9e0 INFO               GST_EVENT gstevent.c:1579:gst_event_new_reconfigure: creating reconfigure event
0:00:04.408322952     7 0x7fb4b851e9e0 INFO        GST_ELEMENT_PADS gstelement.c:668:gst_element_add_pad:<rtpbin0> adding pad 'send_rtp_sink_0'
0:00:04.408342870     7 0x7fb4b851e9e0 INFO                GST_PADS gstpad.c:2377:gst_pad_link_prepare: trying to link bin0:src_0 and rtpbin0:send_rtp_sink_0
0:00:04.408371726     7 0x7fb4b851e9e0 INFO                GST_PADS gstpad.c:2585:gst_pad_link_full: linked bin0:src_0 and rtpbin0:send_rtp_sink_0, successful
0:00:04.408382190     7 0x7fb4b851e9e0 INFO               GST_EVENT gstevent.c:1579:gst_event_new_reconfigure: creating reconfigure event
0:00:04.408395076     7 0x7fb4b851e9e0 INFO               GST_EVENT gstpad.c:5812:gst_pad_send_event_unchecked:<pay0:src> Received event on flushing pad. Discarding
0:00:04.408411975     7 0x7fb4b851e9e0 INFO        GST_ELEMENT_PADS gstelement.c:915:gst_element_get_static_pad: found pad rtpbin0:send_rtp_src_0
0:00:04.408425970     7 0x7fb4b851e9e0 INFO        GST_ELEMENT_PADS gstelement.c:912:gst_element_get_static_pad: no such pad 'send_rtcp_src_0' in element "rtpbin0"
0:00:04.408438203     7 0x7fb4b851e9e0 INFO        GST_ELEMENT_PADS gstelement.c:912:gst_element_get_static_pad: no such pad 'send_rtcp_src' in element "rtpsession0"
0:00:04.408458630     7 0x7fb4b851e9e0 INFO        GST_ELEMENT_PADS gstelement.c:668:gst_element_add_pad:<rtpsession0> adding pad 'send_rtcp_src'
0:00:04.408488466     7 0x7fb4b851e9e0 INFO                GST_PADS gstpad.c:2377:gst_pad_link_prepare: trying to link rtpsession0:send_rtcp_src and send_rtcp_src_0:proxypad3
0:00:04.408498037     7 0x7fb4b851e9e0 INFO                GST_PADS gstpad.c:2585:gst_pad_link_full: linked rtpsession0:send_rtcp_src and send_rtcp_src_0:proxypad3, successful
0:00:04.408504193     7 0x7fb4b851e9e0 INFO               GST_EVENT gstevent.c:1579:gst_event_new_reconfigure: creating reconfigure event
0:00:04.408520843     7 0x7fb4b851e9e0 INFO        GST_ELEMENT_PADS gstelement.c:668:gst_element_add_pad:<rtpbin0> adding pad 'send_rtcp_src_0'
0:00:04.408535253     7 0x7fb4b851e9e0 INFO        GST_ELEMENT_PADS gstelement.c:912:gst_element_get_static_pad: no such pad 'recv_rtcp_sink_0' in element "rtpbin0"
0:00:04.408549343     7 0x7fb4b851e9e0 INFO        GST_ELEMENT_PADS gstelement.c:912:gst_element_get_static_pad: no such pad 'recv_rtcp_sink' in element "rtpsession0"
0:00:04.408581843     7 0x7fb4b851e9e0 INFO        GST_ELEMENT_PADS gstelement.c:668:gst_element_add_pad:<rtpsession0> adding pad 'recv_rtcp_sink'
0:00:04.408598852     7 0x7fb4b851e9e0 INFO        GST_ELEMENT_PADS gstelement.c:668:gst_element_add_pad:<rtpsession0> adding pad 'sync_src'
0:00:04.408611611     7 0x7fb4b851e9e0 INFO        GST_ELEMENT_PADS gstelement.c:915:gst_element_get_static_pad: found pad rtpsession0:sync_src
0:00:04.408621005     7 0x7fb4b851e9e0 INFO        GST_ELEMENT_PADS gstelement.c:915:gst_element_get_static_pad: found pad rtpssrcdemux0:rtcp_sink
0:00:04.408637652     7 0x7fb4b851e9e0 INFO                GST_PADS gstpad.c:2377:gst_pad_link_prepare: trying to link rtpsession0:sync_src and rtpssrcdemux0:rtcp_sink
0:00:04.408649939     7 0x7fb4b851e9e0 INFO                GST_PADS gstpad.c:2585:gst_pad_link_full: linked rtpsession0:sync_src and rtpssrcdemux0:rtcp_sink, successful
0:00:04.408656985     7 0x7fb4b851e9e0 INFO               GST_EVENT gstevent.c:1579:gst_event_new_reconfigure: creating reconfigure event
0:00:04.408689936     7 0x7fb4b851e9e0 INFO                GST_PADS gstpad.c:2377:gst_pad_link_prepare: trying to link recv_rtcp_sink_0:proxypad4 and rtpsession0:recv_rtcp_sink
0:00:04.408699515     7 0x7fb4b851e9e0 INFO                GST_PADS gstpad.c:2585:gst_pad_link_full: linked recv_rtcp_sink_0:proxypad4 and rtpsession0:recv_rtcp_sink, successful
0:00:04.408706709     7 0x7fb4b851e9e0 INFO               GST_EVENT gstevent.c:1579:gst_event_new_reconfigure: creating reconfigure event
0:00:04.408723864     7 0x7fb4b851e9e0 INFO        GST_ELEMENT_PADS gstelement.c:668:gst_element_add_pad:<rtpbin0> adding pad 'recv_rtcp_sink_0'
0:00:04.408762740     7 0x7fb4b851e9e0 INFO               rtspmedia rtsp-media.c:3218:start_preroll: setting pipeline to PAUSED for media 0x7fb4b8546220
0:00:04.408780905     7 0x7fb4b851e9e0 INFO               rtspmedia rtsp-media.c:2904:set_target_state: set target state to PAUSED for media 0x7fb4b8546220
0:00:04.408793093     7 0x7fb4b851e9e0 INFO               rtspmedia rtsp-media.c:2891:set_state: set state to PAUSED for media 0x7fb4b8546220
0:00:04.408824481     7 0x7fb4b851e9e0 INFO              GST_STATES gstbin.c:2503:gst_bin_element_set_state:<rtpbin0> current NULL pending VOID_PENDING, desired next READY
0:00:04.408855547     7 0x7fb4b851e9e0 INFO              GST_STATES gstbin.c:2503:gst_bin_element_set_state:<rtpstorage0> current NULL pending VOID_PENDING, desired next READY
0:00:04.408868759     7 0x7fb4b851e9e0 INFO              GST_STATES gstelement.c:2675:gst_element_continue_state:<rtpstorage0> completed state change to READY
0:00:04.408881303     7 0x7fb4b851e9e0 INFO              GST_STATES gstelement.c:2575:_priv_gst_element_state_changed:<rtpstorage0> notifying about state-changed NULL to READY (VOID_PENDING pending)
0:00:04.408904052     7 0x7fb4b851e9e0 INFO              GST_STATES gstbin.c:2952:gst_bin_change_state_func:<rtpbin0> child 'rtpstorage0' changed state to 2(READY) successfully
0:00:04.408914486     7 0x7fb4b851e9e0 INFO              GST_STATES gstbin.c:2503:gst_bin_element_set_state:<rtpssrcdemux0> current NULL pending VOID_PENDING, desired next READY
0:00:04.408924433     7 0x7fb4b851e9e0 INFO              GST_STATES gstelement.c:2675:gst_element_continue_state:<rtpssrcdemux0> completed state change to READY
0:00:04.408936447     7 0x7fb4b851e9e0 INFO              GST_STATES gstelement.c:2575:_priv_gst_element_state_changed:<rtpssrcdemux0> notifying about state-changed NULL to READY (VOID_PENDING pending)
0:00:04.408947435     7 0x7fb4b851e9e0 INFO              GST_STATES gstbin.c:2952:gst_bin_change_state_func:<rtpbin0> child 'rtpssrcdemux0' changed state to 2(READY) successfully
0:00:04.408956083     7 0x7fb4b851e9e0 INFO              GST_STATES gstbin.c:2503:gst_bin_element_set_state:<rtpsession0> current NULL pending VOID_PENDING, desired next READY
0:00:04.408966300     7 0x7fb4b851e9e0 INFO              GST_STATES gstelement.c:2675:gst_element_continue_state:<rtpsession0> completed state change to READY
0:00:04.408975776     7 0x7fb4b851e9e0 INFO              GST_STATES gstelement.c:2575:_priv_gst_element_state_changed:<rtpsession0> notifying about state-changed NULL to READY (VOID_PENDING pending)
0:00:04.408986704     7 0x7fb4b851e9e0 INFO              GST_STATES gstbin.c:2952:gst_bin_change_state_func:<rtpbin0> child 'rtpsession0' changed state to 2(READY) successfully
0:00:04.409000102     7 0x7fb4b851e9e0 INFO              GST_STATES gstelement.c:2675:gst_element_continue_state:<rtpbin0> completed state change to READY
0:00:04.409011573     7 0x7fb4b851e9e0 INFO              GST_STATES gstelement.c:2575:_priv_gst_element_state_changed:<rtpbin0> notifying about state-changed NULL to READY (VOID_PENDING pending)
0:00:04.409026418     7 0x7fb4b851e9e0 INFO              GST_STATES gstbin.c:2952:gst_bin_change_state_func:<media-pipeline> child 'rtpbin0' changed state to 2(READY) successfully
0:00:04.409043779     7 0x7fb4b851e9e0 INFO              GST_STATES gstbin.c:2503:gst_bin_element_set_state:<bin0> current NULL pending VOID_PENDING, desired next READY
0:00:04.409073433     7 0x7fb4b851e9e0 INFO              GST_STATES gstbin.c:2503:gst_bin_element_set_state:<pay0> current NULL pending VOID_PENDING, desired next READY
0:00:04.409085842     7 0x7fb4b851e9e0 INFO              GST_STATES gstelement.c:2675:gst_element_continue_state:<pay0> completed state change to READY
0:00:04.409095768     7 0x7fb4b851e9e0 INFO              GST_STATES gstelement.c:2575:_priv_gst_element_state_changed:<pay0> notifying about state-changed NULL to READY (VOID_PENDING pending)
0:00:04.409108446     7 0x7fb4b851e9e0 INFO              GST_STATES gstbin.c:2952:gst_bin_change_state_func:<bin0> child 'pay0' changed state to 2(READY) successfully
0:00:04.409117243     7 0x7fb4b851e9e0 INFO              GST_STATES gstbin.c:2503:gst_bin_element_set_state:<capsfilter1> current NULL pending VOID_PENDING, desired next READY
0:00:04.409128007     7 0x7fb4b851e9e0 INFO              GST_STATES gstelement.c:2675:gst_element_continue_state:<capsfilter1> completed state change to READY
0:00:04.409138569     7 0x7fb4b851e9e0 INFO              GST_STATES gstelement.c:2575:_priv_gst_element_state_changed:<capsfilter1> notifying about state-changed NULL to READY (VOID_PENDING pending)
0:00:04.409148030     7 0x7fb4b851e9e0 INFO              GST_STATES gstbin.c:2952:gst_bin_change_state_func:<bin0> child 'capsfilter1' changed state to 2(READY) successfully
0:00:04.409156710     7 0x7fb4b851e9e0 INFO              GST_STATES gstbin.c:2503:gst_bin_element_set_state:<x264enc0> current NULL pending VOID_PENDING, desired next READY
0:00:04.409164923     7 0x7fb4b851e9e0 INFO              GST_STATES gstelement.c:2675:gst_element_continue_state:<x264enc0> completed state change to READY
0:00:04.409171545     7 0x7fb4b851e9e0 INFO              GST_STATES gstelement.c:2575:_priv_gst_element_state_changed:<x264enc0> notifying about state-changed NULL to READY (VOID_PENDING pending)
0:00:04.409183829     7 0x7fb4b851e9e0 INFO              GST_STATES gstbin.c:2952:gst_bin_change_state_func:<bin0> child 'x264enc0' changed state to 2(READY) successfully
0:00:04.409195389     7 0x7fb4b851e9e0 INFO              GST_STATES gstbin.c:2503:gst_bin_element_set_state:<videoconvert0> current NULL pending VOID_PENDING, desired next READY
0:00:04.409206714     7 0x7fb4b851e9e0 INFO              GST_STATES gstelement.c:2675:gst_element_continue_state:<videoconvert0> completed state change to READY
0:00:04.409217103     7 0x7fb4b851e9e0 INFO              GST_STATES gstelement.c:2575:_priv_gst_element_state_changed:<videoconvert0> notifying about state-changed NULL to READY (VOID_PENDING pending)
0:00:04.409232050     7 0x7fb4b851e9e0 INFO              GST_STATES gstbin.c:2952:gst_bin_change_state_func:<bin0> child 'videoconvert0' changed state to 2(READY) successfully
0:00:04.409243605     7 0x7fb4b851e9e0 INFO              GST_STATES gstbin.c:2503:gst_bin_element_set_state:<capsfilter0> current NULL pending VOID_PENDING, desired next READY
0:00:04.409256692     7 0x7fb4b851e9e0 INFO              GST_STATES gstelement.c:2675:gst_element_continue_state:<capsfilter0> completed state change to READY
0:00:04.409267444     7 0x7fb4b851e9e0 INFO              GST_STATES gstelement.c:2575:_priv_gst_element_state_changed:<capsfilter0> notifying about state-changed NULL to READY (VOID_PENDING pending)
0:00:04.409285833     7 0x7fb4b851e9e0 INFO              GST_STATES gstbin.c:2952:gst_bin_change_state_func:<bin0> child 'capsfilter0' changed state to 2(READY) successfully
0:00:04.409298904     7 0x7fb4b851e9e0 INFO              GST_STATES gstbin.c:2503:gst_bin_element_set_state:<aravis0> current NULL pending VOID_PENDING, desired next READY
0:00:04.409310494     7 0x7fb4b851e9e0 INFO              GST_STATES gstelement.c:2675:gst_element_continue_state:<aravis0> completed state change to READY
0:00:04.409320840     7 0x7fb4b851e9e0 INFO              GST_STATES gstelement.c:2575:_priv_gst_element_state_changed:<aravis0> notifying about state-changed NULL to READY (VOID_PENDING pending)
0:00:04.409335909     7 0x7fb4b851e9e0 INFO              GST_STATES gstbin.c:2952:gst_bin_change_state_func:<bin0> child 'aravis0' changed state to 2(READY) successfully
0:00:04.409348442     7 0x7fb4b851e9e0 INFO              GST_STATES gstelement.c:2675:gst_element_continue_state:<bin0> completed state change to READY
0:00:04.409361633     7 0x7fb4b851e9e0 INFO              GST_STATES gstelement.c:2575:_priv_gst_element_state_changed:<bin0> notifying about state-changed NULL to READY (VOID_PENDING pending)
0:00:04.409376246     7 0x7fb4b851e9e0 INFO              GST_STATES gstbin.c:2952:gst_bin_change_state_func:<media-pipeline> child 'bin0' changed state to 2(READY) successfully
0:00:04.409391096     7 0x7fb4b851e9e0 INFO              GST_STATES gstelement.c:2647:gst_element_continue_state:<media-pipeline> committing state from NULL to READY, pending PAUSED, next PAUSED
0:00:04.409403364     7 0x7fb4b851e9e0 INFO              GST_STATES gstelement.c:2575:_priv_gst_element_state_changed:<media-pipeline> notifying about state-changed NULL to READY (PAUSED pending)
0:00:04.409418312     7 0x7fb4b851e9e0 INFO              GST_STATES gstelement.c:2655:gst_element_continue_state:<media-pipeline> continue state change READY to PAUSED, final PAUSED
0:00:04.409438017     7 0x7fb4b851e9e0 INFO              GST_STATES gstbin.c:2503:gst_bin_element_set_state:<rtpbin0> current READY pending VOID_PENDING, desired next PAUSED
0:00:04.409460351     7 0x7fb4b851e9e0 INFO              GST_STATES gstbin.c:2503:gst_bin_element_set_state:<rtpstorage0> current READY pending VOID_PENDING, desired next PAUSED
0:00:04.409477089     7 0x7fb4b851e9e0 INFO              GST_STATES gstelement.c:2675:gst_element_continue_state:<rtpstorage0> completed state change to PAUSED
0:00:04.409488701     7 0x7fb4b851e9e0 INFO              GST_STATES gstelement.c:2575:_priv_gst_element_state_changed:<rtpstorage0> notifying about state-changed READY to PAUSED (VOID_PENDING pending)
0:00:04.409503052     7 0x7fb4b851e9e0 INFO              GST_STATES gstbin.c:2952:gst_bin_change_state_func:<rtpbin0> child 'rtpstorage0' changed state to 3(PAUSED) successfully
0:00:04.409517729     7 0x7fb4b851e9e0 INFO              GST_STATES gstbin.c:2503:gst_bin_element_set_state:<rtpssrcdemux0> current READY pending VOID_PENDING, desired next PAUSED
0:00:04.409534132     7 0x7fb4b851e9e0 INFO              GST_STATES gstelement.c:2675:gst_element_continue_state:<rtpssrcdemux0> completed state change to PAUSED
0:00:04.409545988     7 0x7fb4b851e9e0 INFO              GST_STATES gstelement.c:2575:_priv_gst_element_state_changed:<rtpssrcdemux0> notifying about state-changed READY to PAUSED (VOID_PENDING pending)
0:00:04.409562465     7 0x7fb4b851e9e0 INFO              GST_STATES gstbin.c:2952:gst_bin_change_state_func:<rtpbin0> child 'rtpssrcdemux0' changed state to 3(PAUSED) successfully
0:00:04.409576310     7 0x7fb4b851e9e0 INFO              GST_STATES gstbin.c:2503:gst_bin_element_set_state:<rtpsession0> current READY pending VOID_PENDING, desired next PAUSED
0:00:04.409586663     7 0x7fb4b851e9e0 INFO              GST_STATES gstelement.c:2675:gst_element_continue_state:<rtpsession0> completed state change to PAUSED
0:00:04.409595162     7 0x7fb4b851e9e0 INFO              GST_STATES gstelement.c:2575:_priv_gst_element_state_changed:<rtpsession0> notifying about state-changed READY to PAUSED (VOID_PENDING pending)
0:00:04.409610327     7 0x7fb4b851e9e0 INFO              GST_STATES gstbin.c:2952:gst_bin_change_state_func:<rtpbin0> child 'rtpsession0' changed state to 3(PAUSED) successfully
0:00:04.409625994     7 0x7fb4b851e9e0 INFO              GST_STATES gstelement.c:2675:gst_element_continue_state:<rtpbin0> completed state change to PAUSED
0:00:04.409638490     7 0x7fb4b851e9e0 INFO              GST_STATES gstelement.c:2575:_priv_gst_element_state_changed:<rtpbin0> notifying about state-changed READY to PAUSED (VOID_PENDING pending)
0:00:04.409653856     7 0x7fb4b851e9e0 INFO              GST_STATES gstbin.c:2952:gst_bin_change_state_func:<media-pipeline> child 'rtpbin0' changed state to 3(PAUSED) successfully
0:00:04.409667480     7 0x7fb4b851e9e0 INFO              GST_STATES gstbin.c:2503:gst_bin_element_set_state:<bin0> current READY pending VOID_PENDING, desired next PAUSED
0:00:04.409691824     7 0x7fb4b851e9e0 INFO              GST_STATES gstbin.c:2503:gst_bin_element_set_state:<pay0> current READY pending VOID_PENDING, desired next PAUSED
0:00:04.409713760     7 0x7fb4b851e9e0 INFO              GST_STATES gstelement.c:2675:gst_element_continue_state:<pay0> completed state change to PAUSED
0:00:04.409730015     7 0x7fb4b851e9e0 INFO              GST_STATES gstelement.c:2575:_priv_gst_element_state_changed:<pay0> notifying about state-changed READY to PAUSED (VOID_PENDING pending)
0:00:04.409746347     7 0x7fb4b851e9e0 INFO              GST_STATES gstbin.c:2952:gst_bin_change_state_func:<bin0> child 'pay0' changed state to 3(PAUSED) successfully
0:00:04.409761559     7 0x7fb4b851e9e0 INFO              GST_STATES gstbin.c:2503:gst_bin_element_set_state:<capsfilter1> current READY pending VOID_PENDING, desired next PAUSED
0:00:04.409779043     7 0x7fb4b851e9e0 INFO              GST_STATES gstelement.c:2675:gst_element_continue_state:<capsfilter1> completed state change to PAUSED
0:00:04.409787849     7 0x7fb4b851e9e0 INFO              GST_STATES gstelement.c:2575:_priv_gst_element_state_changed:<capsfilter1> notifying about state-changed READY to PAUSED (VOID_PENDING pending)
0:00:04.409801143     7 0x7fb4b851e9e0 INFO              GST_STATES gstbin.c:2952:gst_bin_change_state_func:<bin0> child 'capsfilter1' changed state to 3(PAUSED) successfully
0:00:04.409811084     7 0x7fb4b851e9e0 INFO              GST_STATES gstbin.c:2503:gst_bin_element_set_state:<x264enc0> current READY pending VOID_PENDING, desired next PAUSED
0:00:04.409826268     7 0x7fb4b851e9e0 INFO              GST_STATES gstelement.c:2675:gst_element_continue_state:<x264enc0> completed state change to PAUSED
0:00:04.409834345     7 0x7fb4b851e9e0 INFO              GST_STATES gstelement.c:2575:_priv_gst_element_state_changed:<x264enc0> notifying about state-changed READY to PAUSED (VOID_PENDING pending)
0:00:04.409847766     7 0x7fb4b851e9e0 INFO              GST_STATES gstbin.c:2952:gst_bin_change_state_func:<bin0> child 'x264enc0' changed state to 3(PAUSED) successfully
0:00:04.409858230     7 0x7fb4b851e9e0 INFO              GST_STATES gstbin.c:2503:gst_bin_element_set_state:<videoconvert0> current READY pending VOID_PENDING, desired next PAUSED
0:00:04.409874082     7 0x7fb4b851e9e0 INFO              GST_STATES gstelement.c:2675:gst_element_continue_state:<videoconvert0> completed state change to PAUSED
0:00:04.409885690     7 0x7fb4b851e9e0 INFO              GST_STATES gstelement.c:2575:_priv_gst_element_state_changed:<videoconvert0> notifying about state-changed READY to PAUSED (VOID_PENDING pending)
0:00:04.409902531     7 0x7fb4b851e9e0 INFO              GST_STATES gstbin.c:2952:gst_bin_change_state_func:<bin0> child 'videoconvert0' changed state to 3(PAUSED) successfully
0:00:04.409917262     7 0x7fb4b851e9e0 INFO              GST_STATES gstbin.c:2503:gst_bin_element_set_state:<capsfilter0> current READY pending VOID_PENDING, desired next PAUSED
0:00:04.409934949     7 0x7fb4b851e9e0 INFO              GST_STATES gstelement.c:2675:gst_element_continue_state:<capsfilter0> completed state change to PAUSED
0:00:04.409946530     7 0x7fb4b851e9e0 INFO              GST_STATES gstelement.c:2575:_priv_gst_element_state_changed:<capsfilter0> notifying about state-changed READY to PAUSED (VOID_PENDING pending)
0:00:04.409958352     7 0x7fb4b851e9e0 INFO              GST_STATES gstbin.c:2952:gst_bin_change_state_func:<bin0> child 'capsfilter0' changed state to 3(PAUSED) successfully
0:00:04.409970136     7 0x7fb4b851e9e0 INFO              GST_STATES gstbin.c:2503:gst_bin_element_set_state:<aravis0> current READY pending VOID_PENDING, desired next PAUSED
0:00:04.728443272     7 0x7fb4b851e9e0 INFO                 basesrc gstbasesrc.c:1373:gst_base_src_do_seek:<aravis0> seeking: 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:04.728517143     7 0x7fb4b851e9e0 INFO                    task gsttask.c:453:gst_task_set_lock: setting stream lock 0x7fb4b80240b0 on task 0x7fb4b853d710
0:00:04.728546602     7 0x7fb4b851e9e0 INFO                GST_PADS gstpad.c:6159:gst_pad_start_task:<aravis0:src> created task 0x7fb4b853d710
0:00:04.728771817     7 0x7fb4b851e9e0 INFO              GST_STATES gstelement.c:2675:gst_element_continue_state:<aravis0> completed state change to PAUSED
0:00:04.728817295     7 0x7fb4b851e9e0 INFO              GST_STATES gstelement.c:2575:_priv_gst_element_state_changed:<aravis0> notifying about state-changed READY to PAUSED (VOID_PENDING pending)
0:00:04.728871254     7 0x7fb4b851e9e0 INFO              GST_STATES gstbin.c:2995:gst_bin_change_state_func:<bin0> child 'aravis0' changed state to 3(PAUSED) successfully without preroll
0:00:04.728922225     7 0x7fb4b851e9e0 INFO              GST_STATES gstelement.c:2675:gst_element_continue_state:<bin0> completed state change to PAUSED
0:00:04.728916218     7 0x7fb4a800e640 INFO        GST_ELEMENT_PADS gstelement.c:912:gst_element_get_static_pad: no such pad 'sink' in element "aravis0"
0:00:04.728953452     7 0x7fb4b851e9e0 INFO              GST_STATES gstelement.c:2575:_priv_gst_element_state_changed:<bin0> notifying about state-changed READY to PAUSED (VOID_PENDING pending)
0:00:04.729022474     7 0x7fb4a800e640 FIXME                default gstutils.c:3980:gst_pad_create_stream_id_internal:<aravis0:src> Creating random stream-id, consider implementing a deterministic way of creating a stream-id
0:00:04.729080477     7 0x7fb4b851e9e0 INFO              GST_STATES gstbin.c:2995:gst_bin_change_state_func:<media-pipeline> child 'bin0' changed state to 3(PAUSED) successfully without preroll
0:00:04.729130828     7 0x7fb4b851e9e0 INFO              GST_STATES gstelement.c:2675:gst_element_continue_state:<media-pipeline> completed state change to PAUSED
0:00:04.729161351     7 0x7fb4b851e9e0 INFO              GST_STATES gstelement.c:2575:_priv_gst_element_state_changed:<media-pipeline> notifying about state-changed READY to PAUSED (VOID_PENDING pending)
0:00:04.729210926     7 0x7fb4b851e9e0 INFO               rtspmedia rtsp-media.c:3233:start_preroll: NO_PREROLL state change: live media 0x7fb4b8546220
0:00:04.729235850     7 0x7fb4b851e9e0 INFO               rtspmedia rtsp-media.c:2891:set_state: set state to PLAYING for media 0x7fb4b8546220
0:00:04.729380160     7 0x7fb4b851e9e0 INFO               GST_EVENT gstevent.c:1449:gst_event_new_latency: creating latency event 0:00:00.000000000
0:00:04.729432362     7 0x7fb4b851e9e0 INFO                     bin gstbin.c:2783:gst_bin_do_latency_func:<media-pipeline> configured latency of 0:00:00.000000000
0:00:04.729522929     7 0x7fb4b851e9e0 INFO              GST_STATES gstbin.c:2503:gst_bin_element_set_state:<rtpbin0> current PAUSED pending VOID_PENDING, desired next PLAYING
0:00:04.729582398     7 0x7fb4b851e9e0 INFO              GST_STATES gstbin.c:2503:gst_bin_element_set_state:<rtpstorage0> current PAUSED pending VOID_PENDING, desired next PLAYING
0:00:04.729621244     7 0x7fb4b851e9e0 INFO              GST_STATES gstelement.c:2675:gst_element_continue_state:<rtpstorage0> completed state change to PLAYING
0:00:04.729655404     7 0x7fb4b851e9e0 INFO              GST_STATES gstelement.c:2575:_priv_gst_element_state_changed:<rtpstorage0> notifying about state-changed PAUSED to PLAYING (VOID_PENDING pending)
0:00:04.729692996     7 0x7fb4a800e640 INFO                 x264enc gstx264enc.c:225:gst_x264_enc_add_x264_chroma_format: 8-bit depth supported
0:00:04.729708464     7 0x7fb4b851e9e0 INFO              GST_STATES gstbin.c:2952:gst_bin_change_state_func:<rtpbin0> child 'rtpstorage0' changed state to 4(PLAYING) successfully
0:00:04.729749594     7 0x7fb4a800e640 INFO                 x264enc gstx264enc.c:250:gst_x264_enc_add_x264_chroma_format: 10-bit depth supported
0:00:04.729807506     7 0x7fb4b851e9e0 INFO              GST_STATES gstbin.c:2503:gst_bin_element_set_state:<rtpssrcdemux0> current PAUSED pending VOID_PENDING, desired next PLAYING
0:00:04.729833907     7 0x7fb4a800e640 INFO                 x264enc gstx264enc.c:225:gst_x264_enc_add_x264_chroma_format: 8-bit depth supported
0:00:04.729848759     7 0x7fb4b851e9e0 INFO              GST_STATES gstelement.c:2675:gst_element_continue_state:<rtpssrcdemux0> completed state change to PLAYING
0:00:04.729891310     7 0x7fb4a800e640 INFO                 x264enc gstx264enc.c:250:gst_x264_enc_add_x264_chroma_format: 10-bit depth supported
0:00:04.729964410     7 0x7fb4b851e9e0 INFO              GST_STATES gstelement.c:2575:_priv_gst_element_state_changed:<rtpssrcdemux0> notifying about state-changed PAUSED to PLAYING (VOID_PENDING pending)
0:00:04.730064934     7 0x7fb4b851e9e0 INFO              GST_STATES gstbin.c:2952:gst_bin_change_state_func:<rtpbin0> child 'rtpssrcdemux0' changed state to 4(PLAYING) successfully
0:00:04.730111541     7 0x7fb4b851e9e0 INFO              GST_STATES gstbin.c:2503:gst_bin_element_set_state:<rtpsession0> current PAUSED pending VOID_PENDING, desired next PLAYING
0:00:04.730265095     7 0x7fb4b851e9e0 INFO              GST_STATES gstelement.c:2675:gst_element_continue_state:<rtpsession0> completed state change to PLAYING
0:00:04.730306092     7 0x7fb4b851e9e0 INFO              GST_STATES gstelement.c:2575:_priv_gst_element_state_changed:<rtpsession0> notifying about state-changed PAUSED to PLAYING (VOID_PENDING pending)
0:00:04.730369811     7 0x7fb4b851e9e0 INFO              GST_STATES gstbin.c:2952:gst_bin_change_state_func:<rtpbin0> child 'rtpsession0' changed state to 4(PLAYING) successfully
0:00:04.730415755     7 0x7fb4b851e9e0 INFO              GST_STATES gstelement.c:2675:gst_element_continue_state:<rtpbin0> completed state change to PLAYING
0:00:04.730457015     7 0x7fb4b851e9e0 INFO              GST_STATES gstelement.c:2575:_priv_gst_element_state_changed:<rtpbin0> notifying about state-changed PAUSED to PLAYING (VOID_PENDING pending)
0:00:04.730515994     7 0x7fb4b851e9e0 INFO              GST_STATES gstbin.c:2952:gst_bin_change_state_func:<media-pipeline> child 'rtpbin0' changed state to 4(PLAYING) successfully
0:00:04.730588305     7 0x7fb4b851e9e0 INFO              GST_STATES gstbin.c:2503:gst_bin_element_set_state:<pay0> current PAUSED pending VOID_PENDING, desired next PLAYING
0:00:04.730625799     7 0x7fb4b851e9e0 INFO              GST_STATES gstelement.c:2675:gst_element_continue_state:<pay0> completed state change to PLAYING
0:00:04.730669001     7 0x7fb4b851e9e0 INFO              GST_STATES gstelement.c:2575:_priv_gst_element_state_changed:<pay0> notifying about state-changed PAUSED to PLAYING (VOID_PENDING pending)
0:00:04.730746148     7 0x7fb4b851e9e0 INFO              GST_STATES gstbin.c:2952:gst_bin_change_state_func:<bin0> child 'pay0' changed state to 4(PLAYING) successfully
0:00:04.730794002     7 0x7fb4b851e9e0 INFO              GST_STATES gstbin.c:2503:gst_bin_element_set_state:<capsfilter1> current PAUSED pending VOID_PENDING, desired next PLAYING
0:00:04.730831245     7 0x7fb4b851e9e0 INFO              GST_STATES gstelement.c:2675:gst_element_continue_state:<capsfilter1> completed state change to PLAYING
0:00:04.730866150     7 0x7fb4b851e9e0 INFO              GST_STATES gstelement.c:2575:_priv_gst_element_state_changed:<capsfilter1> notifying about state-changed PAUSED to PLAYING (VOID_PENDING pending)
0:00:04.730911325     7 0x7fb4b851e9e0 INFO              GST_STATES gstbin.c:2952:gst_bin_change_state_func:<bin0> child 'capsfilter1' changed state to 4(PLAYING) successfully
0:00:04.730955057     7 0x7fb4b851e9e0 INFO              GST_STATES gstbin.c:2503:gst_bin_element_set_state:<x264enc0> current PAUSED pending VOID_PENDING, desired next PLAYING
0:00:04.730993809     7 0x7fb4b851e9e0 INFO              GST_STATES gstelement.c:2675:gst_element_continue_state:<x264enc0> completed state change to PLAYING
0:00:04.731025183     7 0x7fb4b851e9e0 INFO              GST_STATES gstelement.c:2575:_priv_gst_element_state_changed:<x264enc0> notifying about state-changed PAUSED to PLAYING (VOID_PENDING pending)
0:00:04.731072971     7 0x7fb4b851e9e0 INFO              GST_STATES gstbin.c:2952:gst_bin_change_state_func:<bin0> child 'x264enc0' changed state to 4(PLAYING) successfully
0:00:04.731113185     7 0x7fb4b851e9e0 INFO              GST_STATES gstbin.c:2503:gst_bin_element_set_state:<videoconvert0> current PAUSED pending VOID_PENDING, desired next PLAYING
0:00:04.731148699     7 0x7fb4b851e9e0 INFO              GST_STATES gstelement.c:2675:gst_element_continue_state:<videoconvert0> completed state change to PLAYING
0:00:04.731177003     7 0x7fb4b851e9e0 INFO              GST_STATES gstelement.c:2575:_priv_gst_element_state_changed:<videoconvert0> notifying about state-changed PAUSED to PLAYING (VOID_PENDING pending)
0:00:04.731225302     7 0x7fb4b851e9e0 INFO              GST_STATES gstbin.c:2952:gst_bin_change_state_func:<bin0> child 'videoconvert0' changed state to 4(PLAYING) successfully
0:00:04.749514249     7 0x7fb4b851e9e0 INFO              GST_STATES gstbin.c:2503:gst_bin_element_set_state:<capsfilter0> current PAUSED pending VOID_PENDING, desired next PLAYING
0:00:04.749557232     7 0x7fb4b851e9e0 INFO              GST_STATES gstelement.c:2675:gst_element_continue_state:<capsfilter0> completed state change to PLAYING
0:00:04.749582061     7 0x7fb4b851e9e0 INFO              GST_STATES gstelement.c:2575:_priv_gst_element_state_changed:<capsfilter0> notifying about state-changed PAUSED to PLAYING (VOID_PENDING pending)
0:00:04.749632288     7 0x7fb4b851e9e0 INFO              GST_STATES gstbin.c:2952:gst_bin_change_state_func:<bin0> child 'capsfilter0' changed state to 4(PLAYING) successfully
0:00:04.979013066     7 0x7fb4a800e640 INFO               GST_EVENT gstevent.c:820:gst_event_new_caps: creating caps event video/x-raw, format=(string)RGB, width=(int)1024, height=(int)764, framerate=(fraction)10/1
0:00:04.979054475     7 0x7fb4b851e9e0 INFO              GST_STATES gstelement.c:2675:gst_element_continue_state:<aravis0> completed state change to PLAYING
0:00:04.979114433     7 0x7fb4b851e9e0 INFO              GST_STATES gstelement.c:2575:_priv_gst_element_state_changed:<aravis0> notifying about state-changed PAUSED to PLAYING (VOID_PENDING pending)
0:00:04.979214220     7 0x7fb4b851e9e0 INFO              GST_STATES gstbin.c:2952:gst_bin_change_state_func:<bin0> child 'aravis0' changed state to 4(PLAYING) successfully
0:00:04.979250675     7 0x7fb4b851e9e0 INFO              GST_STATES gstelement.c:2675:gst_element_continue_state:<bin0> completed state change to PLAYING
0:00:04.979273403     7 0x7fb4b851e9e0 INFO              GST_STATES gstelement.c:2575:_priv_gst_element_state_changed:<bin0> notifying about state-changed PAUSED to PLAYING (VOID_PENDING pending)
0:00:04.979326778     7 0x7fb4b851e9e0 INFO              GST_STATES gstbin.c:2952:gst_bin_change_state_func:<media-pipeline> child 'bin0' changed state to 4(PLAYING) successfully
0:00:04.979370378     7 0x7fb4b851e9e0 INFO              GST_STATES gstelement.c:2675:gst_element_continue_state:<media-pipeline> completed state change to PLAYING
0:00:04.979408591     7 0x7fb4b851e9e0 INFO              GST_STATES gstelement.c:2575:_priv_gst_element_state_changed:<media-pipeline> notifying about state-changed PAUSED to PLAYING (VOID_PENDING pending)
0:00:04.979424159     7 0x7fb4a800e640 INFO           basetransform gstbasetransform.c:1317:gst_base_transform_setcaps:<capsfilter0> reuse caps
0:00:04.979561637     7 0x7fb4a800e640 INFO               GST_EVENT gstevent.c:820:gst_event_new_caps: creating caps event video/x-raw, format=(string)RGB, width=(int)1024, height=(int)764, framerate=(fraction)10/1
0:00:04.980067749     7 0x7fb4b851e9e0 INFO               rtspmedia rtsp-media.c:3060:default_handle_message: 0x7fb4b8546220: got message type 2048 (new-clock)
0:00:04.980260310     7 0x7fb4a800e640 INFO                 x264enc gstx264enc.c:225:gst_x264_enc_add_x264_chroma_format: 8-bit depth supported
0:00:04.980300127     7 0x7fb4a800e640 INFO                 x264enc gstx264enc.c:250:gst_x264_enc_add_x264_chroma_format: 10-bit depth supported
0:00:04.980331156     7 0x7fb4a800e640 INFO                 x264enc gstx264enc.c:225:gst_x264_enc_add_x264_chroma_format: 8-bit depth supported
0:00:04.980364304     7 0x7fb4a800e640 INFO                 x264enc gstx264enc.c:250:gst_x264_enc_add_x264_chroma_format: 10-bit depth supported
0:00:04.981164603     7 0x7fb4a800e640 INFO               GST_EVENT gstevent.c:820:gst_event_new_caps: creating caps event video/x-raw, width=(int)1024, height=(int)764, framerate=(fraction)10/1, format=(string)I420
0:00:04.981702518     7 0x7fb4a800e640 INFO                 x264enc :0::<x264enc0> using SAR=1/1

0:00:04.983733836     7 0x7fb4a800e640 INFO                 x264enc :0::<x264enc0> using cpu capabilities: MMX2 SSE2Fast SSSE3 SSE4.2 AVX FMA3 BMI2 AVX2

0:00:04.996752230     7 0x7fb4a800e640 INFO                 x264enc :0::<x264enc0> profile High, level 3.1

0:00:04.997979712     7 0x7fb4a800e640 INFO                 x264enc gstx264enc.c:2203:gst_x264_enc_set_latency:<x264enc0> Updating latency to 0:00:05.500000000 (55 frames)
0:00:04.998195367     7 0x7fb4b851e9e0 INFO               GST_EVENT gstevent.c:1449:gst_event_new_latency: creating latency event 0:00:00.000000000
0:00:04.998279492     7 0x7fb4b851e9e0 INFO                     bin gstbin.c:2783:gst_bin_do_latency_func:<media-pipeline> configured latency of 0:00:00.000000000
0:00:05.260240292     7 0x7fb4a800e640 INFO               GST_EVENT gstevent.c:900: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:05.260318242     7 0x7fb4a800e640 INFO                 basesrc gstbasesrc.c:2962:gst_base_src_loop:<aravis0> marking pending DISCONT
0:00:05.279257385     7 0x7fb4a800e640 INFO               video-anc video-anc.c:940:gst_video_caption_meta_api_get_type: registering
0:00:09.037390098     7 0x563ec7a248c0 INFO              rtspclient rtsp-client.c:4157:gst_rtsp_client_set_connection: client 0x563ec7b3d5e0 connected to server ip 192.168.1.45, ipv6 = 0
0:00:09.037443865     7 0x563ec7a248c0 INFO              rtspclient rtsp-client.c:4161:gst_rtsp_client_set_connection: added new client 0x563ec7b3d5e0 ip 192.168.1.50:59336
0:00:09.037540506     7 0x563ec7a248c0 INFO              rtspclient rtsp-client.c:4763:gst_rtsp_client_attach: client 0x563ec7b3d5e0: attaching to context 0x563ec7b6ca00
0:00:19.094807907     7 0x7fb4a800e640 INFO               GST_EVENT gstevent.c:820:gst_event_new_caps: creating caps event video/x-h264, codec_data=(buffer)0164001fffe1001e6764001facd94040061fbc05a808080a000003000200000300291e30632c01000568ebecb22c, stream-format=(string)avc, alignment=(string)au, level=(string)3.1, profile=(string)high, width=(int)1024, height=(int)764, pixel-aspect-ratio=(fraction)1/1, framerate=(fraction)10/1, interlace-mode=(string)progressive, colorimetry=(string)bt709, chroma-site=(string)mpeg2
0:00:19.095118571     7 0x7fb4a800e640 INFO           basetransform gstbasetransform.c:1317:gst_base_transform_setcaps:<capsfilter1> reuse caps
0:00:19.095244941     7 0x7fb4a800e640 INFO               GST_EVENT gstevent.c:820:gst_event_new_caps: creating caps event video/x-h264, codec_data=(buffer)0164001fffe1001e6764001facd94040061fbc05a808080a000003000200000300291e30632c01000568ebecb22c, stream-format=(string)avc, alignment=(string)au, level=(string)3.1, profile=(string)high, width=(int)1024, height=(int)764, pixel-aspect-ratio=(fraction)1/1, framerate=(fraction)10/1, interlace-mode=(string)progressive, colorimetry=(string)bt709, chroma-site=(string)mpeg2
0:00:19.095796303     7 0x7fb4a800e640 INFO               GST_EVENT gstevent.c:820:gst_event_new_caps: creating caps event application/x-rtp, media=(string)video, clock-rate=(int)90000, encoding-name=(string)H264, packetization-mode=(string)1, profile-level-id=(string)64001f, sprop-parameter-sets=(string)"Z2QAH6zZQEAGH7wFqAgICgAAAwACAAADACkeMGMs\,aOvssiw\=", payload=(int)96, ssrc=(uint)459957737, timestamp-offset=(uint)3844982703, seqnum-offset=(uint)24025, a-framerate=(string)10
0:00:19.095906842     7 0x7fb4a800e640 INFO                GST_PADS gstpad.c:4237:gst_pad_peer_query:<rtpbin0:send_rtp_src_0> pad has no peer
0:00:19.096005898     7 0x7fb4a800e640 INFO                GST_PADS gstpad.c:4237:gst_pad_peer_query:<rtpbin0:send_rtp_src_0> pad has no peer
0:00:19.096078194     7 0x7fb4a800e640 INFO                GST_PADS gstpad.c:4237:gst_pad_peer_query:<rtpbin0:send_rtp_src_0> pad has no peer
0:00:19.096308165     7 0x7fb4a800e640 INFO              rtspstream rtsp-stream.c:2413:on_new_sender_ssrc: 0x7fb4b854c300: new sender source 0x7fb4ac402170
0:00:19.096478478     7 0x7fb4a800e640 INFO              rtspstream rtsp-stream.c:2247:dump_structure: structure: application/x-rtp-source-stats, ssrc=(uint)459957737, internal=(boolean)true, validated=(boolean)true, received-bye=(boolean)false, is-csrc=(boolean)false, is-sender=(boolean)false, seqnum-base=(int)24025, clock-rate=(int)90000, octets-sent=(guint64)0, packets-sent=(guint64)0, octets-received=(guint64)0, packets-received=(guint64)0, bitrate=(guint64)0, packets-lost=(int)0, jitter=(uint)0, sent-pli-count=(uint)0, recv-pli-count=(uint)0, sent-fir-count=(uint)0, recv-fir-count=(uint)0, sent-nack-count=(uint)0, recv-nack-count=(uint)0, have-sr=(boolean)false, sr-ntptime=(guint64)0, sr-rtptime=(uint)0, sr-octet-count=(uint)0, sr-packet-count=(uint)0;
0:00:19.096561580     7 0x7fb4a800e640 INFO                GST_PADS gstpad.c:4237:gst_pad_peer_query:<rtpbin0:send_rtp_src_0> pad has no peer
0:00:19.096659108     7 0x7fb4a800e640 INFO              rtspstream rtsp-stream.c:2229:caps_notify: stream 0x7fb4b854c300 received caps 0x7fb4ac003e30, application/x-rtp, media=(string)video, clock-rate=(int)90000, encoding-name=(string)H264, packetization-mode=(string)1, profile-level-id=(string)64001f, sprop-parameter-sets=(string)"Z2QAH6zZQEAGH7wFqAgICgAAAwACAAADACkeMGMs\,aOvssiw\=", payload=(int)96, ssrc=(uint)459957737, timestamp-offset=(uint)3844982703, seqnum-offset=(uint)24025, a-framerate=(string)10
0:00:19.096802550     7 0x7fb4a800e640 INFO               GST_EVENT gstevent.c:900:gst_event_new_segment: creating segment event time segment start=999:59:59.469088520, 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 999:59:59.469088520, duration 99:99:99.999999999
0:00:19.097275852     7 0x7fb4b851e9e0 INFO               rtspmedia rtsp-media.c:841:collect_media_stats: collect media stats
0:00:19.097365013     7 0x563ec7be2460 INFO               rtspmedia rtsp-media.c:3598:gst_rtsp_media_prepare: object 0x7fb4b8546220 is prerolled
0:00:19.097486183     7 0x563ec7be2460 INFO               rtspmedia rtsp-media.c:841:collect_media_stats: collect media stats
0:00:19.097642739     7 0x563ec7be2460 INFO                 default gstmikey.c:2358:gst_mikey_message_new_from_caps: No srtp key
0:00:19.097851698     7 0x563ec7be2460 FIXME              rtspmedia rtsp-media.c:4201:gst_rtsp_media_suspend: suspend for dynamic pipelines needs fixing
0:00:19.097919118     7 0x563ec7be2460 INFO              rtspclient rtsp-client.c:2920:handle_describe_request: adding content-base: rtsp://192.168.1.45:8554/test/
0:00:19.098279685     7 0x563ec7be2460 INFO              rtspclient rtsp-client.c:4469:closed: client 0x563ec7b3d4b0: connection closed
0:00:19.098340531     7 0x563ec7be2460 INFO              rtspclient rtsp-client.c:4715:client_watch_notify: client 0x563ec7b3d4b0: watch destroyed
0:00:19.098919569     7 0x563ec7be2460 INFO              rtspclient rtsp-client.c:3533:handle_request: client 0x563ec7b3d5e0: received a request SETUP rtsp://192.168.1.45:8554/test 1.0
0:00:19.098973805     7 0x563ec7be2460 INFO         rtspmountpoints rtsp-mount-points.c:300:gst_rtsp_mount_points_match: found media factory 0x563ec7b33180 for path /test
0:00:19.099014893     7 0x563ec7be2460 INFO        rtspmediafactory rtsp-media-factory.c:1356:gst_rtsp_media_factory_construct: constructed media 0x7fb4b8546220 for url /test
0:00:19.099215593     7 0x563ec7be2460 FIXME              rtspmedia rtsp-media.c:4201:gst_rtsp_media_suspend: suspend for dynamic pipelines needs fixing
0:00:19.099255123     7 0x563ec7be2460 WARN               rtspmedia rtsp-media.c:4227:gst_rtsp_media_suspend: media 0x7fb4b8546220 was not prepared
0:00:19.099356407     7 0x563ec7be2460 INFO             rtspsession rtsp-session.c:132:gst_rtsp_session_init: init session 0x7fb4b8554a10
0:00:19.099349421     7 0x7fb4b851e6a0 INFO          rtspthreadpool rtsp-thread-pool.c:329:do_loop: enter mainloop of thread 0x7fb4b85530f0
0:00:19.099425500     7 0x563ec7be2460 INFO              rtspclient rtsp-client.c:661:client_watch_session: watching session 0x7fb4b8554a10
0:00:19.099481838     7 0x7fb4b851e6a0 INFO          rtspthreadpool rtsp-thread-pool.c:331:do_loop: exit mainloop of thread 0x7fb4b85530f0
0:00:19.099549628     7 0x563ec7be2460 INFO              rtspclient rtsp-client.c:1983:parse_transport: found valid transport RTP/AVP;unicast;client_port=9230-9231
0:00:19.099639973     7 0x563ec7be2460 INFO             rtspsession rtsp-session.c:247:gst_rtsp_session_manage_media: manage new media 0x7fb4b8546220 in session 0x7fb4b8553200
0:00:19.100339283     7 0x563ec7be2460 INFO              rtspclient rtsp-client.c:755:gst_rtsp_client_finalize: finalize client 0x563ec7b3d4b0
0:00:19.100487851     7 0x563ec7be2460 INFO               rtspmedia rtsp-media.c:3811:gst_rtsp_media_unprepare: media 0x7fb4b8546220 still prepared 1 times
0:00:19.186062456     7 0x563ec7be2460 INFO              rtspclient rtsp-client.c:3533:handle_request: client 0x563ec7b3d5e0: received a request PLAY rtsp://192.168.1.45:8554/stream=0 1.0
0:00:19.186094296     7 0x563ec7be2460 ERROR             rtspclient rtsp-client.c:1882:handle_play_request: client 0x563ec7b3d5e0: media not found
0:00:19.228094668     7 0x563ec7be2460 INFO              rtspclient rtsp-client.c:3533:handle_request: client 0x563ec7b3d5e0: received a request TEARDOWN rtsp://192.168.1.45:8554/stream=0 1.0
0:00:19.228157236     7 0x563ec7be2460 ERROR             rtspclient rtsp-client.c:1432:handle_teardown_request: client 0x563ec7b3d5e0: no media for uri
0:00:19.276991746     7 0x563ec7be2460 INFO              rtspclient rtsp-client.c:4469:closed: client 0x563ec7b3d5e0: connection closed
0:00:19.277052956     7 0x563ec7be2460 INFO              rtspclient rtsp-client.c:4715:client_watch_notify: client 0x563ec7b3d5e0: watch destroyed
0:00:19.277099314     7 0x563ec7be2460 INFO               rtspmedia rtsp-media.c:4441:gst_rtsp_media_set_state: going to state NULL media 0x7fb4b8546220, target state PAUSED
0:00:19.277128669     7 0x563ec7be2460 INFO               rtspmedia rtsp-media.c:4495:gst_rtsp_media_set_state: state 1 active 0 media 0x7fb4b8546220 do_state 1
0:00:19.277151572     7 0x563ec7be2460 INFO               rtspmedia rtsp-media.c:3785:gst_rtsp_media_unprepare: unprepare media 0x7fb4b8546220
0:00:19.277179011     7 0x563ec7be2460 INFO               rtspmedia rtsp-media.c:2904:set_target_state: set target state to NULL for media 0x7fb4b8546220
0:00:19.277225948     7 0x563ec7be2460 INFO               rtspmedia rtsp-media.c:2891:set_state: set state to NULL for media 0x7fb4b8546220
0:00:19.277332238     7 0x563ec7be2460 INFO              GST_STATES gstbin.c:2503:gst_bin_element_set_state:<rtpbin0> current PLAYING pending VOID_PENDING, desired next PAUSED
0:00:19.277403392     7 0x563ec7be2460 INFO              GST_STATES gstbin.c:2503:gst_bin_element_set_state:<rtpstorage0> current PLAYING pending VOID_PENDING, desired next PAUSED
0:00:19.277438297     7 0x563ec7be2460 INFO              GST_STATES gstelement.c:2675:gst_element_continue_state:<rtpstorage0> completed state change to PAUSED
0:00:19.277477748     7 0x563ec7be2460 INFO              GST_STATES gstelement.c:2575:_priv_gst_element_state_changed:<rtpstorage0> notifying about state-changed PLAYING to PAUSED (VOID_PENDING pending)
0:00:19.277715930     7 0x563ec7be2460 INFO              GST_STATES gstbin.c:2952:gst_bin_change_state_func:<rtpbin0> child 'rtpstorage0' changed state to 3(PAUSED) successfully
0:00:19.277781802     7 0x563ec7be2460 INFO              GST_STATES gstbin.c:2503:gst_bin_element_set_state:<rtpssrcdemux0> current PLAYING pending VOID_PENDING, desired next PAUSED
0:00:19.277828079     7 0x563ec7be2460 INFO              GST_STATES gstelement.c:2675:gst_element_continue_state:<rtpssrcdemux0> completed state change to PAUSED
0:00:19.277861083     7 0x563ec7be2460 INFO              GST_STATES gstelement.c:2575:_priv_gst_element_state_changed:<rtpssrcdemux0> notifying about state-changed PLAYING to PAUSED (VOID_PENDING pending)
0:00:19.277955734     7 0x563ec7be2460 INFO              GST_STATES gstbin.c:2952:gst_bin_change_state_func:<rtpbin0> child 'rtpssrcdemux0' changed state to 3(PAUSED) successfully
0:00:19.277998568     7 0x563ec7be2460 INFO              GST_STATES gstbin.c:2503:gst_bin_element_set_state:<rtpsession0> current PLAYING pending VOID_PENDING, desired next PAUSED
0:00:19.278091898     7 0x563ec7be2460 INFO              GST_STATES gstelement.c:2675:gst_element_continue_state:<rtpsession0> completed state change to PAUSED
0:00:19.278122068     7 0x563ec7be2460 INFO              GST_STATES gstelement.c:2575:_priv_gst_element_state_changed:<rtpsession0> notifying about state-changed PLAYING to PAUSED (VOID_PENDING pending)
0:00:19.278181108     7 0x563ec7be2460 INFO              GST_STATES gstbin.c:2952:gst_bin_change_state_func:<rtpbin0> child 'rtpsession0' changed state to 3(PAUSED) successfully
0:00:19.278244010     7 0x563ec7be2460 INFO              GST_STATES gstelement.c:2675:gst_element_continue_state:<rtpbin0> completed state change to PAUSED
0:00:19.278278235     7 0x563ec7be2460 INFO              GST_STATES gstelement.c:2575:_priv_gst_element_state_changed:<rtpbin0> notifying about state-changed PLAYING to PAUSED (VOID_PENDING pending)
0:00:19.278334943     7 0x563ec7be2460 INFO              GST_STATES gstbin.c:2952:gst_bin_change_state_func:<media-pipeline> child 'rtpbin0' changed state to 3(PAUSED) successfully
0:00:19.278385706     7 0x563ec7be2460 INFO              GST_STATES gstbin.c:2503:gst_bin_element_set_state:<bin0> current PLAYING pending VOID_PENDING, desired next PAUSED
0:00:19.278450416     7 0x563ec7be2460 INFO              GST_STATES gstbin.c:2503:gst_bin_element_set_state:<pay0> current PLAYING pending VOID_PENDING, desired next PAUSED
0:00:19.278475428     7 0x563ec7be2460 INFO              GST_STATES gstelement.c:2675:gst_element_continue_state:<pay0> completed state change to PAUSED
0:00:19.278510845     7 0x563ec7be2460 INFO              GST_STATES gstelement.c:2575:_priv_gst_element_state_changed:<pay0> notifying about state-changed PLAYING to PAUSED (VOID_PENDING pending)
0:00:19.278564858     7 0x563ec7be2460 INFO              GST_STATES gstbin.c:2952:gst_bin_change_state_func:<bin0> child 'pay0' changed state to 3(PAUSED) successfully
0:00:19.278609622     7 0x563ec7be2460 INFO              GST_STATES gstbin.c:2503:gst_bin_element_set_state:<capsfilter1> current PLAYING pending VOID_PENDING, desired next PAUSED
0:00:19.278647084     7 0x563ec7be2460 INFO              GST_STATES gstelement.c:2675:gst_element_continue_state:<capsfilter1> completed state change to PAUSED
0:00:19.278670768     7 0x563ec7be2460 INFO              GST_STATES gstelement.c:2575:_priv_gst_element_state_changed:<capsfilter1> notifying about state-changed PLAYING to PAUSED (VOID_PENDING pending)
0:00:19.278703448     7 0x563ec7be2460 INFO              GST_STATES gstbin.c:2952:gst_bin_change_state_func:<bin0> child 'capsfilter1' changed state to 3(PAUSED) successfully
0:00:19.278734181     7 0x563ec7be2460 INFO              GST_STATES gstbin.c:2503:gst_bin_element_set_state:<x264enc0> current PLAYING pending VOID_PENDING, desired next PAUSED
0:00:19.278766783     7 0x563ec7be2460 INFO              GST_STATES gstelement.c:2675:gst_element_continue_state:<x264enc0> completed state change to PAUSED
0:00:19.278788666     7 0x563ec7be2460 INFO              GST_STATES gstelement.c:2575:_priv_gst_element_state_changed:<x264enc0> notifying about state-changed PLAYING to PAUSED (VOID_PENDING pending)
0:00:19.278828130     7 0x563ec7be2460 INFO              GST_STATES gstbin.c:2952:gst_bin_change_state_func:<bin0> child 'x264enc0' changed state to 3(PAUSED) successfully
0:00:19.278866998     7 0x563ec7be2460 INFO              GST_STATES gstbin.c:2503:gst_bin_element_set_state:<videoconvert0> current PLAYING pending VOID_PENDING, desired next PAUSED
0:00:19.278906738     7 0x563ec7be2460 INFO              GST_STATES gstelement.c:2675:gst_element_continue_state:<videoconvert0> completed state change to PAUSED
0:00:19.278937065     7 0x563ec7be2460 INFO              GST_STATES gstelement.c:2575:_priv_gst_element_state_changed:<videoconvert0> notifying about state-changed PLAYING to PAUSED (VOID_PENDING pending)
0:00:19.278983371     7 0x563ec7be2460 INFO              GST_STATES gstbin.c:2952:gst_bin_change_state_func:<bin0> child 'videoconvert0' changed state to 3(PAUSED) successfully
0:00:19.279018703     7 0x563ec7be2460 INFO              GST_STATES gstbin.c:2503:gst_bin_element_set_state:<capsfilter0> current PLAYING pending VOID_PENDING, desired next PAUSED
0:00:19.279056232     7 0x563ec7be2460 INFO              GST_STATES gstelement.c:2675:gst_element_continue_state:<capsfilter0> completed state change to PAUSED
0:00:19.279088891     7 0x563ec7be2460 INFO              GST_STATES gstelement.c:2575:_priv_gst_element_state_changed:<capsfilter0> notifying about state-changed PLAYING to PAUSED (VOID_PENDING pending)
0:00:19.279127358     7 0x563ec7be2460 INFO              GST_STATES gstbin.c:2952:gst_bin_change_state_func:<bin0> child 'capsfilter0' changed state to 3(PAUSED) successfully
0:00:19.279156085     7 0x563ec7be2460 INFO              GST_STATES gstbin.c:2503:gst_bin_element_set_state:<aravis0> current PLAYING pending VOID_PENDING, desired next PAUSED
0:00:19.279184825     7 0x563ec7be2460 INFO              GST_STATES gstelement.c:2675:gst_element_continue_state:<aravis0> completed state change to PAUSED
0:00:19.279208408     7 0x563ec7be2460 INFO              GST_STATES gstelement.c:2575:_priv_gst_element_state_changed:<aravis0> notifying about state-changed PLAYING to PAUSED (VOID_PENDING pending)
0:00:19.279252317     7 0x563ec7be2460 INFO              GST_STATES gstbin.c:2995:gst_bin_change_state_func:<bin0> child 'aravis0' changed state to 3(PAUSED) successfully without preroll
0:00:19.279290566     7 0x563ec7be2460 INFO              GST_STATES gstelement.c:2675:gst_element_continue_state:<bin0> completed state change to PAUSED
0:00:19.279326394     7 0x563ec7be2460 INFO              GST_STATES gstelement.c:2575:_priv_gst_element_state_changed:<bin0> notifying about state-changed PLAYING to PAUSED (VOID_PENDING pending)
0:00:19.279368385     7 0x563ec7be2460 INFO              GST_STATES gstbin.c:2995:gst_bin_change_state_func:<media-pipeline> child 'bin0' changed state to 3(PAUSED) successfully without preroll
0:00:19.279408474     7 0x563ec7be2460 INFO              GST_STATES gstelement.c:2647:gst_element_continue_state:<media-pipeline> committing state from PLAYING to PAUSED, pending NULL, next READY
0:00:19.279435762     7 0x563ec7be2460 INFO              GST_STATES gstelement.c:2575:_priv_gst_element_state_changed:<media-pipeline> notifying about state-changed PLAYING to PAUSED (NULL pending)
0:00:19.279481112     7 0x563ec7be2460 INFO              GST_STATES gstelement.c:2655:gst_element_continue_state:<media-pipeline> continue state change PAUSED to READY, final NULL
0:00:19.279569830     7 0x563ec7be2460 INFO              GST_STATES gstbin.c:2503:gst_bin_element_set_state:<rtpbin0> current PAUSED pending VOID_PENDING, desired next READY
0:00:19.279716307     7 0x563ec7be2460 INFO              rtspstream rtsp-stream.c:2229:caps_notify: stream 0x7fb4b854c300 received caps (nil), (NULL)
0:00:19.279716475     7 0x7fb4a800e640 INFO                 basesrc gstbasesrc.c:2981:gst_base_src_loop:<aravis0> pausing after gst_pad_push() = flushing
0:00:19.279788503     7 0x563ec7be2460 INFO              GST_STATES gstbin.c:2503:gst_bin_element_set_state:<rtpstorage0> current PAUSED pending VOID_PENDING, desired next READY
0:00:19.279786575     7 0x7fb4a800e640 INFO                    task gsttask.c:312:gst_task_func:<aravis0:src> Task going to paused
0:00:19.279850296     7 0x563ec7be2460 INFO              GST_STATES gstelement.c:2675:gst_element_continue_state:<rtpstorage0> completed state change to READY
0:00:19.279890568     7 0x563ec7be2460 INFO              GST_STATES gstelement.c:2575:_priv_gst_element_state_changed:<rtpstorage0> notifying about state-changed PAUSED to READY (VOID_PENDING pending)
0:00:19.279934018     7 0x563ec7be2460 INFO              GST_STATES gstbin.c:2952:gst_bin_change_state_func:<rtpbin0> child 'rtpstorage0' changed state to 2(READY) successfully
0:00:19.279962453     7 0x563ec7be2460 INFO              GST_STATES gstbin.c:2503:gst_bin_element_set_state:<rtpssrcdemux0> current PAUSED pending VOID_PENDING, desired next READY
0:00:19.280000695     7 0x563ec7be2460 INFO              GST_STATES gstelement.c:2675:gst_element_continue_state:<rtpssrcdemux0> completed state change to READY
0:00:19.280026163     7 0x563ec7be2460 INFO              GST_STATES gstelement.c:2575:_priv_gst_element_state_changed:<rtpssrcdemux0> notifying about state-changed PAUSED to READY (VOID_PENDING pending)
0:00:19.280065700     7 0x563ec7be2460 INFO              GST_STATES gstbin.c:2952:gst_bin_change_state_func:<rtpbin0> child 'rtpssrcdemux0' changed state to 2(READY) successfully
0:00:19.280093071     7 0x563ec7be2460 INFO              GST_STATES gstbin.c:2503:gst_bin_element_set_state:<rtpsession0> current PAUSED pending VOID_PENDING, desired next READY
0:00:19.280198693     7 0x563ec7be2460 INFO              GST_STATES gstelement.c:2675:gst_element_continue_state:<rtpsession0> completed state change to READY
0:00:19.280241440     7 0x563ec7be2460 INFO              GST_STATES gstelement.c:2575:_priv_gst_element_state_changed:<rtpsession0> notifying about state-changed PAUSED to READY (VOID_PENDING pending)
0:00:19.280290695     7 0x563ec7be2460 INFO              GST_STATES gstbin.c:2952:gst_bin_change_state_func:<rtpbin0> child 'rtpsession0' changed state to 2(READY) successfully
0:00:19.280378398     7 0x563ec7be2460 INFO              GST_STATES gstelement.c:2675:gst_element_continue_state:<rtpbin0> completed state change to READY
0:00:19.280413003     7 0x563ec7be2460 INFO              GST_STATES gstelement.c:2575:_priv_gst_element_state_changed:<rtpbin0> notifying about state-changed PAUSED to READY (VOID_PENDING pending)
0:00:19.280463875     7 0x563ec7be2460 INFO              GST_STATES gstbin.c:2952:gst_bin_change_state_func:<media-pipeline> child 'rtpbin0' changed state to 2(READY) successfully
0:00:19.280561285     7 0x563ec7be2460 INFO              GST_STATES gstbin.c:2503:gst_bin_element_set_state:<pay0> current PAUSED pending VOID_PENDING, desired next READY
0:00:19.280631919     7 0x563ec7be2460 INFO              GST_STATES gstelement.c:2675:gst_element_continue_state:<pay0> completed state change to READY
0:00:19.280672730     7 0x563ec7be2460 INFO              GST_STATES gstelement.c:2575:_priv_gst_element_state_changed:<pay0> notifying about state-changed PAUSED to READY (VOID_PENDING pending)
0:00:19.280715166     7 0x563ec7be2460 INFO              GST_STATES gstbin.c:2952:gst_bin_change_state_func:<bin0> child 'pay0' changed state to 2(READY) successfully
0:00:19.280757304     7 0x563ec7be2460 INFO              GST_STATES gstbin.c:2503:gst_bin_element_set_state:<capsfilter1> current PAUSED pending VOID_PENDING, desired next READY
0:00:19.280825211     7 0x563ec7be2460 INFO              GST_STATES gstelement.c:2675:gst_element_continue_state:<capsfilter1> completed state change to READY
0:00:19.280850601     7 0x563ec7be2460 INFO              GST_STATES gstelement.c:2575:_priv_gst_element_state_changed:<capsfilter1> notifying about state-changed PAUSED to READY (VOID_PENDING pending)
0:00:19.280893489     7 0x563ec7be2460 INFO              GST_STATES gstbin.c:2952:gst_bin_change_state_func:<bin0> child 'capsfilter1' changed state to 2(READY) successfully
0:00:19.280926733     7 0x563ec7be2460 INFO              GST_STATES gstbin.c:2503:gst_bin_element_set_state:<x264enc0> current PAUSED pending VOID_PENDING, desired next READY
0:00:19.298138937     7 0x563ec7a248c0 INFO              rtspclient rtsp-client.c:4157:gst_rtsp_client_set_connection: client 0x563ec7b3d710 connected to server ip 192.168.1.45, ipv6 = 0
0:00:19.298165840     7 0x563ec7a248c0 INFO              rtspclient rtsp-client.c:4161:gst_rtsp_client_set_connection: added new client 0x563ec7b3d710 ip 192.168.1.50:59340
0:00:19.298209862     7 0x563ec7a248c0 INFO              rtspclient rtsp-client.c:4763:gst_rtsp_client_attach: client 0x563ec7b3d710: attaching to context 0x563ec7b6ca00
0:00:19.724212200     7 0x563ec7be2460 INFO                 x264enc :0::<x264enc0> frame I:1     Avg QP:15.81  size: 76632

0:00:19.724246000     7 0x563ec7be2460 INFO                 x264enc :0::<x264enc0> frame P:14    Avg QP:14.24  size: 47694

0:00:19.724272439     7 0x563ec7be2460 INFO                 x264enc :0::<x264enc0> frame B:41    Avg QP:20.66  size:  6477

0:00:19.724301965     7 0x563ec7be2460 INFO                 x264enc :0::<x264enc0> consecutive B-frames:  1.8%  0.0%  5.4% 92.9%

0:00:19.724327005     7 0x563ec7be2460 INFO                 x264enc :0::<x264enc0> mb I  I16..4: 33.9% 42.0% 24.2%

0:00:19.724353754     7 0x563ec7be2460 INFO                 x264enc :0::<x264enc0> mb P  I16..4:  0.2%  2.1%  0.2%  P16..4: 25.1% 14.7% 13.7%  0.0%  0.0%    skip:44.0%

0:00:19.724405630     7 0x563ec7be2460 INFO                 x264enc :0::<x264enc0> mb B  I16..4:  0.0%  0.3%  0.0%  B16..8: 20.5%  1.8%  0.6%  direct: 4.6%  skip:72.1%  L0:47.4% L1:37.9% BI:14.8%

0:00:19.724431068     7 0x563ec7be2460 INFO                 x264enc :0::<x264enc0> 8x8 transform intra:56.4% inter:57.6%

0:00:19.724459969     7 0x563ec7be2460 INFO                 x264enc :0::<x264enc0> coded y,uvDC,uvAC intra: 54.7% 63.7% 61.8% inter: 15.0% 24.6% 21.5%

0:00:19.724490004     7 0x563ec7be2460 INFO                 x264enc :0::<x264enc0> i16 v,h,dc,p: 85%  8%  6%  2%

0:00:19.724505148     7 0x563ec7be2460 INFO                 x264enc :0::<x264enc0> i8 v,h,dc,ddl,ddr,vr,hd,vl,hu: 23% 15% 27%  4%  5%  7%  6%  6%  8%

0:00:19.724533019     7 0x563ec7be2460 INFO                 x264enc :0::<x264enc0> i4 v,h,dc,ddl,ddr,vr,hd,vl,hu: 24% 17% 12%  6% 12%  9%  9%  6%  6%

0:00:19.724562629     7 0x563ec7be2460 INFO                 x264enc :0::<x264enc0> i8c dc,h,v,p: 69% 13% 11%  6%

0:00:19.724584419     7 0x563ec7be2460 INFO                 x264enc :0::<x264enc0> Weighted P-Frames: Y:0.0% UV:0.0%

0:00:19.724599011     7 0x563ec7be2460 INFO                 x264enc :0::<x264enc0> ref P L0: 32.8%  3.4% 52.6% 11.2%

0:00:19.724609262     7 0x563ec7be2460 INFO                 x264enc :0::<x264enc0> ref B L0: 53.7% 39.6%  6.6%

0:00:19.724618976     7 0x563ec7be2460 INFO                 x264enc :0::<x264enc0> ref B L1: 89.3% 10.7%

0:00:19.724627124     7 0x563ec7be2460 INFO                 x264enc :0::<x264enc0> kb/s:1442.71

0:00:19.726968054     7 0x563ec7be2460 INFO              GST_STATES gstelement.c:2675:gst_element_continue_state:<x264enc0> completed state change to READY
0:00:19.726995540     7 0x563ec7be2460 INFO              GST_STATES gstelement.c:2575:_priv_gst_element_state_changed:<x264enc0> notifying about state-changed PAUSED to READY (VOID_PENDING pending)
0:00:19.727015246     7 0x563ec7be2460 INFO              GST_STATES gstbin.c:2952:gst_bin_change_state_func:<bin0> child 'x264enc0' changed state to 2(READY) successfully
0:00:19.727034044     7 0x563ec7be2460 INFO              GST_STATES gstbin.c:2503:gst_bin_element_set_state:<videoconvert0> current PAUSED pending VOID_PENDING, desired next READY
0:00:19.729550698     7 0x563ec7be2460 INFO              GST_STATES gstelement.c:2675:gst_element_continue_state:<videoconvert0> completed state change to READY
0:00:19.729563417     7 0x563ec7be2460 INFO              GST_STATES gstelement.c:2575:_priv_gst_element_state_changed:<videoconvert0> notifying about state-changed PAUSED to READY (VOID_PENDING pending)
0:00:19.729596931     7 0x563ec7be2460 INFO              GST_STATES gstbin.c:2952:gst_bin_change_state_func:<bin0> child 'videoconvert0' changed state to 2(READY) successfully
0:00:19.729627019     7 0x563ec7be2460 INFO              GST_STATES gstbin.c:2503:gst_bin_element_set_state:<capsfilter0> current PAUSED pending VOID_PENDING, desired next READY
0:00:19.729661849     7 0x563ec7be2460 INFO              GST_STATES gstelement.c:2675:gst_element_continue_state:<capsfilter0> completed state change to READY
0:00:19.729690309     7 0x563ec7be2460 INFO              GST_STATES gstelement.c:2575:_priv_gst_element_state_changed:<capsfilter0> notifying about state-changed PAUSED to READY (VOID_PENDING pending)
0:00:19.729715566     7 0x563ec7be2460 INFO              GST_STATES gstbin.c:2952:gst_bin_change_state_func:<bin0> child 'capsfilter0' changed state to 2(READY) successfully
0:00:19.729758441     7 0x7fb4a800e640 INFO                    task gsttask.c:314:gst_task_func:<aravis0:src> Task resume from paused
0:00:19.799755844     7 0x563ec7be2460 INFO              GST_STATES gstelement.c:2675:gst_element_continue_state:<aravis0> completed state change to READY
0:00:19.799799657     7 0x563ec7be2460 INFO              GST_STATES gstelement.c:2575:_priv_gst_element_state_changed:<aravis0> notifying about state-changed PAUSED to READY (VOID_PENDING pending)
0:00:19.799837869     7 0x563ec7be2460 INFO              GST_STATES gstbin.c:2952:gst_bin_change_state_func:<bin0> child 'aravis0' changed state to 2(READY) successfully
0:00:19.799868276     7 0x563ec7be2460 INFO              GST_STATES gstelement.c:2675:gst_element_continue_state:<bin0> completed state change to READY
0:00:19.799888172     7 0x563ec7be2460 INFO              GST_STATES gstelement.c:2575:_priv_gst_element_state_changed:<bin0> notifying about state-changed PAUSED to READY (VOID_PENDING pending)
0:00:19.799913900     7 0x563ec7be2460 INFO              GST_STATES gstbin.c:2952:gst_bin_change_state_func:<media-pipeline> child 'bin0' changed state to 2(READY) successfully
0:00:19.799937823     7 0x563ec7be2460 INFO              GST_STATES gstelement.c:2647:gst_element_continue_state:<media-pipeline> committing state from PAUSED to READY, pending NULL, next NULL
0:00:19.799958385     7 0x563ec7be2460 INFO              GST_STATES gstelement.c:2575:_priv_gst_element_state_changed:<media-pipeline> notifying about state-changed PAUSED to READY (NULL pending)
0:00:19.799981711     7 0x563ec7be2460 INFO              GST_STATES gstelement.c:2655:gst_element_continue_state:<media-pipeline> continue state change READY to NULL, final NULL
0:00:19.800018637     7 0x563ec7be2460 INFO              GST_STATES gstbin.c:2503:gst_bin_element_set_state:<rtpbin0> current READY pending VOID_PENDING, desired next NULL
0:00:19.800069553     7 0x563ec7be2460 INFO              GST_STATES gstbin.c:2503:gst_bin_element_set_state:<rtpstorage0> current READY pending VOID_PENDING, desired next NULL
0:00:19.800093408     7 0x563ec7be2460 INFO              GST_STATES gstelement.c:2675:gst_element_continue_state:<rtpstorage0> completed state change to NULL
0:00:19.800123075     7 0x563ec7be2460 INFO              GST_STATES gstelement.c:2575:_priv_gst_element_state_changed:<rtpstorage0> notifying about state-changed READY to NULL (VOID_PENDING pending)
0:00:19.800163189     7 0x563ec7be2460 INFO              GST_STATES gstbin.c:2952:gst_bin_change_state_func:<rtpbin0> child 'rtpstorage0' changed state to 1(NULL) successfully
0:00:19.800207386     7 0x563ec7be2460 INFO              GST_STATES gstbin.c:2503:gst_bin_element_set_state:<rtpssrcdemux0> current READY pending VOID_PENDING, desired next NULL
0:00:19.800241971     7 0x563ec7be2460 INFO              GST_STATES gstelement.c:2675:gst_element_continue_state:<rtpssrcdemux0> completed state change to NULL
0:00:19.800271279     7 0x563ec7be2460 INFO              GST_STATES gstelement.c:2575:_priv_gst_element_state_changed:<rtpssrcdemux0> notifying about state-changed READY to NULL (VOID_PENDING pending)
0:00:19.800302590     7 0x563ec7be2460 INFO              GST_STATES gstbin.c:2952:gst_bin_change_state_func:<rtpbin0> child 'rtpssrcdemux0' changed state to 1(NULL) successfully
0:00:19.800335685     7 0x563ec7be2460 INFO              GST_STATES gstbin.c:2503:gst_bin_element_set_state:<rtpsession0> current READY pending VOID_PENDING, desired next NULL
0:00:19.800370966     7 0x563ec7be2460 INFO              GST_STATES gstelement.c:2675:gst_element_continue_state:<rtpsession0> completed state change to NULL
0:00:19.800403232     7 0x563ec7be2460 INFO              GST_STATES gstelement.c:2575:_priv_gst_element_state_changed:<rtpsession0> notifying about state-changed READY to NULL (VOID_PENDING pending)
0:00:19.800446294     7 0x563ec7be2460 INFO              GST_STATES gstbin.c:2952:gst_bin_change_state_func:<rtpbin0> child 'rtpsession0' changed state to 1(NULL) successfully
0:00:19.800489490     7 0x563ec7be2460 INFO              GST_STATES gstelement.c:2675:gst_element_continue_state:<rtpbin0> completed state change to NULL
0:00:19.800524699     7 0x563ec7be2460 INFO              GST_STATES gstelement.c:2575:_priv_gst_element_state_changed:<rtpbin0> notifying about state-changed READY to NULL (VOID_PENDING pending)
0:00:19.800560282     7 0x563ec7be2460 INFO              GST_STATES gstbin.c:2952:gst_bin_change_state_func:<media-pipeline> child 'rtpbin0' changed state to 1(NULL) successfully
0:00:19.800596449     7 0x563ec7be2460 INFO              GST_STATES gstbin.c:2503:gst_bin_element_set_state:<bin0> current READY pending VOID_PENDING, desired next NULL
0:00:19.800681550     7 0x563ec7be2460 INFO              GST_STATES gstbin.c:2503:gst_bin_element_set_state:<pay0> current READY pending VOID_PENDING, desired next NULL
0:00:19.800719486     7 0x563ec7be2460 INFO              GST_STATES gstelement.c:2675:gst_element_continue_state:<pay0> completed state change to NULL
0:00:19.800764849     7 0x563ec7be2460 INFO              GST_STATES gstelement.c:2575:_priv_gst_element_state_changed:<pay0> notifying about state-changed READY to NULL (VOID_PENDING pending)
0:00:19.800809512     7 0x563ec7be2460 INFO              GST_STATES gstbin.c:2952:gst_bin_change_state_func:<bin0> child 'pay0' changed state to 1(NULL) successfully
0:00:19.800845254     7 0x563ec7be2460 INFO              GST_STATES gstbin.c:2503:gst_bin_element_set_state:<capsfilter1> current READY pending VOID_PENDING, desired next NULL
0:00:19.800878844     7 0x563ec7be2460 INFO              GST_STATES gstelement.c:2675:gst_element_continue_state:<capsfilter1> completed state change to NULL
0:00:19.800909981     7 0x563ec7be2460 INFO              GST_STATES gstelement.c:2575:_priv_gst_element_state_changed:<capsfilter1> notifying about state-changed READY to NULL (VOID_PENDING pending)
0:00:19.800949667     7 0x563ec7be2460 INFO              GST_STATES gstbin.c:2952:gst_bin_change_state_func:<bin0> child 'capsfilter1' changed state to 1(NULL) successfully
0:00:19.800987716     7 0x563ec7be2460 INFO              GST_STATES gstbin.c:2503:gst_bin_element_set_state:<x264enc0> current READY pending VOID_PENDING, desired next NULL
0:00:19.801021078     7 0x563ec7be2460 INFO              GST_STATES gstelement.c:2675:gst_element_continue_state:<x264enc0> completed state change to NULL
0:00:19.801051253     7 0x563ec7be2460 INFO              GST_STATES gstelement.c:2575:_priv_gst_element_state_changed:<x264enc0> notifying about state-changed READY to NULL (VOID_PENDING pending)
0:00:19.801092305     7 0x563ec7be2460 INFO              GST_STATES gstbin.c:2952:gst_bin_change_state_func:<bin0> child 'x264enc0' changed state to 1(NULL) successfully
0:00:19.801126591     7 0x563ec7be2460 INFO              GST_STATES gstbin.c:2503:gst_bin_element_set_state:<videoconvert0> current READY pending VOID_PENDING, desired next NULL
0:00:19.801161082     7 0x563ec7be2460 INFO              GST_STATES gstelement.c:2675:gst_element_continue_state:<videoconvert0> completed state change to NULL
0:00:19.801186404     7 0x563ec7be2460 INFO              GST_STATES gstelement.c:2575:_priv_gst_element_state_changed:<videoconvert0> notifying about state-changed READY to NULL (VOID_PENDING pending)
0:00:19.801227372     7 0x563ec7be2460 INFO              GST_STATES gstbin.c:2952:gst_bin_change_state_func:<bin0> child 'videoconvert0' changed state to 1(NULL) successfully
0:00:19.801256853     7 0x563ec7be2460 INFO              GST_STATES gstbin.c:2503:gst_bin_element_set_state:<capsfilter0> current READY pending VOID_PENDING, desired next NULL
0:00:19.801286469     7 0x563ec7be2460 INFO              GST_STATES gstelement.c:2675:gst_element_continue_state:<capsfilter0> completed state change to NULL
0:00:19.801322766     7 0x563ec7be2460 INFO              GST_STATES gstelement.c:2575:_priv_gst_element_state_changed:<capsfilter0> notifying about state-changed READY to NULL (VOID_PENDING pending)
0:00:19.801370833     7 0x563ec7be2460 INFO              GST_STATES gstbin.c:2952:gst_bin_change_state_func:<bin0> child 'capsfilter0' changed state to 1(NULL) successfully
0:00:19.801410146     7 0x563ec7be2460 INFO              GST_STATES gstbin.c:2503:gst_bin_element_set_state:<aravis0> current READY pending VOID_PENDING, desired next NULL
0:00:19.801453060     7 0x563ec7be2460 INFO              GST_STATES gstelement.c:2675:gst_element_continue_state:<aravis0> completed state change to NULL
0:00:19.801487910     7 0x563ec7be2460 INFO              GST_STATES gstelement.c:2575:_priv_gst_element_state_changed:<aravis0> notifying about state-changed READY to NULL (VOID_PENDING pending)
0:00:19.801541518     7 0x563ec7be2460 INFO              GST_STATES gstbin.c:2952:gst_bin_change_state_func:<bin0> child 'aravis0' changed state to 1(NULL) successfully
0:00:19.801588412     7 0x563ec7be2460 INFO              GST_STATES gstelement.c:2675:gst_element_continue_state:<bin0> completed state change to NULL
0:00:19.801621191     7 0x563ec7be2460 INFO              GST_STATES gstelement.c:2575:_priv_gst_element_state_changed:<bin0> notifying about state-changed READY to NULL (VOID_PENDING pending)
0:00:19.801656817     7 0x563ec7be2460 INFO              GST_STATES gstbin.c:2952:gst_bin_change_state_func:<media-pipeline> child 'bin0' changed state to 1(NULL) successfully
0:00:19.801852235     7 0x563ec7be2460 INFO              GST_STATES gstelement.c:2675:gst_element_continue_state:<media-pipeline> completed state change to NULL
0:00:19.801888528     7 0x563ec7be2460 INFO              GST_STATES gstelement.c:2575:_priv_gst_element_state_changed:<media-pipeline> notifying about state-changed READY to NULL (VOID_PENDING pending)
0:00:19.801953278     7 0x563ec7be2460 INFO               rtspmedia rtsp-media.c:3683:finish_unprepare: Removing elements of stream 0 from pipeline
0:00:19.801983378     7 0x563ec7be2460 INFO              rtspstream rtsp-stream.c:3859:gst_rtsp_stream_leave_bin: stream 0x7fb4b854c300 leaving bin
0:00:19.802024086     7 0x563ec7be2460 INFO        GST_ELEMENT_PADS gstpad.c:2132:gst_pad_unlink: unlinking bin0:src_0(0x7fb4b8548140) and rtpbin0:send_rtp_sink_0(0x7fb4b8548dc0)
0:00:19.802069858     7 0x563ec7be2460 INFO        GST_ELEMENT_PADS gstpad.c:2187:gst_pad_unlink: unlinked bin0:src_0 and rtpbin0:send_rtp_sink_0
0:00:19.802139176     7 0x563ec7be2460 INFO        GST_ELEMENT_PADS gstelement.c:784:gst_element_remove_pad:<rtpbin0> removing pad 'send_rtp_src_0'
0:00:19.802183422     7 0x563ec7be2460 INFO        GST_ELEMENT_PADS gstelement.c:784:gst_element_remove_pad:<rtpsession0> removing pad 'send_rtp_sink'
0:00:19.802227844     7 0x563ec7be2460 INFO        GST_ELEMENT_PADS gstpad.c:2132:gst_pad_unlink: unlinking send_rtp_sink_0:proxypad2(0x7fb4b854ad00) and rtpsession0:send_rtp_sink(0x7fb4a80127f0)
0:00:19.802273410     7 0x563ec7be2460 INFO        GST_ELEMENT_PADS gstpad.c:2187:gst_pad_unlink: unlinked send_rtp_sink_0:proxypad2 and rtpsession0:send_rtp_sink
0:00:19.802309965     7 0x563ec7be2460 INFO        GST_ELEMENT_PADS gstelement.c:784:gst_element_remove_pad:<rtpsession0> removing pad 'send_rtp_src'
0:00:19.802338170     7 0x563ec7be2460 INFO        GST_ELEMENT_PADS gstpad.c:2132:gst_pad_unlink: unlinking rtpsession0:send_rtp_src(0x7fb4a8012a40) and send_rtp_src_0:proxypad1(0x7fb4b854aaa0)
0:00:19.802386478     7 0x563ec7be2460 INFO        GST_ELEMENT_PADS gstpad.c:2187:gst_pad_unlink: unlinked rtpsession0:send_rtp_src and send_rtp_src_0:proxypad1
0:00:19.802463270     7 0x563ec7be2460 INFO        GST_ELEMENT_PADS gstelement.c:784:gst_element_remove_pad:<rtpbin0> removing pad 'send_rtp_sink_0'
0:00:19.802517556     7 0x563ec7be2460 INFO        GST_ELEMENT_PADS gstelement.c:784:gst_element_remove_pad:<rtpbin0> removing pad 'recv_rtcp_sink_0'
0:00:19.802558041     7 0x563ec7be2460 INFO        GST_ELEMENT_PADS gstelement.c:784:gst_element_remove_pad:<rtpsession0> removing pad 'recv_rtcp_sink'
0:00:19.802599383     7 0x563ec7be2460 INFO        GST_ELEMENT_PADS gstpad.c:2132:gst_pad_unlink: unlinking recv_rtcp_sink_0:proxypad4(0x7fb4b854b1c0) and rtpsession0:recv_rtcp_sink(0x7fb4a8012ee0)
0:00:19.802631516     7 0x563ec7be2460 INFO        GST_ELEMENT_PADS gstpad.c:2187:gst_pad_unlink: unlinked recv_rtcp_sink_0:proxypad4 and rtpsession0:recv_rtcp_sink
0:00:19.802654829     7 0x563ec7be2460 INFO        GST_ELEMENT_PADS gstelement.c:784:gst_element_remove_pad:<rtpsession0> removing pad 'sync_src'
0:00:19.802679262     7 0x563ec7be2460 INFO        GST_ELEMENT_PADS gstpad.c:2132:gst_pad_unlink: unlinking rtpsession0:sync_src(0x7fb4a8013130) and rtpssrcdemux0:rtcp_sink(0x7fb4a8012100)
0:00:19.802710065     7 0x563ec7be2460 INFO        GST_ELEMENT_PADS gstpad.c:2187:gst_pad_unlink: unlinked rtpsession0:sync_src and rtpssrcdemux0:rtcp_sink
0:00:19.802788625     7 0x563ec7be2460 INFO        GST_ELEMENT_PADS gstelement.c:784:gst_element_remove_pad:<rtpbin0> removing pad 'send_rtcp_src_0'
0:00:19.802829441     7 0x563ec7be2460 INFO        GST_ELEMENT_PADS gstelement.c:784:gst_element_remove_pad:<rtpsession0> removing pad 'send_rtcp_src'
0:00:19.802864669     7 0x563ec7be2460 INFO        GST_ELEMENT_PADS gstpad.c:2132:gst_pad_unlink: unlinking rtpsession0:send_rtcp_src(0x7fb4a8012c90) and send_rtcp_src_0:proxypad3(0x7fb4b854af60)
0:00:19.802916170     7 0x563ec7be2460 INFO        GST_ELEMENT_PADS gstpad.c:2187:gst_pad_unlink: unlinked rtpsession0:send_rtcp_src and send_rtcp_src_0:proxypad3
0:00:19.802974985     7 0x563ec7be2460 INFO              GST_STATES gstelement.c:2675:gst_element_continue_state:<rtpssrcdemux0> completed state change to NULL
0:00:19.803014740     7 0x563ec7be2460 INFO              GST_STATES gstelement.c:2675:gst_element_continue_state:<rtpsession0> completed state change to NULL
0:00:19.803040732     7 0x563ec7be2460 INFO              GST_STATES gstelement.c:2675:gst_element_continue_state:<rtpstorage0> completed state change to NULL
0:00:19.803072663     7 0x563ec7be2460 INFO           GST_PARENTAGE gstbin.c:1801:gst_bin_remove_func:<rtpbin0> removed child "rtpsession0"
0:00:19.803127939     7 0x563ec7be2460 INFO         GST_REFCOUNTING gstelement.c:3251:gst_element_dispose:<rtpsession0> 0x7fb4a8008150 dispose
0:00:19.803151051     7 0x563ec7be2460 INFO         GST_REFCOUNTING gstelement.c:3296:gst_element_dispose:<rtpsession0> 0x7fb4a8008150 parent class dispose
0:00:19.803197078     7 0x563ec7be2460 INFO         GST_REFCOUNTING gstelement.c:3328:gst_element_finalize:<rtpsession0> 0x7fb4a8008150 finalize
0:00:19.803219161     7 0x563ec7be2460 INFO         GST_REFCOUNTING gstelement.c:3333:gst_element_finalize:<rtpsession0> 0x7fb4a8008150 finalize parent
0:00:19.803247436     7 0x563ec7be2460 INFO           GST_PARENTAGE gstbin.c:1801:gst_bin_remove_func:<rtpbin0> removed child "rtpssrcdemux0"
0:00:19.803290805     7 0x563ec7be2460 INFO         GST_REFCOUNTING gstelement.c:3251:gst_element_dispose:<rtpssrcdemux0> 0x7fb4b83442a0 dispose
0:00:19.803312816     7 0x563ec7be2460 INFO        GST_ELEMENT_PADS gstelement.c:784:gst_element_remove_pad:<rtpssrcdemux0> removing pad 'sink'
0:00:19.803350887     7 0x563ec7be2460 INFO        GST_ELEMENT_PADS gstelement.c:784:gst_element_remove_pad:<rtpssrcdemux0> removing pad 'rtcp_sink'
0:00:19.803386025     7 0x563ec7be2460 INFO         GST_REFCOUNTING gstelement.c:3296:gst_element_dispose:<rtpssrcdemux0> 0x7fb4b83442a0 parent class dispose
0:00:19.803411275     7 0x563ec7be2460 INFO         GST_REFCOUNTING gstelement.c:3328:gst_element_finalize:<rtpssrcdemux0> 0x7fb4b83442a0 finalize
0:00:19.803447617     7 0x563ec7be2460 INFO         GST_REFCOUNTING gstelement.c:3333:gst_element_finalize:<rtpssrcdemux0> 0x7fb4b83442a0 finalize parent
0:00:19.803485470     7 0x563ec7be2460 INFO           GST_PARENTAGE gstbin.c:1801:gst_bin_remove_func:<rtpbin0> removed child "rtpstorage0"
0:00:19.803602477     7 0x563ec7be2460 INFO           GST_PARENTAGE gstbin.c:1801:gst_bin_remove_func:<media-pipeline> removed child "rtpbin0"
0:00:19.803656926     7 0x563ec7be2460 INFO         GST_REFCOUNTING gstelement.c:3251:gst_element_dispose:<rtpbin0> 0x7fb4b8556050 dispose
0:00:19.803689987     7 0x563ec7be2460 INFO         GST_REFCOUNTING gstelement.c:3296:gst_element_dispose:<rtpbin0> 0x7fb4b8556050 parent class dispose
0:00:19.803740072     7 0x563ec7be2460 INFO         GST_REFCOUNTING gstelement.c:3328:gst_element_finalize:<rtpbin0> 0x7fb4b8556050 finalize
0:00:19.803778359     7 0x563ec7be2460 INFO         GST_REFCOUNTING gstelement.c:3333:gst_element_finalize:<rtpbin0> 0x7fb4b8556050 finalize parent
0:00:19.803881345     7 0x563ec7be2460 INFO        rtspsessionmedia rtsp-session-media.c:104:gst_rtsp_session_media_finalize: free session media 0x7fb4b8553200
0:00:19.803917254     7 0x563ec7be2460 WARN               rtspmedia rtsp-media.c:4520:gst_rtsp_media_set_state: media 0x7fb4b8546220 was not prepared
0:00:19.803947611     7 0x563ec7be2460 INFO               rtspmedia rtsp-media.c:3806:gst_rtsp_media_unprepare: media 0x7fb4b8546220 was already unprepared
0:00:19.803992362     7 0x563ec7be2460 INFO              rtspclient rtsp-client.c:685:client_unwatch_session: client 0x563ec7b3d5e0: unwatch session 0x7fb4b8554a10
0:00:19.804069551     7 0x7fb4b851e9e0 INFO         GST_REFCOUNTING gstelement.c:3251:gst_element_dispose:<rtpstorage0> 0x7fb4b853d5a0 dispose
0:00:19.804129422     7 0x7fb4b851e9e0 INFO        GST_ELEMENT_PADS gstelement.c:784:gst_element_remove_pad:<rtpstorage0> removing pad 'src'
0:00:19.804188702     7 0x7fb4b851e9e0 INFO        GST_ELEMENT_PADS gstelement.c:784:gst_element_remove_pad:<rtpstorage0> removing pad 'sink'
0:00:19.804222179     7 0x7fb4b851e9e0 INFO         GST_REFCOUNTING gstelement.c:3296:gst_element_dispose:<rtpstorage0> 0x7fb4b853d5a0 parent class dispose
0:00:19.804259199     7 0x7fb4b851e9e0 INFO         GST_REFCOUNTING gstelement.c:3328:gst_element_finalize:<rtpstorage0> 0x7fb4b853d5a0 finalize
0:00:19.804294813     7 0x7fb4b851e9e0 INFO         GST_REFCOUNTING gstelement.c:3333:gst_element_finalize:<rtpstorage0> 0x7fb4b853d5a0 finalize parent
0:00:19.804349847     7 0x7fb4b851e9e0 INFO               rtspmedia rtsp-media.c:487:gst_rtsp_media_finalize: finalize media 0x7fb4b8546220
0:00:19.804472296     7 0x7fb4b851e9e0 INFO           GST_PARENTAGE gstbin.c:1801:gst_bin_remove_func:<media-pipeline> removed child "bin0"
0:00:19.804567006     7 0x7fb4b851e9e0 INFO         GST_REFCOUNTING gstelement.c:3251:gst_element_dispose:<media-pipeline> 0x7fb4b854e150 dispose
0:00:19.804657509     7 0x7fb4b851e9e0 INFO         GST_REFCOUNTING gstelement.c:3296:gst_element_dispose:<media-pipeline> 0x7fb4b854e150 parent class dispose
0:00:19.804845797     7 0x7fb4b851e9e0 INFO         GST_REFCOUNTING gstelement.c:3328:gst_element_finalize:<media-pipeline> 0x7fb4b854e150 finalize
0:00:19.804875045     7 0x7fb4b851e9e0 INFO         GST_REFCOUNTING gstelement.c:3333:gst_element_finalize:<media-pipeline> 0x7fb4b854e150 finalize parent
0:00:19.804971129     7 0x7fb4b851e9e0 INFO        GST_ELEMENT_PADS gstpad.c:2132:gst_pad_unlink: unlinking x264enc0:src(0x7fb4b8024980) and capsfilter1:sink(0x7fb4b8025510)
0:00:19.805031513     7 0x7fb4b851e9e0 INFO        GST_ELEMENT_PADS gstpad.c:2187:gst_pad_unlink: unlinked x264enc0:src and capsfilter1:sink
0:00:19.805083495     7 0x7fb4b851e9e0 INFO        GST_ELEMENT_PADS gstpad.c:2132:gst_pad_unlink: unlinking capsfilter1:src(0x7fb4b8025760) and pay0:sink(0x7fb4b8024e20)
0:00:19.805128976     7 0x7fb4b851e9e0 INFO        GST_ELEMENT_PADS gstpad.c:2187:gst_pad_unlink: unlinked capsfilter1:src and pay0:sink
0:00:19.805169544     7 0x7fb4b851e9e0 INFO           GST_PARENTAGE gstbin.c:1801:gst_bin_remove_func:<bin0> removed child "capsfilter1"
0:00:19.805216359     7 0x7fb4b851e9e0 INFO         GST_REFCOUNTING gstelement.c:3251:gst_element_dispose:<capsfilter1> 0x7fb4b8542490 dispose
0:00:19.805357831     7 0x7fb4b851e9e0 INFO        GST_ELEMENT_PADS gstelement.c:784:gst_element_remove_pad:<capsfilter1> removing pad 'sink'
0:00:19.805439678     7 0x7fb4b851e9e0 INFO        GST_ELEMENT_PADS gstelement.c:784:gst_element_remove_pad:<capsfilter1> removing pad 'src'
0:00:19.805488809     7 0x7fb4b851e9e0 INFO         GST_REFCOUNTING gstelement.c:3296:gst_element_dispose:<capsfilter1> 0x7fb4b8542490 parent class dispose
0:00:19.805523484     7 0x7fb4b851e9e0 INFO         GST_REFCOUNTING gstelement.c:3328:gst_element_finalize:<capsfilter1> 0x7fb4b8542490 finalize
0:00:19.805547190     7 0x7fb4b851e9e0 INFO         GST_REFCOUNTING gstelement.c:3333:gst_element_finalize:<capsfilter1> 0x7fb4b8542490 finalize parent
0:00:19.805587675     7 0x7fb4b851e9e0 INFO        GST_ELEMENT_PADS gstpad.c:2132:gst_pad_unlink: unlinking aravis0:src(0x7fb4b8024040) and capsfilter0:sink(0x7fb4b8025070)
0:00:19.805598758     7 0x563ec7be2460 INFO              rtspclient rtsp-client.c:3533:handle_request: client 0x563ec7b3d710: received a request OPTIONS rtsp://192.168.1.45:8554 1.0
0:00:19.805689880     7 0x7fb4b851e9e0 INFO        GST_ELEMENT_PADS gstpad.c:2187:gst_pad_unlink: unlinked aravis0:src and capsfilter0:sink
0:00:19.805747861     7 0x7fb4b851e9e0 INFO        GST_ELEMENT_PADS gstpad.c:2132:gst_pad_unlink: unlinking capsfilter0:src(0x7fb4b80252c0) and videoconvert0:sink(0x7fb4b8024290)
0:00:19.805868236     7 0x7fb4b851e9e0 INFO        GST_ELEMENT_PADS gstpad.c:2187:gst_pad_unlink: unlinked capsfilter0:src and videoconvert0:sink
0:00:19.805898826     7 0x563ec7be2460 INFO              rtspclient rtsp-client.c:755:gst_rtsp_client_finalize: finalize client 0x563ec7b3d5e0
0:00:19.805911786     7 0x7fb4b851e9e0 INFO           GST_PARENTAGE gstbin.c:1801:gst_bin_remove_func:<bin0> removed child "capsfilter0"
0:00:19.805994961     7 0x7fb4b851e9e0 INFO         GST_REFCOUNTING gstelement.c:3251:gst_element_dispose:<capsfilter0> 0x7fb4b8542150 dispose
0:00:19.806019229     7 0x7fb4b851e9e0 INFO        GST_ELEMENT_PADS gstelement.c:784:gst_element_remove_pad:<capsfilter0> removing pad 'sink'
0:00:19.806081644     7 0x7fb4b851e9e0 INFO        GST_ELEMENT_PADS gstelement.c:784:gst_element_remove_pad:<capsfilter0> removing pad 'src'
0:00:19.806118908     7 0x7fb4b851e9e0 INFO         GST_REFCOUNTING gstelement.c:3296:gst_element_dispose:<capsfilter0> 0x7fb4b8542150 parent class dispose
0:00:19.806146425     7 0x7fb4b851e9e0 INFO         GST_REFCOUNTING gstelement.c:3328:gst_element_finalize:<capsfilter0> 0x7fb4b8542150 finalize
0:00:19.806175849     7 0x7fb4b851e9e0 INFO         GST_REFCOUNTING gstelement.c:3333:gst_element_finalize:<capsfilter0> 0x7fb4b8542150 finalize parent
0:00:19.806216859     7 0x7fb4b851e9e0 INFO        GST_ELEMENT_PADS gstpad.c:2132:gst_pad_unlink: unlinking pay0:src(0x7fb4b8024bd0) and src_0:proxypad0(0x7fb4b854a120)
0:00:19.806246793     7 0x7fb4b851e9e0 INFO        GST_ELEMENT_PADS gstpad.c:2187:gst_pad_unlink: unlinked pay0:src and src_0:proxypad0
0:00:19.806276201     7 0x7fb4b851e9e0 INFO           GST_PARENTAGE gstbin.c:1801:gst_bin_remove_func:<bin0> removed child "pay0"
0:00:19.806317927     7 0x7fb4b851e9e0 INFO         GST_REFCOUNTING gstelement.c:3251:gst_element_dispose:<pay0> 0x7fb4b853a0e0 dispose
0:00:19.806341216     7 0x7fb4b851e9e0 INFO        GST_ELEMENT_PADS gstelement.c:784:gst_element_remove_pad:<pay0> removing pad 'src'
0:00:19.806377428     7 0x7fb4b851e9e0 INFO        GST_ELEMENT_PADS gstelement.c:784:gst_element_remove_pad:<pay0> removing pad 'sink'
0:00:19.806406829     7 0x7fb4b851e9e0 INFO         GST_REFCOUNTING gstelement.c:3296:gst_element_dispose:<pay0> 0x7fb4b853a0e0 parent class dispose
0:00:19.806459345     7 0x7fb4b851e9e0 INFO         GST_REFCOUNTING gstelement.c:3328:gst_element_finalize:<pay0> 0x7fb4b853a0e0 finalize
0:00:19.806483924     7 0x7fb4b851e9e0 INFO         GST_REFCOUNTING gstelement.c:3333:gst_element_finalize:<pay0> 0x7fb4b853a0e0 finalize parent
0:00:19.806530551     7 0x7fb4b851e9e0 INFO        GST_ELEMENT_PADS gstpad.c:2132:gst_pad_unlink: unlinking videoconvert0:src(0x7fb4b80244e0) and x264enc0:sink(0x7fb4b8024730)
0:00:19.806573405     7 0x7fb4b851e9e0 INFO        GST_ELEMENT_PADS gstpad.c:2187:gst_pad_unlink: unlinked videoconvert0:src and x264enc0:sink
0:00:19.806617279     7 0x7fb4b851e9e0 INFO           GST_PARENTAGE gstbin.c:1801:gst_bin_remove_func:<bin0> removed child "x264enc0"
0:00:19.806664394     7 0x7fb4b851e9e0 INFO         GST_REFCOUNTING gstelement.c:3251:gst_element_dispose:<x264enc0> 0x7fb4b852f110 dispose
0:00:19.806692956     7 0x7fb4b851e9e0 INFO        GST_ELEMENT_PADS gstelement.c:784:gst_element_remove_pad:<x264enc0> removing pad 'sink'
0:00:19.806733528     7 0x7fb4b851e9e0 INFO        GST_ELEMENT_PADS gstelement.c:784:gst_element_remove_pad:<x264enc0> removing pad 'src'
0:00:19.806772076     7 0x7fb4b851e9e0 INFO         GST_REFCOUNTING gstelement.c:3296:gst_element_dispose:<x264enc0> 0x7fb4b852f110 parent class dispose
0:00:19.806800982     7 0x7fb4b851e9e0 INFO         GST_REFCOUNTING gstelement.c:3328:gst_element_finalize:<x264enc0> 0x7fb4b852f110 finalize
0:00:19.806825712     7 0x7fb4b851e9e0 INFO         GST_REFCOUNTING gstelement.c:3333:gst_element_finalize:<x264enc0> 0x7fb4b852f110 finalize parent
0:00:19.806867870     7 0x7fb4b851e9e0 INFO           GST_PARENTAGE gstbin.c:1801:gst_bin_remove_func:<bin0> removed child "videoconvert0"
0:00:19.806916775     7 0x7fb4b851e9e0 INFO         GST_REFCOUNTING gstelement.c:3251:gst_element_dispose:<videoconvert0> 0x7fb4b85290d0 dispose
0:00:19.806946813     7 0x7fb4b851e9e0 INFO        GST_ELEMENT_PADS gstelement.c:784:gst_element_remove_pad:<videoconvert0> removing pad 'sink'
0:00:19.806977365     7 0x7fb4b851e9e0 INFO        GST_ELEMENT_PADS gstelement.c:784:gst_element_remove_pad:<videoconvert0> removing pad 'src'
0:00:19.807000436     7 0x7fb4b851e9e0 INFO         GST_REFCOUNTING gstelement.c:3296:gst_element_dispose:<videoconvert0> 0x7fb4b85290d0 parent class dispose
0:00:19.807061066     7 0x7fb4b851e9e0 INFO         GST_REFCOUNTING gstelement.c:3328:gst_element_finalize:<videoconvert0> 0x7fb4b85290d0 finalize
0:00:19.807101914     7 0x7fb4b851e9e0 INFO         GST_REFCOUNTING gstelement.c:3333:gst_element_finalize:<videoconvert0> 0x7fb4b85290d0 finalize parent
0:00:19.807148096     7 0x7fb4b851e9e0 INFO           GST_PARENTAGE gstbin.c:1801:gst_bin_remove_func:<bin0> removed child "aravis0"
0:00:19.807198265     7 0x7fb4b851e9e0 INFO         GST_REFCOUNTING gstelement.c:3251:gst_element_dispose:<aravis0> 0x7fb4b8021170 dispose
0:00:19.807277585     7 0x7fb4b851e9e0 INFO        GST_ELEMENT_PADS gstelement.c:784:gst_element_remove_pad:<aravis0> removing pad 'src'
0:00:19.807317645     7 0x7fb4b851e9e0 INFO         GST_REFCOUNTING gstelement.c:3296:gst_element_dispose:<aravis0> 0x7fb4b8021170 parent class dispose
0:00:19.839680170     7 0x7fb4b851e9e0 INFO         GST_REFCOUNTING gstelement.c:3328:gst_element_finalize:<aravis0> 0x7fb4b8021170 finalize
0:00:19.839720593     7 0x7fb4b851e9e0 INFO         GST_REFCOUNTING gstelement.c:3333:gst_element_finalize:<aravis0> 0x7fb4b8021170 finalize parent
0:00:19.839743159     7 0x7fb4b851e9e0 INFO         GST_REFCOUNTING gstelement.c:3251:gst_element_dispose:<bin0> 0x7fb4b85083e0 dispose
0:00:19.839767045     7 0x7fb4b851e9e0 INFO        GST_ELEMENT_PADS gstelement.c:784:gst_element_remove_pad:<bin0> removing pad 'src_0'
0:00:19.839802026     7 0x7fb4b851e9e0 INFO         GST_REFCOUNTING gstelement.c:3296:gst_element_dispose:<bin0> 0x7fb4b85083e0 parent class dispose
0:00:19.839825191     7 0x7fb4b851e9e0 INFO         GST_REFCOUNTING gstelement.c:3328:gst_element_finalize:<bin0> 0x7fb4b85083e0 finalize
0:00:19.839849512     7 0x7fb4b851e9e0 INFO         GST_REFCOUNTING gstelement.c:3333:gst_element_finalize:<bin0> 0x7fb4b85083e0 finalize parent
0:00:19.839924275     7 0x7fb4b851e9e0 INFO          rtspthreadpool rtsp-thread-pool.c:331:do_loop: exit mainloop of thread 0x7fb4b8539020
0:00:19.844623166     7 0x563ec7be2460 INFO              rtspclient rtsp-client.c:4469:closed: client 0x563ec7b3d710: connection closed
0:00:19.844659325     7 0x563ec7be2460 INFO              rtspclient rtsp-client.c:4715:client_watch_notify: client 0x563ec7b3d710: watch destroyed
0:00:19.844715409     7 0x563ec7be2460 INFO              rtspclient rtsp-client.c:755:gst_rtsp_client_finalize: finalize client 0x563ec7b3d710
0:00:19.844848750     7 0x563ec7be2460 INFO          rtspthreadpool rtsp-thread-pool.c:331:do_loop: exit mainloop of thread 0x563ec7be6840

Can you somehow help me interpret this?