This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

SK-TDA4VM: CPU load - avdec_h264 vs v4l2h264dec

Part Number: SK-TDA4VM

Hi,

I've got a similar pipeline as mentioned in https://software-dl.ti.com/jacinto7/esd/processor-sdk-linux-sk-tda4vm/latest/exports/docs/data_flows.html#rtsp-source for H.264 encoded video processing.
Surprisingly (for me) avdec_h264 leads to lower CPU load than v4l2h264dec.

Pipelines:

avdec_h264 (CPU load 20%):
gst-launch-1.0 rtspsrc location=rtsp://<address>:<port>/test latency=0 buffer-mode=auto protocol=udp ! rtph264depay ! video/x-h264,stream-format=avc ! h264parse ! avdec_h264 ! tiovxcolorconvert ! video/x-raw,format=NV12 ! tiovxmultiscaler ! queue ! video/x-raw,width=640,height=640 ! tiovxcolorconvert ! video/x-raw,format=RGB ! fpsdisplaysink video-sink='kmssink driver-name=tidss' sync=true text-overlay=0 --verbose

v4l2h264dec (CPU load 30%):
gst-launch-1.0 rtspsrc location=rtsp://<address>:<port>/test latency=0 buffer-mode=auto protocol=udp ! rtph264depay ! video/x-h264,stream-format=avc ! h264parse ! v4l2h264dec ! video/x-raw,format=NV12 ! tiovxmultiscaler ! queue ! video/x-raw,width=640,height=640 ! tiovxcolorconvert ! video/x-raw,format=RGB ! fpsdisplaysink video-sink='kmssink driver-name=tidss' sync=true text-overlay=0 --verbose

Is this expected behaviour or am I using v4l2h264dec in the wrong way?
I guess it has to do with the elements coming after v4l2h264dec in the pipeline and how v4l2h264dec transfers data to them because when i remove everything else from the pipeline i get a CPU load of 5%:
gst-launch-1.0 rtspsrc location=rtsp://<address>:<port>/test latency=0 buffer-mode=auto protocol=udp ! rtph264depay ! video/x-h264,stream-format=avc ! h264parse ! v4l2h264dec ! fpsdisplaysink video-sink='kmssink driver-name=tidss' sync=true text-overlay=0 --verbose

Launch command of RTSP server:
./test-launch  --gst-debug=3 '( v4l2src device=/dev/video0 ! image/jpeg,width=1280,height=720 ! jpegdec ! videoconvert ! videorate ! video/x-raw,framerate=30/1 ! x264enc speed-preset=ultrafast threads=8 ! rtph264pay name=pay0 pt=96 )'

Many thanks in advance!

Best regards,
Philipp

  • Hi Philipp,

    rtspsrc location=rtsp://<address>:<port>/test

    Instead of using rtspsrc, can you try using filesrc and check whether you still face the issue?

    Also can you try passing capture-io-mode=5 to decoder to use dmabuf-import?

    v4l2h264dec capture-io-mode=5

    Regards

    Nikshith

  • Hi Nikshith,

    Thanks for your response!

    With filesrc i get the same behaviour.
    capture-io-mode=5 seems to brake the pipeline...

    Regards,

    Philipp

  • Hi Philip,

    capture-io-mode=5 seems to brake the pipeline...

    1. Can you attach the necessary logs to debug?

    2. What is the SDK version you are testing this on?

    Regards

    Nikshith

  • Hi Nikshith,

    Logs:

    root@tda4vm-sk:/opt/edge_ai_apps# GST_DEBUG="v4l2*:7" gst-launch-1.0 rtspsrc location=rtsp://192.168.16.32:8554/test latency=0 buffer-mode=auto protocol=udp ! rtph264depay ! video/x-h264,stream-format=avc ! h264parse ! v4l2h264dec capture-io-mode=5 ! video/x-raw,format=NV12 ! tiovxmultiscaler ! queue ! video/x-raw,width=640,height=640 ! tiovxcolorconvert ! video/x-raw,format=RGB ! kmssink driver-name=tidss sync=true
    0:00:00.045392542  1760     0x40290670 DEBUG                   v4l2 gstv4l2.c:131:gst_v4l2_probe_and_register: Probing devices
    0:00:00.232860794  1760     0x40290670 DEBUG                   v4l2 gstv4l2.c:164:gst_v4l2_probe_and_register: Probing 'vxe-enc' located at '/dev/video0'
    0:00:00.232898131  1760     0x40290670 DEBUG                   v4l2 gstv4l2.c:75:gst_v4l2_probe_template_caps: Getting /dev/video0 format enumerations
    0:00:00.232923216  1760     0x40290670 DEBUG                   v4l2 gstv4l2.c:75:gst_v4l2_probe_template_caps: Getting /dev/video0 format enumerations
    0:00:00.232943787  1760     0x40290670 LOG                     v4l2 gstv4l2.c:89:gst_v4l2_probe_template_caps: index:       0
    0:00:00.232957697  1760     0x40290670 LOG                     v4l2 gstv4l2.c:90:gst_v4l2_probe_template_caps: type:        10
    0:00:00.232970208  1760     0x40290670 LOG                     v4l2 gstv4l2.c:91:gst_v4l2_probe_template_caps: flags:       00000000
    0:00:00.232982563  1760     0x40290670 LOG                     v4l2 gstv4l2.c:92:gst_v4l2_probe_template_caps: description: 'Y/CbCr 4:2:0'
    0:00:00.232996954  1760     0x40290670 LOG                     v4l2 gstv4l2.c:93:gst_v4l2_probe_template_caps: pixelformat: NV12
    0:00:00.233088307  1760     0x40290670 LOG                     v4l2 gstv4l2.c:89:gst_v4l2_probe_template_caps: index:       1
    0:00:00.233105462  1760     0x40290670 LOG                     v4l2 gstv4l2.c:90:gst_v4l2_probe_template_caps: type:        10
    0:00:00.233117663  1760     0x40290670 LOG                     v4l2 gstv4l2.c:91:gst_v4l2_probe_template_caps: flags:       00000000
    0:00:00.233129783  1760     0x40290670 LOG                     v4l2 gstv4l2.c:92:gst_v4l2_probe_template_caps: description: '32-bit A/XRGB 8-8-8-8'
    0:00:00.233143333  1760     0x40290670 LOG                     v4l2 gstv4l2.c:93:gst_v4l2_probe_template_caps: pixelformat: RGB4
    0:00:00.233271918  1760     0x40290670 DEBUG                   v4l2 gstv4l2.c:75:gst_v4l2_probe_template_caps: Getting /dev/video0 format enumerations
    0:00:00.233323969  1760     0x40290670 DEBUG                   v4l2 gstv4l2.c:75:gst_v4l2_probe_template_caps: Getting /dev/video0 format enumerations
    0:00:00.233361426  1760     0x40290670 LOG                     v4l2 gstv4l2.c:89:gst_v4l2_probe_template_caps: index:       0
    0:00:00.233429328  1760     0x40290670 LOG                     v4l2 gstv4l2.c:90:gst_v4l2_probe_template_caps: type:        9
    0:00:00.233483984  1760     0x40290670 LOG                     v4l2 gstv4l2.c:91:gst_v4l2_probe_template_caps: flags:       00000001
    0:00:00.233499975  1760     0x40290670 LOG                     v4l2 gstv4l2.c:92:gst_v4l2_probe_template_caps: description: 'H.264'
    0:00:00.233514530  1760     0x40290670 LOG                     v4l2 gstv4l2.c:93:gst_v4l2_probe_template_caps: pixelformat: H264
    0:00:00.233586918  1760     0x40290670 DEBUG                   v4l2 gstv4l2object.c:1614:gst_v4l2_object_v4l2fourcc_to_bare_struct: Unsupported fourcc 0x3436324d M264
    0:00:00.233732903  1760     0x40290670 DEBUG                   v4l2 gstv4l2object.c:1614:gst_v4l2_object_v4l2fourcc_to_bare_struct: Unsupported fourcc 0x31424752 RGB1
    0:00:00.233767094  1760     0x40290670 DEBUG                   v4l2 gstv4l2object.c:1614:gst_v4l2_object_v4l2fourcc_to_bare_struct: Unsupported fourcc 0x35315241 AR15
    0:00:00.233789314  1760     0x40290670 DEBUG                   v4l2 gstv4l2object.c:1614:gst_v4l2_object_v4l2fourcc_to_bare_struct: Unsupported fourcc 0xb5315241 AR1.
    0:00:00.233819865  1760     0x40290670 DEBUG                   v4l2 gstv4l2object.c:1614:gst_v4l2_object_v4l2fourcc_to_bare_struct: Unsupported fourcc 0x52424752 RGBR
    0:00:00.233835596  1760     0x40290670 DEBUG                   v4l2 gstv4l2object.c:1614:gst_v4l2_object_v4l2fourcc_to_bare_struct: Unsupported fourcc 0x48524742 BGRH
    0:00:00.233906748  1760     0x40290670 DEBUG                   v4l2 gstv4l2object.c:1614:gst_v4l2_object_v4l2fourcc_to_bare_struct: Unsupported fourcc 0x34343452 R444
    0:00:00.233979865  1760     0x40290670 DEBUG                   v4l2 gstv4l2object.c:1614:gst_v4l2_object_v4l2fourcc_to_bare_struct: Unsupported fourcc 0x20343059 Y04 
    0:00:00.233995996  1760     0x40290670 DEBUG                   v4l2 gstv4l2object.c:1614:gst_v4l2_object_v4l2fourcc_to_bare_struct: Unsupported fourcc 0x20363059 Y06 
    0:00:00.234010231  1760     0x40290670 DEBUG                   v4l2 gstv4l2object.c:1614:gst_v4l2_object_v4l2fourcc_to_bare_struct: Unsupported fourcc 0x20303159 Y10 
    0:00:00.234052993  1760     0x40290670 DEBUG                   v4l2 gstv4l2object.c:1614:gst_v4l2_object_v4l2fourcc_to_bare_struct: Unsupported fourcc 0x20323159 Y12 
    0:00:00.234076934  1760     0x40290670 DEBUG                   v4l2 gstv4l2object.c:1614:gst_v4l2_object_v4l2fourcc_to_bare_struct: Unsupported fourcc 0x42303159 Y10B
    0:00:00.234125110  1760     0x40290670 DEBUG                   v4l2 gstv4l2object.c:1614:gst_v4l2_object_v4l2fourcc_to_bare_struct: Unsupported fourcc 0x384c4150 PAL8
    0:00:00.234141101  1760     0x40290670 DEBUG                   v4l2 gstv4l2object.c:1614:gst_v4l2_object_v4l2fourcc_to_bare_struct: Unsupported fourcc 0x20385655 UV8 
    0:00:00.234163811  1760     0x40290670 DEBUG                   v4l2 gstv4l2object.c:1614:gst_v4l2_object_v4l2fourcc_to_bare_struct: Unsupported fourcc 0x31324d59 YM21
    0:00:00.234213343  1760     0x40290670 DEBUG                   v4l2 gstv4l2object.c:1614:gst_v4l2_object_v4l2fourcc_to_bare_struct: Unsupported fourcc 0x56555959 YYUV
    0:00:00.234236144  1760     0x40290670 DEBUG                   v4l2 gstv4l2object.c:1614:gst_v4l2_object_v4l2fourcc_to_bare_struct: Unsupported fourcc 0x59555956 VYUY
    0:00:00.234259725  1760     0x40290670 DEBUG                   v4l2 gstv4l2object.c:1614:gst_v4l2_object_v4l2fourcc_to_bare_struct: Unsupported fourcc 0x50313459 Y41P
    0:00:00.234273750  1760     0x40290670 DEBUG                   v4l2 gstv4l2object.c:1614:gst_v4l2_object_v4l2fourcc_to_bare_struct: Unsupported fourcc 0x34343459 Y444
    0:00:00.234317746  1760     0x40290670 DEBUG                   v4l2 gstv4l2object.c:1614:gst_v4l2_object_v4l2fourcc_to_bare_struct: Unsupported fourcc 0x4f565559 YUVO
    0:00:00.234332007  1760     0x40290670 DEBUG                   v4l2 gstv4l2object.c:1614:gst_v4l2_object_v4l2fourcc_to_bare_struct: Unsupported fourcc 0x50565559 YUVP
    0:00:00.234345982  1760     0x40290670 DEBUG                   v4l2 gstv4l2object.c:1614:gst_v4l2_object_v4l2fourcc_to_bare_struct: Unsupported fourcc 0x34565559 YUV4
    0:00:00.234369613  1760     0x40290670 DEBUG                   v4l2 gstv4l2object.c:1614:gst_v4l2_object_v4l2fourcc_to_bare_struct: Unsupported fourcc 0x34324948 HI24
    0:00:00.234413029  1760     0x40290670 DEBUG                   v4l2 gstv4l2object.c:1614:gst_v4l2_object_v4l2fourcc_to_bare_struct: Unsupported fourcc 0x32314d48 HM12
    0:00:00.234428570  1760     0x40290670 DEBUG                   v4l2 gstv4l2object.c:1614:gst_v4l2_object_v4l2fourcc_to_bare_struct: Unsupported fourcc 0x3032344d M420
    0:00:00.234456371  1760     0x40290670 DEBUG                   v4l2 gstv4l2object.c:1614:gst_v4l2_object_v4l2fourcc_to_bare_struct: Unsupported fourcc 0x32314d56 VM12
    0:00:00.234525538  1760     0x40290670 DEBUG                   v4l2 gstv4l2object.c:1614:gst_v4l2_object_v4l2fourcc_to_bare_struct: Unsupported fourcc 0x3234564e NV42
    0:00:00.238847783  1760     0x40290670 DEBUG                   v4l2 gstv4l2.c:164:gst_v4l2_probe_and_register: Probing 'vxd-dec' located at '/dev/video1'
    0:00:00.238877014  1760     0x40290670 DEBUG                   v4l2 gstv4l2.c:75:gst_v4l2_probe_template_caps: Getting /dev/video1 format enumerations
    0:00:00.238898129  1760     0x40290670 DEBUG                   v4l2 gstv4l2.c:75:gst_v4l2_probe_template_caps: Getting /dev/video1 format enumerations
    0:00:00.238918860  1760     0x40290670 LOG                     v4l2 gstv4l2.c:89:gst_v4l2_probe_template_caps: index:       0
    0:00:00.238932201  1760     0x40290670 LOG                     v4l2 gstv4l2.c:90:gst_v4l2_probe_template_caps: type:        10
    0:00:00.238945076  1760     0x40290670 LOG                     v4l2 gstv4l2.c:91:gst_v4l2_probe_template_caps: flags:       00000001
    0:00:00.238956606  1760     0x40290670 LOG                     v4l2 gstv4l2.c:92:gst_v4l2_probe_template_caps: description: 'H.264'
    0:00:00.238970547  1760     0x40290670 LOG                     v4l2 gstv4l2.c:93:gst_v4l2_probe_template_caps: pixelformat: H264
    0:00:00.238995633  1760     0x40290670 LOG                     v4l2 gstv4l2.c:89:gst_v4l2_probe_template_caps: index:       1
    0:00:00.239008113  1760     0x40290670 LOG                     v4l2 gstv4l2.c:90:gst_v4l2_probe_template_caps: type:        10
    0:00:00.239020088  1760     0x40290670 LOG                     v4l2 gstv4l2.c:91:gst_v4l2_probe_template_caps: flags:       00000001
    0:00:00.239031954  1760     0x40290670 LOG                     v4l2 gstv4l2.c:92:gst_v4l2_probe_template_caps: description: 'HEVC'
    0:00:00.239045099  1760     0x40290670 LOG                     v4l2 gstv4l2.c:93:gst_v4l2_probe_template_caps: pixelformat: HEVC
    0:00:00.239085155  1760     0x40290670 LOG                     v4l2 gstv4l2.c:89:gst_v4l2_probe_template_caps: index:       2
    0:00:00.239098206  1760     0x40290670 LOG                     v4l2 gstv4l2.c:90:gst_v4l2_probe_template_caps: type:        10
    0:00:00.239109916  1760     0x40290670 LOG                     v4l2 gstv4l2.c:91:gst_v4l2_probe_template_caps: flags:       00000001
    0:00:00.239140247  1760     0x40290670 LOG                     v4l2 gstv4l2.c:92:gst_v4l2_probe_template_caps: description: 'Motion-JPEG'
    0:00:00.239155503  1760     0x40290670 LOG                     v4l2 gstv4l2.c:93:gst_v4l2_probe_template_caps: pixelformat: MJPG
    0:00:00.239181234  1760     0x40290670 DEBUG                   v4l2 gstv4l2.c:75:gst_v4l2_probe_template_caps: Getting /dev/video1 format enumerations
    0:00:00.239197149  1760     0x40290670 DEBUG                   v4l2 gstv4l2.c:75:gst_v4l2_probe_template_caps: Getting /dev/video1 format enumerations
    0:00:00.239277222  1760     0x40290670 LOG                     v4l2 gstv4l2.c:89:gst_v4l2_probe_template_caps: index:       0
    0:00:00.239290642  1760     0x40290670 LOG                     v4l2 gstv4l2.c:90:gst_v4l2_probe_template_caps: type:        9
    0:00:00.239302582  1760     0x40290670 LOG                     v4l2 gstv4l2.c:91:gst_v4l2_probe_template_caps: flags:       00000000
    0:00:00.239314213  1760     0x40290670 LOG                     v4l2 gstv4l2.c:92:gst_v4l2_probe_template_caps: description: 'Y/CbCr 4:2:0'
    0:00:00.239327008  1760     0x40290670 LOG                     v4l2 gstv4l2.c:93:gst_v4l2_probe_template_caps: pixelformat: NV12
    0:00:00.239388250  1760     0x40290670 LOG                     v4l2 gstv4l2.c:89:gst_v4l2_probe_template_caps: index:       1
    0:00:00.239401211  1760     0x40290670 LOG                     v4l2 gstv4l2.c:90:gst_v4l2_probe_template_caps: type:        9
    0:00:00.239412686  1760     0x40290670 LOG                     v4l2 gstv4l2.c:91:gst_v4l2_probe_template_caps: flags:       00000000
    0:00:00.239423376  1760     0x40290670 LOG                     v4l2 gstv4l2.c:92:gst_v4l2_probe_template_caps: description: 'Y/CbCr 4:2:2'
    0:00:00.239467853  1760     0x40290670 LOG                     v4l2 gstv4l2.c:93:gst_v4l2_probe_template_caps: pixelformat: NV16
    0:00:00.239489059  1760     0x40290670 LOG                     v4l2 gstv4l2.c:89:gst_v4l2_probe_template_caps: index:       2
    0:00:00.239501449  1760     0x40290670 LOG                     v4l2 gstv4l2.c:90:gst_v4l2_probe_template_caps: type:        9
    0:00:00.239512829  1760     0x40290670 LOG                     v4l2 gstv4l2.c:91:gst_v4l2_probe_template_caps: flags:       00000000
    0:00:00.239552166  1760     0x40290670 LOG                     v4l2 gstv4l2.c:92:gst_v4l2_probe_template_caps: description: '10-bit YUV 4:2:0 (NV12)'
    0:00:00.239567856  1760     0x40290670 LOG                     v4l2 gstv4l2.c:93:gst_v4l2_probe_template_caps: pixelformat: TI12
    0:00:00.239581547  1760     0x40290670 DEBUG                   v4l2 gstv4l2object.c:1614:gst_v4l2_object_v4l2fourcc_to_bare_struct: Unsupported fourcc 0x32314954 TI12
    0:00:00.239595777  1760     0x40290670 LOG                     v4l2 gstv4l2.c:89:gst_v4l2_probe_template_caps: index:       3
    0:00:00.239607567  1760     0x40290670 LOG                     v4l2 gstv4l2.c:90:gst_v4l2_probe_template_caps: type:        9
    0:00:00.239618838  1760     0x40290670 LOG                     v4l2 gstv4l2.c:91:gst_v4l2_probe_template_caps: flags:       00000000
    0:00:00.239658879  1760     0x40290670 LOG                     v4l2 gstv4l2.c:92:gst_v4l2_probe_template_caps: description: '10-bit YUV 4:2:2 (NV16)'
    0:00:00.239673254  1760     0x40290670 LOG                     v4l2 gstv4l2.c:93:gst_v4l2_probe_template_caps: pixelformat: TI16
    0:00:00.239686875  1760     0x40290670 DEBUG                   v4l2 gstv4l2object.c:1614:gst_v4l2_object_v4l2fourcc_to_bare_struct: Unsupported fourcc 0x36314954 TI16
    0:00:00.239700525  1760     0x40290670 LOG                     v4l2 gstv4l2.c:89:gst_v4l2_probe_template_caps: index:       4
    0:00:00.239712141  1760     0x40290670 LOG                     v4l2 gstv4l2.c:90:gst_v4l2_probe_template_caps: type:        9
    0:00:00.239753622  1760     0x40290670 LOG                     v4l2 gstv4l2.c:91:gst_v4l2_probe_template_caps: flags:       00000000
    0:00:00.239765877  1760     0x40290670 LOG                     v4l2 gstv4l2.c:92:gst_v4l2_probe_template_caps: description: 'Planar YUV 4:2:0 (N-C)'
    0:00:00.239778738  1760     0x40290670 LOG                     v4l2 gstv4l2.c:93:gst_v4l2_probe_template_caps: pixelformat: YM12
    0:00:00.239798869  1760     0x40290670 LOG                     v4l2 gstv4l2.c:89:gst_v4l2_probe_template_caps: index:       5
    0:00:00.239811074  1760     0x40290670 LOG                     v4l2 gstv4l2.c:90:gst_v4l2_probe_template_caps: type:        9
    0:00:00.239852710  1760     0x40290670 LOG                     v4l2 gstv4l2.c:91:gst_v4l2_probe_template_caps: flags:       00000000
    0:00:00.239865471  1760     0x40290670 LOG                     v4l2 gstv4l2.c:92:gst_v4l2_probe_template_caps: description: 'Planar YUV 4:2:2 (N-C)'
    0:00:00.239878566  1760     0x40290670 LOG                     v4l2 gstv4l2.c:93:gst_v4l2_probe_template_caps: pixelformat: YM16
    APP: Init ... !!!
    MEM: Init ... !!!
    MEM: Initialized DMA HEAP (fd=5) !!!
    MEM: Init ... Done !!!
    IPC: Init ... !!!
    IPC: Init ... Done !!!
    REMOTE_SERVICE: Init ... !!!
    REMOTE_SERVICE: Init ... Done !!!
       652.639248 s: GTC Frequency = 200 MHz
    APP: Init ... Done !!!
       652.639321 s:  VX_ZONE_INIT:Enabled
       652.639330 s:  VX_ZONE_ERROR:Enabled
       652.639339 s:  VX_ZONE_WARNING:Enabled
       652.640053 s:  VX_ZONE_INIT:[tivxInitLocal:130] Initialization Done !!!
       652.643667 s:  VX_ZONE_INIT:[tivxHostInitLocal:86] Initialization Done for HOST !!!
    0:00:00.365897394  1760     0x40290670 DEBUG           v4l2videodec gstv4l2videodec.c:868:gst_v4l2_video_dec_sink_getcaps:<v4l2h264dec0> Returning sink caps video/x-h264, width=(int)[ 1, 32768 ], height=(int)[ 1, 32768 ], framerate=(fraction)[ 0/1, 2147483647/1 ], stream-format=(string)byte-stream, alignment=(string)au
    0:00:00.366013168  1760     0x40290670 DEBUG           v4l2videodec gstv4l2videodec.c:868:gst_v4l2_video_dec_sink_getcaps:<v4l2h264dec0> Returning sink caps video/x-h264, width=(int)[ 1, 32768 ], height=(int)[ 1, 32768 ], framerate=(fraction)[ 0/1, 2147483647/1 ], stream-format=(string)byte-stream, alignment=(string)au
    0:00:00.366223184  1760     0x40290670 DEBUG           v4l2videodec gstv4l2videodec.c:844:gst_v4l2_video_dec_src_query:<v4l2h264dec0> Returning src caps video/x-raw, format=(string){ NV12, NV16, I420, Y42B }, width=(int)[ 1, 32768 ], height=(int)[ 1, 32768 ], framerate=(fraction)[ 0/1, 2147483647/1 ]
    0:00:00.366300187  1760     0x40290670 DEBUG           v4l2videodec gstv4l2videodec.c:844:gst_v4l2_video_dec_src_query:<v4l2h264dec0> Returning src caps video/x-raw, format=(string){ NV12, NV16, I420, Y42B }, width=(int)[ 1, 32768 ], height=(int)[ 1, 32768 ], framerate=(fraction)[ 0/1, 2147483647/1 ]
    0:00:00.366456337  1760     0x40290670 DEBUG           v4l2videodec gstv4l2videodec.c:844:gst_v4l2_video_dec_src_query:<v4l2h264dec0> Returning src caps video/x-raw, format=(string){ NV12, NV16, I420, Y42B }, width=(int)[ 1, 32768 ], height=(int)[ 1, 32768 ], framerate=(fraction)[ 0/1, 2147483647/1 ]
    0:00:00.366730896  1760     0x40290670 DEBUG           v4l2videodec gstv4l2videodec.c:844:gst_v4l2_video_dec_src_query:<v4l2h264dec0> Returning src caps video/x-raw, format=(string){ NV12, NV16, I420, Y42B }, width=(int)[ 1, 32768 ], height=(int)[ 1, 32768 ], framerate=(fraction)[ 0/1, 2147483647/1 ]
    0:00:00.367043626  1760     0x40290670 DEBUG           v4l2videodec gstv4l2videodec.c:844:gst_v4l2_video_dec_src_query:<v4l2h264dec0> Returning src caps video/x-raw, format=(string){ NV12, NV16, I420, Y42B }, width=(int)[ 1, 32768 ], height=(int)[ 1, 32768 ], framerate=(fraction)[ 0/1, 2147483647/1 ]
    0:00:00.367212621  1760     0x40290670 DEBUG           v4l2videodec gstv4l2videodec.c:844:gst_v4l2_video_dec_src_query:<v4l2h264dec0> Returning src caps video/x-raw, format=(string){ NV12, NV16, I420, Y42B }, width=(int)[ 1, 32768 ], height=(int)[ 1, 32768 ], framerate=(fraction)[ 0/1, 2147483647/1 ]
    0:00:00.367653290  1760     0x40290670 DEBUG           v4l2videodec gstv4l2videodec.c:844:gst_v4l2_video_dec_src_query:<v4l2h264dec0> Returning src caps video/x-raw, format=(string){ NV12, NV16, I420, Y42B }, width=(int)[ 1, 32768 ], height=(int)[ 1, 32768 ], framerate=(fraction)[ 0/1, 2147483647/1 ]
    0:00:00.368197833  1760     0x40290670 DEBUG           v4l2videodec gstv4l2videodec.c:844:gst_v4l2_video_dec_src_query:<v4l2h264dec0> Returning src caps video/x-raw, format=(string){ NV12, NV16, I420, Y42B }, width=(int)[ 1, 32768 ], height=(int)[ 1, 32768 ], framerate=(fraction)[ 0/1, 2147483647/1 ]
    0:00:00.368430040  1760     0x40290670 DEBUG           v4l2videodec gstv4l2videodec.c:844:gst_v4l2_video_dec_src_query:<v4l2h264dec0> Returning src caps video/x-raw, format=(string){ NV12, NV16, I420, Y42B }, width=(int)[ 1, 32768 ], height=(int)[ 1, 32768 ], framerate=(fraction)[ 0/1, 2147483647/1 ]
    0:00:00.368675063  1760     0x40290670 DEBUG           v4l2videodec gstv4l2videodec.c:844:gst_v4l2_video_dec_src_query:<v4l2h264dec0> Returning src caps video/x-raw, format=(string){ NV12, NV16, I420, Y42B }, width=(int)[ 1, 32768 ], height=(int)[ 1, 32768 ], framerate=(fraction)[ 0/1, 2147483647/1 ]
    Setting pipeline to PAUSED ...
    0:00:00.446755042  1760     0x40290670 DEBUG           v4l2videodec gstv4l2videodec.c:116:gst_v4l2_video_dec_open:<v4l2h264dec0> Opening
    0:00:00.446801953  1760     0x40290670 DEBUG                   v4l2 v4l2_calls.c:523:gst_v4l2_open:<v4l2h264dec0:sink> Trying to open device /dev/video1
    0:00:00.447263103  1760     0x40290670 DEBUG                   v4l2 v4l2_calls.c:66:gst_v4l2_get_capabilities:<v4l2h264dec0> getting capabilities
    0:00:00.447301624  1760     0x40290670 LOG                     v4l2 v4l2_calls.c:80:gst_v4l2_get_capabilities:<v4l2h264dec0> driver:      'vxd-dec'
    0:00:00.447318440  1760     0x40290670 LOG                     v4l2 v4l2_calls.c:81:gst_v4l2_get_capabilities:<v4l2h264dec0> card:        'vxd-dec'
    0:00:00.447333445  1760     0x40290670 LOG                     v4l2 v4l2_calls.c:82:gst_v4l2_get_capabilities:<v4l2h264dec0> bus_info:    'platform:vxd-dec'
    0:00:00.447348446  1760     0x40290670 LOG                     v4l2 v4l2_calls.c:83:gst_v4l2_get_capabilities:<v4l2h264dec0> version:     00050a78
    0:00:00.447369967  1760     0x40290670 LOG                     v4l2 v4l2_calls.c:84:gst_v4l2_get_capabilities:<v4l2h264dec0> capabilites: 04204000
    0:00:00.447386257  1760     0x40290670 DEBUG                   v4l2 v4l2_calls.c:496:gst_v4l2_adjust_buf_type: adjust type to multi-planar output
    0:00:00.447399213  1760     0x40290670 DEBUG                   v4l2 v4l2_calls.c:138:gst_v4l2_fill_lists:<v4l2h264dec0> getting enumerations
    0:00:00.447410863  1760     0x40290670 DEBUG                   v4l2 v4l2_calls.c:141:gst_v4l2_fill_lists:<v4l2h264dec0>   channels
    0:00:00.447462795  1760     0x40290670 DEBUG                   v4l2 v4l2_calls.c:213:gst_v4l2_fill_lists:<v4l2h264dec0>   norms
    0:00:00.447481425  1760     0x40290670 DEBUG                   v4l2 v4l2_calls.c:261:gst_v4l2_fill_lists:<v4l2h264dec0>   controls+menus
    0:00:00.447496081  1760     0x40290670 DEBUG                   v4l2 v4l2_calls.c:281:gst_v4l2_fill_lists:<v4l2h264dec0> checking control 00000000
    0:00:00.447509626  1760     0x40290670 DEBUG                   v4l2 v4l2_calls.c:291:gst_v4l2_fill_lists:<v4l2h264dec0> V4L2_CTRL_FLAG_NEXT_CTRL not supported.
    0:00:00.447545867  1760     0x40290670 DEBUG                   v4l2 v4l2_calls.c:281:gst_v4l2_fill_lists:<v4l2h264dec0> checking control 00980900
    0:00:00.447573363  1760     0x40290670 DEBUG                   v4l2 v4l2_calls.c:299:gst_v4l2_fill_lists:<v4l2h264dec0> skipping control 00980900
    0:00:00.447587574  1760     0x40290670 DEBUG                   v4l2 v4l2_calls.c:281:gst_v4l2_fill_lists:<v4l2h264dec0> checking control 08000000
    0:00:00.447600439  1760     0x40290670 DEBUG                   v4l2 v4l2_calls.c:304:gst_v4l2_fill_lists:<v4l2h264dec0> controls finished
    0:00:00.447612334  1760     0x40290670 DEBUG                   v4l2 v4l2_calls.c:456:gst_v4l2_fill_lists:<v4l2h264dec0> done
    0:00:00.447662021  1760     0x40290670 INFO                    v4l2 v4l2_calls.c:587:gst_v4l2_open:<v4l2h264dec0:sink> Opened device 'vxd-dec' (/dev/video1) successfully
    0:00:00.447679812  1760     0x40290670 DEBUG                   v4l2 v4l2_calls.c:667:gst_v4l2_dup:<v4l2h264dec0:src> Trying to dup device /dev/video1
    0:00:00.447691872  1760     0x40290670 DEBUG                   v4l2 v4l2_calls.c:503:gst_v4l2_adjust_buf_type: adjust type to multi-planar capture
    0:00:00.447710098  1760     0x40290670 INFO                    v4l2 v4l2_calls.c:686:gst_v4l2_dup:<v4l2h264dec0:src> Cloned device 'vxd-dec' (/dev/video1) successfully
    0:00:00.447757469  1760     0x40290670 DEBUG                   v4l2 gstv4l2object.c:1190:gst_v4l2_object_fill_format_list:<v4l2h264dec0:sink> getting src format enumerations
    0:00:00.447779325  1760     0x40290670 LOG                     v4l2 gstv4l2object.c:1208:gst_v4l2_object_fill_format_list:<v4l2h264dec0:sink> index:       0
    0:00:00.447794180  1760     0x40290670 LOG                     v4l2 gstv4l2object.c:1209:gst_v4l2_object_fill_format_list:<v4l2h264dec0:sink> type:        10
    0:00:00.447807686  1760     0x40290670 LOG                     v4l2 gstv4l2object.c:1210:gst_v4l2_object_fill_format_list:<v4l2h264dec0:sink> flags:       00000001
    0:00:00.447820471  1760     0x40290670 LOG                     v4l2 gstv4l2object.c:1211:gst_v4l2_object_fill_format_list:<v4l2h264dec0:sink> description: 'H.264'
    0:00:00.447837142  1760     0x40290670 LOG                     v4l2 gstv4l2object.c:1213:gst_v4l2_object_fill_format_list:<v4l2h264dec0:sink> pixelformat: H264
    0:00:00.447854542  1760     0x40290670 LOG                     v4l2 gstv4l2object.c:1208:gst_v4l2_object_fill_format_list:<v4l2h264dec0:sink> index:       1
    0:00:00.447891068  1760     0x40290670 LOG                     v4l2 gstv4l2object.c:1209:gst_v4l2_object_fill_format_list:<v4l2h264dec0:sink> type:        10
    0:00:00.447911144  1760     0x40290670 LOG                     v4l2 gstv4l2object.c:1210:gst_v4l2_object_fill_format_list:<v4l2h264dec0:sink> flags:       00000001
    0:00:00.447924264  1760     0x40290670 LOG                     v4l2 gstv4l2object.c:1211:gst_v4l2_object_fill_format_list:<v4l2h264dec0:sink> description: 'HEVC'
    0:00:00.447939235  1760     0x40290670 LOG                     v4l2 gstv4l2object.c:1213:gst_v4l2_object_fill_format_list:<v4l2h264dec0:sink> pixelformat: HEVC
    0:00:00.447957745  1760     0x40290670 LOG                     v4l2 gstv4l2object.c:1208:gst_v4l2_object_fill_format_list:<v4l2h264dec0:sink> index:       2
    0:00:00.447970761  1760     0x40290670 LOG                     v4l2 gstv4l2object.c:1209:gst_v4l2_object_fill_format_list:<v4l2h264dec0:sink> type:        10
    0:00:00.448014582  1760     0x40290670 LOG                     v4l2 gstv4l2object.c:1210:gst_v4l2_object_fill_format_list:<v4l2h264dec0:sink> flags:       00000001
    0:00:00.448028293  1760     0x40290670 LOG                     v4l2 gstv4l2object.c:1211:gst_v4l2_object_fill_format_list:<v4l2h264dec0:sink> description: 'Motion-JPEG'
    0:00:00.448042718  1760     0x40290670 LOG                     v4l2 gstv4l2object.c:1213:gst_v4l2_object_fill_format_list:<v4l2h264dec0:sink> pixelformat: MJPG
    0:00:00.448058664  1760     0x40290670 INFO                    v4l2 gstv4l2object.c:1227:gst_v4l2_object_fill_format_list:<v4l2h264dec0:sink> got 3 format(s):
    0:00:00.448074254  1760     0x40290670 INFO                    v4l2 gstv4l2object.c:1231:gst_v4l2_object_fill_format_list:<v4l2h264dec0:sink>   MJPG
    0:00:00.448118396  1760     0x40290670 INFO                    v4l2 gstv4l2object.c:1231:gst_v4l2_object_fill_format_list:<v4l2h264dec0:sink>   HEVC
    0:00:00.448134336  1760     0x40290670 INFO                    v4l2 gstv4l2object.c:1231:gst_v4l2_object_fill_format_list:<v4l2h264dec0:sink>   H264
    0:00:00.448210629  1760     0x40290670 DEBUG                   v4l2 gstv4l2object.c:2684:gst_v4l2_object_probe_caps_for_format:<v4l2h264dec0:sink> Enumerating frame sizes for H264
    0:00:00.448258580  1760     0x40290670 DEBUG                   v4l2 gstv4l2object.c:2811:gst_v4l2_object_probe_caps_for_format:<v4l2h264dec0:sink> Failed to enumerate frame sizes for pixelformat H264 (Inappropriate ioctl for device)
    0:00:00.448276901  1760     0x40290670 LOG                     v4l2 gstv4l2object.c:2922:gst_v4l2_object_get_nearest_size:<v4l2h264dec0:sink> getting nearest size to 1x1 with format H264
    0:00:00.448298276  1760     0x40290670 LOG                     v4l2 gstv4l2object.c:2939:gst_v4l2_object_get_nearest_size:<v4l2h264dec0:sink> got nearest size 1x1
    0:00:00.448315332  1760     0x40290670 LOG                     v4l2 gstv4l2object.c:2922:gst_v4l2_object_get_nearest_size:<v4l2h264dec0:sink> getting nearest size to 32768x32768 with format H264
    0:00:00.448367669  1760     0x40290670 LOG                     v4l2 gstv4l2object.c:2939:gst_v4l2_object_get_nearest_size:<v4l2h264dec0:sink> got nearest size 32768x32768
    0:00:00.448398505  1760     0x40290670 DEBUG                   v4l2 gstv4l2object.c:2119:gst_v4l2_object_get_colorspace: Unknown enum v4l2_colorspace 0
    0:00:00.448485027  1760     0x40290670 INFO                    v4l2 gstv4l2object.c:4350:gst_v4l2_object_probe_caps:<v4l2h264dec0:sink> probed caps: video/x-h264, stream-format=(string)byte-stream, alignment=(string)au, width=(int)[ 1, 32768 ], height=(int)[ 1, 32768 ], colorimetry=(string){ bt601, smpte240m, bt709, 2:4:5:2, 2:4:5:3, 1:4:7:1, 2:4:7:1, 2:4:12:8, bt2020, 2:0:0:0 }, parsed=(boolean)true
    0:00:00.449043290  1760     0x40290670 DEBUG           v4l2videodec gstv4l2videodec.c:173:gst_v4l2_video_dec_start:<v4l2h264dec0> Starting
    0:00:00.449076186  1760     0x40290670 LOG                     v4l2 gstv4l2object.c:4227:gst_v4l2_object_unlock:<v4l2h264dec0:sink> start flushing
    Pipeline is live and does not need PREROLL ...
    Progress: (open) Opening Stream
    Progress: (connect) Connecting to rtsp://192.168.16.32:8554/test
    Progress: (open) Retrieving server options
    Progress: (open) Retrieving media info
    Progress: (request) SETUP stream 0
    Progress: (open) Opened Stream
    Setting pipeline to PLAYING ...
    New clock: GstSystemClock
    Progress: (request) Sending PLAY request
    Progress: (request) Sending PLAY request
    Progress: (request) Sent PLAY request
    0:00:01.595457949  1760 0xffff70003590 DEBUG           v4l2videodec gstv4l2videodec.c:426:gst_v4l2_video_dec_drain:<v4l2h264dec0> Draining...
    0:00:01.595724132  1760 0xffff70003590 DEBUG           v4l2videodec gstv4l2videodec.c:293:gst_v4l2_video_dec_flush:<v4l2h264dec0> Flushed
    0:00:01.595821645  1760 0xffff70003590 LOG                     v4l2 gstv4l2object.c:4240:gst_v4l2_object_unlock_stop:<v4l2h264dec0:sink> stop flushing
    0:00:01.595908903  1760 0xffff70003590 LOG                     v4l2 gstv4l2object.c:4240:gst_v4l2_object_unlock_stop:<v4l2h264dec0:src> stop flushing
    0:00:01.596697473  1760 0xffff70003590 DEBUG           v4l2videodec gstv4l2videodec.c:868:gst_v4l2_video_dec_sink_getcaps:<v4l2h264dec0> Returning sink caps video/x-h264, width=(int)[ 640, 2560 ], height=(int)[ 640, 2560 ], framerate=(fraction)[ 0/1, 2147483647/1 ], stream-format=(string)byte-stream, alignment=(string)au, colorimetry=(string){ bt601, smpte240m, bt709, 2:4:5:2, 2:4:5:3, 1:4:7:1, 2:4:7:1, 2:4:12:8, bt2020, 2:0:0:0 }, parsed=(boolean)true
    0:00:01.597455638  1760 0xffff70003590 DEBUG           v4l2videodec gstv4l2videodec.c:868:gst_v4l2_video_dec_sink_getcaps:<v4l2h264dec0> Returning sink caps video/x-h264, width=(int)[ 640, 2560 ], height=(int)[ 640, 2560 ], framerate=(fraction)[ 0/1, 2147483647/1 ], stream-format=(string)byte-stream, alignment=(string)au, colorimetry=(string){ bt601, smpte240m, bt709, 2:4:5:2, 2:4:5:3, 1:4:7:1, 2:4:7:1, 2:4:12:8, bt2020, 2:0:0:0 }, parsed=(boolean)true
    0:00:01.598850408  1760 0xffff70003590 DEBUG           v4l2videodec gstv4l2videodec.c:868:gst_v4l2_video_dec_sink_getcaps:<v4l2h264dec0> Returning sink caps video/x-h264, width=(int)[ 640, 2560 ], height=(int)[ 640, 2560 ], framerate=(fraction)[ 0/1, 2147483647/1 ], stream-format=(string)byte-stream, alignment=(string)au, colorimetry=(string){ bt601, smpte240m, bt709, 2:4:5:2, 2:4:5:3, 1:4:7:1, 2:4:7:1, 2:4:12:8, bt2020, 2:0:0:0 }, parsed=(boolean)true
    0:00:01.599378714  1760 0xffff70003590 DEBUG           v4l2videodec gstv4l2videodec.c:868:gst_v4l2_video_dec_sink_getcaps:<v4l2h264dec0> Returning sink caps video/x-h264, width=(int)1280, height=(int)720, framerate=(fraction)30/1, pixel-aspect-ratio=(fraction)1/1, stream-format=(string)byte-stream, alignment=(string)au, colorimetry=(string){ bt601, smpte240m, bt709, 2:4:5:2, 2:4:5:3, 1:4:7:1, 2:4:7:1, 2:4:12:8, bt2020, 2:0:0:0 }, parsed=(boolean)true, level=(string)3.1, profile=(string)constrained-baseline, interlace-mode=(string)progressive, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8
    0:00:01.599576111  1760 0xffff70003590 DEBUG           v4l2videodec gstv4l2videodec.c:223:gst_v4l2_video_dec_set_format:<v4l2h264dec0> Setting format: video/x-h264, stream-format=(string)byte-stream, alignment=(string)au, level=(string)3.1, profile=(string)constrained-baseline, pixel-aspect-ratio=(fraction)1/1, width=(int)1280, height=(int)720, framerate=(fraction)30/1, interlace-mode=(string)progressive, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8, parsed=(boolean)true
    0:00:01.599658968  1760 0xffff70003590 DEBUG                   v4l2 gstv4l2object.c:3968:gst_v4l2_object_set_format:<v4l2h264dec0:sink> Setting format to video/x-h264, stream-format=(string)byte-stream, alignment=(string)au, level=(string)3.1, profile=(string)constrained-baseline, pixel-aspect-ratio=(fraction)1/1, width=(int)1280, height=(int)720, framerate=(fraction)30/1, interlace-mode=(string)progressive, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8, parsed=(boolean)true
    0:00:01.599732036  1760 0xffff70003590 DEBUG                   v4l2 gstv4l2object.c:3377:gst_v4l2_object_set_format_full:<v4l2h264dec0:sink> progressive video
    0:00:01.599802883  1760 0xffff70003590 DEBUG                   v4l2 gstv4l2object.c:3519:gst_v4l2_object_set_format_full:<v4l2h264dec0:sink> Desired format 1280x720, format H264 stride: 0
    0:00:01.599855990  1760 0xffff70003590 DEBUG                   v4l2 gstv4l2object.c:3569:gst_v4l2_object_set_format_full:<v4l2h264dec0:sink> Desired format is 1280x720, format H264, nb planes 1
    0:00:01.599871505  1760 0xffff70003590 DEBUG                   v4l2 gstv4l2object.c:3578:gst_v4l2_object_set_format_full:<v4l2h264dec0:sink>   stride 0
    0:00:01.599884566  1760 0xffff70003590 DEBUG                   v4l2 gstv4l2object.c:3599:gst_v4l2_object_set_format_full:<v4l2h264dec0:sink> Desired colorspace is 0:0:0:0
    0:00:01.606055144  1760 0xffff70003590 DEBUG                   v4l2 gstv4l2object.c:3622:gst_v4l2_object_set_format_full:<v4l2h264dec0:sink> Got format of 1280x720, format H264, nb planes 1, colorspace 0:0:0:0
    0:00:01.606103455  1760 0xffff70003590 DEBUG                   v4l2 gstv4l2object.c:3632:gst_v4l2_object_set_format_full:<v4l2h264dec0:sink>   stride 0, sizeimage 1474560
    0:00:01.606148117  1760 0xffff70003590 DEBUG                   v4l2 gstv4l2object.c:2119:gst_v4l2_object_get_colorspace: Unknown enum v4l2_colorspace 0
    0:00:01.606177382  1760 0xffff70003590 DEBUG                   v4l2 gstv4l2object.c:3716:gst_v4l2_object_set_format_full:<v4l2h264dec0:sink> Desired framerate: 30/1
    0:00:01.606211629  1760 0xffff70003590 DEBUG                   v4l2 gstv4l2object.c:3238:gst_v4l2_object_save_format:<v4l2h264dec0:sink> Got sizeimage 1474560
    0:00:01.606239449  1760 0xffff70003590 DEBUG                   v4l2 gstv4l2object.c:2993:gst_v4l2_object_setup_pool:<v4l2h264dec0:sink> initializing the output system
    0:00:01.606266265  1760 0xffff70003590 INFO                    v4l2 gstv4l2object.c:3025:gst_v4l2_object_setup_pool:<v4l2h264dec0:sink> accessing buffers via mode 2
    0:00:01.606290081  1760 0xffff70003590 LOG                     v4l2 gstv4l2object.c:3034:gst_v4l2_object_setup_pool:<v4l2h264dec0:sink> initiating buffer pool
    0:00:01.606629012  1760 0xffff70003590 DEBUG         v4l2bufferpool gstv4l2bufferpool.c:520:gst_v4l2_buffer_pool_set_config:<v4l2h264dec0:pool:sink> config GstBufferPoolConfig, caps=(GstCaps)"video/x-h264\,\ stream-format\=\(string\)byte-stream\,\ alignment\=\(string\)au\,\ level\=\(string\)3.1\,\ profile\=\(string\)constrained-baseline\,\ pixel-aspect-ratio\=\(fraction\)1/1\,\ width\=\(int\)1280\,\ height\=\(int\)720\,\ framerate\=\(fraction\)30/1\,\ interlace-mode\=\(string\)progressive\,\ chroma-format\=\(string\)4:2:0\,\ bit-depth-luma\=\(uint\)8\,\ bit-depth-chroma\=\(uint\)8\,\ parsed\=\(boolean\)true", size=(uint)1474560, min-buffers=(uint)0, max-buffers=(uint)0, allocator=(GstAllocator)"NULL", params=(GstAllocationParams)NULL;
    0:00:01.606662423  1760 0xffff70003590 INFO          v4l2bufferpool gstv4l2bufferpool.c:568:gst_v4l2_buffer_pool_set_config:<v4l2h264dec0:pool:sink> increasing minimum buffers to 2
    0:00:01.606676313  1760 0xffff70003590 INFO          v4l2bufferpool gstv4l2bufferpool.c:581:gst_v4l2_buffer_pool_set_config:<v4l2h264dec0:pool:sink> reducing maximum buffers to 32
    0:00:01.606689594  1760 0xffff70003590 INFO          v4l2bufferpool gstv4l2bufferpool.c:592:gst_v4l2_buffer_pool_set_config:<v4l2h264dec0:pool:sink> can't allocate, setting maximum to minimum
    0:00:01.606733100  1760 0xffff70003590 DEBUG                   v4l2 gstv4l2object.c:1190:gst_v4l2_object_fill_format_list:<v4l2h264dec0:src> getting src format enumerations
    0:00:01.606755026  1760 0xffff70003590 LOG                     v4l2 gstv4l2object.c:1208:gst_v4l2_object_fill_format_list:<v4l2h264dec0:src> index:       0
    0:00:01.606769816  1760 0xffff70003590 LOG                     v4l2 gstv4l2object.c:1209:gst_v4l2_object_fill_format_list:<v4l2h264dec0:src> type:        9
    0:00:01.606783737  1760 0xffff70003590 LOG                     v4l2 gstv4l2object.c:1210:gst_v4l2_object_fill_format_list:<v4l2h264dec0:src> flags:       00000000
    0:00:01.606797582  1760 0xffff70003590 LOG                     v4l2 gstv4l2object.c:1211:gst_v4l2_object_fill_format_list:<v4l2h264dec0:src> description: 'Y/CbCr 4:2:0'
    0:00:01.606811393  1760 0xffff70003590 LOG                     v4l2 gstv4l2object.c:1213:gst_v4l2_object_fill_format_list:<v4l2h264dec0:src> pixelformat: NV12
    0:00:01.606830888  1760 0xffff70003590 LOG                     v4l2 gstv4l2object.c:1208:gst_v4l2_object_fill_format_list:<v4l2h264dec0:src> index:       1
    0:00:01.606845499  1760 0xffff70003590 LOG                     v4l2 gstv4l2object.c:1209:gst_v4l2_object_fill_format_list:<v4l2h264dec0:src> type:        9
    0:00:01.606859094  1760 0xffff70003590 LOG                     v4l2 gstv4l2object.c:1210:gst_v4l2_object_fill_format_list:<v4l2h264dec0:src> flags:       00000000
    0:00:01.606872275  1760 0xffff70003590 LOG                     v4l2 gstv4l2object.c:1211:gst_v4l2_object_fill_format_list:<v4l2h264dec0:src> description: 'Y/CbCr 4:2:2'
    0:00:01.606887555  1760 0xffff70003590 LOG                     v4l2 gstv4l2object.c:1213:gst_v4l2_object_fill_format_list:<v4l2h264dec0:src> pixelformat: NV16
    0:00:01.606905136  1760 0xffff70003590 LOG                     v4l2 gstv4l2object.c:1208:gst_v4l2_object_fill_format_list:<v4l2h264dec0:src> index:       2
    0:00:01.606919056  1760 0xffff70003590 LOG                     v4l2 gstv4l2object.c:1209:gst_v4l2_object_fill_format_list:<v4l2h264dec0:src> type:        9
    0:00:01.606929902  1760 0xffff70003590 LOG                     v4l2 gstv4l2object.c:1210:gst_v4l2_object_fill_format_list:<v4l2h264dec0:src> flags:       00000000
    0:00:01.606943207  1760 0xffff70003590 LOG                     v4l2 gstv4l2object.c:1211:gst_v4l2_object_fill_format_list:<v4l2h264dec0:src> description: '10-bit YUV 4:2:0 (NV12)'
    0:00:01.606958423  1760 0xffff70003590 LOG                     v4l2 gstv4l2object.c:1213:gst_v4l2_object_fill_format_list:<v4l2h264dec0:src> pixelformat: TI12
    0:00:01.606975908  1760 0xffff70003590 LOG                     v4l2 gstv4l2object.c:1208:gst_v4l2_object_fill_format_list:<v4l2h264dec0:src> index:       3
    0:00:01.606989764  1760 0xffff70003590 LOG                     v4l2 gstv4l2object.c:1209:gst_v4l2_object_fill_format_list:<v4l2h264dec0:src> type:        9
    0:00:01.607002984  1760 0xffff70003590 LOG                     v4l2 gstv4l2object.c:1210:gst_v4l2_object_fill_format_list:<v4l2h264dec0:src> flags:       00000000
    0:00:01.607015999  1760 0xffff70003590 LOG                     v4l2 gstv4l2object.c:1211:gst_v4l2_object_fill_format_list:<v4l2h264dec0:src> description: '10-bit YUV 4:2:2 (NV16)'
    0:00:01.607030780  1760 0xffff70003590 LOG                     v4l2 gstv4l2object.c:1213:gst_v4l2_object_fill_format_list:<v4l2h264dec0:src> pixelformat: TI16
    0:00:01.607047385  1760 0xffff70003590 LOG                     v4l2 gstv4l2object.c:1208:gst_v4l2_object_fill_format_list:<v4l2h264dec0:src> index:       4
    0:00:01.607061091  1760 0xffff70003590 LOG                     v4l2 gstv4l2object.c:1209:gst_v4l2_object_fill_format_list:<v4l2h264dec0:src> type:        9
    0:00:01.607071811  1760 0xffff70003590 LOG                     v4l2 gstv4l2object.c:1210:gst_v4l2_object_fill_format_list:<v4l2h264dec0:src> flags:       00000000
    0:00:01.607084957  1760 0xffff70003590 LOG                     v4l2 gstv4l2object.c:1211:gst_v4l2_object_fill_format_list:<v4l2h264dec0:src> description: 'Planar YUV 4:2:0 (N-C)'
    0:00:01.607100122  1760 0xffff70003590 LOG                     v4l2 gstv4l2object.c:1213:gst_v4l2_object_fill_format_list:<v4l2h264dec0:src> pixelformat: YM12
    0:00:01.607117248  1760 0xffff70003590 LOG                     v4l2 gstv4l2object.c:1208:gst_v4l2_object_fill_format_list:<v4l2h264dec0:src> index:       5
    0:00:01.607175474  1760 0xffff70003590 LOG                     v4l2 gstv4l2object.c:1209:gst_v4l2_object_fill_format_list:<v4l2h264dec0:src> type:        9
    0:00:01.607190660  1760 0xffff70003590 LOG                     v4l2 gstv4l2object.c:1210:gst_v4l2_object_fill_format_list:<v4l2h264dec0:src> flags:       00000000
    0:00:01.607203605  1760 0xffff70003590 LOG                     v4l2 gstv4l2object.c:1211:gst_v4l2_object_fill_format_list:<v4l2h264dec0:src> description: 'Planar YUV 4:2:2 (N-C)'
    0:00:01.607219011  1760 0xffff70003590 LOG                     v4l2 gstv4l2object.c:1213:gst_v4l2_object_fill_format_list:<v4l2h264dec0:src> pixelformat: YM16
    0:00:01.607233476  1760 0xffff70003590 INFO                    v4l2 gstv4l2object.c:1227:gst_v4l2_object_fill_format_list:<v4l2h264dec0:src> got 6 format(s):
    0:00:01.607249127  1760 0xffff70003590 INFO                    v4l2 gstv4l2object.c:1231:gst_v4l2_object_fill_format_list:<v4l2h264dec0:src>   YM16
    0:00:01.607264452  1760 0xffff70003590 INFO                    v4l2 gstv4l2object.c:1231:gst_v4l2_object_fill_format_list:<v4l2h264dec0:src>   YM12
    0:00:01.607279428  1760 0xffff70003590 INFO                    v4l2 gstv4l2object.c:1231:gst_v4l2_object_fill_format_list:<v4l2h264dec0:src>   NV16
    0:00:01.607294608  1760 0xffff70003590 INFO                    v4l2 gstv4l2object.c:1231:gst_v4l2_object_fill_format_list:<v4l2h264dec0:src>   NV12
    0:00:01.607309194  1760 0xffff70003590 INFO                    v4l2 gstv4l2object.c:1231:gst_v4l2_object_fill_format_list:<v4l2h264dec0:src>   TI16
    0:00:01.607323909  1760 0xffff70003590 INFO                    v4l2 gstv4l2object.c:1231:gst_v4l2_object_fill_format_list:<v4l2h264dec0:src>   TI12
    0:00:01.607407382  1760 0xffff70003590 WARN                    v4l2 gstv4l2object.c:4292:gst_v4l2_object_probe_caps:<v4l2h264dec0:src> Failed to probe pixel aspect ratio with VIDIOC_CROPCAP: Invalid argument
    0:00:01.607461689  1760 0xffff70003590 DEBUG                   v4l2 gstv4l2object.c:2684:gst_v4l2_object_probe_caps_for_format:<v4l2h264dec0:src> Enumerating frame sizes for YM16
    0:00:01.607484709  1760 0xffff70003590 DEBUG                   v4l2 gstv4l2object.c:2811:gst_v4l2_object_probe_caps_for_format:<v4l2h264dec0:src> Failed to enumerate frame sizes for pixelformat YM16 (Inappropriate ioctl for device)
    0:00:01.607502760  1760 0xffff70003590 LOG                     v4l2 gstv4l2object.c:2922:gst_v4l2_object_get_nearest_size:<v4l2h264dec0:src> getting nearest size to 1x1 with format YM16
    0:00:01.607523831  1760 0xffff70003590 LOG                     v4l2 gstv4l2object.c:2939:gst_v4l2_object_get_nearest_size:<v4l2h264dec0:src> got nearest size 1x1
    0:00:01.607541111  1760 0xffff70003590 LOG                     v4l2 gstv4l2object.c:2922:gst_v4l2_object_get_nearest_size:<v4l2h264dec0:src> getting nearest size to 32768x32768 with format YM16
    0:00:01.607557637  1760 0xffff70003590 LOG                     v4l2 gstv4l2object.c:2939:gst_v4l2_object_get_nearest_size:<v4l2h264dec0:src> got nearest size 32768x32768
    0:00:01.607593023  1760 0xffff70003590 DEBUG                   v4l2 gstv4l2object.c:2119:gst_v4l2_object_get_colorspace: Unknown enum v4l2_colorspace 0
    0:00:01.607659480  1760 0xffff70003590 DEBUG                   v4l2 gstv4l2object.c:2684:gst_v4l2_object_probe_caps_for_format:<v4l2h264dec0:src> Enumerating frame sizes for YM12
    0:00:01.607680226  1760 0xffff70003590 DEBUG                   v4l2 gstv4l2object.c:2811:gst_v4l2_object_probe_caps_for_format:<v4l2h264dec0:src> Failed to enumerate frame sizes for pixelformat YM12 (Inappropriate ioctl for device)
    0:00:01.607698106  1760 0xffff70003590 LOG                     v4l2 gstv4l2object.c:2922:gst_v4l2_object_get_nearest_size:<v4l2h264dec0:src> getting nearest size to 1x1 with format YM12
    0:00:01.607714937  1760 0xffff70003590 LOG                     v4l2 gstv4l2object.c:2939:gst_v4l2_object_get_nearest_size:<v4l2h264dec0:src> got nearest size 1x1
    0:00:01.607731412  1760 0xffff70003590 LOG                     v4l2 gstv4l2object.c:2922:gst_v4l2_object_get_nearest_size:<v4l2h264dec0:src> getting nearest size to 32768x32768 with format YM12
    0:00:01.607748043  1760 0xffff70003590 LOG                     v4l2 gstv4l2object.c:2939:gst_v4l2_object_get_nearest_size:<v4l2h264dec0:src> got nearest size 32768x32768
    0:00:01.607776989  1760 0xffff70003590 DEBUG                   v4l2 gstv4l2object.c:2119:gst_v4l2_object_get_colorspace: Unknown enum v4l2_colorspace 0
    0:00:01.607835091  1760 0xffff70003590 DEBUG                   v4l2 gstv4l2object.c:2684:gst_v4l2_object_probe_caps_for_format:<v4l2h264dec0:src> Enumerating frame sizes for NV16
    0:00:01.607854466  1760 0xffff70003590 DEBUG                   v4l2 gstv4l2object.c:2811:gst_v4l2_object_probe_caps_for_format:<v4l2h264dec0:src> Failed to enumerate frame sizes for pixelformat NV16 (Inappropriate ioctl for device)
    0:00:01.607871157  1760 0xffff70003590 LOG                     v4l2 gstv4l2object.c:2922:gst_v4l2_object_get_nearest_size:<v4l2h264dec0:src> getting nearest size to 1x1 with format NV16
    0:00:01.607889052  1760 0xffff70003590 LOG                     v4l2 gstv4l2object.c:2939:gst_v4l2_object_get_nearest_size:<v4l2h264dec0:src> got nearest size 1x1
    0:00:01.607902448  1760 0xffff70003590 LOG                     v4l2 gstv4l2object.c:2922:gst_v4l2_object_get_nearest_size:<v4l2h264dec0:src> getting nearest size to 32768x32768 with format NV16
    0:00:01.607919968  1760 0xffff70003590 LOG                     v4l2 gstv4l2object.c:2939:gst_v4l2_object_get_nearest_size:<v4l2h264dec0:src> got nearest size 32768x32768
    0:00:01.607947569  1760 0xffff70003590 DEBUG                   v4l2 gstv4l2object.c:2119:gst_v4l2_object_get_colorspace: Unknown enum v4l2_colorspace 0
    0:00:01.608004226  1760 0xffff70003590 DEBUG                   v4l2 gstv4l2object.c:2684:gst_v4l2_object_probe_caps_for_format:<v4l2h264dec0:src> Enumerating frame sizes for NV12
    0:00:01.608023987  1760 0xffff70003590 DEBUG                   v4l2 gstv4l2object.c:2811:gst_v4l2_object_probe_caps_for_format:<v4l2h264dec0:src> Failed to enumerate frame sizes for pixelformat NV12 (Inappropriate ioctl for device)
    0:00:01.608041577  1760 0xffff70003590 LOG                     v4l2 gstv4l2object.c:2922:gst_v4l2_object_get_nearest_size:<v4l2h264dec0:src> getting nearest size to 1x1 with format NV12
    0:00:01.608058793  1760 0xffff70003590 LOG                     v4l2 gstv4l2object.c:2939:gst_v4l2_object_get_nearest_size:<v4l2h264dec0:src> got nearest size 1x1
    0:00:01.608075713  1760 0xffff70003590 LOG                     v4l2 gstv4l2object.c:2922:gst_v4l2_object_get_nearest_size:<v4l2h264dec0:src> getting nearest size to 32768x32768 with format NV12
    0:00:01.608091684  1760 0xffff70003590 LOG                     v4l2 gstv4l2object.c:2939:gst_v4l2_object_get_nearest_size:<v4l2h264dec0:src> got nearest size 32768x32768
    0:00:01.608117950  1760 0xffff70003590 DEBUG                   v4l2 gstv4l2object.c:2119:gst_v4l2_object_get_colorspace: Unknown enum v4l2_colorspace 0
    0:00:01.608165596  1760 0xffff70003590 DEBUG                   v4l2 gstv4l2object.c:1614:gst_v4l2_object_v4l2fourcc_to_bare_struct: Unsupported fourcc 0x36314954 TI16
    0:00:01.608181692  1760 0xffff70003590 DEBUG                   v4l2 gstv4l2object.c:4313:gst_v4l2_object_probe_caps:<v4l2h264dec0:src> unknown format TI16
    0:00:01.608196882  1760 0xffff70003590 DEBUG                   v4l2 gstv4l2object.c:1614:gst_v4l2_object_v4l2fourcc_to_bare_struct: Unsupported fourcc 0x32314954 TI12
    0:00:01.608211008  1760 0xffff70003590 DEBUG                   v4l2 gstv4l2object.c:4313:gst_v4l2_object_probe_caps:<v4l2h264dec0:src> unknown format TI12
    0:00:01.608328591  1760 0xffff70003590 INFO                    v4l2 gstv4l2object.c:4350:gst_v4l2_object_probe_caps:<v4l2h264dec0:src> probed caps: video/x-raw, format=(string)Y42B, width=(int)[ 1, 32768 ], height=(int)[ 1, 32768 ], framerate=(fraction)[ 0/1, 2147483647/1 ], interlace-mode=(string){ progressive, interleaved }, colorimetry=(string){ bt601, smpte240m, bt709, 2:4:5:2, 2:4:5:3, 1:4:7:1, 2:4:7:1, 2:4:12:8, bt2020, 2:0:0:0 }; video/x-raw, format=(string)I420, width=(int)[ 1, 32768 ], height=(int)[ 1, 32768 ], framerate=(fraction)[ 0/1, 2147483647/1 ], interlace-mode=(string){ progressive, interleaved }, colorimetry=(string){ bt601, smpte240m, bt709, 2:4:5:2, 2:4:5:3, 1:4:7:1, 2:4:7:1, 2:4:12:8, bt2020, 2:0:0:0 }; video/x-raw, format=(string)NV16, width=(int)[ 1, 32768 ], height=(int)[ 1, 32768 ], framerate=(fraction)[ 0/1, 2147483647/1 ], interlace-mode=(string){ progressive, interleaved }, colorimetry=(string){ bt601, smpte240m, bt709, 2:4:5:2, 2:4:5:3, 1:4:7:1, 2:4:7:1, 2:4:12:8, bt2020, 2:0:0:0 }; video/x-raw, format=(string)NV12, width=(int)[ 1, 32768 ], height=(int)[ 1, 32768 ], framerate=(fraction)[ 0/1, 2147483647/1 ], interlace-mode=(string){ progressive, interleaved }, colorimetry=(string){ bt601, smpte240m, bt709, 2:4:5:2, 2:4:5:3, 1:4:7:1, 2:4:7:1, 2:4:12:8, bt2020, 2:0:0:0 }
    0:00:01.608629111  1760 0xffff70003590 DEBUG           v4l2videodec gstv4l2videodec.c:574:gst_v4l2_video_dec_handle_frame:<v4l2h264dec0> Handling frame 0
    0:00:01.608655412  1760 0xffff70003590 DEBUG           v4l2videodec gstv4l2videodec.c:595:gst_v4l2_video_dec_handle_frame:<v4l2h264dec0> Sending header
    0:00:01.608733249  1760 0xffff70003590 DEBUG         v4l2bufferpool gstv4l2bufferpool.c:520:gst_v4l2_buffer_pool_set_config:<v4l2h264dec0:pool:sink> config GstBufferPoolConfig, caps=(GstCaps)"video/x-h264\,\ stream-format\=\(string\)byte-stream\,\ alignment\=\(string\)au\,\ level\=\(string\)3.1\,\ profile\=\(string\)constrained-baseline\,\ pixel-aspect-ratio\=\(fraction\)1/1\,\ width\=\(int\)1280\,\ height\=\(int\)720\,\ framerate\=\(fraction\)30/1\,\ interlace-mode\=\(string\)progressive\,\ chroma-format\=\(string\)4:2:0\,\ bit-depth-luma\=\(uint\)8\,\ bit-depth-chroma\=\(uint\)8\,\ parsed\=\(boolean\)true", size=(uint)1474560, min-buffers=(uint)2, max-buffers=(uint)2, allocator=(GstAllocator)"NULL", params=(GstAllocationParams)NULL;
    0:00:01.608774681  1760 0xffff70003590 DEBUG         v4l2bufferpool gstv4l2bufferpool.c:756:gst_v4l2_buffer_pool_start:<v4l2h264dec0:pool:sink> activating pool
    0:00:01.608795931  1760 0xffff70003590 DEBUG         v4l2bufferpool gstv4l2bufferpool.c:803:gst_v4l2_buffer_pool_start:<v4l2h264dec0:pool:sink> requesting 2 MMAP buffers
    0:00:01.610140585  1760 0xffff70003590 DEBUG          v4l2allocator gstv4l2allocator.c:706:gst_v4l2_allocator_start:<v4l2h264dec0:pool:sink:allocator> allocated 2 mmap buffers out of 2 requested
    0:00:01.610214477  1760 0xffff70003590 LOG            v4l2allocator gstv4l2allocator.c:303:gst_v4l2_memory_group_new:<v4l2h264dec0:pool:sink:allocator> Got mmap buffer
    0:00:01.610234358  1760 0xffff70003590 LOG            v4l2allocator gstv4l2allocator.c:304:gst_v4l2_memory_group_new:<v4l2h264dec0:pool:sink:allocator>   index:     0
    0:00:01.610246618  1760 0xffff70003590 LOG            v4l2allocator gstv4l2allocator.c:305:gst_v4l2_memory_group_new:<v4l2h264dec0:pool:sink:allocator>   type:      10
    0:00:01.610258328  1760 0xffff70003590 LOG            v4l2allocator gstv4l2allocator.c:306:gst_v4l2_memory_group_new:<v4l2h264dec0:pool:sink:allocator>   flags:     00004000
    0:00:01.610269764  1760 0xffff70003590 LOG            v4l2allocator gstv4l2allocator.c:307:gst_v4l2_memory_group_new:<v4l2h264dec0:pool:sink:allocator>   field:     0
    0:00:01.610281409  1760 0xffff70003590 LOG            v4l2allocator gstv4l2allocator.c:308:gst_v4l2_memory_group_new:<v4l2h264dec0:pool:sink:allocator>   memory:    1
    0:00:01.610292059  1760 0xffff70003590 LOG            v4l2allocator gstv4l2allocator.c:309:gst_v4l2_memory_group_new:<v4l2h264dec0:pool:sink:allocator>   planes:    1
    0:00:01.610309835  1760 0xffff70003590 LOG            v4l2allocator gstv4l2allocator.c:315:gst_v4l2_memory_group_new:<v4l2h264dec0:pool:sink:allocator>   [0] bytesused: 0, length: 1474560, offset: 0
    0:00:01.610321935  1760 0xffff70003590 LOG            v4l2allocator gstv4l2allocator.c:319:gst_v4l2_memory_group_new:<v4l2h264dec0:pool:sink:allocator>   [0] MMAP offset:  0
    0:00:01.610337536  1760 0xffff70003590 LOG            v4l2allocator gstv4l2allocator.c:303:gst_v4l2_memory_group_new:<v4l2h264dec0:pool:sink:allocator> Got mmap buffer
    0:00:01.610348346  1760 0xffff70003590 LOG            v4l2allocator gstv4l2allocator.c:304:gst_v4l2_memory_group_new:<v4l2h264dec0:pool:sink:allocator>   index:     1
    0:00:01.610360652  1760 0xffff70003590 LOG            v4l2allocator gstv4l2allocator.c:305:gst_v4l2_memory_group_new:<v4l2h264dec0:pool:sink:allocator>   type:      10
    0:00:01.610371667  1760 0xffff70003590 LOG            v4l2allocator gstv4l2allocator.c:306:gst_v4l2_memory_group_new:<v4l2h264dec0:pool:sink:allocator>   flags:     00004000
    0:00:01.610381552  1760 0xffff70003590 LOG            v4l2allocator gstv4l2allocator.c:307:gst_v4l2_memory_group_new:<v4l2h264dec0:pool:sink:allocator>   field:     0
    0:00:01.610394463  1760 0xffff70003590 LOG            v4l2allocator gstv4l2allocator.c:308:gst_v4l2_memory_group_new:<v4l2h264dec0:pool:sink:allocator>   memory:    1
    0:00:01.610407308  1760 0xffff70003590 LOG            v4l2allocator gstv4l2allocator.c:309:gst_v4l2_memory_group_new:<v4l2h264dec0:pool:sink:allocator>   planes:    1
    0:00:01.610423089  1760 0xffff70003590 LOG            v4l2allocator gstv4l2allocator.c:315:gst_v4l2_memory_group_new:<v4l2h264dec0:pool:sink:allocator>   [0] bytesused: 0, length: 1474560, offset: 0
    0:00:01.610437994  1760 0xffff70003590 LOG            v4l2allocator gstv4l2allocator.c:319:gst_v4l2_memory_group_new:<v4l2h264dec0:pool:sink:allocator>   [0] MMAP offset:  1474560
    0:00:01.610601179  1760 0xffff70003590 LOG            v4l2allocator gstv4l2allocator.c:847:gst_v4l2_allocator_alloc_mmap:<v4l2h264dec0:pool:sink:allocator> mmap buffer length 1474560, data offset 0, plane 0
    0:00:01.610630910  1760 0xffff70003590 DEBUG         v4l2bufferpool gstv4l2bufferpool.c:1475:gst_v4l2_buffer_pool_release_buffer:<v4l2h264dec0:pool:sink> release buffer 0xffff6801d120
    0:00:01.610686182  1760 0xffff70003590 LOG           v4l2bufferpool gstv4l2bufferpool.c:1553:gst_v4l2_buffer_pool_release_buffer:<v4l2h264dec0:pool:sink> buffer 0 not queued, putting on free list
    0:00:01.610787975  1760 0xffff70003590 LOG            v4l2allocator gstv4l2allocator.c:847:gst_v4l2_allocator_alloc_mmap:<v4l2h264dec0:pool:sink:allocator> mmap buffer length 1474560, data offset 0, plane 0
    0:00:01.610809016  1760 0xffff70003590 DEBUG         v4l2bufferpool gstv4l2bufferpool.c:1475:gst_v4l2_buffer_pool_release_buffer:<v4l2h264dec0:pool:sink> release buffer 0xffff6801d240
    0:00:01.610822581  1760 0xffff70003590 LOG           v4l2bufferpool gstv4l2bufferpool.c:1553:gst_v4l2_buffer_pool_release_buffer:<v4l2h264dec0:pool:sink> buffer 1 not queued, putting on free list
    0:00:01.610834792  1760 0xffff70003590 DEBUG         v4l2bufferpool gstv4l2bufferpool.c:1056:gst_v4l2_buffer_pool_flush_stop:<v4l2h264dec0:pool:sink> stop flushing
    0:00:01.610852737  1760 0xffff70003590 DEBUG         v4l2bufferpool gstv4l2bufferpool.c:1812:gst_v4l2_buffer_pool_process:<v4l2h264dec0:pool:sink> process buffer 0xffff7e7f9bb8
    0:00:01.610866088  1760 0xffff70003590 LOG           v4l2bufferpool gstv4l2bufferpool.c:1989:gst_v4l2_buffer_pool_process:<v4l2h264dec0:pool:sink> alloc buffer from our pool
    0:00:01.610879243  1760 0xffff70003590 DEBUG         v4l2bufferpool gstv4l2bufferpool.c:1397:gst_v4l2_buffer_pool_acquire_buffer:<v4l2h264dec0:pool:sink> acquire
    0:00:01.610893454  1760 0xffff70003590 LOG           v4l2bufferpool gstv4l2bufferpool.c:116:gst_v4l2_buffer_pool_copy_buffer:<v4l2h264dec0:pool:sink> copying buffer
    0:00:01.610905779  1760 0xffff70003590 DEBUG         v4l2bufferpool gstv4l2bufferpool.c:141:gst_v4l2_buffer_pool_copy_buffer:<v4l2h264dec0:pool:sink> copy raw bytes
    0:00:01.610976396  1760 0xffff70003590 LOG           v4l2bufferpool gstv4l2bufferpool.c:1158:gst_v4l2_buffer_pool_qbuf:<v4l2h264dec0:pool:sink> queuing buffer 0
    0:00:01.611440556  1760 0xffff70003590 LOG            v4l2allocator gstv4l2allocator.c:1286:gst_v4l2_allocator_qbuf:<v4l2h264dec0:pool:sink:allocator> queued buffer 0 (flags 0x4003)
    0:00:01.611482618  1760 0xffff70003590 DEBUG         v4l2bufferpool gstv4l2bufferpool.c:679:gst_v4l2_buffer_pool_streamon:<v4l2h264dec0:pool:sink> Started streaming
    0:00:01.611501233  1760 0xffff70003590 DEBUG         v4l2bufferpool gstv4l2bufferpool.c:1475:gst_v4l2_buffer_pool_release_buffer:<v4l2h264dec0:pool:sink> release buffer 0xffff6801d120
    0:00:01.611518239  1760 0xffff70003590 LOG           v4l2bufferpool gstv4l2bufferpool.c:1569:gst_v4l2_buffer_pool_release_buffer:<v4l2h264dec0:pool:sink> buffer 0 is queued
    0:00:01.611532419  1760 0xffff70003590 LOG           v4l2bufferpool gstv4l2bufferpool.c:1098:gst_v4l2_buffer_pool_poll:<v4l2h264dec0:pool:sink> polling device
    0:00:01.611556060  1760 0xffff70003590 LOG           v4l2bufferpool gstv4l2bufferpool.c:1234:gst_v4l2_buffer_pool_dqbuf:<v4l2h264dec0:pool:sink> nothing to dequeue
    0:00:01.611586786  1760 0xffff70003590 DEBUG                   v4l2 gstv4l2object.c:2119:gst_v4l2_object_get_colorspace: Unknown enum v4l2_colorspace 0
    0:00:01.611608862  1760 0xffff70003590 DEBUG                   v4l2 gstv4l2object.c:3115:gst_v4l2_object_extrapolate_info:<v4l2h264dec0:src> Extrapolated for plane 0 with base stride 1280: stride 1280, offset 0
    0:00:01.611625787  1760 0xffff70003590 DEBUG                   v4l2 gstv4l2object.c:3115:gst_v4l2_object_extrapolate_info:<v4l2h264dec0:src> Extrapolated for plane 1 with base stride 1280: stride 1280, offset 921600
    0:00:01.611639918  1760 0xffff70003590 DEBUG                   v4l2 gstv4l2object.c:3238:gst_v4l2_object_save_format:<v4l2h264dec0:src> Got sizeimage 1382400
    0:00:01.611704940  1760 0xffff70003590 DEBUG           v4l2videodec gstv4l2videodec.c:643:gst_v4l2_video_dec_handle_frame:<v4l2h264dec0> Acquired caps: video/x-raw, format=(string)NV12, width=(int)1280, height=(int)720, interlace-mode=(string)progressive, pixel-aspect-ratio=(fraction)1/1, chroma-site=(string)mpeg2, colorimetry=(string)bt709, framerate=(fraction)0/1
    0:00:01.611806458  1760 0xffff70003590 DEBUG           v4l2videodec gstv4l2videodec.c:650:gst_v4l2_video_dec_handle_frame:<v4l2h264dec0> Available caps: video/x-raw, format=(string)Y42B, width=(int)[ 1, 32768 ], height=(int)[ 1, 32768 ], framerate=(fraction)[ 0/1, 2147483647/1 ], interlace-mode=(string){ progressive, interleaved }, colorimetry=(string){ bt601, smpte240m, bt709, 2:4:5:2, 2:4:5:3, 1:4:7:1, 2:4:7:1, 2:4:12:8, bt2020, 2:0:0:0 }; video/x-raw, format=(string)I420, width=(int)[ 1, 32768 ], height=(int)[ 1, 32768 ], framerate=(fraction)[ 0/1, 2147483647/1 ], interlace-mode=(string){ progressive, interleaved }, colorimetry=(string){ bt601, smpte240m, bt709, 2:4:5:2, 2:4:5:3, 1:4:7:1, 2:4:7:1, 2:4:12:8, bt2020, 2:0:0:0 }; video/x-raw, format=(string)NV16, width=(int)[ 1, 32768 ], height=(int)[ 1, 32768 ], framerate=(fraction)[ 0/1, 2147483647/1 ], interlace-mode=(string){ progressive, interleaved }, colorimetry=(string){ bt601, smpte240m, bt709, 2:4:5:2, 2:4:5:3, 1:4:7:1, 2:4:7:1, 2:4:12:8, bt2020, 2:0:0:0 }; video/x-raw, format=(string)NV12, width=(int)[ 1, 32768 ], height=(int)[ 1, 32768 ], framerate=(fraction)[ 0/1, 2147483647/1 ], interlace-mode=(string){ progressive, interleaved }, colorimetry=(string){ bt601, smpte240m, bt709, 2:4:5:2, 2:4:5:3, 1:4:7:1, 2:4:7:1, 2:4:12:8, bt2020, 2:0:0:0 }
    0:00:01.611912391  1760 0xffff70003590 DEBUG           v4l2videodec gstv4l2videodec.c:658:gst_v4l2_video_dec_handle_frame:<v4l2h264dec0> Filtered caps: video/x-raw, format=(string)Y42B, width=(int)1280, height=(int)720, framerate=(fraction)0/1, interlace-mode=(string)progressive, colorimetry=(string){ bt601, smpte240m, bt709, 2:4:5:2, 2:4:5:3, 1:4:7:1, 2:4:7:1, 2:4:12:8, bt2020, 2:0:0:0 }, pixel-aspect-ratio=(fraction)1/1; video/x-raw, format=(string)I420, width=(int)1280, height=(int)720, framerate=(fraction)0/1, interlace-mode=(string)progressive, colorimetry=(string){ bt601, smpte240m, bt709, 2:4:5:2, 2:4:5:3, 1:4:7:1, 2:4:7:1, 2:4:12:8, bt2020, 2:0:0:0 }, pixel-aspect-ratio=(fraction)1/1; video/x-raw, format=(string)NV16, width=(int)1280, height=(int)720, framerate=(fraction)0/1, interlace-mode=(string)progressive, colorimetry=(string){ bt601, smpte240m, bt709, 2:4:5:2, 2:4:5:3, 1:4:7:1, 2:4:7:1, 2:4:12:8, bt2020, 2:0:0:0 }, pixel-aspect-ratio=(fraction)1/1; video/x-raw, format=(string)NV12, width=(int)1280, height=(int)720, framerate=(fraction)0/1, interlace-mode=(string)progressive, colorimetry=(string){ bt601, smpte240m, bt709, 2:4:5:2, 2:4:5:3, 1:4:7:1, 2:4:7:1, 2:4:12:8, bt2020, 2:0:0:0 }, pixel-aspect-ratio=(fraction)1/1
    0:00:01.612233802  1760 0xffff70003590 DEBUG           v4l2videodec gstv4l2videodec.c:664:gst_v4l2_video_dec_handle_frame:<v4l2h264dec0> Possible decoded caps: video/x-raw, format=(string)NV12, width=(int)1280, height=(int)720, framerate=(fraction)0/1, interlace-mode=(string)progressive, colorimetry=(string){ bt601, smpte240m, bt709, 2:4:5:2, 2:4:5:3, 1:4:7:1, 2:4:7:1, 2:4:12:8, bt2020, 2:0:0:0 }, pixel-aspect-ratio=(fraction)1/1
    0:00:01.612282568  1760 0xffff70003590 DEBUG           v4l2videodec gstv4l2videodec.c:673:gst_v4l2_video_dec_handle_frame:<v4l2h264dec0> Chosen decoded caps: video/x-raw, format=(string)NV12, width=(int)1280, height=(int)720, framerate=(fraction)0/1, interlace-mode=(string)progressive, colorimetry=(string)bt601, pixel-aspect-ratio=(fraction)1/1
    0:00:01.612306314  1760 0xffff70003590 DEBUG                   v4l2 gstv4l2object.c:3968:gst_v4l2_object_set_format:<v4l2h264dec0:src> Setting format to video/x-raw, format=(string)NV12, width=(int)1280, height=(int)720, framerate=(fraction)0/1, interlace-mode=(string)progressive, colorimetry=(string)bt601, pixel-aspect-ratio=(fraction)1/1
    0:00:01.612342125  1760 0xffff70003590 DEBUG                   v4l2 gstv4l2object.c:3377:gst_v4l2_object_set_format_full:<v4l2h264dec0:src> progressive video
    0:00:01.612363981  1760 0xffff70003590 DEBUG                   v4l2 gstv4l2object.c:3519:gst_v4l2_object_set_format_full:<v4l2h264dec0:src> Desired format 1280x720, format NV12 stride: 1280
    0:00:01.612382446  1760 0xffff70003590 DEBUG                   v4l2 gstv4l2object.c:3569:gst_v4l2_object_set_format_full:<v4l2h264dec0:src> Desired format is 1280x720, format NV12, nb planes 1
    0:00:01.612396182  1760 0xffff70003590 DEBUG                   v4l2 gstv4l2object.c:3578:gst_v4l2_object_set_format_full:<v4l2h264dec0:src>   stride 1280
    0:00:01.612411417  1760 0xffff70003590 DEBUG                   v4l2 gstv4l2object.c:3599:gst_v4l2_object_set_format_full:<v4l2h264dec0:src> Desired colorspace is 1:2:1:1
    0:00:01.612485750  1760 0xffff70003590 DEBUG                   v4l2 gstv4l2object.c:3622:gst_v4l2_object_set_format_full:<v4l2h264dec0:src> Got format of 1280x720, format NV12, nb planes 1, colorspace 1:2:1:1
    0:00:01.612505625  1760 0xffff70003590 DEBUG                   v4l2 gstv4l2object.c:3632:gst_v4l2_object_set_format_full:<v4l2h264dec0:src>   stride 1280, sizeimage 1382400
    0:00:01.612525596  1760 0xffff70003590 DEBUG                   v4l2 gstv4l2object.c:3716:gst_v4l2_object_set_format_full:<v4l2h264dec0:src> Desired framerate: 0/1
    0:00:01.612546702  1760 0xffff70003590 DEBUG                   v4l2 gstv4l2object.c:3115:gst_v4l2_object_extrapolate_info:<v4l2h264dec0:src> Extrapolated for plane 0 with base stride 1280: stride 1280, offset 0
    0:00:01.612563172  1760 0xffff70003590 DEBUG                   v4l2 gstv4l2object.c:3115:gst_v4l2_object_extrapolate_info:<v4l2h264dec0:src> Extrapolated for plane 1 with base stride 1280: stride 1280, offset 921600
    0:00:01.612576838  1760 0xffff70003590 DEBUG                   v4l2 gstv4l2object.c:3238:gst_v4l2_object_save_format:<v4l2h264dec0:src> Got sizeimage 1382400
    0:00:01.612590798  1760 0xffff70003590 DEBUG                   v4l2 gstv4l2object.c:2993:gst_v4l2_object_setup_pool:<v4l2h264dec0:src> initializing the capture system
    0:00:01.612602543  1760 0xffff70003590 INFO                    v4l2 gstv4l2object.c:3025:gst_v4l2_object_setup_pool:<v4l2h264dec0:src> accessing buffers via mode 5
    0:00:01.612613949  1760 0xffff70003590 LOG                     v4l2 gstv4l2object.c:3034:gst_v4l2_object_setup_pool:<v4l2h264dec0:src> initiating buffer pool
    0:00:01.612819265  1760 0xffff70003590 DEBUG         v4l2bufferpool gstv4l2bufferpool.c:520:gst_v4l2_buffer_pool_set_config:<v4l2h264dec0:pool:src> config GstBufferPoolConfig, caps=(GstCaps)"video/x-raw\,\ format\=\(string\)NV12\,\ width\=\(int\)1280\,\ height\=\(int\)720\,\ framerate\=\(fraction\)0/1\,\ interlace-mode\=\(string\)progressive\,\ colorimetry\=\(string\)bt601\,\ pixel-aspect-ratio\=\(fraction\)1/1", size=(uint)1382400, min-buffers=(uint)0, max-buffers=(uint)0, allocator=(GstAllocator)"NULL", params=(GstAllocationParams)NULL;
    0:00:01.612847001  1760 0xffff70003590 INFO          v4l2bufferpool gstv4l2bufferpool.c:568:gst_v4l2_buffer_pool_set_config:<v4l2h264dec0:pool:src> increasing minimum buffers to 2
    0:00:01.612863117  1760 0xffff70003590 INFO          v4l2bufferpool gstv4l2bufferpool.c:581:gst_v4l2_buffer_pool_set_config:<v4l2h264dec0:pool:src> reducing maximum buffers to 32
    0:00:01.612875607  1760 0xffff70003590 INFO          v4l2bufferpool gstv4l2bufferpool.c:592:gst_v4l2_buffer_pool_set_config:<v4l2h264dec0:pool:src> can't allocate, setting maximum to minimum
    0:00:01.620623061  1760 0xffff70003590 DEBUG                   v4l2 gstv4l2object.c:4386:gst_v4l2_object_decide_allocation:<v4l2h264dec0:src> decide allocation
    0:00:01.620680463  1760 0xffff70003590 DEBUG                   v4l2 gstv4l2object.c:4411:gst_v4l2_object_decide_allocation:<v4l2h264dec0:src> allocation: size:1382400 min:2 max:2 pool:<tiovximagebufferpool2>
    0:00:01.620797116  1760 0xffff70003590 DEBUG                   v4l2 gstv4l2object.c:4545:gst_v4l2_object_decide_allocation:<v4l2h264dec0:src> setting own pool config to GstBufferPoolConfig, caps=(GstCaps)"video/x-raw\,\ format\=\(string\)NV12\,\ width\=\(int\)1280\,\ height\=\(int\)720\,\ interlace-mode\=\(string\)progressive\,\ multiview-mode\=\(string\)mono\,\ multiview-flags\=\(GstVideoMultiviewFlagsSet\)0:ffffffff:/right-view-first/left-flipped/left-flopped/right-flipped/right-flopped/half-aspect/mixed-mono\,\ pixel-aspect-ratio\=\(fraction\)1/1\,\ chroma-site\=\(string\)mpeg2\,\ colorimetry\=\(string\)bt709\,\ framerate\=\(fraction\)30/1", size=(uint)1382400, min-buffers=(uint)2, max-buffers=(uint)0, allocator=(GstAllocator)"NULL", params=(GstAllocationParams)NULL;
    0:00:01.620888589  1760 0xffff70003590 DEBUG         v4l2bufferpool gstv4l2bufferpool.c:520:gst_v4l2_buffer_pool_set_config:<v4l2h264dec0:pool:src> config GstBufferPoolConfig, caps=(GstCaps)"video/x-raw\,\ format\=\(string\)NV12\,\ width\=\(int\)1280\,\ height\=\(int\)720\,\ interlace-mode\=\(string\)progressive\,\ multiview-mode\=\(string\)mono\,\ multiview-flags\=\(GstVideoMultiviewFlagsSet\)0:ffffffff:/right-view-first/left-flipped/left-flopped/right-flipped/right-flopped/half-aspect/mixed-mono\,\ pixel-aspect-ratio\=\(fraction\)1/1\,\ chroma-site\=\(string\)mpeg2\,\ colorimetry\=\(string\)bt709\,\ framerate\=\(fraction\)30/1", size=(uint)1382400, min-buffers=(uint)2, max-buffers=(uint)0, allocator=(GstAllocator)"NULL", params=(GstAllocationParams)NULL;
    0:00:01.620909540  1760 0xffff70003590 INFO          v4l2bufferpool gstv4l2bufferpool.c:581:gst_v4l2_buffer_pool_set_config:<v4l2h264dec0:pool:src> reducing maximum buffers to 32
    0:00:01.620923770  1760 0xffff70003590 INFO          v4l2bufferpool gstv4l2bufferpool.c:592:gst_v4l2_buffer_pool_set_config:<v4l2h264dec0:pool:src> can't allocate, setting maximum to minimum
    0:00:01.621053830  1760 0xffff70003590 DEBUG                   v4l2 gstv4l2object.c:4552:gst_v4l2_object_decide_allocation:<v4l2h264dec0:src> own pool config changed to GstBufferPoolConfig, caps=(GstCaps)"video/x-raw\,\ format\=\(string\)NV12\,\ width\=\(int\)1280\,\ height\=\(int\)720\,\ interlace-mode\=\(string\)progressive\,\ multiview-mode\=\(string\)mono\,\ multiview-flags\=\(GstVideoMultiviewFlagsSet\)0:ffffffff:/right-view-first/left-flipped/left-flopped/right-flipped/right-flopped/half-aspect/mixed-mono\,\ pixel-aspect-ratio\=\(fraction\)1/1\,\ chroma-site\=\(string\)mpeg2\,\ colorimetry\=\(string\)bt709\,\ framerate\=\(fraction\)30/1", size=(uint)1382400, min-buffers=(uint)2, max-buffers=(uint)2, allocator=(GstAllocator)"NULL", params=(GstAllocationParams)NULL;
    0:00:01.621145277  1760 0xffff70003590 DEBUG         v4l2bufferpool gstv4l2bufferpool.c:520:gst_v4l2_buffer_pool_set_config:<v4l2h264dec0:pool:src> config GstBufferPoolConfig, caps=(GstCaps)"video/x-raw\,\ format\=\(string\)NV12\,\ width\=\(int\)1280\,\ height\=\(int\)720\,\ interlace-mode\=\(string\)progressive\,\ multiview-mode\=\(string\)mono\,\ multiview-flags\=\(GstVideoMultiviewFlagsSet\)0:ffffffff:/right-view-first/left-flipped/left-flopped/right-flipped/right-flopped/half-aspect/mixed-mono\,\ pixel-aspect-ratio\=\(fraction\)1/1\,\ chroma-site\=\(string\)mpeg2\,\ colorimetry\=\(string\)bt709\,\ framerate\=\(fraction\)30/1", size=(uint)1382400, min-buffers=(uint)2, max-buffers=(uint)2, allocator=(GstAllocator)"NULL", params=(GstAllocationParams)NULL;
    0:00:01.621250636  1760 0xffff70003590 DEBUG                   v4l2 gstv4l2object.c:4569:gst_v4l2_object_decide_allocation:<v4l2h264dec0:src> setting other pool config to GstBufferPoolConfig, caps=(GstCaps)"video/x-raw\,\ format\=\(string\)NV12\,\ width\=\(int\)1280\,\ height\=\(int\)720\,\ interlace-mode\=\(string\)progressive\,\ multiview-mode\=\(string\)mono\,\ multiview-flags\=\(GstVideoMultiviewFlagsSet\)0:ffffffff:/right-view-first/left-flipped/left-flopped/right-flipped/right-flopped/half-aspect/mixed-mono\,\ pixel-aspect-ratio\=\(fraction\)1/1\,\ chroma-site\=\(string\)mpeg2\,\ colorimetry\=\(string\)bt709\,\ framerate\=\(fraction\)30/1", size=(uint)1382400, min-buffers=(uint)4, max-buffers=(uint)4, allocator=(GstAllocator)"NULL", params=(GstAllocationParams)NULL, vx-exemplar=(gint64)281473410085304, num-channels=(uint)1;
    0:00:01.621379925  1760 0xffff70003590 WARN            v4l2videodec gstv4l2videodec.c:813:gst_v4l2_video_dec_decide_allocation:<v4l2h264dec0> Duration invalid, not setting latency
    0:00:01.621400716  1760 0xffff70003590 DEBUG         v4l2bufferpool gstv4l2bufferpool.c:756:gst_v4l2_buffer_pool_start:<v4l2h264dec0:pool:src> activating pool
    0:00:01.626185159  1760 0xffff70003590 DEBUG         v4l2bufferpool gstv4l2bufferpool.c:855:gst_v4l2_buffer_pool_start:<v4l2h264dec0:pool:src> requesting 2 DMABUF buffers
    0:00:01.626285787  1760 0xffff70003590 DEBUG          v4l2allocator gstv4l2allocator.c:706:gst_v4l2_allocator_start:<v4l2h264dec0:pool:src:allocator> allocated 5 dmabuf buffers out of 2 requested
    0:00:01.626313558  1760 0xffff70003590 LOG            v4l2allocator gstv4l2allocator.c:303:gst_v4l2_memory_group_new:<v4l2h264dec0:pool:src:allocator> Got dmabuf buffer
    0:00:01.626329844  1760 0xffff70003590 LOG            v4l2allocator gstv4l2allocator.c:304:gst_v4l2_memory_group_new:<v4l2h264dec0:pool:src:allocator>   index:     0
    0:00:01.626344684  1760 0xffff70003590 LOG            v4l2allocator gstv4l2allocator.c:305:gst_v4l2_memory_group_new:<v4l2h264dec0:pool:src:allocator>   type:      9
    0:00:01.626359440  1760 0xffff70003590 LOG            v4l2allocator gstv4l2allocator.c:306:gst_v4l2_memory_group_new:<v4l2h264dec0:pool:src:allocator>   flags:     00004000
    0:00:01.626374140  1760 0xffff70003590 LOG            v4l2allocator gstv4l2allocator.c:307:gst_v4l2_memory_group_new:<v4l2h264dec0:pool:src:allocator>   field:     0
    0:00:01.626387611  1760 0xffff70003590 LOG            v4l2allocator gstv4l2allocator.c:308:gst_v4l2_memory_group_new:<v4l2h264dec0:pool:src:allocator>   memory:    4
    0:00:01.626400491  1760 0xffff70003590 LOG            v4l2allocator gstv4l2allocator.c:309:gst_v4l2_memory_group_new:<v4l2h264dec0:pool:src:allocator>   planes:    1
    0:00:01.626418827  1760 0xffff70003590 LOG            v4l2allocator gstv4l2allocator.c:303:gst_v4l2_memory_group_new:<v4l2h264dec0:pool:src:allocator> Got dmabuf buffer
    0:00:01.626432827  1760 0xffff70003590 LOG            v4l2allocator gstv4l2allocator.c:304:gst_v4l2_memory_group_new:<v4l2h264dec0:pool:src:allocator>   index:     1
    0:00:01.626445477  1760 0xffff70003590 LOG            v4l2allocator gstv4l2allocator.c:305:gst_v4l2_memory_group_new:<v4l2h264dec0:pool:src:allocator>   type:      9
    0:00:01.626458528  1760 0xffff70003590 LOG            v4l2allocator gstv4l2allocator.c:306:gst_v4l2_memory_group_new:<v4l2h264dec0:pool:src:allocator>   flags:     00004000
    0:00:01.626471308  1760 0xffff70003590 LOG            v4l2allocator gstv4l2allocator.c:307:gst_v4l2_memory_group_new:<v4l2h264dec0:pool:src:allocator>   field:     0
    0:00:01.626484954  1760 0xffff70003590 LOG            v4l2allocator gstv4l2allocator.c:308:gst_v4l2_memory_group_new:<v4l2h264dec0:pool:src:allocator>   memory:    4
    0:00:01.626498144  1760 0xffff70003590 LOG            v4l2allocator gstv4l2allocator.c:309:gst_v4l2_memory_group_new:<v4l2h264dec0:pool:src:allocator>   planes:    1
    0:00:01.626521765  1760 0xffff70003590 LOG            v4l2allocator gstv4l2allocator.c:303:gst_v4l2_memory_group_new:<v4l2h264dec0:pool:src:allocator> Got dmabuf buffer
    0:00:01.626536275  1760 0xffff70003590 LOG            v4l2allocator gstv4l2allocator.c:304:gst_v4l2_memory_group_new:<v4l2h264dec0:pool:src:allocator>   index:     2
    0:00:01.626576847  1760 0xffff70003590 LOG            v4l2allocator gstv4l2allocator.c:305:gst_v4l2_memory_group_new:<v4l2h264dec0:pool:src:allocator>   type:      9
    0:00:01.626590637  1760 0xffff70003590 LOG            v4l2allocator gstv4l2allocator.c:306:gst_v4l2_memory_group_new:<v4l2h264dec0:pool:src:allocator>   flags:     00004000
    0:00:01.626603703  1760 0xffff70003590 LOG            v4l2allocator gstv4l2allocator.c:307:gst_v4l2_memory_group_new:<v4l2h264dec0:pool:src:allocator>   field:     0
    0:00:01.626616163  1760 0xffff70003590 LOG            v4l2allocator gstv4l2allocator.c:308:gst_v4l2_memory_group_new:<v4l2h264dec0:pool:src:allocator>   memory:    4
    0:00:01.626628658  1760 0xffff70003590 LOG            v4l2allocator gstv4l2allocator.c:309:gst_v4l2_memory_group_new:<v4l2h264dec0:pool:src:allocator>   planes:    1
    0:00:01.626719951  1760 0xffff70003590 LOG            v4l2allocator gstv4l2allocator.c:303:gst_v4l2_memory_group_new:<v4l2h264dec0:pool:src:allocator> Got dmabuf buffer
    0:00:01.626735962  1760 0xffff70003590 LOG            v4l2allocator gstv4l2allocator.c:304:gst_v4l2_memory_group_new:<v4l2h264dec0:pool:src:allocator>   index:     3
    0:00:01.626748682  1760 0xffff70003590 LOG            v4l2allocator gstv4l2allocator.c:305:gst_v4l2_memory_group_new:<v4l2h264dec0:pool:src:allocator>   type:      9
    0:00:01.626778148  1760 0xffff70003590 LOG            v4l2allocator gstv4l2allocator.c:306:gst_v4l2_memory_group_new:<v4l2h264dec0:pool:src:allocator>   flags:     00004000
    0:00:01.626818639  1760 0xffff70003590 LOG            v4l2allocator gstv4l2allocator.c:307:gst_v4l2_memory_group_new:<v4l2h264dec0:pool:src:allocator>   field:     0
    0:00:01.626843030  1760 0xffff70003590 LOG            v4l2allocator gstv4l2allocator.c:308:gst_v4l2_memory_group_new:<v4l2h264dec0:pool:src:allocator>   memory:    4
    0:00:01.626864976  1760 0xffff70003590 LOG            v4l2allocator gstv4l2allocator.c:309:gst_v4l2_memory_group_new:<v4l2h264dec0:pool:src:allocator>   planes:    1
    0:00:01.626971674  1760 0xffff70003590 LOG            v4l2allocator gstv4l2allocator.c:303:gst_v4l2_memory_group_new:<v4l2h264dec0:pool:src:allocator> Got dmabuf buffer
    0:00:01.627109199  1760 0xffff70003590 LOG            v4l2allocator gstv4l2allocator.c:304:gst_v4l2_memory_group_new:<v4l2h264dec0:pool:src:allocator>   index:     4
    0:00:01.627166716  1760 0xffff70003590 LOG            v4l2allocator gstv4l2allocator.c:305:gst_v4l2_memory_group_new:<v4l2h264dec0:pool:src:allocator>   type:      9
    0:00:01.627190451  1760 0xffff70003590 LOG            v4l2allocator gstv4l2allocator.c:306:gst_v4l2_memory_group_new:<v4l2h264dec0:pool:src:allocator>   flags:     00004000
    0:00:01.627213137  1760 0xffff70003590 LOG            v4l2allocator gstv4l2allocator.c:307:gst_v4l2_memory_group_new:<v4l2h264dec0:pool:src:allocator>   field:     0
    0:00:01.627235963  1760 0xffff70003590 LOG            v4l2allocator gstv4l2allocator.c:308:gst_v4l2_memory_group_new:<v4l2h264dec0:pool:src:allocator>   memory:    4
    0:00:01.627258489  1760 0xffff70003590 LOG            v4l2allocator gstv4l2allocator.c:309:gst_v4l2_memory_group_new:<v4l2h264dec0:pool:src:allocator>   planes:    1
    0:00:01.627304635  1760 0xffff70003590 LOG            v4l2allocator gstv4l2allocator.c:1004:gst_v4l2_allocator_alloc_dmabufin:<v4l2h264dec0:pool:src:allocator> allocating empty DMABUF import group
    0:00:01.627335796  1760 0xffff70003590 LOG            v4l2allocator gstv4l2allocator.c:968:gst_v4l2_allocator_clear_dmabufin:<v4l2h264dec0:pool:src:allocator> [0] clearing DMABUF import, fd -1 plane 0
    0:00:01.627362782  1760 0xffff70003590 DEBUG         v4l2bufferpool gstv4l2bufferpool.c:1475:gst_v4l2_buffer_pool_release_buffer:<v4l2h264dec0:pool:src> release buffer 0xffff68017ea0
    0:00:01.627391968  1760 0xffff70003590 LOG            v4l2allocator gstv4l2allocator.c:968:gst_v4l2_allocator_clear_dmabufin:<v4l2h264dec0:pool:src:allocator> [0] clearing DMABUF import, fd -1 plane 0
    0:00:01.627417134  1760 0xffff70003590 LOG           v4l2bufferpool gstv4l2bufferpool.c:338:gst_v4l2_buffer_pool_import_dmabuf:<v4l2h264dec0:pool:src> importing dmabuf
    0:00:01.627446030  1760 0xffff70003590 LOG            v4l2allocator gstv4l2allocator.c:1113:gst_v4l2_allocator_import_dmabuf:<v4l2h264dec0:pool:src:allocator> [0] imported DMABUF as fd 68 plane 0
    0:00:01.627475960  1760 0xffff70003590 LOG           v4l2bufferpool gstv4l2bufferpool.c:1158:gst_v4l2_buffer_pool_qbuf:<v4l2h264dec0:pool:src> queuing buffer 0
    0:00:01.627692272  1760 0xffff70003590 LOG            v4l2allocator gstv4l2allocator.c:1286:gst_v4l2_allocator_qbuf:<v4l2h264dec0:pool:src:allocator> queued buffer 0 (flags 0x4002)
    0:00:01.627719358  1760 0xffff70003590 LOG            v4l2allocator gstv4l2allocator.c:1004:gst_v4l2_allocator_alloc_dmabufin:<v4l2h264dec0:pool:src:allocator> allocating empty DMABUF import group
    0:00:01.627800501  1760 0xffff70003590 LOG            v4l2allocator gstv4l2allocator.c:968:gst_v4l2_allocator_clear_dmabufin:<v4l2h264dec0:pool:src:allocator> [1] clearing DMABUF import, fd -1 plane 0
    0:00:01.627822292  1760 0xffff70003590 DEBUG         v4l2bufferpool gstv4l2bufferpool.c:1475:gst_v4l2_buffer_pool_release_buffer:<v4l2h264dec0:pool:src> release buffer 0xffff700616c0
    0:00:01.627841017  1760 0xffff70003590 LOG            v4l2allocator gstv4l2allocator.c:968:gst_v4l2_allocator_clear_dmabufin:<v4l2h264dec0:pool:src:allocator> [1] clearing DMABUF import, fd -1 plane 0
    0:00:01.627916220  1760 0xffff70003590 LOG           v4l2bufferpool gstv4l2bufferpool.c:338:gst_v4l2_buffer_pool_import_dmabuf:<v4l2h264dec0:pool:src> importing dmabuf
    0:00:01.627935480  1760 0xffff70003590 LOG            v4l2allocator gstv4l2allocator.c:1113:gst_v4l2_allocator_import_dmabuf:<v4l2h264dec0:pool:src:allocator> [1] imported DMABUF as fd 70 plane 0
    0:00:01.627954761  1760 0xffff70003590 LOG           v4l2bufferpool gstv4l2bufferpool.c:1158:gst_v4l2_buffer_pool_qbuf:<v4l2h264dec0:pool:src> queuing buffer 1
    0:00:01.628058884  1760 0xffff70003590 LOG            v4l2allocator gstv4l2allocator.c:1286:gst_v4l2_allocator_qbuf:<v4l2h264dec0:pool:src:allocator> queued buffer 1 (flags 0x4002)
    0:00:01.628076675  1760 0xffff70003590 LOG            v4l2allocator gstv4l2allocator.c:1004:gst_v4l2_allocator_alloc_dmabufin:<v4l2h264dec0:pool:src:allocator> allocating empty DMABUF import group
    0:00:01.628093430  1760 0xffff70003590 LOG            v4l2allocator gstv4l2allocator.c:968:gst_v4l2_allocator_clear_dmabufin:<v4l2h264dec0:pool:src:allocator> [2] clearing DMABUF import, fd -1 plane 0
    0:00:01.628109701  1760 0xffff70003590 DEBUG         v4l2bufferpool gstv4l2bufferpool.c:1475:gst_v4l2_buffer_pool_release_buffer:<v4l2h264dec0:pool:src> release buffer 0xffff700617e0
    0:00:01.628134342  1760 0xffff70003590 LOG            v4l2allocator gstv4l2allocator.c:968:gst_v4l2_allocator_clear_dmabufin:<v4l2h264dec0:pool:src:allocator> [2] clearing DMABUF import, fd -1 plane 0
    0:00:01.628149877  1760 0xffff70003590 LOG           v4l2bufferpool gstv4l2bufferpool.c:338:gst_v4l2_buffer_pool_import_dmabuf:<v4l2h264dec0:pool:src> importing dmabuf
    0:00:01.628166478  1760 0xffff70003590 LOG            v4l2allocator gstv4l2allocator.c:1113:gst_v4l2_allocator_import_dmabuf:<v4l2h264dec0:pool:src:allocator> [2] imported DMABUF as fd 72 plane 0
    0:00:01.628182823  1760 0xffff70003590 LOG           v4l2bufferpool gstv4l2bufferpool.c:1158:gst_v4l2_buffer_pool_qbuf:<v4l2h264dec0:pool:src> queuing buffer 2
    0:00:01.628303817  1760 0xffff70003590 LOG            v4l2allocator gstv4l2allocator.c:1286:gst_v4l2_allocator_qbuf:<v4l2h264dec0:pool:src:allocator> queued buffer 2 (flags 0x4002)
    0:00:01.628321328  1760 0xffff70003590 LOG            v4l2allocator gstv4l2allocator.c:1004:gst_v4l2_allocator_alloc_dmabufin:<v4l2h264dec0:pool:src:allocator> allocating empty DMABUF import group
    0:00:01.628343158  1760 0xffff70003590 LOG            v4l2allocator gstv4l2allocator.c:968:gst_v4l2_allocator_clear_dmabufin:<v4l2h264dec0:pool:src:allocator> [3] clearing DMABUF import, fd -1 plane 0
    0:00:01.628359214  1760 0xffff70003590 DEBUG         v4l2bufferpool gstv4l2bufferpool.c:1475:gst_v4l2_buffer_pool_release_buffer:<v4l2h264dec0:pool:src> release buffer 0xffff70061900
    0:00:01.628375549  1760 0xffff70003590 LOG            v4l2allocator gstv4l2allocator.c:968:gst_v4l2_allocator_clear_dmabufin:<v4l2h264dec0:pool:src:allocator> [3] clearing DMABUF import, fd -1 plane 0
    0:00:01.628389385  1760 0xffff70003590 LOG           v4l2bufferpool gstv4l2bufferpool.c:338:gst_v4l2_buffer_pool_import_dmabuf:<v4l2h264dec0:pool:src> importing dmabuf
    0:00:01.628406150  1760 0xffff70003590 LOG            v4l2allocator gstv4l2allocator.c:1113:gst_v4l2_allocator_import_dmabuf:<v4l2h264dec0:pool:src:allocator> [3] imported DMABUF as fd 66 plane 0
    0:00:01.628431661  1760 0xffff70003590 LOG           v4l2bufferpool gstv4l2bufferpool.c:1158:gst_v4l2_buffer_pool_qbuf:<v4l2h264dec0:pool:src> queuing buffer 3
    0:00:01.628556605  1760 0xffff70003590 LOG            v4l2allocator gstv4l2allocator.c:1286:gst_v4l2_allocator_qbuf:<v4l2h264dec0:pool:src:allocator> queued buffer 3 (flags 0x4002)
    0:00:01.628575666  1760 0xffff70003590 LOG            v4l2allocator gstv4l2allocator.c:1004:gst_v4l2_allocator_alloc_dmabufin:<v4l2h264dec0:pool:src:allocator> allocating empty DMABUF import group
    0:00:01.628612147  1760 0xffff70003590 LOG            v4l2allocator gstv4l2allocator.c:968:gst_v4l2_allocator_clear_dmabufin:<v4l2h264dec0:pool:src:allocator> [4] clearing DMABUF import, fd -1 plane 0
    0:00:01.628635678  1760 0xffff70003590 DEBUG         v4l2bufferpool gstv4l2bufferpool.c:1475:gst_v4l2_buffer_pool_release_buffer:<v4l2h264dec0:pool:src> release buffer 0xffff70061a20
    0:00:01.628652333  1760 0xffff70003590 LOG            v4l2allocator gstv4l2allocator.c:968:gst_v4l2_allocator_clear_dmabufin:<v4l2h264dec0:pool:src:allocator> [4] clearing DMABUF import, fd -1 plane 0

    SDK Version:

    • ti-processor-sdk-linux-j7-evm-08_04_00_11
    • ti-processor-sdk-rtos-j721e-evm-08_04_00_06

    Regards,

    Philipp

  • Hi Philipp,

    The log shows rtspsrc with capture-io-mode=5. Did you try capture-io-mode=5 with filesrc and can you share the log as well?

    (capture-io-mode=5 is tested with filesrc).

    Regards

    Nikshith

  • Hi,

    Logs with filesrc:

    root@tda4vm-sk:/opt/edge_ai_apps# GST_DEBUG="v4l2*:7" gst-launch-1.0 filesrc location=/home/root/test.mp4 ! qtdemux ! h264parse ! v4l2h264dec capture-io-mode=5 ! video/x-raw,format=NV12 ! tiovxmultiscaler ! queue ! video/x-raw,width=640,height=640 ! tiovxcolorconvert ! video/x-raw,format=RGB ! kmssink driver-name=tidss sync=true
    0:00:00.042574183  1642     0x39c4eef0 DEBUG                   v4l2 gstv4l2.c:131:gst_v4l2_probe_and_register: Probing devices
    0:00:00.229772195  1642     0x39c4eef0 DEBUG                   v4l2 gstv4l2.c:164:gst_v4l2_probe_and_register: Probing 'vxe-enc' located at '/dev/video0'
    0:00:00.229811151  1642     0x39c4eef0 DEBUG                   v4l2 gstv4l2.c:75:gst_v4l2_probe_template_caps: Getting /dev/video0 format enumerations
    0:00:00.229836151  1642     0x39c4eef0 DEBUG                   v4l2 gstv4l2.c:75:gst_v4l2_probe_template_caps: Getting /dev/video0 format enumerations
    0:00:00.229856522  1642     0x39c4eef0 LOG                     v4l2 gstv4l2.c:89:gst_v4l2_probe_template_caps: index:       0
    0:00:00.229870802  1642     0x39c4eef0 LOG                     v4l2 gstv4l2.c:90:gst_v4l2_probe_template_caps: type:        10
    0:00:00.229884392  1642     0x39c4eef0 LOG                     v4l2 gstv4l2.c:91:gst_v4l2_probe_template_caps: flags:       00000000
    0:00:00.229897293  1642     0x39c4eef0 LOG                     v4l2 gstv4l2.c:92:gst_v4l2_probe_template_caps: description: 'Y/CbCr 4:2:0'
    0:00:00.229912543  1642     0x39c4eef0 LOG                     v4l2 gstv4l2.c:93:gst_v4l2_probe_template_caps: pixelformat: NV12
    0:00:00.230021966  1642     0x39c4eef0 LOG                     v4l2 gstv4l2.c:89:gst_v4l2_probe_template_caps: index:       1
    0:00:00.230038251  1642     0x39c4eef0 LOG                     v4l2 gstv4l2.c:90:gst_v4l2_probe_template_caps: type:        10
    0:00:00.230050676  1642     0x39c4eef0 LOG                     v4l2 gstv4l2.c:91:gst_v4l2_probe_template_caps: flags:       00000000
    0:00:00.230062752  1642     0x39c4eef0 LOG                     v4l2 gstv4l2.c:92:gst_v4l2_probe_template_caps: description: '32-bit A/XRGB 8-8-8-8'
    0:00:00.230076832  1642     0x39c4eef0 LOG                     v4l2 gstv4l2.c:93:gst_v4l2_probe_template_caps: pixelformat: RGB4
    0:00:00.230213335  1642     0x39c4eef0 DEBUG                   v4l2 gstv4l2.c:75:gst_v4l2_probe_template_caps: Getting /dev/video0 format enumerations
    0:00:00.230235461  1642     0x39c4eef0 DEBUG                   v4l2 gstv4l2.c:75:gst_v4l2_probe_template_caps: Getting /dev/video0 format enumerations
    0:00:00.230276702  1642     0x39c4eef0 LOG                     v4l2 gstv4l2.c:89:gst_v4l2_probe_template_caps: index:       0
    0:00:00.230316868  1642     0x39c4eef0 LOG                     v4l2 gstv4l2.c:90:gst_v4l2_probe_template_caps: type:        9
    0:00:00.230340938  1642     0x39c4eef0 LOG                     v4l2 gstv4l2.c:91:gst_v4l2_probe_template_caps: flags:       00000001
    0:00:00.230353494  1642     0x39c4eef0 LOG                     v4l2 gstv4l2.c:92:gst_v4l2_probe_template_caps: description: 'H.264'
    0:00:00.230367634  1642     0x39c4eef0 LOG                     v4l2 gstv4l2.c:93:gst_v4l2_probe_template_caps: pixelformat: H264
    0:00:00.230440521  1642     0x39c4eef0 DEBUG                   v4l2 gstv4l2object.c:1614:gst_v4l2_object_v4l2fourcc_to_bare_struct: Unsupported fourcc 0x3436324d M264
    0:00:00.230614620  1642     0x39c4eef0 DEBUG                   v4l2 gstv4l2object.c:1614:gst_v4l2_object_v4l2fourcc_to_bare_struct: Unsupported fourcc 0x31424752 RGB1
    0:00:00.230633800  1642     0x39c4eef0 DEBUG                   v4l2 gstv4l2object.c:1614:gst_v4l2_object_v4l2fourcc_to_bare_struct: Unsupported fourcc 0x35315241 AR15
    0:00:00.230655851  1642     0x39c4eef0 DEBUG                   v4l2 gstv4l2object.c:1614:gst_v4l2_object_v4l2fourcc_to_bare_struct: Unsupported fourcc 0xb5315241 AR1.
    0:00:00.230685621  1642     0x39c4eef0 DEBUG                   v4l2 gstv4l2object.c:1614:gst_v4l2_object_v4l2fourcc_to_bare_struct: Unsupported fourcc 0x52424752 RGBR
    0:00:00.230701897  1642     0x39c4eef0 DEBUG                   v4l2 gstv4l2object.c:1614:gst_v4l2_object_v4l2fourcc_to_bare_struct: Unsupported fourcc 0x48524742 BGRH
    0:00:00.230768793  1642     0x39c4eef0 DEBUG                   v4l2 gstv4l2object.c:1614:gst_v4l2_object_v4l2fourcc_to_bare_struct: Unsupported fourcc 0x34343452 R444
    0:00:00.230837390  1642     0x39c4eef0 DEBUG                   v4l2 gstv4l2object.c:1614:gst_v4l2_object_v4l2fourcc_to_bare_struct: Unsupported fourcc 0x20343059 Y04 
    0:00:00.230853465  1642     0x39c4eef0 DEBUG                   v4l2 gstv4l2object.c:1614:gst_v4l2_object_v4l2fourcc_to_bare_struct: Unsupported fourcc 0x20363059 Y06 
    0:00:00.230868041  1642     0x39c4eef0 DEBUG                   v4l2 gstv4l2object.c:1614:gst_v4l2_object_v4l2fourcc_to_bare_struct: Unsupported fourcc 0x20303159 Y10 
    0:00:00.230882161  1642     0x39c4eef0 DEBUG                   v4l2 gstv4l2object.c:1614:gst_v4l2_object_v4l2fourcc_to_bare_struct: Unsupported fourcc 0x20323159 Y12 
    0:00:00.230933097  1642     0x39c4eef0 DEBUG                   v4l2 gstv4l2object.c:1614:gst_v4l2_object_v4l2fourcc_to_bare_struct: Unsupported fourcc 0x42303159 Y10B
    0:00:00.230948373  1642     0x39c4eef0 DEBUG                   v4l2 gstv4l2object.c:1614:gst_v4l2_object_v4l2fourcc_to_bare_struct: Unsupported fourcc 0x384c4150 PAL8
    0:00:00.230962533  1642     0x39c4eef0 DEBUG                   v4l2 gstv4l2object.c:1614:gst_v4l2_object_v4l2fourcc_to_bare_struct: Unsupported fourcc 0x20385655 UV8 
    0:00:00.231014054  1642     0x39c4eef0 DEBUG                   v4l2 gstv4l2object.c:1614:gst_v4l2_object_v4l2fourcc_to_bare_struct: Unsupported fourcc 0x31324d59 YM21
    0:00:00.231033740  1642     0x39c4eef0 DEBUG                   v4l2 gstv4l2object.c:1614:gst_v4l2_object_v4l2fourcc_to_bare_struct: Unsupported fourcc 0x56555959 YYUV
    0:00:00.231076326  1642     0x39c4eef0 DEBUG                   v4l2 gstv4l2object.c:1614:gst_v4l2_object_v4l2fourcc_to_bare_struct: Unsupported fourcc 0x59555956 VYUY
    0:00:00.231109846  1642     0x39c4eef0 DEBUG                   v4l2 gstv4l2object.c:1614:gst_v4l2_object_v4l2fourcc_to_bare_struct: Unsupported fourcc 0x50313459 Y41P
    0:00:00.231124397  1642     0x39c4eef0 DEBUG                   v4l2 gstv4l2object.c:1614:gst_v4l2_object_v4l2fourcc_to_bare_struct: Unsupported fourcc 0x34343459 Y444
    0:00:00.231166413  1642     0x39c4eef0 DEBUG                   v4l2 gstv4l2object.c:1614:gst_v4l2_object_v4l2fourcc_to_bare_struct: Unsupported fourcc 0x4f565559 YUVO
    0:00:00.231182193  1642     0x39c4eef0 DEBUG                   v4l2 gstv4l2object.c:1614:gst_v4l2_object_v4l2fourcc_to_bare_struct: Unsupported fourcc 0x50565559 YUVP
    0:00:00.231195929  1642     0x39c4eef0 DEBUG                   v4l2 gstv4l2object.c:1614:gst_v4l2_object_v4l2fourcc_to_bare_struct: Unsupported fourcc 0x34565559 YUV4
    0:00:00.231291096  1642     0x39c4eef0 DEBUG                   v4l2 gstv4l2object.c:1614:gst_v4l2_object_v4l2fourcc_to_bare_struct: Unsupported fourcc 0x34324948 HI24
    0:00:00.231307336  1642     0x39c4eef0 DEBUG                   v4l2 gstv4l2object.c:1614:gst_v4l2_object_v4l2fourcc_to_bare_struct: Unsupported fourcc 0x32314d48 HM12
    0:00:00.231352052  1642     0x39c4eef0 DEBUG                   v4l2 gstv4l2object.c:1614:gst_v4l2_object_v4l2fourcc_to_bare_struct: Unsupported fourcc 0x3032344d M420
    0:00:00.231378513  1642     0x39c4eef0 DEBUG                   v4l2 gstv4l2object.c:1614:gst_v4l2_object_v4l2fourcc_to_bare_struct: Unsupported fourcc 0x32314d56 VM12
    0:00:00.231443074  1642     0x39c4eef0 DEBUG                   v4l2 gstv4l2object.c:1614:gst_v4l2_object_v4l2fourcc_to_bare_struct: Unsupported fourcc 0x3234564e NV42
    0:00:00.235847924  1642     0x39c4eef0 DEBUG                   v4l2 gstv4l2.c:164:gst_v4l2_probe_and_register: Probing 'vxd-dec' located at '/dev/video1'
    0:00:00.235878160  1642     0x39c4eef0 DEBUG                   v4l2 gstv4l2.c:75:gst_v4l2_probe_template_caps: Getting /dev/video1 format enumerations
    0:00:00.235898330  1642     0x39c4eef0 DEBUG                   v4l2 gstv4l2.c:75:gst_v4l2_probe_template_caps: Getting /dev/video1 format enumerations
    0:00:00.235929651  1642     0x39c4eef0 LOG                     v4l2 gstv4l2.c:89:gst_v4l2_probe_template_caps: index:       0
    0:00:00.235943126  1642     0x39c4eef0 LOG                     v4l2 gstv4l2.c:90:gst_v4l2_probe_template_caps: type:        10
    0:00:00.235955782  1642     0x39c4eef0 LOG                     v4l2 gstv4l2.c:91:gst_v4l2_probe_template_caps: flags:       00000001
    0:00:00.235967497  1642     0x39c4eef0 LOG                     v4l2 gstv4l2.c:92:gst_v4l2_probe_template_caps: description: 'H.264'
    0:00:00.235983202  1642     0x39c4eef0 LOG                     v4l2 gstv4l2.c:93:gst_v4l2_probe_template_caps: pixelformat: H264
    0:00:00.236032289  1642     0x39c4eef0 LOG                     v4l2 gstv4l2.c:89:gst_v4l2_probe_template_caps: index:       1
    0:00:00.236046429  1642     0x39c4eef0 LOG                     v4l2 gstv4l2.c:90:gst_v4l2_probe_template_caps: type:        10
    0:00:00.236058809  1642     0x39c4eef0 LOG                     v4l2 gstv4l2.c:91:gst_v4l2_probe_template_caps: flags:       00000001
    0:00:00.236070089  1642     0x39c4eef0 LOG                     v4l2 gstv4l2.c:92:gst_v4l2_probe_template_caps: description: 'HEVC'
    0:00:00.236083195  1642     0x39c4eef0 LOG                     v4l2 gstv4l2.c:93:gst_v4l2_probe_template_caps: pixelformat: HEVC
    0:00:00.236103075  1642     0x39c4eef0 LOG                     v4l2 gstv4l2.c:89:gst_v4l2_probe_template_caps: index:       2
    0:00:00.236114901  1642     0x39c4eef0 LOG                     v4l2 gstv4l2.c:90:gst_v4l2_probe_template_caps: type:        10
    0:00:00.236126291  1642     0x39c4eef0 LOG                     v4l2 gstv4l2.c:91:gst_v4l2_probe_template_caps: flags:       00000001
    0:00:00.236137591  1642     0x39c4eef0 LOG                     v4l2 gstv4l2.c:92:gst_v4l2_probe_template_caps: description: 'Motion-JPEG'
    0:00:00.236215108  1642     0x39c4eef0 LOG                     v4l2 gstv4l2.c:93:gst_v4l2_probe_template_caps: pixelformat: MJPG
    0:00:00.236241614  1642     0x39c4eef0 DEBUG                   v4l2 gstv4l2.c:75:gst_v4l2_probe_template_caps: Getting /dev/video1 format enumerations
    0:00:00.236256834  1642     0x39c4eef0 DEBUG                   v4l2 gstv4l2.c:75:gst_v4l2_probe_template_caps: Getting /dev/video1 format enumerations
    0:00:00.236271804  1642     0x39c4eef0 LOG                     v4l2 gstv4l2.c:89:gst_v4l2_probe_template_caps: index:       0
    0:00:00.236283690  1642     0x39c4eef0 LOG                     v4l2 gstv4l2.c:90:gst_v4l2_probe_template_caps: type:        9
    0:00:00.236332161  1642     0x39c4eef0 LOG                     v4l2 gstv4l2.c:91:gst_v4l2_probe_template_caps: flags:       00000000
    0:00:00.236345081  1642     0x39c4eef0 LOG                     v4l2 gstv4l2.c:92:gst_v4l2_probe_template_caps: description: 'Y/CbCr 4:2:0'
    0:00:00.236358506  1642     0x39c4eef0 LOG                     v4l2 gstv4l2.c:93:gst_v4l2_probe_template_caps: pixelformat: NV12
    0:00:00.236386937  1642     0x39c4eef0 LOG                     v4l2 gstv4l2.c:89:gst_v4l2_probe_template_caps: index:       1
    0:00:00.236399132  1642     0x39c4eef0 LOG                     v4l2 gstv4l2.c:90:gst_v4l2_probe_template_caps: type:        9
    0:00:00.236445058  1642     0x39c4eef0 LOG                     v4l2 gstv4l2.c:91:gst_v4l2_probe_template_caps: flags:       00000000
    0:00:00.236458024  1642     0x39c4eef0 LOG                     v4l2 gstv4l2.c:92:gst_v4l2_probe_template_caps: description: 'Y/CbCr 4:2:2'
    0:00:00.236470859  1642     0x39c4eef0 LOG                     v4l2 gstv4l2.c:93:gst_v4l2_probe_template_caps: pixelformat: NV16
    0:00:00.236491304  1642     0x39c4eef0 LOG                     v4l2 gstv4l2.c:89:gst_v4l2_probe_template_caps: index:       2
    0:00:00.236503540  1642     0x39c4eef0 LOG                     v4l2 gstv4l2.c:90:gst_v4l2_probe_template_caps: type:        9
    0:00:00.236543516  1642     0x39c4eef0 LOG                     v4l2 gstv4l2.c:91:gst_v4l2_probe_template_caps: flags:       00000000
    0:00:00.236558246  1642     0x39c4eef0 LOG                     v4l2 gstv4l2.c:92:gst_v4l2_probe_template_caps: description: '10-bit YUV 4:2:0 (NV12)'
    0:00:00.236571566  1642     0x39c4eef0 LOG                     v4l2 gstv4l2.c:93:gst_v4l2_probe_template_caps: pixelformat: TI12
    0:00:00.236585722  1642     0x39c4eef0 DEBUG                   v4l2 gstv4l2object.c:1614:gst_v4l2_object_v4l2fourcc_to_bare_struct: Unsupported fourcc 0x32314954 TI12
    0:00:00.236600507  1642     0x39c4eef0 LOG                     v4l2 gstv4l2.c:89:gst_v4l2_probe_template_caps: index:       3
    0:00:00.236639828  1642     0x39c4eef0 LOG                     v4l2 gstv4l2.c:90:gst_v4l2_probe_template_caps: type:        9
    0:00:00.236653693  1642     0x39c4eef0 LOG                     v4l2 gstv4l2.c:91:gst_v4l2_probe_template_caps: flags:       00000000
    0:00:00.236666224  1642     0x39c4eef0 LOG                     v4l2 gstv4l2.c:92:gst_v4l2_probe_template_caps: description: '10-bit YUV 4:2:2 (NV16)'
    0:00:00.236679184  1642     0x39c4eef0 LOG                     v4l2 gstv4l2.c:93:gst_v4l2_probe_template_caps: pixelformat: TI16
    0:00:00.236692994  1642     0x39c4eef0 DEBUG                   v4l2 gstv4l2object.c:1614:gst_v4l2_object_v4l2fourcc_to_bare_struct: Unsupported fourcc 0x36314954 TI16
    0:00:00.236706655  1642     0x39c4eef0 LOG                     v4l2 gstv4l2.c:89:gst_v4l2_probe_template_caps: index:       4
    0:00:00.236748171  1642     0x39c4eef0 LOG                     v4l2 gstv4l2.c:90:gst_v4l2_probe_template_caps: type:        9
    0:00:00.236760161  1642     0x39c4eef0 LOG                     v4l2 gstv4l2.c:91:gst_v4l2_probe_template_caps: flags:       00000000
    0:00:00.236771636  1642     0x39c4eef0 LOG                     v4l2 gstv4l2.c:92:gst_v4l2_probe_template_caps: description: 'Planar YUV 4:2:0 (N-C)'
    0:00:00.236784446  1642     0x39c4eef0 LOG                     v4l2 gstv4l2.c:93:gst_v4l2_probe_template_caps: pixelformat: YM12
    0:00:00.236827577  1642     0x39c4eef0 LOG                     v4l2 gstv4l2.c:89:gst_v4l2_probe_template_caps: index:       5
    0:00:00.236848508  1642     0x39c4eef0 LOG                     v4l2 gstv4l2.c:90:gst_v4l2_probe_template_caps: type:        9
    0:00:00.236860538  1642     0x39c4eef0 LOG                     v4l2 gstv4l2.c:91:gst_v4l2_probe_template_caps: flags:       00000000
    0:00:00.236872324  1642     0x39c4eef0 LOG                     v4l2 gstv4l2.c:92:gst_v4l2_probe_template_caps: description: 'Planar YUV 4:2:2 (N-C)'
    0:00:00.236885269  1642     0x39c4eef0 LOG                     v4l2 gstv4l2.c:93:gst_v4l2_probe_template_caps: pixelformat: YM16
    APP: Init ... !!!
    MEM: Init ... !!!
    MEM: Initialized DMA HEAP (fd=5) !!!
    MEM: Init ... Done !!!
    IPC: Init ... !!!
    IPC: Init ... Done !!!
    REMOTE_SERVICE: Init ... !!!
    REMOTE_SERVICE: Init ... Done !!!
      2289.785302 s: GTC Frequency = 200 MHz
    APP: Init ... Done !!!
      2289.785587 s:  VX_ZONE_INIT:Enabled
      2289.785663 s:  VX_ZONE_ERROR:Enabled
      2289.785732 s:  VX_ZONE_WARNING:Enabled
      2289.786413 s:  VX_ZONE_INIT:[tivxInitLocal:130] Initialization Done !!!
      2289.787742 s:  VX_ZONE_INIT:[tivxHostInitLocal:86] Initialization Done for HOST !!!
    0:00:00.367488055  1642     0x39c4eef0 DEBUG           v4l2videodec gstv4l2videodec.c:868:gst_v4l2_video_dec_sink_getcaps:<v4l2h264dec0> Returning sink caps video/x-h264, width=(int)[ 1, 32768 ], height=(int)[ 1, 32768 ], framerate=(fraction)[ 0/1, 2147483647/1 ], stream-format=(string)byte-stream, alignment=(string)au
    0:00:00.367751831  1642     0x39c4eef0 DEBUG           v4l2videodec gstv4l2videodec.c:868:gst_v4l2_video_dec_sink_getcaps:<v4l2h264dec0> Returning sink caps video/x-h264, width=(int)[ 1, 32768 ], height=(int)[ 1, 32768 ], framerate=(fraction)[ 0/1, 2147483647/1 ], stream-format=(string)byte-stream, alignment=(string)au
    0:00:00.368123615  1642     0x39c4eef0 DEBUG           v4l2videodec gstv4l2videodec.c:844:gst_v4l2_video_dec_src_query:<v4l2h264dec0> Returning src caps video/x-raw, format=(string){ NV12, NV16, I420, Y42B }, width=(int)[ 1, 32768 ], height=(int)[ 1, 32768 ], framerate=(fraction)[ 0/1, 2147483647/1 ]
    0:00:00.368301014  1642     0x39c4eef0 DEBUG           v4l2videodec gstv4l2videodec.c:844:gst_v4l2_video_dec_src_query:<v4l2h264dec0> Returning src caps video/x-raw, format=(string){ NV12, NV16, I420, Y42B }, width=(int)[ 1, 32768 ], height=(int)[ 1, 32768 ], framerate=(fraction)[ 0/1, 2147483647/1 ]
    0:00:00.368421607  1642     0x39c4eef0 DEBUG           v4l2videodec gstv4l2videodec.c:844:gst_v4l2_video_dec_src_query:<v4l2h264dec0> Returning src caps video/x-raw, format=(string){ NV12, NV16, I420, Y42B }, width=(int)[ 1, 32768 ], height=(int)[ 1, 32768 ], framerate=(fraction)[ 0/1, 2147483647/1 ]
    0:00:00.368633487  1642     0x39c4eef0 DEBUG           v4l2videodec gstv4l2videodec.c:844:gst_v4l2_video_dec_src_query:<v4l2h264dec0> Returning src caps video/x-raw, format=(string){ NV12, NV16, I420, Y42B }, width=(int)[ 1, 32768 ], height=(int)[ 1, 32768 ], framerate=(fraction)[ 0/1, 2147483647/1 ]
    0:00:00.368886548  1642     0x39c4eef0 DEBUG           v4l2videodec gstv4l2videodec.c:844:gst_v4l2_video_dec_src_query:<v4l2h264dec0> Returning src caps video/x-raw, format=(string){ NV12, NV16, I420, Y42B }, width=(int)[ 1, 32768 ], height=(int)[ 1, 32768 ], framerate=(fraction)[ 0/1, 2147483647/1 ]
    0:00:00.369057302  1642     0x39c4eef0 DEBUG           v4l2videodec gstv4l2videodec.c:844:gst_v4l2_video_dec_src_query:<v4l2h264dec0> Returning src caps video/x-raw, format=(string){ NV12, NV16, I420, Y42B }, width=(int)[ 1, 32768 ], height=(int)[ 1, 32768 ], framerate=(fraction)[ 0/1, 2147483647/1 ]
    0:00:00.369409895  1642     0x39c4eef0 DEBUG           v4l2videodec gstv4l2videodec.c:844:gst_v4l2_video_dec_src_query:<v4l2h264dec0> Returning src caps video/x-raw, format=(string){ NV12, NV16, I420, Y42B }, width=(int)[ 1, 32768 ], height=(int)[ 1, 32768 ], framerate=(fraction)[ 0/1, 2147483647/1 ]
    0:00:00.369850221  1642     0x39c4eef0 DEBUG           v4l2videodec gstv4l2videodec.c:844:gst_v4l2_video_dec_src_query:<v4l2h264dec0> Returning src caps video/x-raw, format=(string){ NV12, NV16, I420, Y42B }, width=(int)[ 1, 32768 ], height=(int)[ 1, 32768 ], framerate=(fraction)[ 0/1, 2147483647/1 ]
    0:00:00.370075706  1642     0x39c4eef0 DEBUG           v4l2videodec gstv4l2videodec.c:844:gst_v4l2_video_dec_src_query:<v4l2h264dec0> Returning src caps video/x-raw, format=(string){ NV12, NV16, I420, Y42B }, width=(int)[ 1, 32768 ], height=(int)[ 1, 32768 ], framerate=(fraction)[ 0/1, 2147483647/1 ]
    0:00:00.370271606  1642     0x39c4eef0 DEBUG           v4l2videodec gstv4l2videodec.c:844:gst_v4l2_video_dec_src_query:<v4l2h264dec0> Returning src caps video/x-raw, format=(string){ NV12, NV16, I420, Y42B }, width=(int)[ 1, 32768 ], height=(int)[ 1, 32768 ], framerate=(fraction)[ 0/1, 2147483647/1 ]
    Setting pipeline to PAUSED ...
    0:00:00.446334380  1642     0x39c4eef0 DEBUG           v4l2videodec gstv4l2videodec.c:116:gst_v4l2_video_dec_open:<v4l2h264dec0> Opening
    0:00:00.446376186  1642     0x39c4eef0 DEBUG                   v4l2 v4l2_calls.c:523:gst_v4l2_open:<v4l2h264dec0:sink> Trying to open device /dev/video1
    0:00:00.446888158  1642     0x39c4eef0 DEBUG                   v4l2 v4l2_calls.c:66:gst_v4l2_get_capabilities:<v4l2h264dec0> getting capabilities
    0:00:00.446988640  1642     0x39c4eef0 LOG                     v4l2 v4l2_calls.c:80:gst_v4l2_get_capabilities:<v4l2h264dec0> driver:      'vxd-dec'
    0:00:00.447006166  1642     0x39c4eef0 LOG                     v4l2 v4l2_calls.c:81:gst_v4l2_get_capabilities:<v4l2h264dec0> card:        'vxd-dec'
    0:00:00.447056997  1642     0x39c4eef0 LOG                     v4l2 v4l2_calls.c:82:gst_v4l2_get_capabilities:<v4l2h264dec0> bus_info:    'platform:vxd-dec'
    0:00:00.447107573  1642     0x39c4eef0 LOG                     v4l2 v4l2_calls.c:83:gst_v4l2_get_capabilities:<v4l2h264dec0> version:     00050a78
    0:00:00.447118988  1642     0x39c4eef0 LOG                     v4l2 v4l2_calls.c:84:gst_v4l2_get_capabilities:<v4l2h264dec0> capabilites: 04204000
    0:00:00.447189230  1642     0x39c4eef0 DEBUG                   v4l2 v4l2_calls.c:496:gst_v4l2_adjust_buf_type: adjust type to multi-planar output
    0:00:00.447275872  1642     0x39c4eef0 DEBUG                   v4l2 v4l2_calls.c:138:gst_v4l2_fill_lists:<v4l2h264dec0> getting enumerations
    0:00:00.447290507  1642     0x39c4eef0 DEBUG                   v4l2 v4l2_calls.c:141:gst_v4l2_fill_lists:<v4l2h264dec0>   channels
    0:00:00.447339258  1642     0x39c4eef0 DEBUG                   v4l2 v4l2_calls.c:213:gst_v4l2_fill_lists:<v4l2h264dec0>   norms
    0:00:00.447351199  1642     0x39c4eef0 DEBUG                   v4l2 v4l2_calls.c:261:gst_v4l2_fill_lists:<v4l2h264dec0>   controls+menus
    0:00:00.447402355  1642     0x39c4eef0 DEBUG                   v4l2 v4l2_calls.c:281:gst_v4l2_fill_lists:<v4l2h264dec0> checking control 00000000
    0:00:00.447414815  1642     0x39c4eef0 DEBUG                   v4l2 v4l2_calls.c:291:gst_v4l2_fill_lists:<v4l2h264dec0> V4L2_CTRL_FLAG_NEXT_CTRL not supported.
    0:00:00.447469947  1642     0x39c4eef0 DEBUG                   v4l2 v4l2_calls.c:281:gst_v4l2_fill_lists:<v4l2h264dec0> checking control 00980900
    0:00:00.447486877  1642     0x39c4eef0 DEBUG                   v4l2 v4l2_calls.c:299:gst_v4l2_fill_lists:<v4l2h264dec0> skipping control 00980900
    0:00:00.447497667  1642     0x39c4eef0 DEBUG                   v4l2 v4l2_calls.c:281:gst_v4l2_fill_lists:<v4l2h264dec0> checking control 08000000
    0:00:00.447585279  1642     0x39c4eef0 DEBUG                   v4l2 v4l2_calls.c:304:gst_v4l2_fill_lists:<v4l2h264dec0> controls finished
    0:00:00.447599410  1642     0x39c4eef0 DEBUG                   v4l2 v4l2_calls.c:456:gst_v4l2_fill_lists:<v4l2h264dec0> done
    0:00:00.447676061  1642     0x39c4eef0 INFO                    v4l2 v4l2_calls.c:587:gst_v4l2_open:<v4l2h264dec0:sink> Opened device 'vxd-dec' (/dev/video1) successfully
    0:00:00.447723698  1642     0x39c4eef0 DEBUG                   v4l2 v4l2_calls.c:667:gst_v4l2_dup:<v4l2h264dec0:src> Trying to dup device /dev/video1
    0:00:00.447737433  1642     0x39c4eef0 DEBUG                   v4l2 v4l2_calls.c:503:gst_v4l2_adjust_buf_type: adjust type to multi-planar capture
    0:00:00.447753683  1642     0x39c4eef0 INFO                    v4l2 v4l2_calls.c:686:gst_v4l2_dup:<v4l2h264dec0:src> Cloned device 'vxd-dec' (/dev/video1) successfully
    0:00:00.447850486  1642     0x39c4eef0 DEBUG                   v4l2 gstv4l2object.c:1190:gst_v4l2_object_fill_format_list:<v4l2h264dec0:sink> getting src format enumerations
    0:00:00.447904022  1642     0x39c4eef0 LOG                     v4l2 gstv4l2object.c:1208:gst_v4l2_object_fill_format_list:<v4l2h264dec0:sink> index:       0
    0:00:00.448030815  1642     0x39c4eef0 LOG                     v4l2 gstv4l2object.c:1209:gst_v4l2_object_fill_format_list:<v4l2h264dec0:sink> type:        10
    0:00:00.448080241  1642     0x39c4eef0 LOG                     v4l2 gstv4l2object.c:1210:gst_v4l2_object_fill_format_list:<v4l2h264dec0:sink> flags:       00000001
    0:00:00.448096461  1642     0x39c4eef0 LOG                     v4l2 gstv4l2object.c:1211:gst_v4l2_object_fill_format_list:<v4l2h264dec0:sink> description: 'H.264'
    0:00:00.448110132  1642     0x39c4eef0 LOG                     v4l2 gstv4l2object.c:1213:gst_v4l2_object_fill_format_list:<v4l2h264dec0:sink> pixelformat: H264
    0:00:00.448171843  1642     0x39c4eef0 LOG                     v4l2 gstv4l2object.c:1208:gst_v4l2_object_fill_format_list:<v4l2h264dec0:sink> index:       1
    0:00:00.448186139  1642     0x39c4eef0 LOG                     v4l2 gstv4l2object.c:1209:gst_v4l2_object_fill_format_list:<v4l2h264dec0:sink> type:        10
    0:00:00.448196944  1642     0x39c4eef0 LOG                     v4l2 gstv4l2object.c:1210:gst_v4l2_object_fill_format_list:<v4l2h264dec0:sink> flags:       00000001
    0:00:00.448289531  1642     0x39c4eef0 LOG                     v4l2 gstv4l2object.c:1211:gst_v4l2_object_fill_format_list:<v4l2h264dec0:sink> description: 'HEVC'
    0:00:00.448338017  1642     0x39c4eef0 LOG                     v4l2 gstv4l2object.c:1213:gst_v4l2_object_fill_format_list:<v4l2h264dec0:sink> pixelformat: HEVC
    0:00:00.448358503  1642     0x39c4eef0 LOG                     v4l2 gstv4l2object.c:1208:gst_v4l2_object_fill_format_list:<v4l2h264dec0:sink> index:       2
    0:00:00.448369548  1642     0x39c4eef0 LOG                     v4l2 gstv4l2object.c:1209:gst_v4l2_object_fill_format_list:<v4l2h264dec0:sink> type:        10
    0:00:00.448465780  1642     0x39c4eef0 LOG                     v4l2 gstv4l2object.c:1210:gst_v4l2_object_fill_format_list:<v4l2h264dec0:sink> flags:       00000001
    0:00:00.448481416  1642     0x39c4eef0 LOG                     v4l2 gstv4l2object.c:1211:gst_v4l2_object_fill_format_list:<v4l2h264dec0:sink> description: 'Motion-JPEG'
    0:00:00.448528357  1642     0x39c4eef0 LOG                     v4l2 gstv4l2object.c:1213:gst_v4l2_object_fill_format_list:<v4l2h264dec0:sink> pixelformat: MJPG
    0:00:00.448543912  1642     0x39c4eef0 INFO                    v4l2 gstv4l2object.c:1227:gst_v4l2_object_fill_format_list:<v4l2h264dec0:sink> got 3 format(s):
    0:00:00.448629074  1642     0x39c4eef0 INFO                    v4l2 gstv4l2object.c:1231:gst_v4l2_object_fill_format_list:<v4l2h264dec0:sink>   MJPG
    0:00:00.448676945  1642     0x39c4eef0 INFO                    v4l2 gstv4l2object.c:1231:gst_v4l2_object_fill_format_list:<v4l2h264dec0:sink>   HEVC
    0:00:00.448731862  1642     0x39c4eef0 INFO                    v4l2 gstv4l2object.c:1231:gst_v4l2_object_fill_format_list:<v4l2h264dec0:sink>   H264
    0:00:00.448813408  1642     0x39c4eef0 DEBUG                   v4l2 gstv4l2object.c:2684:gst_v4l2_object_probe_caps_for_format:<v4l2h264dec0:sink> Enumerating frame sizes for H264
    0:00:00.448895470  1642     0x39c4eef0 DEBUG                   v4l2 gstv4l2object.c:2811:gst_v4l2_object_probe_caps_for_format:<v4l2h264dec0:sink> Failed to enumerate frame sizes for pixelformat H264 (Inappropriate ioctl for device)
    0:00:00.448951157  1642     0x39c4eef0 LOG                     v4l2 gstv4l2object.c:2922:gst_v4l2_object_get_nearest_size:<v4l2h264dec0:sink> getting nearest size to 1x1 with format H264
    0:00:00.448974107  1642     0x39c4eef0 LOG                     v4l2 gstv4l2object.c:2939:gst_v4l2_object_get_nearest_size:<v4l2h264dec0:sink> got nearest size 1x1
    0:00:00.448988648  1642     0x39c4eef0 LOG                     v4l2 gstv4l2object.c:2922:gst_v4l2_object_get_nearest_size:<v4l2h264dec0:sink> getting nearest size to 32768x32768 with format H264
    0:00:00.449082090  1642     0x39c4eef0 LOG                     v4l2 gstv4l2object.c:2939:gst_v4l2_object_get_nearest_size:<v4l2h264dec0:sink> got nearest size 32768x32768
    0:00:00.449141631  1642     0x39c4eef0 DEBUG                   v4l2 gstv4l2object.c:2119:gst_v4l2_object_get_colorspace: Unknown enum v4l2_colorspace 0
    0:00:00.449267724  1642     0x39c4eef0 INFO                    v4l2 gstv4l2object.c:4350:gst_v4l2_object_probe_caps:<v4l2h264dec0:sink> probed caps: video/x-h264, stream-format=(string)byte-stream, alignment=(string)au, width=(int)[ 1, 32768 ], height=(int)[ 1, 32768 ], colorimetry=(string){ bt601, smpte240m, bt709, 2:4:5:2, 2:4:5:3, 1:4:7:1, 2:4:7:1, 2:4:12:8, bt2020, 2:0:0:0 }, parsed=(boolean)true
    0:00:00.449832458  1642     0x39c4eef0 DEBUG           v4l2videodec gstv4l2videodec.c:173:gst_v4l2_video_dec_start:<v4l2h264dec0> Starting
    0:00:00.449869834  1642     0x39c4eef0 LOG                     v4l2 gstv4l2object.c:4227:gst_v4l2_object_unlock:<v4l2h264dec0:sink> start flushing
    Pipeline is PREROLLING ...
    0:00:00.451746948  1642     0x39ca5d90 DEBUG           v4l2videodec gstv4l2videodec.c:868:gst_v4l2_video_dec_sink_getcaps:<v4l2h264dec0> Returning sink caps video/x-h264, width=(int)[ 640, 2560 ], height=(int)[ 640, 2560 ], framerate=(fraction)[ 0/1, 2147483647/1 ], stream-format=(string)byte-stream, alignment=(string)au, colorimetry=(string){ bt601, smpte240m, bt709, 2:4:5:2, 2:4:5:3, 1:4:7:1, 2:4:7:1, 2:4:12:8, bt2020, 2:0:0:0 }, parsed=(boolean)true
    0:00:00.452244360  1642     0x39ca5d90 DEBUG           v4l2videodec gstv4l2videodec.c:868:gst_v4l2_video_dec_sink_getcaps:<v4l2h264dec0> Returning sink caps video/x-h264, width=(int)[ 640, 2560 ], height=(int)[ 640, 2560 ], framerate=(fraction)[ 0/1, 2147483647/1 ], stream-format=(string)byte-stream, alignment=(string)au, colorimetry=(string){ bt601, smpte240m, bt709, 2:4:5:2, 2:4:5:3, 1:4:7:1, 2:4:7:1, 2:4:12:8, bt2020, 2:0:0:0 }, parsed=(boolean)true
    0:00:00.452437340  1642     0x39ca5d90 DEBUG           v4l2videodec gstv4l2videodec.c:426:gst_v4l2_video_dec_drain:<v4l2h264dec0> Draining...
    0:00:00.452459905  1642     0x39ca5d90 DEBUG           v4l2videodec gstv4l2videodec.c:293:gst_v4l2_video_dec_flush:<v4l2h264dec0> Flushed
    0:00:00.452475731  1642     0x39ca5d90 LOG                     v4l2 gstv4l2object.c:4240:gst_v4l2_object_unlock_stop:<v4l2h264dec0:sink> stop flushing
    0:00:00.452489641  1642     0x39ca5d90 LOG                     v4l2 gstv4l2object.c:4240:gst_v4l2_object_unlock_stop:<v4l2h264dec0:src> stop flushing
    0:00:00.452975337  1642     0x39ca5d90 DEBUG           v4l2videodec gstv4l2videodec.c:868:gst_v4l2_video_dec_sink_getcaps:<v4l2h264dec0> Returning sink caps video/x-h264, width=(int)[ 640, 2560 ], height=(int)[ 640, 2560 ], framerate=(fraction)[ 0/1, 2147483647/1 ], stream-format=(string)byte-stream, alignment=(string)au, colorimetry=(string){ bt601, smpte240m, bt709, 2:4:5:2, 2:4:5:3, 1:4:7:1, 2:4:7:1, 2:4:12:8, bt2020, 2:0:0:0 }, parsed=(boolean)true
    0:00:00.453484535  1642     0x39ca5d90 DEBUG           v4l2videodec gstv4l2videodec.c:868:gst_v4l2_video_dec_sink_getcaps:<v4l2h264dec0> Returning sink caps video/x-h264, width=(int)[ 640, 2560 ], height=(int)[ 640, 2560 ], framerate=(fraction)[ 0/1, 2147483647/1 ], stream-format=(string)byte-stream, alignment=(string)au, colorimetry=(string){ bt601, smpte240m, bt709, 2:4:5:2, 2:4:5:3, 1:4:7:1, 2:4:7:1, 2:4:12:8, bt2020, 2:0:0:0 }, parsed=(boolean)true
    0:00:00.453883874  1642     0x39ca5d90 DEBUG           v4l2videodec gstv4l2videodec.c:868:gst_v4l2_video_dec_sink_getcaps:<v4l2h264dec0> Returning sink caps video/x-h264, width=(int)1280, height=(int)720, framerate=(fraction)92/3, pixel-aspect-ratio=(fraction)1/1, stream-format=(string)byte-stream, alignment=(string)au, colorimetry=(string){ bt601, smpte240m, bt709, 2:4:5:2, 2:4:5:3, 1:4:7:1, 2:4:7:1, 2:4:12:8, bt2020, 2:0:0:0 }, parsed=(boolean)true, level=(string)3.1, profile=(string)constrained-baseline, interlace-mode=(string)progressive, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8
    0:00:00.454009277  1642     0x39ca5d90 DEBUG           v4l2videodec gstv4l2videodec.c:223:gst_v4l2_video_dec_set_format:<v4l2h264dec0> Setting format: video/x-h264, stream-format=(string)byte-stream, alignment=(string)au, level=(string)3.1, profile=(string)constrained-baseline, width=(int)1280, height=(int)720, framerate=(fraction)92/3, pixel-aspect-ratio=(fraction)1/1, interlace-mode=(string)progressive, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8, parsed=(boolean)true
    0:00:00.454042108  1642     0x39ca5d90 DEBUG                   v4l2 gstv4l2object.c:3968:gst_v4l2_object_set_format:<v4l2h264dec0:sink> Setting format to video/x-h264, stream-format=(string)byte-stream, alignment=(string)au, level=(string)3.1, profile=(string)constrained-baseline, width=(int)1280, height=(int)720, framerate=(fraction)92/3, pixel-aspect-ratio=(fraction)1/1, interlace-mode=(string)progressive, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8, parsed=(boolean)true
    0:00:00.454108864  1642     0x39ca5d90 DEBUG                   v4l2 gstv4l2object.c:3377:gst_v4l2_object_set_format_full:<v4l2h264dec0:sink> progressive video
    0:00:00.454132940  1642     0x39ca5d90 DEBUG                   v4l2 gstv4l2object.c:3519:gst_v4l2_object_set_format_full:<v4l2h264dec0:sink> Desired format 1280x720, format H264 stride: 0
    0:00:00.454187181  1642     0x39ca5d90 DEBUG                   v4l2 gstv4l2object.c:3569:gst_v4l2_object_set_format_full:<v4l2h264dec0:sink> Desired format is 1280x720, format H264, nb planes 1
    0:00:00.454203137  1642     0x39ca5d90 DEBUG                   v4l2 gstv4l2object.c:3578:gst_v4l2_object_set_format_full:<v4l2h264dec0:sink>   stride 0
    0:00:00.454219902  1642     0x39ca5d90 DEBUG                   v4l2 gstv4l2object.c:3599:gst_v4l2_object_set_format_full:<v4l2h264dec0:sink> Desired colorspace is 0:0:0:0
    0:00:00.460249230  1642     0x39ca5d90 DEBUG                   v4l2 gstv4l2object.c:3622:gst_v4l2_object_set_format_full:<v4l2h264dec0:sink> Got format of 1280x720, format H264, nb planes 1, colorspace 0:0:0:0
    0:00:00.460293271  1642     0x39ca5d90 DEBUG                   v4l2 gstv4l2object.c:3632:gst_v4l2_object_set_format_full:<v4l2h264dec0:sink>   stride 0, sizeimage 1474560
    0:00:00.460315872  1642     0x39ca5d90 DEBUG                   v4l2 gstv4l2object.c:2119:gst_v4l2_object_get_colorspace: Unknown enum v4l2_colorspace 0
    0:00:00.460333262  1642     0x39ca5d90 DEBUG                   v4l2 gstv4l2object.c:3716:gst_v4l2_object_set_format_full:<v4l2h264dec0:sink> Desired framerate: 92/3
    0:00:00.460357408  1642     0x39ca5d90 DEBUG                   v4l2 gstv4l2object.c:3238:gst_v4l2_object_save_format:<v4l2h264dec0:sink> Got sizeimage 1474560
    0:00:00.460374403  1642     0x39ca5d90 DEBUG                   v4l2 gstv4l2object.c:2993:gst_v4l2_object_setup_pool:<v4l2h264dec0:sink> initializing the output system
    0:00:00.460391364  1642     0x39ca5d90 INFO                    v4l2 gstv4l2object.c:3025:gst_v4l2_object_setup_pool:<v4l2h264dec0:sink> accessing buffers via mode 2
    0:00:00.460407424  1642     0x39ca5d90 LOG                     v4l2 gstv4l2object.c:3034:gst_v4l2_object_setup_pool:<v4l2h264dec0:sink> initiating buffer pool
    0:00:00.460898121  1642     0x39ca5d90 DEBUG         v4l2bufferpool gstv4l2bufferpool.c:520:gst_v4l2_buffer_pool_set_config:<v4l2h264dec0:pool:sink> config GstBufferPoolConfig, caps=(GstCaps)"video/x-h264\,\ stream-format\=\(string\)byte-stream\,\ alignment\=\(string\)au\,\ level\=\(string\)3.1\,\ profile\=\(string\)constrained-baseline\,\ width\=\(int\)1280\,\ height\=\(int\)720\,\ framerate\=\(fraction\)92/3\,\ pixel-aspect-ratio\=\(fraction\)1/1\,\ interlace-mode\=\(string\)progressive\,\ chroma-format\=\(string\)4:2:0\,\ bit-depth-luma\=\(uint\)8\,\ bit-depth-chroma\=\(uint\)8\,\ parsed\=\(boolean\)true", size=(uint)1474560, min-buffers=(uint)0, max-buffers=(uint)0, allocator=(GstAllocator)"NULL", params=(GstAllocationParams)NULL;
    0:00:00.460931127  1642     0x39ca5d90 INFO          v4l2bufferpool gstv4l2bufferpool.c:568:gst_v4l2_buffer_pool_set_config:<v4l2h264dec0:pool:sink> increasing minimum buffers to 2
    0:00:00.460947172  1642     0x39ca5d90 INFO          v4l2bufferpool gstv4l2bufferpool.c:581:gst_v4l2_buffer_pool_set_config:<v4l2h264dec0:pool:sink> reducing maximum buffers to 32
    0:00:00.460960472  1642     0x39ca5d90 INFO          v4l2bufferpool gstv4l2bufferpool.c:592:gst_v4l2_buffer_pool_set_config:<v4l2h264dec0:pool:sink> can't allocate, setting maximum to minimum
    0:00:00.460998908  1642     0x39ca5d90 DEBUG                   v4l2 gstv4l2object.c:1190:gst_v4l2_object_fill_format_list:<v4l2h264dec0:src> getting src format enumerations
    0:00:00.461020014  1642     0x39ca5d90 LOG                     v4l2 gstv4l2object.c:1208:gst_v4l2_object_fill_format_list:<v4l2h264dec0:src> index:       0
    0:00:00.461034649  1642     0x39ca5d90 LOG                     v4l2 gstv4l2object.c:1209:gst_v4l2_object_fill_format_list:<v4l2h264dec0:src> type:        9
    0:00:00.461064420  1642     0x39ca5d90 LOG                     v4l2 gstv4l2object.c:1210:gst_v4l2_object_fill_format_list:<v4l2h264dec0:src> flags:       00000000
    0:00:00.461077825  1642     0x39ca5d90 LOG                     v4l2 gstv4l2object.c:1211:gst_v4l2_object_fill_format_list:<v4l2h264dec0:src> description: 'Y/CbCr 4:2:0'
    0:00:00.461092661  1642     0x39ca5d90 LOG                     v4l2 gstv4l2object.c:1213:gst_v4l2_object_fill_format_list:<v4l2h264dec0:src> pixelformat: NV12
    0:00:00.461111681  1642     0x39ca5d90 LOG                     v4l2 gstv4l2object.c:1208:gst_v4l2_object_fill_format_list:<v4l2h264dec0:src> index:       1
    0:00:00.461125006  1642     0x39ca5d90 LOG                     v4l2 gstv4l2object.c:1209:gst_v4l2_object_fill_format_list:<v4l2h264dec0:src> type:        9
    0:00:00.461138827  1642     0x39ca5d90 LOG                     v4l2 gstv4l2object.c:1210:gst_v4l2_object_fill_format_list:<v4l2h264dec0:src> flags:       00000000
    0:00:00.461151787  1642     0x39ca5d90 LOG                     v4l2 gstv4l2object.c:1211:gst_v4l2_object_fill_format_list:<v4l2h264dec0:src> description: 'Y/CbCr 4:2:2'
    0:00:00.461166397  1642     0x39ca5d90 LOG                     v4l2 gstv4l2object.c:1213:gst_v4l2_object_fill_format_list:<v4l2h264dec0:src> pixelformat: NV16
    0:00:00.461211113  1642     0x39ca5d90 LOG                     v4l2 gstv4l2object.c:1208:gst_v4l2_object_fill_format_list:<v4l2h264dec0:src> index:       2
    0:00:00.461226609  1642     0x39ca5d90 LOG                     v4l2 gstv4l2object.c:1209:gst_v4l2_object_fill_format_list:<v4l2h264dec0:src> type:        9
    0:00:00.461239454  1642     0x39ca5d90 LOG                     v4l2 gstv4l2object.c:1210:gst_v4l2_object_fill_format_list:<v4l2h264dec0:src> flags:       00000000
    0:00:00.461279280  1642     0x39ca5d90 LOG                     v4l2 gstv4l2object.c:1211:gst_v4l2_object_fill_format_list:<v4l2h264dec0:src> description: '10-bit YUV 4:2:0 (NV12)'
    0:00:00.461306546  1642     0x39ca5d90 LOG                     v4l2 gstv4l2object.c:1213:gst_v4l2_object_fill_format_list:<v4l2h264dec0:src> pixelformat: TI12
    0:00:00.461324296  1642     0x39ca5d90 LOG                     v4l2 gstv4l2object.c:1208:gst_v4l2_object_fill_format_list:<v4l2h264dec0:src> index:       3
    0:00:00.461337021  1642     0x39ca5d90 LOG                     v4l2 gstv4l2object.c:1209:gst_v4l2_object_fill_format_list:<v4l2h264dec0:src> type:        9
    0:00:00.461350082  1642     0x39ca5d90 LOG                     v4l2 gstv4l2object.c:1210:gst_v4l2_object_fill_format_list:<v4l2h264dec0:src> flags:       00000000
    0:00:00.461388428  1642     0x39ca5d90 LOG                     v4l2 gstv4l2object.c:1211:gst_v4l2_object_fill_format_list:<v4l2h264dec0:src> description: '10-bit YUV 4:2:2 (NV16)'
    0:00:00.461415823  1642     0x39ca5d90 LOG                     v4l2 gstv4l2object.c:1213:gst_v4l2_object_fill_format_list:<v4l2h264dec0:src> pixelformat: TI16
    0:00:00.461432574  1642     0x39ca5d90 LOG                     v4l2 gstv4l2object.c:1208:gst_v4l2_object_fill_format_list:<v4l2h264dec0:src> index:       4
    0:00:00.461445694  1642     0x39ca5d90 LOG                     v4l2 gstv4l2object.c:1209:gst_v4l2_object_fill_format_list:<v4l2h264dec0:src> type:        9
    0:00:00.461490810  1642     0x39ca5d90 LOG                     v4l2 gstv4l2object.c:1210:gst_v4l2_object_fill_format_list:<v4l2h264dec0:src> flags:       00000000
    0:00:00.461505540  1642     0x39ca5d90 LOG                     v4l2 gstv4l2object.c:1211:gst_v4l2_object_fill_format_list:<v4l2h264dec0:src> description: 'Planar YUV 4:2:0 (N-C)'
    0:00:00.461520291  1642     0x39ca5d90 LOG                     v4l2 gstv4l2object.c:1213:gst_v4l2_object_fill_format_list:<v4l2h264dec0:src> pixelformat: YM12
    0:00:00.461536491  1642     0x39ca5d90 LOG                     v4l2 gstv4l2object.c:1208:gst_v4l2_object_fill_format_list:<v4l2h264dec0:src> index:       5
    0:00:00.461577842  1642     0x39ca5d90 LOG                     v4l2 gstv4l2object.c:1209:gst_v4l2_object_fill_format_list:<v4l2h264dec0:src> type:        9
    0:00:00.461593662  1642     0x39ca5d90 LOG                     v4l2 gstv4l2object.c:1210:gst_v4l2_object_fill_format_list:<v4l2h264dec0:src> flags:       00000000
    0:00:00.461606853  1642     0x39ca5d90 LOG                     v4l2 gstv4l2object.c:1211:gst_v4l2_object_fill_format_list:<v4l2h264dec0:src> description: 'Planar YUV 4:2:2 (N-C)'
    0:00:00.461621313  1642     0x39ca5d90 LOG                     v4l2 gstv4l2object.c:1213:gst_v4l2_object_fill_format_list:<v4l2h264dec0:src> pixelformat: YM16
    0:00:00.461658869  1642     0x39ca5d90 INFO                    v4l2 gstv4l2object.c:1227:gst_v4l2_object_fill_format_list:<v4l2h264dec0:src> got 6 format(s):
    0:00:00.461683705  1642     0x39ca5d90 INFO                    v4l2 gstv4l2object.c:1231:gst_v4l2_object_fill_format_list:<v4l2h264dec0:src>   YM16
    0:00:00.461716685  1642     0x39ca5d90 INFO                    v4l2 gstv4l2object.c:1231:gst_v4l2_object_fill_format_list:<v4l2h264dec0:src>   YM12
    0:00:00.461762666  1642     0x39ca5d90 INFO                    v4l2 gstv4l2object.c:1231:gst_v4l2_object_fill_format_list:<v4l2h264dec0:src>   NV16
    0:00:00.461779442  1642     0x39ca5d90 INFO                    v4l2 gstv4l2object.c:1231:gst_v4l2_object_fill_format_list:<v4l2h264dec0:src>   NV12
    0:00:00.461794157  1642     0x39ca5d90 INFO                    v4l2 gstv4l2object.c:1231:gst_v4l2_object_fill_format_list:<v4l2h264dec0:src>   TI16
    0:00:00.461808168  1642     0x39ca5d90 INFO                    v4l2 gstv4l2object.c:1231:gst_v4l2_object_fill_format_list:<v4l2h264dec0:src>   TI12
    0:00:00.461888949  1642     0x39ca5d90 WARN                    v4l2 gstv4l2object.c:4292:gst_v4l2_object_probe_caps:<v4l2h264dec0:src> Failed to probe pixel aspect ratio with VIDIOC_CROPCAP: Invalid argument
    0:00:00.461992462  1642     0x39ca5d90 DEBUG                   v4l2 gstv4l2object.c:2684:gst_v4l2_object_probe_caps_for_format:<v4l2h264dec0:src> Enumerating frame sizes for YM16
    0:00:00.462016752  1642     0x39ca5d90 DEBUG                   v4l2 gstv4l2object.c:2811:gst_v4l2_object_probe_caps_for_format:<v4l2h264dec0:src> Failed to enumerate frame sizes for pixelformat YM16 (Inappropriate ioctl for device)
    0:00:00.462033993  1642     0x39ca5d90 LOG                     v4l2 gstv4l2object.c:2922:gst_v4l2_object_get_nearest_size:<v4l2h264dec0:src> getting nearest size to 1x1 with format YM16
    0:00:00.462053778  1642     0x39ca5d90 LOG                     v4l2 gstv4l2object.c:2939:gst_v4l2_object_get_nearest_size:<v4l2h264dec0:src> got nearest size 1x1
    0:00:00.462070589  1642     0x39ca5d90 LOG                     v4l2 gstv4l2object.c:2922:gst_v4l2_object_get_nearest_size:<v4l2h264dec0:src> getting nearest size to 32768x32768 with format YM16
    0:00:00.462086834  1642     0x39ca5d90 LOG                     v4l2 gstv4l2object.c:2939:gst_v4l2_object_get_nearest_size:<v4l2h264dec0:src> got nearest size 32768x32768
    0:00:00.462122055  1642     0x39ca5d90 DEBUG                   v4l2 gstv4l2object.c:2119:gst_v4l2_object_get_colorspace: Unknown enum v4l2_colorspace 0
    0:00:00.462194652  1642     0x39ca5d90 DEBUG                   v4l2 gstv4l2object.c:2684:gst_v4l2_object_probe_caps_for_format:<v4l2h264dec0:src> Enumerating frame sizes for YM12
    0:00:00.462214002  1642     0x39ca5d90 DEBUG                   v4l2 gstv4l2object.c:2811:gst_v4l2_object_probe_caps_for_format:<v4l2h264dec0:src> Failed to enumerate frame sizes for pixelformat YM12 (Inappropriate ioctl for device)
    0:00:00.462267183  1642     0x39ca5d90 LOG                     v4l2 gstv4l2object.c:2922:gst_v4l2_object_get_nearest_size:<v4l2h264dec0:src> getting nearest size to 1x1 with format YM12
    0:00:00.462288069  1642     0x39ca5d90 LOG                     v4l2 gstv4l2object.c:2939:gst_v4l2_object_get_nearest_size:<v4l2h264dec0:src> got nearest size 1x1
    0:00:00.462304339  1642     0x39ca5d90 LOG                     v4l2 gstv4l2object.c:2922:gst_v4l2_object_get_nearest_size:<v4l2h264dec0:src> getting nearest size to 32768x32768 with format YM12
    0:00:00.462320830  1642     0x39ca5d90 LOG                     v4l2 gstv4l2object.c:2939:gst_v4l2_object_get_nearest_size:<v4l2h264dec0:src> got nearest size 32768x32768
    0:00:00.462347440  1642     0x39ca5d90 DEBUG                   v4l2 gstv4l2object.c:2119:gst_v4l2_object_get_colorspace: Unknown enum v4l2_colorspace 0
    0:00:00.462402282  1642     0x39ca5d90 DEBUG                   v4l2 gstv4l2object.c:2684:gst_v4l2_object_probe_caps_for_format:<v4l2h264dec0:src> Enumerating frame sizes for NV16
    0:00:00.462427027  1642     0x39ca5d90 DEBUG                   v4l2 gstv4l2object.c:2811:gst_v4l2_object_probe_caps_for_format:<v4l2h264dec0:src> Failed to enumerate frame sizes for pixelformat NV16 (Inappropriate ioctl for device)
    0:00:00.462443353  1642     0x39ca5d90 LOG                     v4l2 gstv4l2object.c:2922:gst_v4l2_object_get_nearest_size:<v4l2h264dec0:src> getting nearest size to 1x1 with format NV16
    0:00:00.462459718  1642     0x39ca5d90 LOG                     v4l2 gstv4l2object.c:2939:gst_v4l2_object_get_nearest_size:<v4l2h264dec0:src> got nearest size 1x1
    0:00:00.462475223  1642     0x39ca5d90 LOG                     v4l2 gstv4l2object.c:2922:gst_v4l2_object_get_nearest_size:<v4l2h264dec0:src> getting nearest size to 32768x32768 with format NV16
    0:00:00.462528345  1642     0x39ca5d90 LOG                     v4l2 gstv4l2object.c:2939:gst_v4l2_object_get_nearest_size:<v4l2h264dec0:src> got nearest size 32768x32768
    0:00:00.462554860  1642     0x39ca5d90 DEBUG                   v4l2 gstv4l2object.c:2119:gst_v4l2_object_get_colorspace: Unknown enum v4l2_colorspace 0
    0:00:00.462611062  1642     0x39ca5d90 DEBUG                   v4l2 gstv4l2object.c:2684:gst_v4l2_object_probe_caps_for_format:<v4l2h264dec0:src> Enumerating frame sizes for NV12
    0:00:00.462629202  1642     0x39ca5d90 DEBUG                   v4l2 gstv4l2object.c:2811:gst_v4l2_object_probe_caps_for_format:<v4l2h264dec0:src> Failed to enumerate frame sizes for pixelformat NV12 (Inappropriate ioctl for device)
    0:00:00.462645857  1642     0x39ca5d90 LOG                     v4l2 gstv4l2object.c:2922:gst_v4l2_object_get_nearest_size:<v4l2h264dec0:src> getting nearest size to 1x1 with format NV12
    0:00:00.462662433  1642     0x39ca5d90 LOG                     v4l2 gstv4l2object.c:2939:gst_v4l2_object_get_nearest_size:<v4l2h264dec0:src> got nearest size 1x1
    0:00:00.462678183  1642     0x39ca5d90 LOG                     v4l2 gstv4l2object.c:2922:gst_v4l2_object_get_nearest_size:<v4l2h264dec0:src> getting nearest size to 32768x32768 with format NV12
    0:00:00.462694334  1642     0x39ca5d90 LOG                     v4l2 gstv4l2object.c:2939:gst_v4l2_object_get_nearest_size:<v4l2h264dec0:src> got nearest size 32768x32768
    0:00:00.462726114  1642     0x39ca5d90 DEBUG                   v4l2 gstv4l2object.c:2119:gst_v4l2_object_get_colorspace: Unknown enum v4l2_colorspace 0
    0:00:00.462815021  1642     0x39ca5d90 DEBUG                   v4l2 gstv4l2object.c:1614:gst_v4l2_object_v4l2fourcc_to_bare_struct: Unsupported fourcc 0x36314954 TI16
    0:00:00.462831982  1642     0x39ca5d90 DEBUG                   v4l2 gstv4l2object.c:4313:gst_v4l2_object_probe_caps:<v4l2h264dec0:src> unknown format TI16
    0:00:00.462848422  1642     0x39ca5d90 DEBUG                   v4l2 gstv4l2object.c:1614:gst_v4l2_object_v4l2fourcc_to_bare_struct: Unsupported fourcc 0x32314954 TI12
    0:00:00.462863113  1642     0x39ca5d90 DEBUG                   v4l2 gstv4l2object.c:4313:gst_v4l2_object_probe_caps:<v4l2h264dec0:src> unknown format TI12
    0:00:00.462997856  1642     0x39ca5d90 INFO                    v4l2 gstv4l2object.c:4350:gst_v4l2_object_probe_caps:<v4l2h264dec0:src> probed caps: video/x-raw, format=(string)Y42B, width=(int)[ 1, 32768 ], height=(int)[ 1, 32768 ], framerate=(fraction)[ 0/1, 2147483647/1 ], interlace-mode=(string){ progressive, interleaved }, colorimetry=(string){ bt601, smpte240m, bt709, 2:4:5:2, 2:4:5:3, 1:4:7:1, 2:4:7:1, 2:4:12:8, bt2020, 2:0:0:0 }; video/x-raw, format=(string)I420, width=(int)[ 1, 32768 ], height=(int)[ 1, 32768 ], framerate=(fraction)[ 0/1, 2147483647/1 ], interlace-mode=(string){ progressive, interleaved }, colorimetry=(string){ bt601, smpte240m, bt709, 2:4:5:2, 2:4:5:3, 1:4:7:1, 2:4:7:1, 2:4:12:8, bt2020, 2:0:0:0 }; video/x-raw, format=(string)NV16, width=(int)[ 1, 32768 ], height=(int)[ 1, 32768 ], framerate=(fraction)[ 0/1, 2147483647/1 ], interlace-mode=(string){ progressive, interleaved }, colorimetry=(string){ bt601, smpte240m, bt709, 2:4:5:2, 2:4:5:3, 1:4:7:1, 2:4:7:1, 2:4:12:8, bt2020, 2:0:0:0 }; video/x-raw, format=(string)NV12, width=(int)[ 1, 32768 ], height=(int)[ 1, 32768 ], framerate=(fraction)[ 0/1, 2147483647/1 ], interlace-mode=(string){ progressive, interleaved }, colorimetry=(string){ bt601, smpte240m, bt709, 2:4:5:2, 2:4:5:3, 1:4:7:1, 2:4:7:1, 2:4:12:8, bt2020, 2:0:0:0 }
    0:00:00.463424156  1642     0x39ca5d90 DEBUG           v4l2videodec gstv4l2videodec.c:574:gst_v4l2_video_dec_handle_frame:<v4l2h264dec0> Handling frame 0
    0:00:00.463455072  1642     0x39ca5d90 DEBUG           v4l2videodec gstv4l2videodec.c:595:gst_v4l2_video_dec_handle_frame:<v4l2h264dec0> Sending header
    0:00:00.463534139  1642     0x39ca5d90 DEBUG         v4l2bufferpool gstv4l2bufferpool.c:520:gst_v4l2_buffer_pool_set_config:<v4l2h264dec0:pool:sink> config GstBufferPoolConfig, caps=(GstCaps)"video/x-h264\,\ stream-format\=\(string\)byte-stream\,\ alignment\=\(string\)au\,\ level\=\(string\)3.1\,\ profile\=\(string\)constrained-baseline\,\ width\=\(int\)1280\,\ height\=\(int\)720\,\ framerate\=\(fraction\)92/3\,\ pixel-aspect-ratio\=\(fraction\)1/1\,\ interlace-mode\=\(string\)progressive\,\ chroma-format\=\(string\)4:2:0\,\ bit-depth-luma\=\(uint\)8\,\ bit-depth-chroma\=\(uint\)8\,\ parsed\=\(boolean\)true", size=(uint)1474560, min-buffers=(uint)2, max-buffers=(uint)2, allocator=(GstAllocator)"NULL", params=(GstAllocationParams)NULL;
    0:00:00.463571644  1642     0x39ca5d90 DEBUG         v4l2bufferpool gstv4l2bufferpool.c:756:gst_v4l2_buffer_pool_start:<v4l2h264dec0:pool:sink> activating pool
    0:00:00.463591935  1642     0x39ca5d90 DEBUG         v4l2bufferpool gstv4l2bufferpool.c:803:gst_v4l2_buffer_pool_start:<v4l2h264dec0:pool:sink> requesting 2 MMAP buffers
    0:00:00.465060385  1642     0x39ca5d90 DEBUG          v4l2allocator gstv4l2allocator.c:706:gst_v4l2_allocator_start:<v4l2h264dec0:pool:sink:allocator> allocated 2 mmap buffers out of 2 requested
    0:00:00.465137567  1642     0x39ca5d90 LOG            v4l2allocator gstv4l2allocator.c:303:gst_v4l2_memory_group_new:<v4l2h264dec0:pool:sink:allocator> Got mmap buffer
    0:00:00.465155382  1642     0x39ca5d90 LOG            v4l2allocator gstv4l2allocator.c:304:gst_v4l2_memory_group_new:<v4l2h264dec0:pool:sink:allocator>   index:     0
    0:00:00.465170362  1642     0x39ca5d90 LOG            v4l2allocator gstv4l2allocator.c:305:gst_v4l2_memory_group_new:<v4l2h264dec0:pool:sink:allocator>   type:      10
    0:00:00.465185333  1642     0x39ca5d90 LOG            v4l2allocator gstv4l2allocator.c:306:gst_v4l2_memory_group_new:<v4l2h264dec0:pool:sink:allocator>   flags:     00004000
    0:00:00.465198903  1642     0x39ca5d90 LOG            v4l2allocator gstv4l2allocator.c:307:gst_v4l2_memory_group_new:<v4l2h264dec0:pool:sink:allocator>   field:     0
    0:00:00.465212073  1642     0x39ca5d90 LOG            v4l2allocator gstv4l2allocator.c:308:gst_v4l2_memory_group_new:<v4l2h264dec0:pool:sink:allocator>   memory:    1
    0:00:00.465226159  1642     0x39ca5d90 LOG            v4l2allocator gstv4l2allocator.c:309:gst_v4l2_memory_group_new:<v4l2h264dec0:pool:sink:allocator>   planes:    1
    0:00:00.465243264  1642     0x39ca5d90 LOG            v4l2allocator gstv4l2allocator.c:315:gst_v4l2_memory_group_new:<v4l2h264dec0:pool:sink:allocator>   [0] bytesused: 0, length: 1474560, offset: 0
    0:00:00.465258030  1642     0x39ca5d90 LOG            v4l2allocator gstv4l2allocator.c:319:gst_v4l2_memory_group_new:<v4l2h264dec0:pool:sink:allocator>   [0] MMAP offset:  0
    0:00:00.465276200  1642     0x39ca5d90 LOG            v4l2allocator gstv4l2allocator.c:303:gst_v4l2_memory_group_new:<v4l2h264dec0:pool:sink:allocator> Got mmap buffer
    0:00:00.465289945  1642     0x39ca5d90 LOG            v4l2allocator gstv4l2allocator.c:304:gst_v4l2_memory_group_new:<v4l2h264dec0:pool:sink:allocator>   index:     1
    0:00:00.465302921  1642     0x39ca5d90 LOG            v4l2allocator gstv4l2allocator.c:305:gst_v4l2_memory_group_new:<v4l2h264dec0:pool:sink:allocator>   type:      10
    0:00:00.465315996  1642     0x39ca5d90 LOG            v4l2allocator gstv4l2allocator.c:306:gst_v4l2_memory_group_new:<v4l2h264dec0:pool:sink:allocator>   flags:     00004000
    0:00:00.465328786  1642     0x39ca5d90 LOG            v4l2allocator gstv4l2allocator.c:307:gst_v4l2_memory_group_new:<v4l2h264dec0:pool:sink:allocator>   field:     0
    0:00:00.465341767  1642     0x39ca5d90 LOG            v4l2allocator gstv4l2allocator.c:308:gst_v4l2_memory_group_new:<v4l2h264dec0:pool:sink:allocator>   memory:    1
    0:00:00.465354887  1642     0x39ca5d90 LOG            v4l2allocator gstv4l2allocator.c:309:gst_v4l2_memory_group_new:<v4l2h264dec0:pool:sink:allocator>   planes:    1
    0:00:00.465371457  1642     0x39ca5d90 LOG            v4l2allocator gstv4l2allocator.c:315:gst_v4l2_memory_group_new:<v4l2h264dec0:pool:sink:allocator>   [0] bytesused: 0, length: 1474560, offset: 0
    0:00:00.465386418  1642     0x39ca5d90 LOG            v4l2allocator gstv4l2allocator.c:319:gst_v4l2_memory_group_new:<v4l2h264dec0:pool:sink:allocator>   [0] MMAP offset:  1474560
    0:00:00.465651469  1642     0x39ca5d90 LOG            v4l2allocator gstv4l2allocator.c:847:gst_v4l2_allocator_alloc_mmap:<v4l2h264dec0:pool:sink:allocator> mmap buffer length 1474560, data offset 0, plane 0
    0:00:00.465679460  1642     0x39ca5d90 DEBUG         v4l2bufferpool gstv4l2bufferpool.c:1475:gst_v4l2_buffer_pool_release_buffer:<v4l2h264dec0:pool:sink> release buffer 0xffff940055a0
    0:00:00.465740486  1642     0x39ca5d90 LOG           v4l2bufferpool gstv4l2bufferpool.c:1553:gst_v4l2_buffer_pool_release_buffer:<v4l2h264dec0:pool:sink> buffer 0 not queued, putting on free list
    0:00:00.465849094  1642     0x39ca5d90 LOG            v4l2allocator gstv4l2allocator.c:847:gst_v4l2_allocator_alloc_mmap:<v4l2h264dec0:pool:sink:allocator> mmap buffer length 1474560, data offset 0, plane 0
    0:00:00.465867944  1642     0x39ca5d90 DEBUG         v4l2bufferpool gstv4l2bufferpool.c:1475:gst_v4l2_buffer_pool_release_buffer:<v4l2h264dec0:pool:sink> release buffer 0xffff94005240
    0:00:00.465883569  1642     0x39ca5d90 LOG           v4l2bufferpool gstv4l2bufferpool.c:1553:gst_v4l2_buffer_pool_release_buffer:<v4l2h264dec0:pool:sink> buffer 1 not queued, putting on free list
    0:00:00.465897820  1642     0x39ca5d90 DEBUG         v4l2bufferpool gstv4l2bufferpool.c:1056:gst_v4l2_buffer_pool_flush_stop:<v4l2h264dec0:pool:sink> stop flushing
    0:00:00.465915460  1642     0x39ca5d90 DEBUG         v4l2bufferpool gstv4l2bufferpool.c:1812:gst_v4l2_buffer_pool_process:<v4l2h264dec0:pool:sink> process buffer 0xffffa17cc968
    0:00:00.465928516  1642     0x39ca5d90 LOG           v4l2bufferpool gstv4l2bufferpool.c:1989:gst_v4l2_buffer_pool_process:<v4l2h264dec0:pool:sink> alloc buffer from our pool
    0:00:00.465941121  1642     0x39ca5d90 DEBUG         v4l2bufferpool gstv4l2bufferpool.c:1397:gst_v4l2_buffer_pool_acquire_buffer:<v4l2h264dec0:pool:sink> acquire
    0:00:00.465954556  1642     0x39ca5d90 LOG           v4l2bufferpool gstv4l2bufferpool.c:116:gst_v4l2_buffer_pool_copy_buffer:<v4l2h264dec0:pool:sink> copying buffer
    0:00:00.465966631  1642     0x39ca5d90 DEBUG         v4l2bufferpool gstv4l2bufferpool.c:141:gst_v4l2_buffer_pool_copy_buffer:<v4l2h264dec0:pool:sink> copy raw bytes
    0:00:00.466034438  1642     0x39ca5d90 LOG           v4l2bufferpool gstv4l2bufferpool.c:1158:gst_v4l2_buffer_pool_qbuf:<v4l2h264dec0:pool:sink> queuing buffer 0
    0:00:00.466458073  1642     0x39ca5d90 LOG            v4l2allocator gstv4l2allocator.c:1286:gst_v4l2_allocator_qbuf:<v4l2h264dec0:pool:sink:allocator> queued buffer 0 (flags 0x4003)
    0:00:00.466488059  1642     0x39ca5d90 DEBUG         v4l2bufferpool gstv4l2bufferpool.c:679:gst_v4l2_buffer_pool_streamon:<v4l2h264dec0:pool:sink> Started streaming
    0:00:00.466506484  1642     0x39ca5d90 DEBUG         v4l2bufferpool gstv4l2bufferpool.c:1475:gst_v4l2_buffer_pool_release_buffer:<v4l2h264dec0:pool:sink> release buffer 0xffff940055a0
    0:00:00.466532670  1642     0x39ca5d90 LOG           v4l2bufferpool gstv4l2bufferpool.c:1569:gst_v4l2_buffer_pool_release_buffer:<v4l2h264dec0:pool:sink> buffer 0 is queued
    0:00:00.466547675  1642     0x39ca5d90 LOG           v4l2bufferpool gstv4l2bufferpool.c:1098:gst_v4l2_buffer_pool_poll:<v4l2h264dec0:pool:sink> polling device
    0:00:00.466576056  1642     0x39ca5d90 LOG           v4l2bufferpool gstv4l2bufferpool.c:1234:gst_v4l2_buffer_pool_dqbuf:<v4l2h264dec0:pool:sink> nothing to dequeue
    0:00:00.466604822  1642     0x39ca5d90 DEBUG                   v4l2 gstv4l2object.c:2119:gst_v4l2_object_get_colorspace: Unknown enum v4l2_colorspace 0
    0:00:00.466625422  1642     0x39ca5d90 DEBUG                   v4l2 gstv4l2object.c:3115:gst_v4l2_object_extrapolate_info:<v4l2h264dec0:src> Extrapolated for plane 0 with base stride 1280: stride 1280, offset 0
    0:00:00.466642227  1642     0x39ca5d90 DEBUG                   v4l2 gstv4l2object.c:3115:gst_v4l2_object_extrapolate_info:<v4l2h264dec0:src> Extrapolated for plane 1 with base stride 1280: stride 1280, offset 921600
    0:00:00.466656283  1642     0x39ca5d90 DEBUG                   v4l2 gstv4l2object.c:3238:gst_v4l2_object_save_format:<v4l2h264dec0:src> Got sizeimage 1382400
    0:00:00.466729495  1642     0x39ca5d90 DEBUG           v4l2videodec gstv4l2videodec.c:643:gst_v4l2_video_dec_handle_frame:<v4l2h264dec0> Acquired caps: video/x-raw, format=(string)NV12, width=(int)1280, height=(int)720, interlace-mode=(string)progressive, pixel-aspect-ratio=(fraction)1/1, chroma-site=(string)mpeg2, colorimetry=(string)bt709, framerate=(fraction)0/1
    0:00:00.466873318  1642     0x39ca5d90 DEBUG           v4l2videodec gstv4l2videodec.c:650:gst_v4l2_video_dec_handle_frame:<v4l2h264dec0> Available caps: video/x-raw, format=(string)Y42B, width=(int)[ 1, 32768 ], height=(int)[ 1, 32768 ], framerate=(fraction)[ 0/1, 2147483647/1 ], interlace-mode=(string){ progressive, interleaved }, colorimetry=(string){ bt601, smpte240m, bt709, 2:4:5:2, 2:4:5:3, 1:4:7:1, 2:4:7:1, 2:4:12:8, bt2020, 2:0:0:0 }; video/x-raw, format=(string)I420, width=(int)[ 1, 32768 ], height=(int)[ 1, 32768 ], framerate=(fraction)[ 0/1, 2147483647/1 ], interlace-mode=(string){ progressive, interleaved }, colorimetry=(string){ bt601, smpte240m, bt709, 2:4:5:2, 2:4:5:3, 1:4:7:1, 2:4:7:1, 2:4:12:8, bt2020, 2:0:0:0 }; video/x-raw, format=(string)NV16, width=(int)[ 1, 32768 ], height=(int)[ 1, 32768 ], framerate=(fraction)[ 0/1, 2147483647/1 ], interlace-mode=(string){ progressive, interleaved }, colorimetry=(string){ bt601, smpte240m, bt709, 2:4:5:2, 2:4:5:3, 1:4:7:1, 2:4:7:1, 2:4:12:8, bt2020, 2:0:0:0 }; video/x-raw, format=(string)NV12, width=(int)[ 1, 32768 ], height=(int)[ 1, 32768 ], framerate=(fraction)[ 0/1, 2147483647/1 ], interlace-mode=(string){ progressive, interleaved }, colorimetry=(string){ bt601, smpte240m, bt709, 2:4:5:2, 2:4:5:3, 1:4:7:1, 2:4:7:1, 2:4:12:8, bt2020, 2:0:0:0 }
    0:00:00.466989336  1642     0x39ca5d90 DEBUG           v4l2videodec gstv4l2videodec.c:658:gst_v4l2_video_dec_handle_frame:<v4l2h264dec0> Filtered caps: video/x-raw, format=(string)Y42B, width=(int)1280, height=(int)720, framerate=(fraction)0/1, interlace-mode=(string)progressive, colorimetry=(string){ bt601, smpte240m, bt709, 2:4:5:2, 2:4:5:3, 1:4:7:1, 2:4:7:1, 2:4:12:8, bt2020, 2:0:0:0 }, pixel-aspect-ratio=(fraction)1/1; video/x-raw, format=(string)I420, width=(int)1280, height=(int)720, framerate=(fraction)0/1, interlace-mode=(string)progressive, colorimetry=(string){ bt601, smpte240m, bt709, 2:4:5:2, 2:4:5:3, 1:4:7:1, 2:4:7:1, 2:4:12:8, bt2020, 2:0:0:0 }, pixel-aspect-ratio=(fraction)1/1; video/x-raw, format=(string)NV16, width=(int)1280, height=(int)720, framerate=(fraction)0/1, interlace-mode=(string)progressive, colorimetry=(string){ bt601, smpte240m, bt709, 2:4:5:2, 2:4:5:3, 1:4:7:1, 2:4:7:1, 2:4:12:8, bt2020, 2:0:0:0 }, pixel-aspect-ratio=(fraction)1/1; video/x-raw, format=(string)NV12, width=(int)1280, height=(int)720, framerate=(fraction)0/1, interlace-mode=(string)progressive, colorimetry=(string){ bt601, smpte240m, bt709, 2:4:5:2, 2:4:5:3, 1:4:7:1, 2:4:7:1, 2:4:12:8, bt2020, 2:0:0:0 }, pixel-aspect-ratio=(fraction)1/1
    0:00:00.467354224  1642     0x39ca5d90 DEBUG           v4l2videodec gstv4l2videodec.c:664:gst_v4l2_video_dec_handle_frame:<v4l2h264dec0> Possible decoded caps: video/x-raw, format=(string)NV12, width=(int)1280, height=(int)720, framerate=(fraction)0/1, interlace-mode=(string)progressive, colorimetry=(string){ bt601, smpte240m, bt709, 2:4:5:2, 2:4:5:3, 1:4:7:1, 2:4:7:1, 2:4:12:8, bt2020, 2:0:0:0 }, pixel-aspect-ratio=(fraction)1/1
    0:00:00.467389520  1642     0x39ca5d90 DEBUG           v4l2videodec gstv4l2videodec.c:673:gst_v4l2_video_dec_handle_frame:<v4l2h264dec0> Chosen decoded caps: video/x-raw, format=(string)NV12, width=(int)1280, height=(int)720, framerate=(fraction)0/1, interlace-mode=(string)progressive, colorimetry=(string)bt601, pixel-aspect-ratio=(fraction)1/1
    0:00:00.467413556  1642     0x39ca5d90 DEBUG                   v4l2 gstv4l2object.c:3968:gst_v4l2_object_set_format:<v4l2h264dec0:src> Setting format to video/x-raw, format=(string)NV12, width=(int)1280, height=(int)720, framerate=(fraction)0/1, interlace-mode=(string)progressive, colorimetry=(string)bt601, pixel-aspect-ratio=(fraction)1/1
    0:00:00.467448502  1642     0x39ca5d90 DEBUG                   v4l2 gstv4l2object.c:3377:gst_v4l2_object_set_format_full:<v4l2h264dec0:src> progressive video
    0:00:00.467469002  1642     0x39ca5d90 DEBUG                   v4l2 gstv4l2object.c:3519:gst_v4l2_object_set_format_full:<v4l2h264dec0:src> Desired format 1280x720, format NV12 stride: 1280
    0:00:00.467486898  1642     0x39ca5d90 DEBUG                   v4l2 gstv4l2object.c:3569:gst_v4l2_object_set_format_full:<v4l2h264dec0:src> Desired format is 1280x720, format NV12, nb planes 1
    0:00:00.467499818  1642     0x39ca5d90 DEBUG                   v4l2 gstv4l2object.c:3578:gst_v4l2_object_set_format_full:<v4l2h264dec0:src>   stride 1280
    0:00:00.467515453  1642     0x39ca5d90 DEBUG                   v4l2 gstv4l2object.c:3599:gst_v4l2_object_set_format_full:<v4l2h264dec0:src> Desired colorspace is 1:2:1:1
    0:00:00.467637406  1642     0x39ca5d90 DEBUG                   v4l2 gstv4l2object.c:3622:gst_v4l2_object_set_format_full:<v4l2h264dec0:src> Got format of 1280x720, format NV12, nb planes 1, colorspace 1:2:1:1
    0:00:00.467657297  1642     0x39ca5d90 DEBUG                   v4l2 gstv4l2object.c:3632:gst_v4l2_object_set_format_full:<v4l2h264dec0:src>   stride 1280, sizeimage 1382400
    0:00:00.467677472  1642     0x39ca5d90 DEBUG                   v4l2 gstv4l2object.c:3716:gst_v4l2_object_set_format_full:<v4l2h264dec0:src> Desired framerate: 0/1
    0:00:00.467698913  1642     0x39ca5d90 DEBUG                   v4l2 gstv4l2object.c:3115:gst_v4l2_object_extrapolate_info:<v4l2h264dec0:src> Extrapolated for plane 0 with base stride 1280: stride 1280, offset 0
    0:00:00.467714723  1642     0x39ca5d90 DEBUG                   v4l2 gstv4l2object.c:3115:gst_v4l2_object_extrapolate_info:<v4l2h264dec0:src> Extrapolated for plane 1 with base stride 1280: stride 1280, offset 921600
    0:00:00.467727813  1642     0x39ca5d90 DEBUG                   v4l2 gstv4l2object.c:3238:gst_v4l2_object_save_format:<v4l2h264dec0:src> Got sizeimage 1382400
    0:00:00.467741259  1642     0x39ca5d90 DEBUG                   v4l2 gstv4l2object.c:2993:gst_v4l2_object_setup_pool:<v4l2h264dec0:src> initializing the capture system
    0:00:00.467754664  1642     0x39ca5d90 INFO                    v4l2 gstv4l2object.c:3025:gst_v4l2_object_setup_pool:<v4l2h264dec0:src> accessing buffers via mode 5
    0:00:00.467768619  1642     0x39ca5d90 LOG                     v4l2 gstv4l2object.c:3034:gst_v4l2_object_setup_pool:<v4l2h264dec0:src> initiating buffer pool
    0:00:00.468048776  1642     0x39ca5d90 DEBUG         v4l2bufferpool gstv4l2bufferpool.c:520:gst_v4l2_buffer_pool_set_config:<v4l2h264dec0:pool:src> config GstBufferPoolConfig, caps=(GstCaps)"video/x-raw\,\ format\=\(string\)NV12\,\ width\=\(int\)1280\,\ height\=\(int\)720\,\ framerate\=\(fraction\)0/1\,\ interlace-mode\=\(string\)progressive\,\ colorimetry\=\(string\)bt601\,\ pixel-aspect-ratio\=\(fraction\)1/1", size=(uint)1382400, min-buffers=(uint)0, max-buffers=(uint)0, allocator=(GstAllocator)"NULL", params=(GstAllocationParams)NULL;
    0:00:00.468074797  1642     0x39ca5d90 INFO          v4l2bufferpool gstv4l2bufferpool.c:568:gst_v4l2_buffer_pool_set_config:<v4l2h264dec0:pool:src> increasing minimum buffers to 2
    0:00:00.468089747  1642     0x39ca5d90 INFO          v4l2bufferpool gstv4l2bufferpool.c:581:gst_v4l2_buffer_pool_set_config:<v4l2h264dec0:pool:src> reducing maximum buffers to 32
    0:00:00.468102522  1642     0x39ca5d90 INFO          v4l2bufferpool gstv4l2bufferpool.c:592:gst_v4l2_buffer_pool_set_config:<v4l2h264dec0:pool:src> can't allocate, setting maximum to minimum
    0:00:00.475456562  1642     0x39ca5d90 DEBUG                   v4l2 gstv4l2object.c:4386:gst_v4l2_object_decide_allocation:<v4l2h264dec0:src> decide allocation
    0:00:00.475654192  1642     0x39ca5d90 DEBUG                   v4l2 gstv4l2object.c:4411:gst_v4l2_object_decide_allocation:<v4l2h264dec0:src> allocation: size:1382400 min:2 max:2 pool:<tiovximagebufferpool2>
    0:00:00.475805370  1642     0x39ca5d90 DEBUG                   v4l2 gstv4l2object.c:4545:gst_v4l2_object_decide_allocation:<v4l2h264dec0:src> setting own pool config to GstBufferPoolConfig, caps=(GstCaps)"video/x-raw\,\ format\=\(string\)NV12\,\ width\=\(int\)1280\,\ height\=\(int\)720\,\ interlace-mode\=\(string\)progressive\,\ multiview-mode\=\(string\)mono\,\ multiview-flags\=\(GstVideoMultiviewFlagsSet\)0:ffffffff:/right-view-first/left-flipped/left-flopped/right-flipped/right-flopped/half-aspect/mixed-mono\,\ pixel-aspect-ratio\=\(fraction\)1/1\,\ chroma-site\=\(string\)mpeg2\,\ colorimetry\=\(string\)bt709\,\ framerate\=\(fraction\)92/3", size=(uint)1382400, min-buffers=(uint)2, max-buffers=(uint)0, allocator=(GstAllocator)"NULL", params=(GstAllocationParams)NULL;
    0:00:00.475870127  1642     0x39ca5d90 DEBUG         v4l2bufferpool gstv4l2bufferpool.c:520:gst_v4l2_buffer_pool_set_config:<v4l2h264dec0:pool:src> config GstBufferPoolConfig, caps=(GstCaps)"video/x-raw\,\ format\=\(string\)NV12\,\ width\=\(int\)1280\,\ height\=\(int\)720\,\ interlace-mode\=\(string\)progressive\,\ multiview-mode\=\(string\)mono\,\ multiview-flags\=\(GstVideoMultiviewFlagsSet\)0:ffffffff:/right-view-first/left-flipped/left-flopped/right-flipped/right-flopped/half-aspect/mixed-mono\,\ pixel-aspect-ratio\=\(fraction\)1/1\,\ chroma-site\=\(string\)mpeg2\,\ colorimetry\=\(string\)bt709\,\ framerate\=\(fraction\)92/3", size=(uint)1382400, min-buffers=(uint)2, max-buffers=(uint)0, allocator=(GstAllocator)"NULL", params=(GstAllocationParams)NULL;
    0:00:00.476047581  1642     0x39ca5d90 INFO          v4l2bufferpool gstv4l2bufferpool.c:581:gst_v4l2_buffer_pool_set_config:<v4l2h264dec0:pool:src> reducing maximum buffers to 32
    0:00:00.476064162  1642     0x39ca5d90 INFO          v4l2bufferpool gstv4l2bufferpool.c:592:gst_v4l2_buffer_pool_set_config:<v4l2h264dec0:pool:src> can't allocate, setting maximum to minimum
    0:00:00.476224530  1642     0x39ca5d90 DEBUG                   v4l2 gstv4l2object.c:4552:gst_v4l2_object_decide_allocation:<v4l2h264dec0:src> own pool config changed to GstBufferPoolConfig, caps=(GstCaps)"video/x-raw\,\ format\=\(string\)NV12\,\ width\=\(int\)1280\,\ height\=\(int\)720\,\ interlace-mode\=\(string\)progressive\,\ multiview-mode\=\(string\)mono\,\ multiview-flags\=\(GstVideoMultiviewFlagsSet\)0:ffffffff:/right-view-first/left-flipped/left-flopped/right-flipped/right-flopped/half-aspect/mixed-mono\,\ pixel-aspect-ratio\=\(fraction\)1/1\,\ chroma-site\=\(string\)mpeg2\,\ colorimetry\=\(string\)bt709\,\ framerate\=\(fraction\)92/3", size=(uint)1382400, min-buffers=(uint)2, max-buffers=(uint)2, allocator=(GstAllocator)"NULL", params=(GstAllocationParams)NULL;
    0:00:00.476336213  1642     0x39ca5d90 DEBUG         v4l2bufferpool gstv4l2bufferpool.c:520:gst_v4l2_buffer_pool_set_config:<v4l2h264dec0:pool:src> config GstBufferPoolConfig, caps=(GstCaps)"video/x-raw\,\ format\=\(string\)NV12\,\ width\=\(int\)1280\,\ height\=\(int\)720\,\ interlace-mode\=\(string\)progressive\,\ multiview-mode\=\(string\)mono\,\ multiview-flags\=\(GstVideoMultiviewFlagsSet\)0:ffffffff:/right-view-first/left-flipped/left-flopped/right-flipped/right-flopped/half-aspect/mixed-mono\,\ pixel-aspect-ratio\=\(fraction\)1/1\,\ chroma-site\=\(string\)mpeg2\,\ colorimetry\=\(string\)bt709\,\ framerate\=\(fraction\)92/3", size=(uint)1382400, min-buffers=(uint)2, max-buffers=(uint)2, allocator=(GstAllocator)"NULL", params=(GstAllocationParams)NULL;
    0:00:00.476474481  1642     0x39ca5d90 DEBUG                   v4l2 gstv4l2object.c:4569:gst_v4l2_object_decide_allocation:<v4l2h264dec0:src> setting other pool config to GstBufferPoolConfig, caps=(GstCaps)"video/x-raw\,\ format\=\(string\)NV12\,\ width\=\(int\)1280\,\ height\=\(int\)720\,\ interlace-mode\=\(string\)progressive\,\ multiview-mode\=\(string\)mono\,\ multiview-flags\=\(GstVideoMultiviewFlagsSet\)0:ffffffff:/right-view-first/left-flipped/left-flopped/right-flipped/right-flopped/half-aspect/mixed-mono\,\ pixel-aspect-ratio\=\(fraction\)1/1\,\ chroma-site\=\(string\)mpeg2\,\ colorimetry\=\(string\)bt709\,\ framerate\=\(fraction\)92/3", size=(uint)1382400, min-buffers=(uint)4, max-buffers=(uint)4, allocator=(GstAllocator)"NULL", params=(GstAllocationParams)NULL, vx-exemplar=(gint64)281473587950008, num-channels=(uint)1;
    0:00:00.476650355  1642     0x39ca5d90 WARN            v4l2videodec gstv4l2videodec.c:813:gst_v4l2_video_dec_decide_allocation:<v4l2h264dec0> Duration invalid, not setting latency
    0:00:00.476706317  1642     0x39ca5d90 DEBUG         v4l2bufferpool gstv4l2bufferpool.c:756:gst_v4l2_buffer_pool_start:<v4l2h264dec0:pool:src> activating pool
    0:00:00.481246125  1642     0x39ca5d90 DEBUG         v4l2bufferpool gstv4l2bufferpool.c:855:gst_v4l2_buffer_pool_start:<v4l2h264dec0:pool:src> requesting 2 DMABUF buffers
    0:00:00.481434934  1642     0x39ca5d90 DEBUG          v4l2allocator gstv4l2allocator.c:706:gst_v4l2_allocator_start:<v4l2h264dec0:pool:src:allocator> allocated 5 dmabuf buffers out of 2 requested
    0:00:00.481496931  1642     0x39ca5d90 LOG            v4l2allocator gstv4l2allocator.c:303:gst_v4l2_memory_group_new:<v4l2h264dec0:pool:src:allocator> Got dmabuf buffer
    0:00:00.481543602  1642     0x39ca5d90 LOG            v4l2allocator gstv4l2allocator.c:304:gst_v4l2_memory_group_new:<v4l2h264dec0:pool:src:allocator>   index:     0
    0:00:00.481590458  1642     0x39ca5d90 LOG            v4l2allocator gstv4l2allocator.c:305:gst_v4l2_memory_group_new:<v4l2h264dec0:pool:src:allocator>   type:      9
    0:00:00.481635654  1642     0x39ca5d90 LOG            v4l2allocator gstv4l2allocator.c:306:gst_v4l2_memory_group_new:<v4l2h264dec0:pool:src:allocator>   flags:     00004000
    0:00:00.481725286  1642     0x39ca5d90 LOG            v4l2allocator gstv4l2allocator.c:307:gst_v4l2_memory_group_new:<v4l2h264dec0:pool:src:allocator>   field:     0
    0:00:00.481775407  1642     0x39ca5d90 LOG            v4l2allocator gstv4l2allocator.c:308:gst_v4l2_memory_group_new:<v4l2h264dec0:pool:src:allocator>   memory:    4
    0:00:00.481820148  1642     0x39ca5d90 LOG            v4l2allocator gstv4l2allocator.c:309:gst_v4l2_memory_group_new:<v4l2h264dec0:pool:src:allocator>   planes:    1
    0:00:00.481870125  1642     0x39ca5d90 LOG            v4l2allocator gstv4l2allocator.c:303:gst_v4l2_memory_group_new:<v4l2h264dec0:pool:src:allocator> Got dmabuf buffer
    0:00:00.481885500  1642     0x39ca5d90 LOG            v4l2allocator gstv4l2allocator.c:304:gst_v4l2_memory_group_new:<v4l2h264dec0:pool:src:allocator>   index:     1
    0:00:00.481896875  1642     0x39ca5d90 LOG            v4l2allocator gstv4l2allocator.c:305:gst_v4l2_memory_group_new:<v4l2h264dec0:pool:src:allocator>   type:      9
    0:00:00.481908565  1642     0x39ca5d90 LOG            v4l2allocator gstv4l2allocator.c:306:gst_v4l2_memory_group_new:<v4l2h264dec0:pool:src:allocator>   flags:     00004000
    0:00:00.481918831  1642     0x39ca5d90 LOG            v4l2allocator gstv4l2allocator.c:307:gst_v4l2_memory_group_new:<v4l2h264dec0:pool:src:allocator>   field:     0
    0:00:00.481930311  1642     0x39ca5d90 LOG            v4l2allocator gstv4l2allocator.c:308:gst_v4l2_memory_group_new:<v4l2h264dec0:pool:src:allocator>   memory:    4
    0:00:00.482032023  1642     0x39ca5d90 LOG            v4l2allocator gstv4l2allocator.c:309:gst_v4l2_memory_group_new:<v4l2h264dec0:pool:src:allocator>   planes:    1
    0:00:00.482093050  1642     0x39ca5d90 LOG            v4l2allocator gstv4l2allocator.c:303:gst_v4l2_memory_group_new:<v4l2h264dec0:pool:src:allocator> Got dmabuf buffer
    0:00:00.482137806  1642     0x39ca5d90 LOG            v4l2allocator gstv4l2allocator.c:304:gst_v4l2_memory_group_new:<v4l2h264dec0:pool:src:allocator>   index:     2
    0:00:00.482190862  1642     0x39ca5d90 LOG            v4l2allocator gstv4l2allocator.c:305:gst_v4l2_memory_group_new:<v4l2h264dec0:pool:src:allocator>   type:      9
    0:00:00.482206038  1642     0x39ca5d90 LOG            v4l2allocator gstv4l2allocator.c:306:gst_v4l2_memory_group_new:<v4l2h264dec0:pool:src:allocator>   flags:     00004000
    0:00:00.482280894  1642     0x39ca5d90 LOG            v4l2allocator gstv4l2allocator.c:307:gst_v4l2_memory_group_new:<v4l2h264dec0:pool:src:allocator>   field:     0
    0:00:00.482324815  1642     0x39ca5d90 LOG            v4l2allocator gstv4l2allocator.c:308:gst_v4l2_memory_group_new:<v4l2h264dec0:pool:src:allocator>   memory:    4
    0:00:00.482369501  1642     0x39ca5d90 LOG            v4l2allocator gstv4l2allocator.c:309:gst_v4l2_memory_group_new:<v4l2h264dec0:pool:src:allocator>   planes:    1
    0:00:00.482427388  1642     0x39ca5d90 LOG            v4l2allocator gstv4l2allocator.c:303:gst_v4l2_memory_group_new:<v4l2h264dec0:pool:src:allocator> Got dmabuf buffer
    0:00:00.482472034  1642     0x39ca5d90 LOG            v4l2allocator gstv4l2allocator.c:304:gst_v4l2_memory_group_new:<v4l2h264dec0:pool:src:allocator>   index:     3
    0:00:00.482524655  1642     0x39ca5d90 LOG            v4l2allocator gstv4l2allocator.c:305:gst_v4l2_memory_group_new:<v4l2h264dec0:pool:src:allocator>   type:      9
    0:00:00.482539621  1642     0x39ca5d90 LOG            v4l2allocator gstv4l2allocator.c:306:gst_v4l2_memory_group_new:<v4l2h264dec0:pool:src:allocator>   flags:     00004000
    0:00:00.482613257  1642     0x39ca5d90 LOG            v4l2allocator gstv4l2allocator.c:307:gst_v4l2_memory_group_new:<v4l2h264dec0:pool:src:allocator>   field:     0
    0:00:00.482657298  1642     0x39ca5d90 LOG            v4l2allocator gstv4l2allocator.c:308:gst_v4l2_memory_group_new:<v4l2h264dec0:pool:src:allocator>   memory:    4
    0:00:00.482700644  1642     0x39ca5d90 LOG            v4l2allocator gstv4l2allocator.c:309:gst_v4l2_memory_group_new:<v4l2h264dec0:pool:src:allocator>   planes:    1
    0:00:00.482758041  1642     0x39ca5d90 LOG            v4l2allocator gstv4l2allocator.c:303:gst_v4l2_memory_group_new:<v4l2h264dec0:pool:src:allocator> Got dmabuf buffer
    0:00:00.482802542  1642     0x39ca5d90 LOG            v4l2allocator gstv4l2allocator.c:304:gst_v4l2_memory_group_new:<v4l2h264dec0:pool:src:allocator>   index:     4
    0:00:00.482859398  1642     0x39ca5d90 LOG            v4l2allocator gstv4l2allocator.c:305:gst_v4l2_memory_group_new:<v4l2h264dec0:pool:src:allocator>   type:      9
    0:00:00.482874248  1642     0x39ca5d90 LOG            v4l2allocator gstv4l2allocator.c:306:gst_v4l2_memory_group_new:<v4l2h264dec0:pool:src:allocator>   flags:     00004000
    0:00:00.482947545  1642     0x39ca5d90 LOG            v4l2allocator gstv4l2allocator.c:307:gst_v4l2_memory_group_new:<v4l2h264dec0:pool:src:allocator>   field:     0
    0:00:00.482990766  1642     0x39ca5d90 LOG            v4l2allocator gstv4l2allocator.c:308:gst_v4l2_memory_group_new:<v4l2h264dec0:pool:src:allocator>   memory:    4
    0:00:00.483033902  1642     0x39ca5d90 LOG            v4l2allocator gstv4l2allocator.c:309:gst_v4l2_memory_group_new:<v4l2h264dec0:pool:src:allocator>   planes:    1
    0:00:00.483106184  1642     0x39ca5d90 LOG            v4l2allocator gstv4l2allocator.c:1004:gst_v4l2_allocator_alloc_dmabufin:<v4l2h264dec0:pool:src:allocator> allocating empty DMABUF import group
    0:00:00.483159125  1642     0x39ca5d90 LOG            v4l2allocator gstv4l2allocator.c:968:gst_v4l2_allocator_clear_dmabufin:<v4l2h264dec0:pool:src:allocator> [0] clearing DMABUF import, fd -1 plane 0
    0:00:00.483178856  1642     0x39ca5d90 DEBUG         v4l2bufferpool gstv4l2bufferpool.c:1475:gst_v4l2_buffer_pool_release_buffer:<v4l2h264dec0:pool:src> release buffer 0xffff94005d80
    0:00:00.483243992  1642     0x39ca5d90 LOG            v4l2allocator gstv4l2allocator.c:968:gst_v4l2_allocator_clear_dmabufin:<v4l2h264dec0:pool:src:allocator> [0] clearing DMABUF import, fd -1 plane 0
    0:00:00.483260848  1642     0x39ca5d90 LOG           v4l2bufferpool gstv4l2bufferpool.c:338:gst_v4l2_buffer_pool_import_dmabuf:<v4l2h264dec0:pool:src> importing dmabuf
    0:00:00.483280063  1642     0x39ca5d90 LOG            v4l2allocator gstv4l2allocator.c:1113:gst_v4l2_allocator_import_dmabuf:<v4l2h264dec0:pool:src:allocator> [0] imported DMABUF as fd 53 plane 0
    0:00:00.483299319  1642     0x39ca5d90 LOG           v4l2bufferpool gstv4l2bufferpool.c:1158:gst_v4l2_buffer_pool_qbuf:<v4l2h264dec0:pool:src> queuing buffer 0
    0:00:00.483481868  1642     0x39ca5d90 LOG            v4l2allocator gstv4l2allocator.c:1286:gst_v4l2_allocator_qbuf:<v4l2h264dec0:pool:src:allocator> queued buffer 0 (flags 0x4002)
    0:00:00.483506203  1642     0x39ca5d90 LOG            v4l2allocator gstv4l2allocator.c:1004:gst_v4l2_allocator_alloc_dmabufin:<v4l2h264dec0:pool:src:allocator> allocating empty DMABUF import group
    0:00:00.483525224  1642     0x39ca5d90 LOG            v4l2allocator gstv4l2allocator.c:968:gst_v4l2_allocator_clear_dmabufin:<v4l2h264dec0:pool:src:allocator> [1] clearing DMABUF import, fd -1 plane 0
    0:00:00.483541784  1642     0x39ca5d90 DEBUG         v4l2bufferpool gstv4l2bufferpool.c:1475:gst_v4l2_buffer_pool_release_buffer:<v4l2h264dec0:pool:src> release buffer 0xffff94005ea0
    0:00:00.483560465  1642     0x39ca5d90 LOG            v4l2allocator gstv4l2allocator.c:968:gst_v4l2_allocator_clear_dmabufin:<v4l2h264dec0:pool:src:allocator> [1] clearing DMABUF import, fd -1 plane 0
    0:00:00.483574730  1642     0x39ca5d90 LOG           v4l2bufferpool gstv4l2bufferpool.c:338:gst_v4l2_buffer_pool_import_dmabuf:<v4l2h264dec0:pool:src> importing dmabuf
    0:00:00.483591746  1642     0x39ca5d90 LOG            v4l2allocator gstv4l2allocator.c:1113:gst_v4l2_allocator_import_dmabuf:<v4l2h264dec0:pool:src:allocator> [1] imported DMABUF as fd 55 plane 0
    0:00:00.483608221  1642     0x39ca5d90 LOG           v4l2bufferpool gstv4l2bufferpool.c:1158:gst_v4l2_buffer_pool_qbuf:<v4l2h264dec0:pool:src> queuing buffer 1
    0:00:00.483701323  1642     0x39ca5d90 LOG            v4l2allocator gstv4l2allocator.c:1286:gst_v4l2_allocator_qbuf:<v4l2h264dec0:pool:src:allocator> queued buffer 1 (flags 0x4002)
    0:00:00.483719259  1642     0x39ca5d90 LOG            v4l2allocator gstv4l2allocator.c:1004:gst_v4l2_allocator_alloc_dmabufin:<v4l2h264dec0:pool:src:allocator> allocating empty DMABUF import group
    0:00:00.483738009  1642     0x39ca5d90 LOG            v4l2allocator gstv4l2allocator.c:968:gst_v4l2_allocator_clear_dmabufin:<v4l2h264dec0:pool:src:allocator> [2] clearing DMABUF import, fd -1 plane 0
    0:00:00.483753504  1642     0x39ca5d90 DEBUG         v4l2bufferpool gstv4l2bufferpool.c:1475:gst_v4l2_buffer_pool_release_buffer:<v4l2h264dec0:pool:src> release buffer 0xffff94027000
    0:00:00.483771035  1642     0x39ca5d90 LOG            v4l2allocator gstv4l2allocator.c:968:gst_v4l2_allocator_clear_dmabufin:<v4l2h264dec0:pool:src:allocator> [2] clearing DMABUF import, fd -1 plane 0
    0:00:00.483782090  1642     0x39ca5d90 LOG           v4l2bufferpool gstv4l2bufferpool.c:338:gst_v4l2_buffer_pool_import_dmabuf:<v4l2h264dec0:pool:src> importing dmabuf
    0:00:00.483795660  1642     0x39ca5d90 LOG            v4l2allocator gstv4l2allocator.c:1113:gst_v4l2_allocator_import_dmabuf:<v4l2h264dec0:pool:src:allocator> [2] imported DMABUF as fd 57 plane 0
    0:00:00.483812471  1642     0x39ca5d90 LOG           v4l2bufferpool gstv4l2bufferpool.c:1158:gst_v4l2_buffer_pool_qbuf:<v4l2h264dec0:pool:src> queuing buffer 2
    0:00:00.483902288  1642     0x39ca5d90 LOG            v4l2allocator gstv4l2allocator.c:1286:gst_v4l2_allocator_qbuf:<v4l2h264dec0:pool:src:allocator> queued buffer 2 (flags 0x4002)
    0:00:00.483940809  1642     0x39ca5d90 LOG            v4l2allocator gstv4l2allocator.c:1004:gst_v4l2_allocator_alloc_dmabufin:<v4l2h264dec0:pool:src:allocator> allocating empty DMABUF import group
    0:00:00.483976640  1642     0x39ca5d90 LOG            v4l2allocator gstv4l2allocator.c:968:gst_v4l2_allocator_clear_dmabufin:<v4l2h264dec0:pool:src:allocator> [3] clearing DMABUF import, fd -1 plane 0
    0:00:00.483994420  1642     0x39ca5d90 DEBUG         v4l2bufferpool gstv4l2bufferpool.c:1475:gst_v4l2_buffer_pool_release_buffer:<v4l2h264dec0:pool:src> release buffer 0xffff94027120
    0:00:00.484012051  1642     0x39ca5d90 LOG            v4l2allocator gstv4l2allocator.c:968:gst_v4l2_allocator_clear_dmabufin:<v4l2h264dec0:pool:src:allocator> [3] clearing DMABUF import, fd -1 plane 0
    0:00:00.484027531  1642     0x39ca5d90 LOG           v4l2bufferpool gstv4l2bufferpool.c:338:gst_v4l2_buffer_pool_import_dmabuf:<v4l2h264dec0:pool:src> importing dmabuf
    0:00:00.484046266  1642     0x39ca5d90 LOG            v4l2allocator gstv4l2allocator.c:1113:gst_v4l2_allocator_import_dmabuf:<v4l2h264dec0:pool:src:allocator> [3] imported DMABUF as fd 51 plane 0
    0:00:00.484064152  1642     0x39ca5d90 LOG           v4l2bufferpool gstv4l2bufferpool.c:1158:gst_v4l2_buffer_pool_qbuf:<v4l2h264dec0:pool:src> queuing buffer 3
    0:00:00.484161139  1642     0x39ca5d90 LOG            v4l2allocator gstv4l2allocator.c:1286:gst_v4l2_allocator_qbuf:<v4l2h264dec0:pool:src:allocator> queued buffer 3 (flags 0x4002)
    0:00:00.484179955  1642     0x39ca5d90 LOG            v4l2allocator gstv4l2allocator.c:1004:gst_v4l2_allocator_alloc_dmabufin:<v4l2h264dec0:pool:src:allocator> allocating empty DMABUF import group
    0:00:00.484196910  1642     0x39ca5d90 LOG            v4l2allocator gstv4l2allocator.c:968:gst_v4l2_allocator_clear_dmabufin:<v4l2h264dec0:pool:src:allocator> [4] clearing DMABUF import, fd -1 plane 0
    0:00:00.484214745  1642     0x39ca5d90 DEBUG         v4l2bufferpool gstv4l2bufferpool.c:1475:gst_v4l2_buffer_pool_release_buffer:<v4l2h264dec0:pool:src> release buffer 0xffff94027240
    0:00:00.484231666  1642     0x39ca5d90 LOG            v4l2allocator gstv4l2allocator.c:968:gst_v4l2_allocator_clear_dmabufin:<v4l2h264dec0:pool:src:allocator> [4] clearing DMABUF import, fd -1 plane 0

    Regards,

    Philipp

  • Hi Philipp

    Apologies for the late reply. with capture-io-mode=5, tiovxmultiscaler need pool-size to be defined and try using at-least size 8. Max allowed pool-size is 16.

    gst-launch-1.0 filesrc location=./e100.264 ! h264parse ! v4l2h264dec capture-io-mode=5 !   video/x-raw,format=NV12 ! tiovxcolorconvert ! video/x-raw,format=NV12 ! tiovxmultiscaler sink::pool-size=8 ! video/x-raw,format=NV12 ! kmssink driver-name=tidss sync=true

    We found out that, this gave better performance than avdec_h264

    Regards

    Nikshith

  • Hi Nikshith,

    Thank you, this resolves my issue.

    Regards,

    Philipp