FFmpeg-trac
Threads by month
- ----- 2026 -----
- March
- February
- January
- ----- 2025 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2024 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2023 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2022 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2021 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2020 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2019 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2018 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2017 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2016 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2015 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2014 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2013 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2012 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2011 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
September 2024
- 1 participants
- 280 discussions
13 May '25
#11087: ffprobe.exe detect MP3-File wrong since Version 6.xx
-------------------------------------+-------------------------------------
Reporter: Richi | Type: defect
Status: new | Priority: normal
Component: ffprobe | Version: 6.1.1
Keywords: wrong | Blocked By:
detect audioformat |
Blocking: | Reproduced by developer: 0
Analyzed by developer: 0 |
-------------------------------------+-------------------------------------
Summary of the bug:
The ffprobe 7.0.1 Version detect sometimes a MP3-File wrong.
How to reproduce:
.\ffprobe.exe -i "./1.mp3" -print_format json -show_format >"./1.json"
Output ffprobe
{
"format": {
"filename": "./1.mp3",
"nb_streams": 1,
"nb_programs": 0,
"nb_stream_groups": 0,
"format_name": "vvc",
"format_long_name": "raw H.266/VVC video",
"size": "575232",
"probe_score": 51
}
}
Input #0, vvc, from './1.mp3':
Duration: N/A, bitrate: N/A
Stream #0:0: Video: vvc, none, 25 fps, 1200k tbr, 1200k tbn
Output ffprobe Version 5.x
{
"format": {
"filename": "./1.mp3",
"nb_streams": 1,
"nb_programs": 0,
"format_name": "mp3",
"format_long_name": "MP2/3 (MPEG audio layer 2/3)",
"start_time": "0.000000",
"duration": "35.952000",
"size": "575232",
"bit_rate": "128000",
"probe_score": 51
}
}
--
Ticket URL: <https://trac.ffmpeg.org/ticket/11087>
FFmpeg <https://ffmpeg.org>
FFmpeg issue tracker
1
6
#9408: WASAPI Audio Input/Output Support
-------------------------------------+-------------------------------------
Reporter: Brad Isbell | Type:
| enhancement
Status: new | Priority: normal
Component: | Version:
undetermined | unspecified
Keywords: | Blocked By:
Blocking: | Reproduced by developer: 0
Analyzed by developer: 0 |
-------------------------------------+-------------------------------------
The Windows Audio Session API (WASAPI) is a modern API for audio
playback/capture under Windows. It offers several benefits over the
current DirectShow implementation in FFmpeg:
- [https://docs.microsoft.com/en-us/windows/win32/api/mmreg/ns-mmreg-
waveformatextensible Multi-channel support]
- [https://docs.microsoft.com/en-us/windows/win32/coreaudio/loopback-
recording Loopback capture], for both entire output devices and for
individual streams from applications
- [https://docs.microsoft.com/en-us/windows/win32/api/audioclient/nf-
audioclient-iaudioclient-initialize Low-latency I/O] without the need for
proprietary ASIO
- [https://docs.microsoft.com/en-us/windows/win32/coreaudio/exclusive-
mode-streams Exclusive mode] for further reducing latency
== Sample Usage ==
Capture from multichannel soundcard:
{{{
ffmpeg -f wasapi -ar 96000 -ac 8 -i device="My Multichannel Soundcard" …
}}}
Capture in exclusive mode from soundcard named 'Soundcard':
{{{
ffmpeg -f wasapi -exclusive_mode true -i device="Soundcard" …
}}}
Capture loopback from soundcard named 'Soundcard':
{{{
ffmpeg -f wasapi -i loopback_device="Soundcard" …
}}}
Capture loopback from entire system:
{{{
ffmpeg -f wasapi -i loopback_system=true …
}}}
Capture loopback from app by name or PID:
{{{
ffmpeg -f wasapi -i loopback_application_pid=54321 …
ffmpeg -f wasapi -i loopback_application_name="Skifree" …
}}}
--
Ticket URL: <https://trac.ffmpeg.org/ticket/9408>
FFmpeg <https://ffmpeg.org>
FFmpeg issue tracker
1
6
#11177: Video encoding issue with h264_nvenc
--------------------------------------+----------------------------------
Reporter: Dhanish | Type: defect
Status: new | Priority: normal
Component: undetermined | Version: 4.4.4
Keywords: h264_nvenc | Blocked By:
Blocking: | Reproduced by developer: 0
Analyzed by developer: 0 |
--------------------------------------+----------------------------------
Summary of the bug:
How to reproduce:
{{{
/usr/bin/ffmpeg -y -hwaccel cuda -hwaccel_output_format cuda
-hwaccel_device 0 -deint adaptive -drop_second_field 1 -gpu 0 -resize
1280x720 -vcodec h264_cuvid -i
"udp://239.1.1.0:11001?pkt_size=1316&localaddr=192.168.3.7&overrun_nonfatal=1&fifo_size=100000&timeout=5000000"
-filter:a volume=4.0 -filter_complex "[0:v:0]split=2[s0][s1]" -map [s0]
-map 0:a:0 -map [s1] -map 0:a:0 -c:v:0 h264_nvenc -b:v:0 2200k -gpu:v:0 0
-no-scenecut:v:0 1 -forced-idr:v:0 1 -strict_gop:v:0 1 -c:v:1 h264_nvenc
-b:v:1 800k -gpu:v:1 0 -a53cc:v:1 1 -no-scenecut:v:0 1 -forced-idr:v:0 1
-strict_gop:v:0 1 -c:a aac -b:a 128k -ac 2 -af "aresample=async=1,
volume=2" -avoid_negative_ts disabled -muxdelay 0 -f hls -hls_list_size 4
-hls_flags delete_segments -hls_delete_threshold 1 -hls_time 4
-hls_segment_filename "abr/amc/stream_%v/fileSequence%d.ts" -forced-idr 1
-force_key_frames "expr:gte(t,n_forced*2)" -sc_threshold 0 -master_pl_name
playlist.m3u8 -var_stream_map "v:0,a:0,name:720 v:1,a:1,name:360"
abr/amc/stream_%v/prog_index.m3u8
ffmpeg -version
ffmpeg version 4.4.2-0ubuntu0.22.04.1 Copyright (c) 2000-2021 the FFmpeg
developers
built with gcc 11 (Ubuntu 11.2.0-19ubuntu1)
configuration: --prefix=/usr --extra-version=0ubuntu0.22.04.1
--toolchain=hardened --libdir=/usr/lib/x86_64-linux-gnu
--incdir=/usr/include/x86_64-linux-gnu --arch=amd64 --enable-gpl
--disable-stripping --enable-gnutls --enable-ladspa --enable-libaom
--enable-libass --enable-libbluray --enable-libbs2b --enable-libcaca
--enable-libcdio --enable-libcodec2 --enable-libdav1d --enable-libflite
--enable-libfontconfig --enable-libfreetype --enable-libfribidi --enable-
libgme --enable-libgsm --enable-libjack --enable-libmp3lame --enable-
libmysofa --enable-libopenjpeg --enable-libopenmpt --enable-libopus
--enable-libpulse --enable-librabbitmq --enable-librubberband --enable-
libshine --enable-libsnappy --enable-libsoxr --enable-libspeex --enable-
libsrt --enable-libssh --enable-libtheora --enable-libtwolame --enable-
libvidstab --enable-libvorbis --enable-libvpx --enable-libwebp --enable-
libx265 --enable-libxml2 --enable-libxvid --enable-libzimg --enable-libzmq
--enable-libzvbi --enable-lv2 --enable-omx --enable-openal --enable-opencl
--enable-opengl --enable-sdl2 --enable-pocketsphinx --enable-librsvg
--enable-libmfx --enable-libdc1394 --enable-libdrm --enable-libiec61883
--enable-chromaprint --enable-frei0r --enable-libx264 --enable-shared
libavutil 56. 70.100 / 56. 70.100
libavcodec 58.134.100 / 58.134.100
libavformat 58. 76.100 / 58. 76.100
libavdevice 58. 13.100 / 58. 13.100
libavfilter 7.110.100 / 7.110.100
libswscale 5. 9.100 / 5. 9.100
libswresample 3. 9.100 / 3. 9.100
libpostproc 55. 9.100 / 55. 9.100
}}}
I am using the above command in a Ubuntu 22.04 Desktop install
Nvidia driver gets preinstalled with these
NVIDIA-SMI 550.107.02 Driver Version: 550.107.02 CUDA Version: 12.4
But I am getting a strange video output, its look the video blurr. I am
attaching a video link as well -
Video link -
https://drive.google.com/file/d/1cZlRPYH6tsESE3EY67IfTNaMFf6E180T/view?usp=…
I have also tried compiling ffmpeg from the master branch, and compiled it
with cuda-12.4 as well as cuda-11.8. Those also have the same issue with
Video
--
Ticket URL: <https://trac.ffmpeg.org/ticket/11177>
FFmpeg <https://ffmpeg.org>
FFmpeg issue tracker
1
2
#11078: ffplay plays .spx very slowly
--------------------------------+----------------------------------
Reporter: Ronald | Type: defect
Status: new | Priority: normal
Component: ffplay | Version: 7.0
Keywords: | Blocked By:
Blocking: | Reproduced by developer: 0
Analyzed by developer: 0 |
--------------------------------+----------------------------------
Summary of the bug:
ffplay plays .spx very slowly
How to reproduce:
{{{
% ffplay test.spx
built on arch linux
ffplay version n7.0.1 Copyright (c) 2003-2024 the FFmpeg developers
built with gcc 14.1.1 (GCC) 20240522
configuration: --prefix=/usr --disable-debug --disable-static --disable-
stripping --enable-amf --enable-avisynth --enable-cuda-llvm --enable-lto
--enable-fontconfig --enable-frei0r --enable-gmp --enable-gpl --enable-
ladspa --enable-libaom --enable-libass --enable-libbluray --enable-libbs2b
--enable-libdav1d --enable-libdrm --enable-libdvdnav --enable-libdvdread
--enable-libfreetype --enable-libfribidi --enable-libgsm --enable-
libharfbuzz --enable-libiec61883 --enable-libjack --enable-libjxl
--enable-libmodplug --enable-libmp3lame --enable-libopencore_amrnb
--enable-libopencore_amrwb --enable-libopenjpeg --enable-libopenmpt
--enable-libopus --enable-libplacebo --enable-libpulse --enable-librav1e
--enable-librsvg --enable-librubberband --enable-libsnappy --enable-
libsoxr --enable-libspeex --enable-libsrt --enable-libssh --enable-
libsvtav1 --enable-libtheora --enable-libv4l2 --enable-libvidstab
--enable-libvmaf --enable-libvorbis --enable-libvpl --enable-libvpx
--enable-libwebp --enable-libx264 --enable-libx265 --enable-libxcb
--enable-libxml2 --enable-libxvid --enable-libzimg --enable-mbedtls
--enable-nvdec --enable-nvenc --enable-opencl --enable-opengl --enable-
shared --enable-vapoursynth --enable-version3 --enable-vulkan
libavutil 59. 8.100 / 59. 8.100
libavcodec 61. 3.100 / 61. 3.100
libavformat 61. 1.100 / 61. 1.100
libavdevice 61. 1.100 / 61. 1.100
libavfilter 10. 1.100 / 10. 1.100
libswscale 8. 1.100 / 8. 1.100
libswresample 5. 1.100 / 5. 1.100
libpostproc 58. 1.100 / 58. 1.100
}}}
Patches should be submitted to the ffmpeg-devel mailing list and not this
bug tracker.
--
Ticket URL: <https://trac.ffmpeg.org/ticket/11078>
FFmpeg <https://ffmpeg.org>
FFmpeg issue tracker
1
17
#6091: support ds2 audio (dss pro audio) file format
-----------------------------------+---------------------------------------
Reporter: vineet156 | Type: enhancement
Status: new | Priority: normal
Component: avformat | Version: git-master
Keywords: | Blocked By:
Blocking: | Reproduced by developer: 0
Analyzed by developer: 0 |
-----------------------------------+---------------------------------------
Summary of the bug: ffmpeg already supports dss audio file decoding.
Please add support for ds2 as well, which is an improved version of dss
and called "dss pro"
How to reproduce:
{{{
ffmpeg started on 2017-01-19 at 04:20:46
Report written to "ffmpeg-20170119-042046.log"
Command line:
../bin/ffmpeg -report -i VoiceRec11.ds2 VoiceRec11.mp3
ffmpeg version N-83132-g9561de4 Copyright (c) 2000-2017 the FFmpeg
developers
built with gcc 5.4.0 (Ubuntu 5.4.0-6ubuntu1~16.04.4) 20160609
configuration: --prefix=/home/ubuntu/ffmpeg_build --pkg-config-
flags=--static --extra-cflags='-I/home/ubuntu/ffmpeg_build/include
-static' --extra-ldflags='-L/home/ubuntu/ffmpeg_build/lib -static'
--bindir=/home/ubuntu/bin --enable-libmp3lame
libavutil 55. 43.100 / 55. 43.100
libavcodec 57. 73.100 / 57. 73.100
libavformat 57. 62.100 / 57. 62.100
libavdevice 57. 2.100 / 57. 2.100
libavfilter 6. 69.100 / 6. 69.100
libswscale 4. 3.101 / 4. 3.101
libswresample 2. 4.100 / 2. 4.100
Splitting the commandline.
Reading option '-report' ... matched as option 'report' (generate a
report) with argument '1'.
Reading option '-i' ... matched as input url with argument
'VoiceRec11.ds2'.
Reading option 'VoiceRec11.mp3' ... matched as output url.
Finished splitting the commandline.
Parsing a group of options: global .
Applying option report (generate a report) with argument 1.
Successfully parsed a group of options.
Parsing a group of options: input url VoiceRec11.ds2.
Successfully parsed a group of options.
Opening an input file: VoiceRec11.ds2.
[file @ 0x3e5db40] Setting default whitelist 'file,crypto'
[AVIOContext @ 0x3e66f60] Statistics: 1048576 bytes read, 0 seeks
VoiceRec11.ds2: Invalid data found when processing input
}}}
A ds2 sample file is attached for testing.
Also making a small donation to the project
thank you,
--
Ticket URL: <https://trac.ffmpeg.org/ticket/6091>
FFmpeg <https://ffmpeg.org>
FFmpeg issue tracker
1
19
#10469(undetermined:new): non-existing PPS 0 referenced after ffmpeg segment (HLS) encoding
by FFmpeg 03 May '25
by FFmpeg 03 May '25
03 May '25
#10469: non-existing PPS 0 referenced after ffmpeg segment (HLS) encoding
-------------------------------------+-------------------------------------
Reporter: maxjh | Type: defect
Status: new | Priority: normal
Component: | Version:
undetermined | unspecified
Keywords: | Blocked By:
Blocking: | Reproduced by developer: 0
Analyzed by developer: 0 |
-------------------------------------+-------------------------------------
Summary of the bug:
I'm using ffmpeg to convert files to HLS format and found one file that
looks corrupted after convert.
How to reproduce:
{{{
% ffmpeg -i https://storage.googleapis.com/lp-us-catalyst-vod-
com/hls/80c9ui6jg4q82rvj/video -c:a copy -c:v copy -f hls -hls_list_size 0
-hls_playlist_type vod -hls_segment_type mpegts -hls_time 10 -y index.m3u8
ffmpeg version 6.0 Copyright (c) 2000-2023 the FFmpeg developers
built with Apple clang version 14.0.3 (clang-1403.0.22.14.1)
configuration: --prefix=/opt/homebrew/Cellar/ffmpeg/6.0-with-options_1
--enable-shared --cc=clang --host-cflags= --host-ldflags= --enable-gpl
--enable-libaom --enable-libdav1d --enable-libmp3lame --enable-libopus
--enable-libsnappy --enable-libtheora --enable-libvorbis --enable-libvpx
--enable-libx264 --enable-libx265 --enable-libfontconfig --enable-
libfreetype --enable-frei0r --enable-libass --enable-demuxer=dash
--enable-opencl --enable-audiotoolbox --enable-videotoolbox --enable-neon
--disable-htmlpages --enable-libfdk-aac --enable-nonfree
libavutil 58. 2.100 / 58. 2.100
libavcodec 60. 3.100 / 60. 3.100
libavformat 60. 3.100 / 60. 3.100
libavdevice 60. 1.100 / 60. 1.100
libavfilter 9. 3.100 / 9. 3.100
libswscale 7. 1.100 / 7. 1.100
libswresample 4. 10.100 / 4. 10.100
libpostproc 57. 1.100 / 57. 1.100
Input #0, mov,mp4,m4a,3gp,3g2,mj2, from 'https://storage.googleapis.com
/lp-us-catalyst-vod-com/hls/80c9ui6jg4q82rvj/video':
Metadata:
major_brand : isom
minor_version : 512
compatible_brands: isomiso2avc1mp41
encoder : Lavf60.3.100
Duration: 00:16:27.43, start: 0.000000, bitrate: 2140 kb/s
Stream #0:0[0x1](und): Video: h264 (High) (avc1 / 0x31637661),
yuv420p(tv, bt709, progressive), 1920x1080 [SAR 1:1 DAR 16:9], 1944 kb/s,
30 fps, 30 tbr, 90k tbn (default)
Metadata:
handler_name : VideoHandler
vendor_id : [0][0][0][0]
Stream #0:1[0x2](und): Audio: aac (LC) (mp4a / 0x6134706D), 48000 Hz,
stereo, fltp, 184 kb/s (default)
Metadata:
handler_name : SoundHandler
vendor_id : [0][0][0][0]
Output #0, hls, to 'index.m3u8':
Metadata:
major_brand : isom
minor_version : 512
compatible_brands: isomiso2avc1mp41
encoder : Lavf60.3.100
Stream #0:0(und): Video: h264 (High) (avc1 / 0x31637661), yuv420p(tv,
bt709, progressive), 1920x1080 [SAR 1:1 DAR 16:9], q=2-31, 1944 kb/s, 30
fps, 30 tbr, 90k tbn (default)
Metadata:
handler_name : VideoHandler
vendor_id : [0][0][0][0]
Stream #0:1(und): Audio: aac (LC) (mp4a / 0x6134706D), 48000 Hz, stereo,
fltp, 184 kb/s (default)
Metadata:
handler_name : SoundHandler
vendor_id : [0][0][0][0]
Stream mapping:
Stream #0:0 -> #0:0 (copy)
Stream #0:1 -> #0:1 (copy)
Press [q] to stop, [?] for help
[hls @ 0x155606f60] Opening 'index0.ts' for writing4 bitrate=N/A speed=
20x /s speed=N/A
[hls @ 0x155606f60] Opening 'index1.ts' for writing3 bitrate=N/A
speed=19.7x
[hls @ 0x155606f60] Opening 'index2.ts' for writing1 bitrate=N/A
speed=19.5x
[hls @ 0x155606f60] Opening 'index3.ts' for writing4 bitrate=N/A speed=
19x
...
}}}
% ffprobe -loglevel error -show_format -show_streams -print_format json
index1.ts
{
[h264 @ 0x13b704b40] non-existing SPS 0 referenced in buffering period
[h264 @ 0x13b704b40] non-existing PPS 0 referenced
[h264 @ 0x13b704b40] non-existing SPS 0 referenced in buffering period
[h264 @ 0x13b704b40] non-existing PPS 0 referenced
[h264 @ 0x13b704b40] decode_slice_header error
[h264 @ 0x13b704b40] no frame!
[h264 @ 0x13b704b40] non-existing PPS 0 referenced
Last message repeated 1 times
[h264 @ 0x13b704b40] decode_slice_header error
[h264 @ 0x13b704b40] no frame!
[h264 @ 0x13b704b40] non-existing PPS 0 referenced
Last message repeated 1 times
[h264 @ 0x13b704b40] decode_slice_header error
[h264 @ 0x13b704b40] no frame!
[h264 @ 0x13b704b40] non-existing PPS 0 referenced
Last message repeated 1 times
[h264 @ 0x13b704b40] decode_slice_header error
[h264 @ 0x13b704b40] no frame!
[h264 @ 0x13b704b40] non-existing PPS 0 referenced
Last message repeated 1 times
[h264 @ 0x13b704b40] decode_slice_header error
[h264 @ 0x13b704b40] no frame!
[h264 @ 0x13b704b40] non-existing PPS 0 referenced
Last message repeated 1 times
[h264 @ 0x13b704b40] decode_slice_header error
[h264 @ 0x13b704b40] no frame!
[h264 @ 0x13b704b40] non-existing PPS 0 referenced
...
{{{
ffmpeg -version
ffmpeg version 6.0 Copyright (c) 2000-2023 the FFmpeg developers
built with Apple clang version 14.0.3 (clang-1403.0.22.14.1)
configuration: --prefix=/opt/homebrew/Cellar/ffmpeg/6.0-with-options_1
--enable-shared --cc=clang --host-cflags= --host-ldflags= --enable-gpl
--enable-libaom --enable-libdav1d --enable-libmp3lame --enable-libopus
--enable-libsnappy --enable-libtheora --enable-libvorbis --enable-libvpx
--enable-libx264 --enable-libx265 --enable-libfontconfig --enable-
libfreetype --enable-frei0r --enable-libass --enable-demuxer=dash
--enable-opencl --enable-audiotoolbox --enable-videotoolbox --enable-neon
--disable-htmlpages --enable-libfdk-aac --enable-nonfree
libavutil 58. 2.100 / 58. 2.100
libavcodec 60. 3.100 / 60. 3.100
libavformat 60. 3.100 / 60. 3.100
libavdevice 60. 1.100 / 60. 1.100
libavfilter 9. 3.100 / 9. 3.100
libswscale 7. 1.100 / 7. 1.100
libswresample 4. 10.100 / 4. 10.100
libpostproc 57. 1.100 / 57. 1.100
}}}
When trying to play back index1.ts I'm only able to hear audio, the video
seems to have been corrupted.
--
Ticket URL: <https://trac.ffmpeg.org/ticket/10469>
FFmpeg <https://ffmpeg.org>
FFmpeg issue tracker
1
5
#11162: HEVC from Canon XF705 Decode Errors
-------------------------------------+-------------------------------------
Reporter: jdachik01 | Type: defect
Status: new | Priority: normal
Component: | Version:
undetermined | unspecified
Keywords: canon hevc | Blocked By:
Blocking: | Reproduced by developer: 0
Analyzed by developer: 0 |
-------------------------------------+-------------------------------------
Summary of the bug:
HEVC files created by Canon XF705 result in decode errors. These files
decode fine in Adobe Premiere and Telestream Switch.
I've tried to decode with hevc, hevc_qsv, and hevc_cuvid to no avail.
How to reproduce:
{{{
% ffmpeg -i CanonXF705_HEVC_DecodeErrors.MXF testfile.mp4
ffmpeg version N-116785-ge758b24396-20240828 Copyright (c) 2000-2024 the
FFmpeg developers
built with gcc 14.2.0 (crosstool-NG 1.26.0.106_ed12fa6)
configuration: --prefix=/ffbuild/prefix --pkg-config-flags=--static
--pkg-config=pkg-config --cross-prefix=x86_64-w64-mingw32- --arch=x86_64
--target-os=mingw32 --enable-gpl --enable-version3 --disable-debug
--disable-w32threads --enable-pthreads --enable-iconv --enable-zlib
--enable-libfreetype --enable-libfribidi --enable-gmp --enable-libxml2
--enable-lzma --enable-fontconfig --enable-libharfbuzz --enable-libvorbis
--enable-opencl --disable-libpulse --enable-libvmaf --disable-libxcb
--disable-xlib --enable-amf --enable-libaom --enable-libaribb24 --enable-
avisynth --enable-chromaprint --enable-libdav1d --enable-libdavs2
--enable-libdvdread --enable-libdvdnav --disable-libfdk-aac --enable-
ffnvcodec --enable-cuda-llvm --enable-frei0r --enable-libgme --enable-
libkvazaar --enable-libaribcaption --enable-libass --enable-libbluray
--enable-libjxl --enable-libmp3lame --enable-libopus --enable-librist
--enable-libssh --enable-libtheora --enable-libvpx --enable-libwebp
--enable-libzmq --enable-lv2 --enable-libvpl --enable-openal --enable-
libopencore-amrnb --enable-libopencore-amrwb --enable-libopenh264
--enable-libopenjpeg --enable-libopenmpt --enable-librav1e --enable-
librubberband --enable-schannel --enable-sdl2 --enable-libsoxr --enable-
libsrt --enable-libsvtav1 --enable-libtwolame --enable-libuavs3d
--disable-libdrm --enable-vaapi --enable-libvidstab --enable-vulkan
--enable-libshaderc --enable-libplacebo --enable-libvvenc --enable-libx264
--enable-libx265 --enable-libxavs2 --enable-libxvid --enable-libzimg
--enable-libzvbi --extra-cflags=-DLIBTWOLAME_STATIC --extra-cxxflags=
--extra-libs=-lgomp --extra-ldflags=-pthread --extra-ldexeflags=
--cc=x86_64-w64-mingw32-gcc --cxx=x86_64-w64-mingw32-g++
--ar=x86_64-w64-mingw32-gcc-ar --ranlib=x86_64-w64-mingw32-gcc-ranlib
--nm=x86_64-w64-mingw32-gcc-nm --extra-version=20240828
libavutil 59. 35.100 / 59. 35.100
libavcodec 61. 11.100 / 61. 11.100
libavformat 61. 5.101 / 61. 5.101
libavdevice 61. 2.100 / 61. 2.100
libavfilter 10. 2.102 / 10. 2.102
libswscale 8. 2.100 / 8. 2.100
libswresample 5. 2.100 / 5. 2.100
libpostproc 58. 2.100 / 58. 2.100
[hevc @ 0000019e16e29580] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e16e29580] Skipping invalid undecodable NALU: 1
[aist#0:1/pcm_s24le @ 0000019e17178fc0] Guessed Channel Layout: mono
[aist#0:2/pcm_s24le @ 0000019e17179180] Guessed Channel Layout: mono
[aist#0:3/pcm_s24le @ 0000019e16e5bbc0] Guessed Channel Layout: mono
[aist#0:4/pcm_s24le @ 0000019e16e5bd80] Guessed Channel Layout: mono
Input #0, mxf, from 'A008C209H240821BW_CAM01.MXF':
Metadata:
operational_pattern_ul: 060e2b34.04010101.0d010201.01010900
uid : 46664543-0506-4901-802b-2a2419500026
generation_uid : 46664543-0506-4903-802b-2a2419500026
company_name : CANON
product_name : XF705
product_version : 1.00
product_uid : 060e2b34-0401-010d-0e15-005658460400
modification_date: 2024-08-21T15:21:35.000000Z
material_package_umid:
0x060A2B340101010501010D4313000000CD3553C5430506800000852419500026
timecode : 22:51:28;04
Duration: 00:00:33.10, start: 0.000000, bitrate: 55119 kb/s
Stream #0:0: Video: hevc (Rext), yuv422p10le(tv, bt709, top first),
1920x540 [SAR 1:1 DAR 32:9], SAR 1:2 DAR 16:9, 29.97 fps, 29.97 tbr, 29.97
tbn
Metadata:
file_package_umid:
0x060A2B340101010501010D4313000000CD3553C4430506800000852419500026
Stream #0:1: Audio: pcm_s24le, 48000 Hz, mono, s32 (24 bit), 1152 kb/s
Metadata:
file_package_umid:
0x060A2B340101010501010D4313000000CD3553C4430506800000852419500026
Stream #0:2: Audio: pcm_s24le, 48000 Hz, mono, s32 (24 bit), 1152 kb/s
Metadata:
file_package_umid:
0x060A2B340101010501010D4313000000CD3553C4430506800000852419500026
Stream #0:3: Audio: pcm_s24le, 48000 Hz, mono, s32 (24 bit), 1152 kb/s
Metadata:
file_package_umid:
0x060A2B340101010501010D4313000000CD3553C4430506800000852419500026
Stream #0:4: Audio: pcm_s24le, 48000 Hz, mono, s32 (24 bit), 1152 kb/s
Metadata:
file_package_umid:
0x060A2B340101010501010D4313000000CD3553C4430506800000852419500026
Stream mapping:
Stream #0:0 -> #0:0 (hevc (native) -> h264 (libx264))
Stream #0:1 -> #0:1 (pcm_s24le (native) -> aac (native))
Press [q] to stop, [?] for help
[hevc @ 0000019e196dec00] Could not find ref with POC 1
[hevc @ 0000019e18dd2980] Could not find ref with POC 3
[hevc @ 0000019e19a5dc40] Could not find ref with POC 5
[hevc @ 0000019e19b23b80] Could not find ref with POC 7
[hevc @ 0000019e19be9ac0] Could not find ref with POC 9
[hevc @ 0000019e19cafb40] Could not find ref with POC 11
[hevc @ 0000019e19d75a80] Could not find ref with POC 13
[hevc @ 0000019e19e3bb40] Could not find ref with POC 15
[hevc @ 0000019e19fa63c0] Could not find ref with POC 17
[hevc @ 0000019e1933c140] Could not find ref with POC 19
[hevc @ 0000019e1a132b80] Could not find ref with POC 21
[hevc @ 0000019e1a1f8ac0] Could not find ref with POC 23
[hevc @ 0000019e19365800] Could not find ref with POC 25
[hevc @ 0000019e17175a40] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e17175a40] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e196dec00] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e196dec00] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19375ec0] Could not find ref with POC 27
[hevc @ 0000019e18dd2980] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e18dd2980] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19376280] Could not find ref with POC 29
[libx264 @ 0000019e198d1180] using SAR=1/2
[hevc @ 0000019e17175a40] Could not find ref with POC 31
[libx264 @ 0000019e198d1180] using cpu capabilities: MMX2 SSE2Fast SSSE3
SSE4.2 AVX FMA3 BMI2 AVX2
[hevc @ 0000019e196dec00] Could not find ref with POC 33
[libx264 @ 0000019e198d1180] profile High 4:2:2, level 3.2, 4:2:2, 10-bit
[libx264 @ 0000019e198d1180] 264 - core 164 - H.264/MPEG-4 AVC codec -
Copyleft 2003-2024 - http://www.videolan.org/x264.html - options: cabac=1
ref=3 deblock=1:0:0 analyse=0x3:0x113 me=hex subme=7 psy=1
psy_rd=1.00:0.00 mixed_ref=1 me_range=16 chroma_me=1 trellis=1 8x8dct=1
cqm=0 deadzone=21,11 fast_pskip=1 chroma_qp_offset=-2 threads=17
lookahead_threads=2 sliced_threads=0 nr=0 decimate=1 interlaced=0
bluray_compat=0 constrained_intra=0 bframes=3 b_pyramid=2 b_adapt=1
b_bias=0 direct=1 weightb=1 open_gop=0 weightp=2 keyint=250 keyint_min=25
scenecut=40 intra_refresh=0 rc_lookahead=40 rc=crf mbtree=1 crf=23.0
qcomp=0.60 qpmin=0 qpmax=81 qpstep=4 ip_ratio=1.40 aq=1:1.00
[hevc @ 0000019e18dd2980] Could not find ref with POC 35
Output #0, mp4, to 'testfile.mp4':
Metadata:
operational_pattern_ul: 060e2b34.04010101.0d010201.01010900
uid : 46664543-0506-4901-802b-2a2419500026
generation_uid : 46664543-0506-4903-802b-2a2419500026
timecode : 22:51:28;04
material_package_umid:
0x060A2B340101010501010D4313000000CD3553C5430506800000852419500026
modification_date: 2024-08-21T15:21:35.000000Z
product_uid : 060e2b34-0401-010d-0e15-005658460400
encoder : Lavf61.5.101
Stream #0:0: Video: h264 (avc1 / 0x31637661), yuv422p10le(tv, bt709, top
coded first (swapped)), 1920x540 [SAR 1:2 DAR 16:9], q=2-31, 29.97 fps,
30k tbn
Metadata:
file_package_umid:
0x060A2B340101010501010D4313000000CD3553C4430506800000852419500026
encoder : Lavc61.11.100 libx264
Side data:
cpb: bitrate max/min/avg: 0/0/0 buffer size: 0 vbv_delay: N/A
Stream #0:1: Audio: aac (LC) (mp4a / 0x6134706D), 48000 Hz, mono, fltp,
69 kb/s
Metadata:
file_package_umid:
0x060A2B340101010501010D4313000000CD3553C4430506800000852419500026
encoder : Lavc61.11.100 aac
[hevc @ 0000019e19a5dc40] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19a5dc40] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19a5dc40] Could not find ref with POC 37
[hevc @ 0000019e19b23b80] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19b23b80] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19b23b80] Could not find ref with POC 39
[hevc @ 0000019e19be9ac0] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19be9ac0] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19be9ac0] Could not find ref with POC 41
[hevc @ 0000019e19cafb40] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19cafb40] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19cafb40] Could not find ref with POC 43
[hevc @ 0000019e19d75a80] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19d75a80] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19d75a80] Could not find ref with POC 45
[hevc @ 0000019e19e3bb40] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19e3bb40] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19e3bb40] Could not find ref with POC 47
[hevc @ 0000019e19fa63c0] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19fa63c0] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19fa63c0] Could not find ref with POC 49
[hevc @ 0000019e1933c140] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e1933c140] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e1933c140] Could not find ref with POC 51
[hevc @ 0000019e1a132b80] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e1a132b80] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e1a132b80] Could not find ref with POC 53
[hevc @ 0000019e1a1f8ac0] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e1a1f8ac0] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e1a1f8ac0] Could not find ref with POC 55
[hevc @ 0000019e19365800] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19365800] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19365800] Could not find ref with POC 57
[hevc @ 0000019e19375ec0] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19375ec0] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19375ec0] Could not find ref with POC 59
[hevc @ 0000019e19376280] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19376280] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19376280] Could not find ref with POC 61
[hevc @ 0000019e17175a40] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e17175a40] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e196dec00] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e196dec00] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e196dec00] Could not find ref with POC 65
[hevc @ 0000019e18dd2980] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e18dd2980] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e18dd2980] Could not find ref with POC 67
[hevc @ 0000019e19a5dc40] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19a5dc40] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19a5dc40] Could not find ref with POC 69
[hevc @ 0000019e19b23b80] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19b23b80] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19b23b80] Could not find ref with POC 71
[hevc @ 0000019e19be9ac0] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19be9ac0] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19be9ac0] Could not find ref with POC 73
[hevc @ 0000019e19cafb40] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19cafb40] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19cafb40] Could not find ref with POC 75
[hevc @ 0000019e19d75a80] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19d75a80] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19d75a80] Could not find ref with POC 77
[hevc @ 0000019e19e3bb40] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19e3bb40] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19e3bb40] Could not find ref with POC 79
[hevc @ 0000019e17175a40] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e17175a40] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19fa63c0] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19fa63c0] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19fa63c0] Could not find ref with POC 81
[hevc @ 0000019e196dec00] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e196dec00] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e1933c140] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e1933c140] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e1933c140] Could not find ref with POC 83
[hevc @ 0000019e18dd2980] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e18dd2980] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e1a132b80] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e1a132b80] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e1a132b80] Could not find ref with POC 85
[hevc @ 0000019e19a5dc40] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19a5dc40] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e1a1f8ac0] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e1a1f8ac0] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e1a1f8ac0] Could not find ref with POC 87
[hevc @ 0000019e19b23b80] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19b23b80] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19365800] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19365800] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19365800] Could not find ref with POC 89
[hevc @ 0000019e19be9ac0] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19be9ac0] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19375ec0] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19375ec0] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19375ec0] Could not find ref with POC 91
[hevc @ 0000019e19cafb40] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19cafb40] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19376280] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19376280] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19376280] Could not find ref with POC 93
[hevc @ 0000019e17175a40] Could not find ref with POC 95
[hevc @ 0000019e196dec00] Could not find ref with POC 97
[hevc @ 0000019e18dd2980] Could not find ref with POC 99
[hevc @ 0000019e19a5dc40] Could not find ref with POC 101
[hevc @ 0000019e19d75a80] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19d75a80] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19b23b80] Could not find ref with POC 103
[hevc @ 0000019e19be9ac0] Could not find ref with POC 105
[hevc @ 0000019e19cafb40] Could not find ref with POC 107
[hevc @ 0000019e19d75a80] Could not find ref with POC 109
[hevc @ 0000019e19e3bb40] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19e3bb40] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19e3bb40] Could not find ref with POC 111
[hevc @ 0000019e19fa63c0] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19fa63c0] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19fa63c0] Could not find ref with POC 113
[hevc @ 0000019e1933c140] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e1933c140] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e1933c140] Could not find ref with POC 115
[hevc @ 0000019e1a132b80] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e1a132b80] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e1a132b80] Could not find ref with POC 117
[hevc @ 0000019e1a1f8ac0] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e1a1f8ac0] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e1a1f8ac0] Could not find ref with POC 119
[hevc @ 0000019e19365800] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19365800] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19365800] Could not find ref with POC 121
[hevc @ 0000019e19375ec0] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19375ec0] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19375ec0] Could not find ref with POC 123
[hevc @ 0000019e19376280] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19376280] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19376280] Could not find ref with POC 125
[hevc @ 0000019e17175a40] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e17175a40] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e196dec00] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e196dec00] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e196dec00] Could not find ref with POC 1
[hevc @ 0000019e18dd2980] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e18dd2980] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e18dd2980] Could not find ref with POC 3
[hevc @ 0000019e19a5dc40] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19a5dc40] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19a5dc40] Could not find ref with POC 5
[hevc @ 0000019e19b23b80] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19b23b80] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19b23b80] Could not find ref with POC 7
[hevc @ 0000019e19be9ac0] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19be9ac0] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19be9ac0] Could not find ref with POC 9
[hevc @ 0000019e19cafb40] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19cafb40] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19cafb40] Could not find ref with POC 11
[hevc @ 0000019e17175a40] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e17175a40] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19d75a80] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19d75a80] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19d75a80] Could not find ref with POC 13
[hevc @ 0000019e196dec00] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e196dec00] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e18dd2980] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e18dd2980] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19e3bb40] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19e3bb40] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19e3bb40] Could not find ref with POC 15
[hevc @ 0000019e19fa63c0] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19fa63c0] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19fa63c0] Could not find ref with POC 17
[hevc @ 0000019e19a5dc40] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19a5dc40] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e1933c140] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e1933c140] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e1933c140] Could not find ref with POC 19
[hevc @ 0000019e19b23b80] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19b23b80] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e1a132b80] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e1a132b80] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e1a132b80] Could not find ref with POC 21
[hevc @ 0000019e19be9ac0] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19be9ac0] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e1a1f8ac0] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e1a1f8ac0] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e1a1f8ac0] Could not find ref with POC 23
[hevc @ 0000019e19cafb40] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19cafb40] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19365800] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19365800] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19365800] Could not find ref with POC 25
[hevc @ 0000019e19d75a80] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19d75a80] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19e3bb40] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19e3bb40] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19375ec0] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19375ec0] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19375ec0] Could not find ref with POC 27
[hevc @ 0000019e19376280] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19376280] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19fa63c0] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19fa63c0] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e1933c140] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e1933c140] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e1a132b80] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e1a132b80] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e1a1f8ac0] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e1a1f8ac0] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19365800] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19365800] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19376280] Could not find ref with POC 29
[hevc @ 0000019e19375ec0] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19375ec0] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e17175a40] Could not find ref with POC 31
[hevc @ 0000019e196dec00] Could not find ref with POC 33
[hevc @ 0000019e18dd2980] Could not find ref with POC 35
[hevc @ 0000019e19a5dc40] Could not find ref with POC 37
[hevc @ 0000019e19376280] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19376280] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19b23b80] Could not find ref with POC 39
[hevc @ 0000019e17175a40] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e17175a40] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19be9ac0] Could not find ref with POC 41
[hevc @ 0000019e19cafb40] Could not find ref with POC 43
[hevc @ 0000019e196dec00] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e196dec00] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19d75a80] Could not find ref with POC 45
[hevc @ 0000019e18dd2980] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e18dd2980] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19a5dc40] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19a5dc40] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19e3bb40] Could not find ref with POC 47
[hevc @ 0000019e19fa63c0] Could not find ref with POC 49
[hevc @ 0000019e19b23b80] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19b23b80] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e1933c140] Could not find ref with POC 51
[hevc @ 0000019e1a132b80] Could not find ref with POC 53
frame= 0 fps=0.0 q=0.0 size= 0KiB time=N/A bitrate=N/A speed=N/A
[hevc @ 0000019e19be9ac0] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19be9ac0] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19cafb40] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19cafb40] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e1a1f8ac0] Could not find ref with POC 55
[hevc @ 0000019e19d75a80] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19d75a80] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19365800] Could not find ref with POC 57
[hevc @ 0000019e19375ec0] Could not find ref with POC 59
[hevc @ 0000019e19e3bb40] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19e3bb40] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19376280] Could not find ref with POC 61
[hevc @ 0000019e19fa63c0] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19fa63c0] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e1933c140] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e1933c140] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e196dec00] Could not find ref with POC 65
[hevc @ 0000019e18dd2980] Could not find ref with POC 67
[hevc @ 0000019e1a132b80] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e1a132b80] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19a5dc40] Could not find ref with POC 69
[hevc @ 0000019e1a1f8ac0] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e1a1f8ac0] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19365800] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19365800] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19375ec0] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19375ec0] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19376280] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19376280] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19b23b80] Could not find ref with POC 71
[hevc @ 0000019e19be9ac0] Could not find ref with POC 73
[hevc @ 0000019e19cafb40] Could not find ref with POC 75
[hevc @ 0000019e19d75a80] Could not find ref with POC 77
[hevc @ 0000019e17175a40] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e17175a40] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e196dec00] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e196dec00] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19e3bb40] Could not find ref with POC 79
[hevc @ 0000019e19fa63c0] Could not find ref with POC 81
[hevc @ 0000019e1933c140] Could not find ref with POC 83
[hevc @ 0000019e1a132b80] Could not find ref with POC 85
[hevc @ 0000019e18dd2980] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e18dd2980] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19a5dc40] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19a5dc40] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19b23b80] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19b23b80] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19be9ac0] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19be9ac0] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e1a1f8ac0] Could not find ref with POC 87
[hevc @ 0000019e19cafb40] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19cafb40] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19365800] Could not find ref with POC 89
[hevc @ 0000019e19375ec0] Could not find ref with POC 91
[hevc @ 0000019e19376280] Could not find ref with POC 93
[hevc @ 0000019e19d75a80] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19d75a80] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19e3bb40] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19e3bb40] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19fa63c0] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19fa63c0] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e1933c140] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e1933c140] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e1a132b80] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e1a132b80] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e17175a40] Could not find ref with POC 95
[hevc @ 0000019e1a1f8ac0] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e1a1f8ac0] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e196dec00] Could not find ref with POC 97
[hevc @ 0000019e19365800] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19365800] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e18dd2980] Could not find ref with POC 99
[hevc @ 0000019e19a5dc40] Could not find ref with POC 101
[hevc @ 0000019e19375ec0] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19375ec0] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19b23b80] Could not find ref with POC 103
[hevc @ 0000019e19376280] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19376280] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19be9ac0] Could not find ref with POC 105
[hevc @ 0000019e19cafb40] Could not find ref with POC 107
[hevc @ 0000019e19d75a80] Could not find ref with POC 109
[hevc @ 0000019e17175a40] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e17175a40] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e196dec00] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e196dec00] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19e3bb40] Could not find ref with POC 111
[hevc @ 0000019e18dd2980] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e18dd2980] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19a5dc40] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19a5dc40] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19b23b80] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19b23b80] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19be9ac0] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19be9ac0] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19cafb40] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19cafb40] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19d75a80] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19d75a80] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19e3bb40] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19e3bb40] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19fa63c0] Could not find ref with POC 113
[hevc @ 0000019e19fa63c0] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19fa63c0] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e1933c140] Could not find ref with POC 115
[hevc @ 0000019e1933c140] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e1933c140] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e1a132b80] Could not find ref with POC 117
[hevc @ 0000019e1a1f8ac0] Could not find ref with POC 119
[hevc @ 0000019e19365800] Could not find ref with POC 121
[hevc @ 0000019e19375ec0] Could not find ref with POC 123
[hevc @ 0000019e1a132b80] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e1a132b80] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19376280] Could not find ref with POC 125
[hevc @ 0000019e1a1f8ac0] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e1a1f8ac0] Skipping invalid undecodable NALU: 1
frame= 34 fps= 33 q=41.0 size= 512KiB time=00:00:01.06
bitrate=3928.6kbits/s speed=1.03x
[hevc @ 0000019e196dec00] Could not find ref with POC 1
[hevc @ 0000019e18dd2980] Could not find ref with POC 3
[hevc @ 0000019e19365800] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19365800] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19375ec0] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19375ec0] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19376280] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19376280] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19a5dc40] Could not find ref with POC 5
[hevc @ 0000019e19b23b80] Could not find ref with POC 7
[hevc @ 0000019e19be9ac0] Could not find ref with POC 9
[hevc @ 0000019e19cafb40] Could not find ref with POC 11
[hevc @ 0000019e19d75a80] Could not find ref with POC 13
[hevc @ 0000019e19e3bb40] Could not find ref with POC 15
[hevc @ 0000019e19fa63c0] Could not find ref with POC 17
[hevc @ 0000019e17175a40] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e17175a40] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e1933c140] Could not find ref with POC 19
[hevc @ 0000019e196dec00] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e196dec00] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e18dd2980] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e18dd2980] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19a5dc40] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19a5dc40] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19b23b80] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19b23b80] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19be9ac0] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19be9ac0] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19cafb40] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19cafb40] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19d75a80] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19d75a80] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e1a132b80] Could not find ref with POC 21
[hevc @ 0000019e1a1f8ac0] Could not find ref with POC 23
[hevc @ 0000019e19e3bb40] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19e3bb40] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19365800] Could not find ref with POC 25
[hevc @ 0000019e19375ec0] Could not find ref with POC 27
[hevc @ 0000019e19376280] Could not find ref with POC 29
[hevc @ 0000019e19fa63c0] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19fa63c0] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e17175a40] Could not find ref with POC 31
[hevc @ 0000019e196dec00] Could not find ref with POC 33
[hevc @ 0000019e18dd2980] Could not find ref with POC 35
[hevc @ 0000019e1933c140] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e1933c140] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e1a132b80] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e1a132b80] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19a5dc40] Could not find ref with POC 37
[hevc @ 0000019e1a1f8ac0] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e1a1f8ac0] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19365800] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19365800] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19b23b80] Could not find ref with POC 39
[hevc @ 0000019e19be9ac0] Could not find ref with POC 41
[hevc @ 0000019e19375ec0] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19375ec0] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19cafb40] Could not find ref with POC 43
[hevc @ 0000019e19d75a80] Could not find ref with POC 45
[hevc @ 0000019e19376280] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19376280] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e17175a40] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e17175a40] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e196dec00] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e196dec00] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19e3bb40] Could not find ref with POC 47
[hevc @ 0000019e18dd2980] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e18dd2980] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19a5dc40] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19a5dc40] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19b23b80] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19b23b80] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19be9ac0] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19be9ac0] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19cafb40] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19cafb40] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19d75a80] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19d75a80] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19e3bb40] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19e3bb40] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19fa63c0] Could not find ref with POC 49
[hevc @ 0000019e19fa63c0] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19fa63c0] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e1933c140] Could not find ref with POC 51
[hevc @ 0000019e1a132b80] Could not find ref with POC 53
[hevc @ 0000019e1a1f8ac0] Could not find ref with POC 55
[hevc @ 0000019e19365800] Could not find ref with POC 57
[hevc @ 0000019e19375ec0] Could not find ref with POC 59
[hevc @ 0000019e1933c140] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e1933c140] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e1a132b80] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e1a132b80] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19376280] Could not find ref with POC 61
[hevc @ 0000019e196dec00] Could not find ref with POC 65
[hevc @ 0000019e1a1f8ac0] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e1a1f8ac0] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e18dd2980] Could not find ref with POC 67
[hevc @ 0000019e19365800] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19365800] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19375ec0] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19375ec0] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19a5dc40] Could not find ref with POC 69
[hevc @ 0000019e19376280] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19376280] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19b23b80] Could not find ref with POC 71
[hevc @ 0000019e19be9ac0] Could not find ref with POC 73
[hevc @ 0000019e19cafb40] Could not find ref with POC 75
[hevc @ 0000019e17175a40] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e17175a40] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e196dec00] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e196dec00] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e18dd2980] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e18dd2980] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19a5dc40] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19a5dc40] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19d75a80] Could not find ref with POC 77
[hevc @ 0000019e19e3bb40] Could not find ref with POC 79
[hevc @ 0000019e19b23b80] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19b23b80] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19fa63c0] Could not find ref with POC 81
frame= 75 fps= 48 q=38.0 size= 1280KiB time=00:00:02.43
bitrate=4305.1kbits/s speed=1.57x
[hevc @ 0000019e19be9ac0] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19be9ac0] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e1933c140] Could not find ref with POC 83
[hevc @ 0000019e1a132b80] Could not find ref with POC 85
[hevc @ 0000019e19cafb40] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19cafb40] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e1a1f8ac0] Could not find ref with POC 87
[hevc @ 0000019e19d75a80] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19d75a80] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19365800] Could not find ref with POC 89
[hevc @ 0000019e19e3bb40] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19e3bb40] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19fa63c0] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19fa63c0] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19375ec0] Could not find ref with POC 91
[hevc @ 0000019e1933c140] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e1933c140] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19376280] Could not find ref with POC 93
[hevc @ 0000019e1a132b80] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e1a132b80] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e17175a40] Could not find ref with POC 95
[hevc @ 0000019e196dec00] Could not find ref with POC 97
[hevc @ 0000019e1a1f8ac0] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e1a1f8ac0] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e18dd2980] Could not find ref with POC 99
[hevc @ 0000019e19365800] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19365800] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19a5dc40] Could not find ref with POC 101
[hevc @ 0000019e19b23b80] Could not find ref with POC 103
[hevc @ 0000019e19be9ac0] Could not find ref with POC 105
[hevc @ 0000019e19375ec0] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19375ec0] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19376280] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19376280] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e17175a40] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e17175a40] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19cafb40] Could not find ref with POC 107
[hevc @ 0000019e19d75a80] Could not find ref with POC 109
[hevc @ 0000019e19e3bb40] Could not find ref with POC 111
[hevc @ 0000019e196dec00] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e196dec00] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19fa63c0] Could not find ref with POC 113
[hevc @ 0000019e18dd2980] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e18dd2980] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19a5dc40] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19a5dc40] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e1933c140] Could not find ref with POC 115
[hevc @ 0000019e19b23b80] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19b23b80] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e1a132b80] Could not find ref with POC 117
[hevc @ 0000019e1a1f8ac0] Could not find ref with POC 119
[hevc @ 0000019e19365800] Could not find ref with POC 121
[hevc @ 0000019e19be9ac0] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19be9ac0] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19cafb40] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19cafb40] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19375ec0] Could not find ref with POC 123
[hevc @ 0000019e19d75a80] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19d75a80] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19376280] Could not find ref with POC 125
[hevc @ 0000019e19e3bb40] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19e3bb40] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19fa63c0] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19fa63c0] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e1933c140] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e1933c140] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e1a132b80] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e1a132b80] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e1a1f8ac0] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e1a1f8ac0] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e196dec00] Could not find ref with POC 1
[hevc @ 0000019e19365800] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19365800] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e18dd2980] Could not find ref with POC 3
[hevc @ 0000019e19a5dc40] Could not find ref with POC 5
[hevc @ 0000019e19375ec0] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19375ec0] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19b23b80] Could not find ref with POC 7
[hevc @ 0000019e19be9ac0] Could not find ref with POC 9
[hevc @ 0000019e19376280] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19376280] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19cafb40] Could not find ref with POC 11
[hevc @ 0000019e19d75a80] Could not find ref with POC 13
[hevc @ 0000019e19e3bb40] Could not find ref with POC 15
[hevc @ 0000019e19fa63c0] Could not find ref with POC 17
[hevc @ 0000019e17175a40] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e17175a40] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e196dec00] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e196dec00] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e1933c140] Could not find ref with POC 19
[hevc @ 0000019e18dd2980] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e18dd2980] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e1a132b80] Could not find ref with POC 21
[hevc @ 0000019e1a1f8ac0] Could not find ref with POC 23
[hevc @ 0000019e19365800] Could not find ref with POC 25
[hevc @ 0000019e19a5dc40] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19a5dc40] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19b23b80] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19b23b80] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19be9ac0] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19be9ac0] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19375ec0] Could not find ref with POC 27
[hevc @ 0000019e19cafb40] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19cafb40] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19d75a80] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19d75a80] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19376280] Could not find ref with POC 29
[hevc @ 0000019e19e3bb40] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19e3bb40] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e17175a40] Could not find ref with POC 31
[hevc @ 0000019e196dec00] Could not find ref with POC 33
[hevc @ 0000019e18dd2980] Could not find ref with POC 35
[hevc @ 0000019e19a5dc40] Could not find ref with POC 37
[hevc @ 0000019e19fa63c0] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19fa63c0] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e1933c140] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e1933c140] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e1a132b80] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e1a132b80] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19b23b80] Could not find ref with POC 39
[hevc @ 0000019e19be9ac0] Could not find ref with POC 41
[hevc @ 0000019e1a1f8ac0] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e1a1f8ac0] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19cafb40] Could not find ref with POC 43
[hevc @ 0000019e19d75a80] Could not find ref with POC 45
[hevc @ 0000019e19365800] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19365800] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19375ec0] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19375ec0] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19376280] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19376280] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19e3bb40] Could not find ref with POC 47
[hevc @ 0000019e19fa63c0] Could not find ref with POC 49
[hevc @ 0000019e1933c140] Could not find ref with POC 51
[hevc @ 0000019e17175a40] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e17175a40] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e1a132b80] Could not find ref with POC 53
[hevc @ 0000019e196dec00] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e196dec00] Skipping invalid undecodable NALU: 1
frame= 125 fps= 60 q=41.0 size= 2048KiB time=00:00:04.10
bitrate=4088.0kbits/s speed=1.98x
[hevc @ 0000019e18dd2980] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e18dd2980] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e1a1f8ac0] Could not find ref with POC 55
[hevc @ 0000019e19365800] Could not find ref with POC 57
[hevc @ 0000019e19a5dc40] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19a5dc40] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19375ec0] Could not find ref with POC 59
[hevc @ 0000019e19376280] Could not find ref with POC 61
[hevc @ 0000019e19b23b80] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19b23b80] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19be9ac0] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19be9ac0] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19cafb40] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19cafb40] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e196dec00] Could not find ref with POC 65
[hevc @ 0000019e19d75a80] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19d75a80] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e18dd2980] Could not find ref with POC 67
[hevc @ 0000019e19a5dc40] Could not find ref with POC 69
[hevc @ 0000019e19e3bb40] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19e3bb40] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19fa63c0] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19fa63c0] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e1933c140] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e1933c140] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e1a132b80] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e1a132b80] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e1a1f8ac0] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e1a1f8ac0] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19365800] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19365800] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e17175a40] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e17175a40] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19375ec0] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19375ec0] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e196dec00] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e196dec00] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19b23b80] Could not find ref with POC 71
[hevc @ 0000019e19376280] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19376280] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e18dd2980] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e18dd2980] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19be9ac0] Could not find ref with POC 73
[hevc @ 0000019e19a5dc40] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19a5dc40] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19cafb40] Could not find ref with POC 75
[hevc @ 0000019e19d75a80] Could not find ref with POC 77
[hevc @ 0000019e19b23b80] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19b23b80] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19e3bb40] Could not find ref with POC 79
[hevc @ 0000019e19fa63c0] Could not find ref with POC 81
[hevc @ 0000019e19be9ac0] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19be9ac0] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e1933c140] Could not find ref with POC 83
[hevc @ 0000019e1a132b80] Could not find ref with POC 85
[hevc @ 0000019e19cafb40] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19cafb40] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19d75a80] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19d75a80] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e1a1f8ac0] Could not find ref with POC 87
[hevc @ 0000019e19365800] Could not find ref with POC 89
[hevc @ 0000019e19e3bb40] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19e3bb40] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19375ec0] Could not find ref with POC 91
[hevc @ 0000019e19fa63c0] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19fa63c0] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e1933c140] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e1933c140] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19376280] Could not find ref with POC 93
[hevc @ 0000019e1a132b80] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e1a132b80] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e17175a40] Could not find ref with POC 95
[hevc @ 0000019e196dec00] Could not find ref with POC 97
[hevc @ 0000019e18dd2980] Could not find ref with POC 99
[hevc @ 0000019e1a1f8ac0] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e1a1f8ac0] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19a5dc40] Could not find ref with POC 101
[hevc @ 0000019e19365800] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19365800] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19375ec0] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19375ec0] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19b23b80] Could not find ref with POC 103
[hevc @ 0000019e19376280] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19376280] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19be9ac0] Could not find ref with POC 105
[hevc @ 0000019e19cafb40] Could not find ref with POC 107
[hevc @ 0000019e17175a40] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e17175a40] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19d75a80] Could not find ref with POC 109
[hevc @ 0000019e196dec00] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e196dec00] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e18dd2980] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e18dd2980] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19e3bb40] Could not find ref with POC 111
[hevc @ 0000019e19fa63c0] Could not find ref with POC 113
[hevc @ 0000019e1933c140] Could not find ref with POC 115
[hevc @ 0000019e19a5dc40] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19a5dc40] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e1a132b80] Could not find ref with POC 117
[hevc @ 0000019e19b23b80] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19b23b80] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19be9ac0] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19be9ac0] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19cafb40] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19cafb40] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e1a1f8ac0] Could not find ref with POC 119
[hevc @ 0000019e19365800] Could not find ref with POC 121
[hevc @ 0000019e19d75a80] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19d75a80] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19375ec0] Could not find ref with POC 123
[hevc @ 0000019e19376280] Could not find ref with POC 125
[hevc @ 0000019e19e3bb40] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19e3bb40] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19fa63c0] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19fa63c0] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e1933c140] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e1933c140] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e1a132b80] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e1a132b80] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e1a1f8ac0] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e1a1f8ac0] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e196dec00] Could not find ref with POC 1
[hevc @ 0000019e19365800] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19365800] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e18dd2980] Could not find ref with POC 3
[hevc @ 0000019e19a5dc40] Could not find ref with POC 5
[hevc @ 0000019e19375ec0] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19375ec0] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19376280] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19376280] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e17175a40] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e17175a40] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e196dec00] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e196dec00] Skipping invalid undecodable NALU: 1
frame= 165 fps= 64 q=41.0 size= 2816KiB time=00:00:05.43
bitrate=4241.6kbits/s speed=2.12x
[hevc @ 0000019e19b23b80] Could not find ref with POC 7
[hevc @ 0000019e18dd2980] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e18dd2980] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19be9ac0] Could not find ref with POC 9
[hevc @ 0000019e19a5dc40] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19a5dc40] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19cafb40] Could not find ref with POC 11
[hevc @ 0000019e19d75a80] Could not find ref with POC 13
[hevc @ 0000019e19b23b80] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19b23b80] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19e3bb40] Could not find ref with POC 15
[hevc @ 0000019e19be9ac0] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19be9ac0] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19fa63c0] Could not find ref with POC 17
[hevc @ 0000019e1933c140] Could not find ref with POC 19
[hevc @ 0000019e1a132b80] Could not find ref with POC 21
[hevc @ 0000019e19cafb40] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19cafb40] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19d75a80] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19d75a80] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19e3bb40] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19e3bb40] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19fa63c0] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19fa63c0] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e1933c140] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e1933c140] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e1a1f8ac0] Could not find ref with POC 23
[hevc @ 0000019e19365800] Could not find ref with POC 25
[hevc @ 0000019e19375ec0] Could not find ref with POC 27
[hevc @ 0000019e1a132b80] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e1a132b80] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19376280] Could not find ref with POC 29
[hevc @ 0000019e17175a40] Could not find ref with POC 31
[hevc @ 0000019e196dec00] Could not find ref with POC 33
[hevc @ 0000019e18dd2980] Could not find ref with POC 35
[hevc @ 0000019e19a5dc40] Could not find ref with POC 37
[hevc @ 0000019e1a1f8ac0] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e1a1f8ac0] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19365800] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19365800] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19375ec0] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19375ec0] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19b23b80] Could not find ref with POC 39
[hevc @ 0000019e19be9ac0] Could not find ref with POC 41
[hevc @ 0000019e19376280] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19376280] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19cafb40] Could not find ref with POC 43
[hevc @ 0000019e19d75a80] Could not find ref with POC 45
[hevc @ 0000019e17175a40] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e17175a40] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e196dec00] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e196dec00] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e18dd2980] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e18dd2980] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19e3bb40] Could not find ref with POC 47
[hevc @ 0000019e19fa63c0] Could not find ref with POC 49
[hevc @ 0000019e1933c140] Could not find ref with POC 51
[hevc @ 0000019e19a5dc40] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19a5dc40] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e1a132b80] Could not find ref with POC 53
[hevc @ 0000019e19b23b80] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19b23b80] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19be9ac0] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19be9ac0] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19cafb40] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19cafb40] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e1a1f8ac0] Could not find ref with POC 55
[hevc @ 0000019e19d75a80] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19d75a80] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19365800] Could not find ref with POC 57
[hevc @ 0000019e19e3bb40] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19e3bb40] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19375ec0] Could not find ref with POC 59
[hevc @ 0000019e19376280] Could not find ref with POC 61
[hevc @ 0000019e19fa63c0] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19fa63c0] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e1933c140] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e1933c140] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e1a132b80] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e1a132b80] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e196dec00] Could not find ref with POC 65
[hevc @ 0000019e1a1f8ac0] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e1a1f8ac0] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19365800] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19365800] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e18dd2980] Could not find ref with POC 67
[hevc @ 0000019e19a5dc40] Could not find ref with POC 69
[hevc @ 0000019e19375ec0] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19375ec0] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19376280] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19376280] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19b23b80] Could not find ref with POC 71
[hevc @ 0000019e19be9ac0] Could not find ref with POC 73
[hevc @ 0000019e17175a40] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e17175a40] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19cafb40] Could not find ref with POC 75
[hevc @ 0000019e19d75a80] Could not find ref with POC 77
[hevc @ 0000019e196dec00] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e196dec00] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19e3bb40] Could not find ref with POC 79
[hevc @ 0000019e18dd2980] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e18dd2980] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19fa63c0] Could not find ref with POC 81
[hevc @ 0000019e1933c140] Could not find ref with POC 83
[hevc @ 0000019e19a5dc40] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19a5dc40] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e1a132b80] Could not find ref with POC 85
[hevc @ 0000019e19b23b80] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19b23b80] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e1a1f8ac0] Could not find ref with POC 87
[hevc @ 0000019e19be9ac0] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19be9ac0] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19365800] Could not find ref with POC 89
[hevc @ 0000019e19375ec0] Could not find ref with POC 91
[hevc @ 0000019e19cafb40] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19cafb40] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19d75a80] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19d75a80] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19376280] Could not find ref with POC 93
[hevc @ 0000019e19e3bb40] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19e3bb40] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e17175a40] Could not find ref with POC 95
[hevc @ 0000019e196dec00] Could not find ref with POC 97
[hevc @ 0000019e19fa63c0] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19fa63c0] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e18dd2980] Could not find ref with POC 99
[hevc @ 0000019e19a5dc40] Could not find ref with POC 101
[hevc @ 0000019e1933c140] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e1933c140] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e1a132b80] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e1a132b80] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e1a1f8ac0] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e1a1f8ac0] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19b23b80] Could not find ref with POC 103
frame= 214 fps= 69 q=41.0 size= 3584KiB time=00:00:07.07
bitrate=4150.6kbits/s speed=2.29x
[hevc @ 0000019e19365800] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19365800] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19be9ac0] Could not find ref with POC 105
[hevc @ 0000019e19cafb40] Could not find ref with POC 107
[hevc @ 0000019e19d75a80] Could not find ref with POC 109
[hevc @ 0000019e19375ec0] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19375ec0] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19376280] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19376280] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e17175a40] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e17175a40] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19e3bb40] Could not find ref with POC 111
[hevc @ 0000019e19fa63c0] Could not find ref with POC 113
[hevc @ 0000019e1933c140] Could not find ref with POC 115
[hevc @ 0000019e1a132b80] Could not find ref with POC 117
[hevc @ 0000019e196dec00] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e196dec00] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e18dd2980] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e18dd2980] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19a5dc40] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19a5dc40] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e1a1f8ac0] Could not find ref with POC 119
[hevc @ 0000019e19365800] Could not find ref with POC 121
[hevc @ 0000019e19375ec0] Could not find ref with POC 123
[hevc @ 0000019e19b23b80] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19b23b80] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19376280] Could not find ref with POC 125
[hevc @ 0000019e19be9ac0] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19be9ac0] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19cafb40] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19cafb40] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19d75a80] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19d75a80] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19e3bb40] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19e3bb40] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e196dec00] Could not find ref with POC 1
[hevc @ 0000019e19fa63c0] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19fa63c0] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e18dd2980] Could not find ref with POC 3
[hevc @ 0000019e19a5dc40] Could not find ref with POC 5
[hevc @ 0000019e1933c140] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e1933c140] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e1a132b80] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e1a132b80] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e1a1f8ac0] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e1a1f8ac0] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19365800] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19365800] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19b23b80] Could not find ref with POC 7
[hevc @ 0000019e19375ec0] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19375ec0] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e17175a40] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e17175a40] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e196dec00] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e196dec00] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19be9ac0] Could not find ref with POC 9
[hevc @ 0000019e19376280] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19376280] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e18dd2980] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e18dd2980] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19cafb40] Could not find ref with POC 11
[hevc @ 0000019e19d75a80] Could not find ref with POC 13
[hevc @ 0000019e19e3bb40] Could not find ref with POC 15
[hevc @ 0000019e19a5dc40] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19a5dc40] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19fa63c0] Could not find ref with POC 17
[hevc @ 0000019e1933c140] Could not find ref with POC 19
[hevc @ 0000019e1a132b80] Could not find ref with POC 21
[hevc @ 0000019e19b23b80] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19b23b80] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19be9ac0] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19be9ac0] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e1a1f8ac0] Could not find ref with POC 23
[hevc @ 0000019e19cafb40] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19cafb40] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19365800] Could not find ref with POC 25
[hevc @ 0000019e19375ec0] Could not find ref with POC 27
[hevc @ 0000019e19d75a80] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19d75a80] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19e3bb40] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19e3bb40] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19fa63c0] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19fa63c0] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19376280] Could not find ref with POC 29
[hevc @ 0000019e1933c140] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e1933c140] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e1a132b80] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e1a132b80] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e1a1f8ac0] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e1a1f8ac0] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19365800] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19365800] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19375ec0] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19375ec0] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e17175a40] Could not find ref with POC 31
[hevc @ 0000019e19376280] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19376280] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e196dec00] Could not find ref with POC 33
[hevc @ 0000019e18dd2980] Could not find ref with POC 35
[hevc @ 0000019e19a5dc40] Could not find ref with POC 37
[hevc @ 0000019e19b23b80] Could not find ref with POC 39
[hevc @ 0000019e17175a40] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e17175a40] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19be9ac0] Could not find ref with POC 41
[hevc @ 0000019e196dec00] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e196dec00] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19cafb40] Could not find ref with POC 43
[hevc @ 0000019e19d75a80] Could not find ref with POC 45
[hevc @ 0000019e18dd2980] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e18dd2980] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19e3bb40] Could not find ref with POC 47
[hevc @ 0000019e19a5dc40] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19a5dc40] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19fa63c0] Could not find ref with POC 49
[hevc @ 0000019e1933c140] Could not find ref with POC 51
[hevc @ 0000019e1a132b80] Could not find ref with POC 53
[hevc @ 0000019e19b23b80] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19b23b80] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19be9ac0] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19be9ac0] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19cafb40] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19cafb40] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e1a1f8ac0] Could not find ref with POC 55
[hevc @ 0000019e19365800] Could not find ref with POC 57
[hevc @ 0000019e19375ec0] Could not find ref with POC 59
[hevc @ 0000019e19376280] Could not find ref with POC 61
[hevc @ 0000019e19d75a80] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19d75a80] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19e3bb40] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19e3bb40] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19fa63c0] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19fa63c0] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e1933c140] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e1933c140] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e1a132b80] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e1a132b80] Skipping invalid undecodable NALU: 1
frame= 258 fps= 72 q=41.0 size= 4608KiB time=00:00:08.54
bitrate=4419.3kbits/s speed=2.37x
[hevc @ 0000019e1a1f8ac0] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e1a1f8ac0] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e196dec00] Could not find ref with POC 65
[hevc @ 0000019e19365800] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19365800] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e18dd2980] Could not find ref with POC 67
[hevc @ 0000019e19375ec0] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19375ec0] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19a5dc40] Could not find ref with POC 69
[hevc @ 0000019e19376280] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19376280] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e17175a40] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e17175a40] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e196dec00] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e196dec00] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19b23b80] Could not find ref with POC 71
[hevc @ 0000019e18dd2980] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e18dd2980] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19be9ac0] Could not find ref with POC 73
[hevc @ 0000019e19a5dc40] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19a5dc40] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19cafb40] Could not find ref with POC 75
[hevc @ 0000019e19d75a80] Could not find ref with POC 77
[hevc @ 0000019e19b23b80] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19b23b80] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19e3bb40] Could not find ref with POC 79
[hevc @ 0000019e19be9ac0] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19be9ac0] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19fa63c0] Could not find ref with POC 81
[hevc @ 0000019e1933c140] Could not find ref with POC 83
[hevc @ 0000019e1a132b80] Could not find ref with POC 85
[hevc @ 0000019e19cafb40] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19cafb40] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19d75a80] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19d75a80] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e1a1f8ac0] Could not find ref with POC 87
[hevc @ 0000019e19e3bb40] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19e3bb40] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19365800] Could not find ref with POC 89
[hevc @ 0000019e19375ec0] Could not find ref with POC 91
[hevc @ 0000019e19fa63c0] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19fa63c0] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e1933c140] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e1933c140] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e1a132b80] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e1a132b80] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19376280] Could not find ref with POC 93
[hevc @ 0000019e17175a40] Could not find ref with POC 95
[hevc @ 0000019e196dec00] Could not find ref with POC 97
[hevc @ 0000019e1a1f8ac0] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e1a1f8ac0] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e18dd2980] Could not find ref with POC 99
[hevc @ 0000019e19a5dc40] Could not find ref with POC 101
[hevc @ 0000019e19365800] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19365800] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19375ec0] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19375ec0] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19376280] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19376280] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19b23b80] Could not find ref with POC 103
[hevc @ 0000019e19be9ac0] Could not find ref with POC 105
[hevc @ 0000019e19cafb40] Could not find ref with POC 107
[hevc @ 0000019e19d75a80] Could not find ref with POC 109
[hevc @ 0000019e17175a40] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e17175a40] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e196dec00] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e196dec00] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e18dd2980] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e18dd2980] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19e3bb40] Could not find ref with POC 111
[hevc @ 0000019e19fa63c0] Could not find ref with POC 113
[hevc @ 0000019e19a5dc40] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19a5dc40] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e1933c140] Could not find ref with POC 115
[hevc @ 0000019e1a132b80] Could not find ref with POC 117
[hevc @ 0000019e19b23b80] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19b23b80] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19be9ac0] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19be9ac0] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e1a1f8ac0] Could not find ref with POC 119
[hevc @ 0000019e19cafb40] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19cafb40] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19365800] Could not find ref with POC 121
[hevc @ 0000019e19375ec0] Could not find ref with POC 123
[hevc @ 0000019e19376280] Could not find ref with POC 125
[hevc @ 0000019e19d75a80] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19d75a80] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19e3bb40] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19e3bb40] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19fa63c0] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19fa63c0] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e1933c140] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e1933c140] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e196dec00] Could not find ref with POC 1
[hevc @ 0000019e1a132b80] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e1a132b80] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e18dd2980] Could not find ref with POC 3
[hevc @ 0000019e19a5dc40] Could not find ref with POC 5
[hevc @ 0000019e1a1f8ac0] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e1a1f8ac0] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19365800] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19365800] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19375ec0] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19375ec0] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19376280] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19376280] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19b23b80] Could not find ref with POC 7
[hevc @ 0000019e17175a40] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e17175a40] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e196dec00] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e196dec00] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19be9ac0] Could not find ref with POC 9
[hevc @ 0000019e19cafb40] Could not find ref with POC 11
[hevc @ 0000019e18dd2980] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e18dd2980] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19d75a80] Could not find ref with POC 13
[hevc @ 0000019e19e3bb40] Could not find ref with POC 15
[hevc @ 0000019e19fa63c0] Could not find ref with POC 17
[hevc @ 0000019e19a5dc40] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19a5dc40] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e1933c140] Could not find ref with POC 19
[hevc @ 0000019e1a132b80] Could not find ref with POC 21
[hevc @ 0000019e19b23b80] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19b23b80] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19be9ac0] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19be9ac0] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19cafb40] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19cafb40] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e1a1f8ac0] Could not find ref with POC 23
frame= 302 fps= 73 q=41.0 size= 5376KiB time=00:00:10.01
bitrate=4399.7kbits/s speed=2.43x
[hevc @ 0000019e19d75a80] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19d75a80] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19e3bb40] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19e3bb40] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19365800] Could not find ref with POC 25
[hevc @ 0000019e19fa63c0] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19fa63c0] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e1933c140] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e1933c140] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19375ec0] Could not find ref with POC 27
[hevc @ 0000019e1a132b80] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e1a132b80] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19376280] Could not find ref with POC 29
[hevc @ 0000019e17175a40] Could not find ref with POC 31
[hevc @ 0000019e196dec00] Could not find ref with POC 33
[hevc @ 0000019e1a1f8ac0] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e1a1f8ac0] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e18dd2980] Could not find ref with POC 35
[hevc @ 0000019e19a5dc40] Could not find ref with POC 37
[hevc @ 0000019e19365800] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19365800] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19375ec0] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19375ec0] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19b23b80] Could not find ref with POC 39
[hevc @ 0000019e19376280] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19376280] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19be9ac0] Could not find ref with POC 41
[hevc @ 0000019e19cafb40] Could not find ref with POC 43
[hevc @ 0000019e19d75a80] Could not find ref with POC 45
[hevc @ 0000019e17175a40] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e17175a40] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e196dec00] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e196dec00] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e18dd2980] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e18dd2980] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19e3bb40] Could not find ref with POC 47
[hevc @ 0000019e19fa63c0] Could not find ref with POC 49
[hevc @ 0000019e1933c140] Could not find ref with POC 51
[hevc @ 0000019e1a132b80] Could not find ref with POC 53
[hevc @ 0000019e19a5dc40] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19a5dc40] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19b23b80] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19b23b80] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19be9ac0] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19be9ac0] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e1a1f8ac0] Could not find ref with POC 55
[hevc @ 0000019e19365800] Could not find ref with POC 57
[hevc @ 0000019e19cafb40] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19cafb40] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19375ec0] Could not find ref with POC 59
[hevc @ 0000019e19376280] Could not find ref with POC 61
[hevc @ 0000019e19d75a80] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19d75a80] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19e3bb40] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19e3bb40] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19fa63c0] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19fa63c0] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e1933c140] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e1933c140] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e196dec00] Could not find ref with POC 65
[hevc @ 0000019e1a132b80] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e1a132b80] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e1a1f8ac0] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e1a1f8ac0] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19365800] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19365800] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19375ec0] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19375ec0] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19376280] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19376280] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e17175a40] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e17175a40] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e196dec00] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e196dec00] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e18dd2980] Could not find ref with POC 67
[hevc @ 0000019e18dd2980] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e18dd2980] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19a5dc40] Could not find ref with POC 69
[hevc @ 0000019e19b23b80] Could not find ref with POC 71
[hevc @ 0000019e19a5dc40] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19a5dc40] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19be9ac0] Could not find ref with POC 73
[hevc @ 0000019e19b23b80] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19b23b80] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19cafb40] Could not find ref with POC 75
[hevc @ 0000019e19be9ac0] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19be9ac0] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19d75a80] Could not find ref with POC 77
[hevc @ 0000019e19e3bb40] Could not find ref with POC 79
[hevc @ 0000019e19fa63c0] Could not find ref with POC 81
[hevc @ 0000019e19cafb40] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19cafb40] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e1933c140] Could not find ref with POC 83
[hevc @ 0000019e19d75a80] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19d75a80] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e1a132b80] Could not find ref with POC 85
[hevc @ 0000019e1a1f8ac0] Could not find ref with POC 87
[hevc @ 0000019e19e3bb40] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19e3bb40] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19365800] Could not find ref with POC 89
[hevc @ 0000019e19fa63c0] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19fa63c0] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e1933c140] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e1933c140] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19375ec0] Could not find ref with POC 91
[hevc @ 0000019e19376280] Could not find ref with POC 93
[hevc @ 0000019e1a132b80] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e1a132b80] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e17175a40] Could not find ref with POC 95
[hevc @ 0000019e196dec00] Could not find ref with POC 97
[hevc @ 0000019e1a1f8ac0] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e1a1f8ac0] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e18dd2980] Could not find ref with POC 99
[hevc @ 0000019e19a5dc40] Could not find ref with POC 101
[hevc @ 0000019e19365800] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19365800] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19375ec0] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19375ec0] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19376280] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19376280] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19b23b80] Could not find ref with POC 103
[hevc @ 0000019e19be9ac0] Could not find ref with POC 105
[hevc @ 0000019e19cafb40] Could not find ref with POC 107
[hevc @ 0000019e19d75a80] Could not find ref with POC 109
[hevc @ 0000019e17175a40] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e17175a40] Skipping invalid undecodable NALU: 1
frame= 345 fps= 74 q=41.0 size= 6400KiB time=00:00:11.44
bitrate=4581.1kbits/s speed=2.47x
[hevc @ 0000019e196dec00] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e196dec00] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e18dd2980] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e18dd2980] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19e3bb40] Could not find ref with POC 111
[hevc @ 0000019e19a5dc40] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19a5dc40] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19b23b80] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19b23b80] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19fa63c0] Could not find ref with POC 113
[hevc @ 0000019e19be9ac0] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19be9ac0] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19cafb40] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19cafb40] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19d75a80] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19d75a80] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e1933c140] Could not find ref with POC 115
[hevc @ 0000019e19e3bb40] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19e3bb40] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e1a132b80] Could not find ref with POC 117
[hevc @ 0000019e19fa63c0] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19fa63c0] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e1a1f8ac0] Could not find ref with POC 119
[hevc @ 0000019e1933c140] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e1933c140] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19365800] Could not find ref with POC 121
[hevc @ 0000019e1a132b80] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e1a132b80] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19375ec0] Could not find ref with POC 123
[hevc @ 0000019e19376280] Could not find ref with POC 125
[hevc @ 0000019e1a1f8ac0] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e1a1f8ac0] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e196dec00] Could not find ref with POC 1
[hevc @ 0000019e19365800] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19365800] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e18dd2980] Could not find ref with POC 3
[hevc @ 0000019e19a5dc40] Could not find ref with POC 5
[hevc @ 0000019e19375ec0] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19375ec0] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19376280] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19376280] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19b23b80] Could not find ref with POC 7
[hevc @ 0000019e17175a40] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e17175a40] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e196dec00] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e196dec00] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e18dd2980] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e18dd2980] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19be9ac0] Could not find ref with POC 9
[hevc @ 0000019e19a5dc40] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19a5dc40] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19b23b80] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19b23b80] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19be9ac0] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19be9ac0] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19cafb40] Could not find ref with POC 11
[hevc @ 0000019e19cafb40] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19cafb40] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19d75a80] Could not find ref with POC 13
[hevc @ 0000019e19e3bb40] Could not find ref with POC 15
[hevc @ 0000019e19fa63c0] Could not find ref with POC 17
[hevc @ 0000019e19d75a80] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19d75a80] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19e3bb40] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19e3bb40] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e1933c140] Could not find ref with POC 19
[hevc @ 0000019e1a132b80] Could not find ref with POC 21
[hevc @ 0000019e19fa63c0] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19fa63c0] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e1a1f8ac0] Could not find ref with POC 23
[hevc @ 0000019e1933c140] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e1933c140] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19365800] Could not find ref with POC 25
[hevc @ 0000019e1a132b80] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e1a132b80] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e1a1f8ac0] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e1a1f8ac0] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19375ec0] Could not find ref with POC 27
[hevc @ 0000019e19376280] Could not find ref with POC 29
[hevc @ 0000019e19365800] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19365800] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e17175a40] Could not find ref with POC 31
[hevc @ 0000019e196dec00] Could not find ref with POC 33
[hevc @ 0000019e18dd2980] Could not find ref with POC 35
[hevc @ 0000019e19a5dc40] Could not find ref with POC 37
[hevc @ 0000019e19375ec0] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19375ec0] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19376280] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19376280] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19b23b80] Could not find ref with POC 39
[hevc @ 0000019e17175a40] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e17175a40] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19be9ac0] Could not find ref with POC 41
[hevc @ 0000019e19cafb40] Could not find ref with POC 43
[hevc @ 0000019e19d75a80] Could not find ref with POC 45
[hevc @ 0000019e196dec00] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e196dec00] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e18dd2980] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e18dd2980] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19a5dc40] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19a5dc40] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19e3bb40] Could not find ref with POC 47
[hevc @ 0000019e19fa63c0] Could not find ref with POC 49
[hevc @ 0000019e1933c140] Could not find ref with POC 51
[hevc @ 0000019e19b23b80] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19b23b80] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e1a132b80] Could not find ref with POC 53
[hevc @ 0000019e19be9ac0] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19be9ac0] Skipping invalid undecodable NALU: 1
frame= 381 fps= 74 q=41.0 size= 6912KiB time=00:00:12.64
bitrate=4477.6kbits/s speed=2.45x
[hevc @ 0000019e19cafb40] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19cafb40] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e1a1f8ac0] Could not find ref with POC 55
[hevc @ 0000019e19d75a80] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19d75a80] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19365800] Could not find ref with POC 57
[hevc @ 0000019e19e3bb40] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19e3bb40] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19375ec0] Could not find ref with POC 59
[hevc @ 0000019e19376280] Could not find ref with POC 61
[hevc @ 0000019e19fa63c0] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19fa63c0] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e1933c140] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e1933c140] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e1a132b80] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e1a132b80] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e1a1f8ac0] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e1a1f8ac0] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19365800] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19365800] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e196dec00] Could not find ref with POC 65
[hevc @ 0000019e19375ec0] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19375ec0] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e18dd2980] Could not find ref with POC 67
[hevc @ 0000019e19376280] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19376280] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19a5dc40] Could not find ref with POC 69
[hevc @ 0000019e17175a40] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e17175a40] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19b23b80] Could not find ref with POC 71
[hevc @ 0000019e196dec00] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e196dec00] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e18dd2980] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e18dd2980] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19be9ac0] Could not find ref with POC 73
[hevc @ 0000019e19a5dc40] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19a5dc40] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19cafb40] Could not find ref with POC 75
[hevc @ 0000019e19d75a80] Could not find ref with POC 77
[hevc @ 0000019e19e3bb40] Could not find ref with POC 79
[hevc @ 0000019e19b23b80] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19b23b80] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19fa63c0] Could not find ref with POC 81
[hevc @ 0000019e19be9ac0] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19be9ac0] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e1933c140] Could not find ref with POC 83
[hevc @ 0000019e1a132b80] Could not find ref with POC 85
[hevc @ 0000019e19cafb40] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19cafb40] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19d75a80] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19d75a80] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e1a1f8ac0] Could not find ref with POC 87
[hevc @ 0000019e19e3bb40] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19e3bb40] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19365800] Could not find ref with POC 89
[hevc @ 0000019e19375ec0] Could not find ref with POC 91
[hevc @ 0000019e19fa63c0] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19fa63c0] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e1933c140] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e1933c140] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e1a132b80] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e1a132b80] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19376280] Could not find ref with POC 93
[hevc @ 0000019e1a1f8ac0] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e1a1f8ac0] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e17175a40] Could not find ref with POC 95
[hevc @ 0000019e19365800] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19365800] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e196dec00] Could not find ref with POC 97
[hevc @ 0000019e18dd2980] Could not find ref with POC 99
[hevc @ 0000019e19a5dc40] Could not find ref with POC 101
[hevc @ 0000019e19375ec0] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19375ec0] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19376280] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19376280] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e17175a40] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e17175a40] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19b23b80] Could not find ref with POC 103
[hevc @ 0000019e196dec00] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e196dec00] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e18dd2980] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e18dd2980] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19be9ac0] Could not find ref with POC 105
[hevc @ 0000019e19cafb40] Could not find ref with POC 107
[hevc @ 0000019e19a5dc40] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19a5dc40] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19d75a80] Could not find ref with POC 109
[hevc @ 0000019e19b23b80] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19b23b80] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19be9ac0] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19be9ac0] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19e3bb40] Could not find ref with POC 111
[hevc @ 0000019e19cafb40] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19cafb40] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19fa63c0] Could not find ref with POC 113
[hevc @ 0000019e19d75a80] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19d75a80] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e1933c140] Could not find ref with POC 115
[hevc @ 0000019e1a132b80] Could not find ref with POC 117
[hevc @ 0000019e19e3bb40] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19e3bb40] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e1a1f8ac0] Could not find ref with POC 119
[hevc @ 0000019e19fa63c0] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19fa63c0] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19365800] Could not find ref with POC 121
[hevc @ 0000019e19375ec0] Could not find ref with POC 123
[hevc @ 0000019e1933c140] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e1933c140] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19376280] Could not find ref with POC 125
[hevc @ 0000019e1a132b80] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e1a132b80] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e1a1f8ac0] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e1a1f8ac0] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19365800] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19365800] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19375ec0] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19375ec0] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e196dec00] Could not find ref with POC 1
[hevc @ 0000019e18dd2980] Could not find ref with POC 3
[hevc @ 0000019e19376280] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19376280] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19a5dc40] Could not find ref with POC 5
[hevc @ 0000019e17175a40] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e17175a40] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e196dec00] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e196dec00] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e18dd2980] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e18dd2980] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19b23b80] Could not find ref with POC 7
[hevc @ 0000019e19a5dc40] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19a5dc40] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19be9ac0] Could not find ref with POC 9
[hevc @ 0000019e19cafb40] Could not find ref with POC 11
frame= 424 fps= 75 q=41.0 size= 7936KiB time=00:00:14.04
bitrate=4628.1kbits/s speed=2.48x
[hevc @ 0000019e19d75a80] Could not find ref with POC 13
[hevc @ 0000019e19b23b80] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19b23b80] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19e3bb40] Could not find ref with POC 15
[hevc @ 0000019e19be9ac0] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19be9ac0] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19fa63c0] Could not find ref with POC 17
[hevc @ 0000019e19cafb40] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19cafb40] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e1933c140] Could not find ref with POC 19
[hevc @ 0000019e1a132b80] Could not find ref with POC 21
[hevc @ 0000019e19d75a80] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19d75a80] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19e3bb40] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19e3bb40] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e1a1f8ac0] Could not find ref with POC 23
[hevc @ 0000019e19365800] Could not find ref with POC 25
[hevc @ 0000019e19fa63c0] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19fa63c0] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19375ec0] Could not find ref with POC 27
[hevc @ 0000019e1933c140] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e1933c140] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e1a132b80] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e1a132b80] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19376280] Could not find ref with POC 29
[hevc @ 0000019e1a1f8ac0] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e1a1f8ac0] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e17175a40] Could not find ref with POC 31
[hevc @ 0000019e19365800] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19365800] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e196dec00] Could not find ref with POC 33
[hevc @ 0000019e18dd2980] Could not find ref with POC 35
[hevc @ 0000019e19a5dc40] Could not find ref with POC 37
[hevc @ 0000019e19375ec0] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19375ec0] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19376280] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19376280] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e17175a40] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e17175a40] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19b23b80] Could not find ref with POC 39
[hevc @ 0000019e19be9ac0] Could not find ref with POC 41
[hevc @ 0000019e196dec00] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e196dec00] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19cafb40] Could not find ref with POC 43
[hevc @ 0000019e19d75a80] Could not find ref with POC 45
[hevc @ 0000019e18dd2980] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e18dd2980] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19a5dc40] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19a5dc40] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19b23b80] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19b23b80] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19e3bb40] Could not find ref with POC 47
[hevc @ 0000019e19be9ac0] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19be9ac0] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19fa63c0] Could not find ref with POC 49
[hevc @ 0000019e1933c140] Could not find ref with POC 51
[hevc @ 0000019e1a132b80] Could not find ref with POC 53
[hevc @ 0000019e19cafb40] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19cafb40] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19d75a80] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19d75a80] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19e3bb40] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19e3bb40] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e1a1f8ac0] Could not find ref with POC 55
[hevc @ 0000019e19fa63c0] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19fa63c0] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19365800] Could not find ref with POC 57
[hevc @ 0000019e1933c140] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e1933c140] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19375ec0] Could not find ref with POC 59
[hevc @ 0000019e19376280] Could not find ref with POC 61
[hevc @ 0000019e1a132b80] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e1a132b80] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e1a1f8ac0] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e1a1f8ac0] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19365800] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19365800] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e196dec00] Could not find ref with POC 65
[hevc @ 0000019e19375ec0] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19375ec0] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e18dd2980] Could not find ref with POC 67
[hevc @ 0000019e19a5dc40] Could not find ref with POC 69
[hevc @ 0000019e19376280] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19376280] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19b23b80] Could not find ref with POC 71
[hevc @ 0000019e17175a40] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e17175a40] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19be9ac0] Could not find ref with POC 73
[hevc @ 0000019e196dec00] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e196dec00] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19cafb40] Could not find ref with POC 75
[hevc @ 0000019e18dd2980] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e18dd2980] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19d75a80] Could not find ref with POC 77
[hevc @ 0000019e19e3bb40] Could not find ref with POC 79
[hevc @ 0000019e19a5dc40] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19a5dc40] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19fa63c0] Could not find ref with POC 81
[hevc @ 0000019e1933c140] Could not find ref with POC 83
[hevc @ 0000019e19b23b80] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19b23b80] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e1a132b80] Could not find ref with POC 85
[hevc @ 0000019e19be9ac0] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19be9ac0] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19cafb40] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19cafb40] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e1a1f8ac0] Could not find ref with POC 87
[hevc @ 0000019e19365800] Could not find ref with POC 89
[hevc @ 0000019e19d75a80] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19d75a80] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19375ec0] Could not find ref with POC 91
[hevc @ 0000019e19376280] Could not find ref with POC 93
[hevc @ 0000019e19e3bb40] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19e3bb40] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19fa63c0] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19fa63c0] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e1933c140] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e1933c140] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e17175a40] Could not find ref with POC 95
[hevc @ 0000019e196dec00] Could not find ref with POC 97
[hevc @ 0000019e18dd2980] Could not find ref with POC 99
[hevc @ 0000019e1a132b80] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e1a132b80] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19a5dc40] Could not find ref with POC 101
[hevc @ 0000019e1a1f8ac0] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e1a1f8ac0] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19365800] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19365800] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19b23b80] Could not find ref with POC 103
[hevc @ 0000019e19375ec0] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19375ec0] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19be9ac0] Could not find ref with POC 105
[hevc @ 0000019e19cafb40] Could not find ref with POC 107
[hevc @ 0000019e19376280] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19376280] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19d75a80] Could not find ref with POC 109
[hevc @ 0000019e17175a40] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e17175a40] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e196dec00] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e196dec00] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19e3bb40] Could not find ref with POC 111
[hevc @ 0000019e19fa63c0] Could not find ref with POC 113
[hevc @ 0000019e1933c140] Could not find ref with POC 115
[hevc @ 0000019e18dd2980] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e18dd2980] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e1a132b80] Could not find ref with POC 117
frame= 477 fps= 77 q=41.0 size= 8704KiB time=00:00:15.84
bitrate=4498.9kbits/s speed=2.56x
[hevc @ 0000019e19a5dc40] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19a5dc40] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19b23b80] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19b23b80] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19be9ac0] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19be9ac0] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19cafb40] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19cafb40] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19d75a80] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19d75a80] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19e3bb40] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19e3bb40] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19fa63c0] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19fa63c0] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e1933c140] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e1933c140] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e1a132b80] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e1a132b80] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e1a1f8ac0] Could not find ref with POC 119
[hevc @ 0000019e19365800] Could not find ref with POC 121
[hevc @ 0000019e19375ec0] Could not find ref with POC 123
[hevc @ 0000019e19376280] Could not find ref with POC 125
[hevc @ 0000019e1a1f8ac0] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e1a1f8ac0] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19365800] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19365800] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e196dec00] Could not find ref with POC 1
[hevc @ 0000019e19375ec0] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19375ec0] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e18dd2980] Could not find ref with POC 3
[hevc @ 0000019e19a5dc40] Could not find ref with POC 5
[hevc @ 0000019e19376280] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19376280] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19b23b80] Could not find ref with POC 7
[hevc @ 0000019e19be9ac0] Could not find ref with POC 9
[hevc @ 0000019e19cafb40] Could not find ref with POC 11
[hevc @ 0000019e19d75a80] Could not find ref with POC 13
[hevc @ 0000019e19e3bb40] Could not find ref with POC 15
[hevc @ 0000019e19fa63c0] Could not find ref with POC 17
[hevc @ 0000019e1933c140] Could not find ref with POC 19
[hevc @ 0000019e1a132b80] Could not find ref with POC 21
[hevc @ 0000019e17175a40] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e17175a40] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e196dec00] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e196dec00] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e18dd2980] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e18dd2980] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19a5dc40] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19a5dc40] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e1a1f8ac0] Could not find ref with POC 23
[hevc @ 0000019e19365800] Could not find ref with POC 25
[hevc @ 0000019e19375ec0] Could not find ref with POC 27
[hevc @ 0000019e19376280] Could not find ref with POC 29
[hevc @ 0000019e19b23b80] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19b23b80] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19be9ac0] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19be9ac0] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19cafb40] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19cafb40] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e17175a40] Could not find ref with POC 31
[hevc @ 0000019e196dec00] Could not find ref with POC 33
[hevc @ 0000019e18dd2980] Could not find ref with POC 35
[hevc @ 0000019e19d75a80] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19d75a80] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19a5dc40] Could not find ref with POC 37
[hevc @ 0000019e19e3bb40] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19e3bb40] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19fa63c0] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19fa63c0] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19b23b80] Could not find ref with POC 39
[hevc @ 0000019e1933c140] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e1933c140] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19be9ac0] Could not find ref with POC 41
[hevc @ 0000019e19cafb40] Could not find ref with POC 43
[hevc @ 0000019e19d75a80] Could not find ref with POC 45
[hevc @ 0000019e1a132b80] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e1a132b80] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19e3bb40] Could not find ref with POC 47
[hevc @ 0000019e1a1f8ac0] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e1a1f8ac0] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19fa63c0] Could not find ref with POC 49
[hevc @ 0000019e1933c140] Could not find ref with POC 51
[hevc @ 0000019e1a132b80] Could not find ref with POC 53
[hevc @ 0000019e19365800] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19365800] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19375ec0] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19375ec0] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19376280] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19376280] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e17175a40] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e17175a40] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e196dec00] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e196dec00] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e18dd2980] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e18dd2980] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19a5dc40] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19a5dc40] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19b23b80] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19b23b80] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19be9ac0] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19be9ac0] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e1a1f8ac0] Could not find ref with POC 55
[hevc @ 0000019e19365800] Could not find ref with POC 57
[hevc @ 0000019e19cafb40] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19cafb40] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19375ec0] Could not find ref with POC 59
[hevc @ 0000019e19376280] Could not find ref with POC 61
[hevc @ 0000019e19d75a80] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19d75a80] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19e3bb40] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19e3bb40] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e196dec00] Could not find ref with POC 65
[hevc @ 0000019e19fa63c0] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19fa63c0] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e18dd2980] Could not find ref with POC 67
[hevc @ 0000019e19a5dc40] Could not find ref with POC 69
[hevc @ 0000019e1933c140] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e1933c140] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19b23b80] Could not find ref with POC 71
[hevc @ 0000019e19be9ac0] Could not find ref with POC 73
[hevc @ 0000019e1a132b80] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e1a132b80] Skipping invalid undecodable NALU: 1
frame= 519 fps= 77 q=41.0 size= 9216KiB time=00:00:17.25
bitrate=4376.5kbits/s speed=2.57x
[hevc @ 0000019e19cafb40] Could not find ref with POC 75
[hevc @ 0000019e19d75a80] Could not find ref with POC 77
[hevc @ 0000019e1a1f8ac0] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e1a1f8ac0] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19365800] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19365800] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19e3bb40] Could not find ref with POC 79
[hevc @ 0000019e19fa63c0] Could not find ref with POC 81
[hevc @ 0000019e1933c140] Could not find ref with POC 83
[hevc @ 0000019e19375ec0] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19375ec0] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e1a132b80] Could not find ref with POC 85
[hevc @ 0000019e17175a40] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e17175a40] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19376280] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19376280] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e196dec00] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e196dec00] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e18dd2980] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e18dd2980] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e1a1f8ac0] Could not find ref with POC 87
[hevc @ 0000019e19365800] Could not find ref with POC 89
[hevc @ 0000019e19a5dc40] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19a5dc40] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19375ec0] Could not find ref with POC 91
[hevc @ 0000019e19376280] Could not find ref with POC 93
[hevc @ 0000019e19b23b80] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19b23b80] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19be9ac0] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19be9ac0] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e17175a40] Could not find ref with POC 95
[hevc @ 0000019e196dec00] Could not find ref with POC 97
[hevc @ 0000019e18dd2980] Could not find ref with POC 99
[hevc @ 0000019e19cafb40] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19cafb40] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19a5dc40] Could not find ref with POC 101
[hevc @ 0000019e19d75a80] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19d75a80] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19e3bb40] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19e3bb40] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19b23b80] Could not find ref with POC 103
[hevc @ 0000019e19be9ac0] Could not find ref with POC 105
[hevc @ 0000019e19cafb40] Could not find ref with POC 107
[hevc @ 0000019e19fa63c0] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19fa63c0] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19d75a80] Could not find ref with POC 109
[hevc @ 0000019e1933c140] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e1933c140] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e1a132b80] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e1a132b80] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e1a1f8ac0] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e1a1f8ac0] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19e3bb40] Could not find ref with POC 111
[hevc @ 0000019e19fa63c0] Could not find ref with POC 113
[hevc @ 0000019e1933c140] Could not find ref with POC 115
[hevc @ 0000019e1a132b80] Could not find ref with POC 117
[hevc @ 0000019e19365800] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19365800] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19375ec0] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19375ec0] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19376280] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19376280] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e17175a40] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e17175a40] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e196dec00] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e196dec00] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e18dd2980] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e18dd2980] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19a5dc40] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19a5dc40] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e1a1f8ac0] Could not find ref with POC 119
[hevc @ 0000019e19b23b80] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19b23b80] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19365800] Could not find ref with POC 121
[hevc @ 0000019e19375ec0] Could not find ref with POC 123
[hevc @ 0000019e19be9ac0] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19be9ac0] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19376280] Could not find ref with POC 125
[hevc @ 0000019e19cafb40] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19cafb40] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19d75a80] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19d75a80] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e196dec00] Could not find ref with POC 1
[hevc @ 0000019e19e3bb40] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19e3bb40] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e18dd2980] Could not find ref with POC 3
[hevc @ 0000019e19a5dc40] Could not find ref with POC 5
[hevc @ 0000019e19b23b80] Could not find ref with POC 7
[hevc @ 0000019e19fa63c0] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19fa63c0] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19be9ac0] Could not find ref with POC 9
[hevc @ 0000019e1933c140] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e1933c140] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19cafb40] Could not find ref with POC 11
[hevc @ 0000019e19d75a80] Could not find ref with POC 13
[hevc @ 0000019e1a132b80] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e1a132b80] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e1a1f8ac0] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e1a1f8ac0] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19e3bb40] Could not find ref with POC 15
[hevc @ 0000019e19fa63c0] Could not find ref with POC 17
[hevc @ 0000019e1933c140] Could not find ref with POC 19
[hevc @ 0000019e17175a40] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e17175a40] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e1a132b80] Could not find ref with POC 21
[hevc @ 0000019e19365800] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19365800] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e196dec00] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e196dec00] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e18dd2980] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e18dd2980] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19375ec0] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19375ec0] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19376280] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19376280] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19a5dc40] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19a5dc40] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e1a1f8ac0] Could not find ref with POC 23
[hevc @ 0000019e19365800] Could not find ref with POC 25
[hevc @ 0000019e19b23b80] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19b23b80] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19375ec0] Could not find ref with POC 27
[hevc @ 0000019e19376280] Could not find ref with POC 29
[hevc @ 0000019e19be9ac0] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19be9ac0] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19cafb40] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19cafb40] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19d75a80] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19d75a80] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e17175a40] Could not find ref with POC 31
[hevc @ 0000019e196dec00] Could not find ref with POC 33
[hevc @ 0000019e18dd2980] Could not find ref with POC 35
[hevc @ 0000019e19a5dc40] Could not find ref with POC 37
[hevc @ 0000019e19e3bb40] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19e3bb40] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19fa63c0] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19fa63c0] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e1933c140] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e1933c140] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19b23b80] Could not find ref with POC 39
[hevc @ 0000019e19be9ac0] Could not find ref with POC 41
[hevc @ 0000019e1a132b80] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e1a132b80] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19cafb40] Could not find ref with POC 43
[hevc @ 0000019e19d75a80] Could not find ref with POC 45
frame= 569 fps= 79 q=41.0 size= 9728KiB time=00:00:18.91
bitrate=4212.3kbits/s speed=2.62x
[hevc @ 0000019e1a1f8ac0] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e1a1f8ac0] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19365800] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19365800] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19e3bb40] Could not find ref with POC 47
[hevc @ 0000019e19fa63c0] Could not find ref with POC 49
[hevc @ 0000019e19375ec0] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19375ec0] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e1933c140] Could not find ref with POC 51
[hevc @ 0000019e1a132b80] Could not find ref with POC 53
[hevc @ 0000019e19376280] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19376280] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e17175a40] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e17175a40] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e196dec00] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e196dec00] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e18dd2980] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e18dd2980] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19a5dc40] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19a5dc40] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19b23b80] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19b23b80] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e1a1f8ac0] Could not find ref with POC 55
[hevc @ 0000019e19365800] Could not find ref with POC 57
[hevc @ 0000019e19be9ac0] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19be9ac0] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19375ec0] Could not find ref with POC 59
[hevc @ 0000019e19376280] Could not find ref with POC 61
[hevc @ 0000019e19cafb40] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19cafb40] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19d75a80] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19d75a80] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19e3bb40] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19e3bb40] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19fa63c0] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19fa63c0] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e196dec00] Could not find ref with POC 65
[hevc @ 0000019e1933c140] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e1933c140] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e18dd2980] Could not find ref with POC 67
[hevc @ 0000019e19a5dc40] Could not find ref with POC 69
[hevc @ 0000019e19b23b80] Could not find ref with POC 71
[hevc @ 0000019e1a132b80] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e1a132b80] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19be9ac0] Could not find ref with POC 73
[hevc @ 0000019e1a1f8ac0] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e1a1f8ac0] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19cafb40] Could not find ref with POC 75
[hevc @ 0000019e19d75a80] Could not find ref with POC 77
[hevc @ 0000019e19365800] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19365800] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19375ec0] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19375ec0] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e17175a40] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e17175a40] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19e3bb40] Could not find ref with POC 79
[hevc @ 0000019e196dec00] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e196dec00] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19376280] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19376280] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19fa63c0] Could not find ref with POC 81
[hevc @ 0000019e1933c140] Could not find ref with POC 83
[hevc @ 0000019e18dd2980] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e18dd2980] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e1a132b80] Could not find ref with POC 85
[hevc @ 0000019e19a5dc40] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19a5dc40] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19b23b80] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19b23b80] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e1a1f8ac0] Could not find ref with POC 87
[hevc @ 0000019e19365800] Could not find ref with POC 89
[hevc @ 0000019e19375ec0] Could not find ref with POC 91
[hevc @ 0000019e19be9ac0] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19be9ac0] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19cafb40] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19cafb40] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19d75a80] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19d75a80] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19376280] Could not find ref with POC 93
[hevc @ 0000019e19e3bb40] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19e3bb40] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19fa63c0] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19fa63c0] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e17175a40] Could not find ref with POC 95
[hevc @ 0000019e1933c140] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e1933c140] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e196dec00] Could not find ref with POC 97
[hevc @ 0000019e18dd2980] Could not find ref with POC 99
[hevc @ 0000019e1a132b80] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e1a132b80] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19a5dc40] Could not find ref with POC 101
[hevc @ 0000019e19b23b80] Could not find ref with POC 103
[hevc @ 0000019e1a1f8ac0] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e1a1f8ac0] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19be9ac0] Could not find ref with POC 105
[hevc @ 0000019e19cafb40] Could not find ref with POC 107
[hevc @ 0000019e19365800] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19365800] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19d75a80] Could not find ref with POC 109
[hevc @ 0000019e19375ec0] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19375ec0] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19376280] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19376280] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e17175a40] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e17175a40] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19e3bb40] Could not find ref with POC 111
[hevc @ 0000019e196dec00] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e196dec00] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19fa63c0] Could not find ref with POC 113
[hevc @ 0000019e18dd2980] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e18dd2980] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e1933c140] Could not find ref with POC 115
[hevc @ 0000019e1a132b80] Could not find ref with POC 117
[hevc @ 0000019e19a5dc40] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19a5dc40] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e1a1f8ac0] Could not find ref with POC 119
[hevc @ 0000019e19b23b80] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19b23b80] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19365800] Could not find ref with POC 121
[hevc @ 0000019e19be9ac0] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19be9ac0] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19375ec0] Could not find ref with POC 123
[hevc @ 0000019e19376280] Could not find ref with POC 125
[hevc @ 0000019e19cafb40] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19cafb40] Skipping invalid undecodable NALU: 1
frame= 609 fps= 79 q=41.0 size= 10240KiB time=00:00:20.25
bitrate=4141.8kbits/s speed=2.62x
[hevc @ 0000019e19d75a80] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19d75a80] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19e3bb40] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19e3bb40] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19fa63c0] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19fa63c0] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e1933c140] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e1933c140] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e196dec00] Could not find ref with POC 1
[hevc @ 0000019e1a132b80] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e1a132b80] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e18dd2980] Could not find ref with POC 3
[hevc @ 0000019e19a5dc40] Could not find ref with POC 5
[hevc @ 0000019e1a1f8ac0] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e1a1f8ac0] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19365800] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19365800] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19375ec0] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19375ec0] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19b23b80] Could not find ref with POC 7
[hevc @ 0000019e17175a40] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19376280] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19376280] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e17175a40] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e196dec00] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e196dec00] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19be9ac0] Could not find ref with POC 9
[hevc @ 0000019e19cafb40] Could not find ref with POC 11
[hevc @ 0000019e18dd2980] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e18dd2980] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19d75a80] Could not find ref with POC 13
[hevc @ 0000019e19a5dc40] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19a5dc40] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19e3bb40] Could not find ref with POC 15
[hevc @ 0000019e19b23b80] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19b23b80] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19be9ac0] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19be9ac0] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19fa63c0] Could not find ref with POC 17
[hevc @ 0000019e19cafb40] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19cafb40] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e1933c140] Could not find ref with POC 19
[hevc @ 0000019e1a132b80] Could not find ref with POC 21
[hevc @ 0000019e19d75a80] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19d75a80] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19e3bb40] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19e3bb40] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19fa63c0] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19fa63c0] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e1933c140] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e1933c140] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e1a1f8ac0] Could not find ref with POC 23
[hevc @ 0000019e19365800] Could not find ref with POC 25
[hevc @ 0000019e1a132b80] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e1a132b80] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19375ec0] Could not find ref with POC 27
[hevc @ 0000019e19376280] Could not find ref with POC 29
[hevc @ 0000019e17175a40] Could not find ref with POC 31
[hevc @ 0000019e196dec00] Could not find ref with POC 33
[hevc @ 0000019e18dd2980] Could not find ref with POC 35
[hevc @ 0000019e19a5dc40] Could not find ref with POC 37
[hevc @ 0000019e1a1f8ac0] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e1a1f8ac0] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19365800] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19365800] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19b23b80] Could not find ref with POC 39
[hevc @ 0000019e19375ec0] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19375ec0] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19be9ac0] Could not find ref with POC 41
[hevc @ 0000019e19cafb40] Could not find ref with POC 43
[hevc @ 0000019e19d75a80] Could not find ref with POC 45
[hevc @ 0000019e19376280] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19376280] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e17175a40] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e17175a40] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e196dec00] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e196dec00] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19e3bb40] Could not find ref with POC 47
[hevc @ 0000019e19fa63c0] Could not find ref with POC 49
[hevc @ 0000019e1933c140] Could not find ref with POC 51
[hevc @ 0000019e18dd2980] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e18dd2980] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e1a132b80] Could not find ref with POC 53
[hevc @ 0000019e19a5dc40] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19a5dc40] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19b23b80] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19b23b80] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19be9ac0] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19be9ac0] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19cafb40] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19cafb40] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e1a1f8ac0] Could not find ref with POC 55
[hevc @ 0000019e19d75a80] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19d75a80] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19e3bb40] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19e3bb40] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19fa63c0] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19fa63c0] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e1933c140] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e1933c140] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e1a132b80] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e1a132b80] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19365800] Could not find ref with POC 57
[hevc @ 0000019e1a1f8ac0] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e1a1f8ac0] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19365800] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19365800] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19375ec0] Could not find ref with POC 59
frame= 640 fps= 77 q=41.0 size= 10752KiB time=00:00:21.28
bitrate=4137.6kbits/s speed=2.58x
[hevc @ 0000019e19375ec0] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19375ec0] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19376280] Could not find ref with POC 61
[hevc @ 0000019e196dec00] Could not find ref with POC 65
[hevc @ 0000019e19376280] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19376280] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e18dd2980] Could not find ref with POC 67
[hevc @ 0000019e19a5dc40] Could not find ref with POC 69
[hevc @ 0000019e19b23b80] Could not find ref with POC 71
[hevc @ 0000019e19be9ac0] Could not find ref with POC 73
[hevc @ 0000019e19cafb40] Could not find ref with POC 75
[hevc @ 0000019e17175a40] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e17175a40] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19d75a80] Could not find ref with POC 77
[hevc @ 0000019e196dec00] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e196dec00] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19e3bb40] Could not find ref with POC 79
[hevc @ 0000019e18dd2980] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e18dd2980] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19a5dc40] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19a5dc40] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19fa63c0] Could not find ref with POC 81
[hevc @ 0000019e19b23b80] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19b23b80] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e1933c140] Could not find ref with POC 83
[hevc @ 0000019e19be9ac0] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19be9ac0] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e1a132b80] Could not find ref with POC 85
[hevc @ 0000019e1a1f8ac0] Could not find ref with POC 87
[hevc @ 0000019e19cafb40] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19cafb40] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19d75a80] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19d75a80] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19365800] Could not find ref with POC 89
[hevc @ 0000019e19e3bb40] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19e3bb40] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19fa63c0] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19fa63c0] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19375ec0] Could not find ref with POC 91
[hevc @ 0000019e19376280] Could not find ref with POC 93
[hevc @ 0000019e17175a40] Could not find ref with POC 95
[hevc @ 0000019e1933c140] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e1933c140] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e196dec00] Could not find ref with POC 97
[hevc @ 0000019e18dd2980] Could not find ref with POC 99
[hevc @ 0000019e19a5dc40] Could not find ref with POC 101
[hevc @ 0000019e1a132b80] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e1a132b80] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e1a1f8ac0] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e1a1f8ac0] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19365800] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19365800] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19375ec0] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19375ec0] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19b23b80] Could not find ref with POC 103
[hevc @ 0000019e19be9ac0] Could not find ref with POC 105
[hevc @ 0000019e19376280] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19376280] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19cafb40] Could not find ref with POC 107
[hevc @ 0000019e19d75a80] Could not find ref with POC 109
[hevc @ 0000019e17175a40] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e17175a40] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e196dec00] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e196dec00] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e18dd2980] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e18dd2980] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19e3bb40] Could not find ref with POC 111
[hevc @ 0000019e19fa63c0] Could not find ref with POC 113
[hevc @ 0000019e1933c140] Could not find ref with POC 115
[hevc @ 0000019e19a5dc40] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19a5dc40] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e1a132b80] Could not find ref with POC 117
[hevc @ 0000019e19b23b80] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19b23b80] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19be9ac0] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19be9ac0] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19cafb40] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19cafb40] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e1a1f8ac0] Could not find ref with POC 119
[hevc @ 0000019e19d75a80] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19d75a80] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19e3bb40] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19e3bb40] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19365800] Could not find ref with POC 121
[hevc @ 0000019e19fa63c0] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19fa63c0] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19375ec0] Could not find ref with POC 123
[hevc @ 0000019e19376280] Could not find ref with POC 125
[hevc @ 0000019e1933c140] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e1933c140] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e1a132b80] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e1a132b80] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e196dec00] Could not find ref with POC 1
[hevc @ 0000019e1a1f8ac0] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e1a1f8ac0] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19365800] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19365800] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e18dd2980] Could not find ref with POC 3
[hevc @ 0000019e19375ec0] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19375ec0] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19a5dc40] Could not find ref with POC 5
[hevc @ 0000019e19376280] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19376280] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19b23b80] Could not find ref with POC 7
[hevc @ 0000019e17175a40] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e17175a40] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19be9ac0] Could not find ref with POC 9
[hevc @ 0000019e196dec00] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e196dec00] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19cafb40] Could not find ref with POC 11
[hevc @ 0000019e19d75a80] Could not find ref with POC 13
[hevc @ 0000019e19e3bb40] Could not find ref with POC 15
[hevc @ 0000019e18dd2980] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e18dd2980] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19fa63c0] Could not find ref with POC 17
frame= 683 fps= 78 q=41.0 size= 11520KiB time=00:00:22.72
bitrate=4153.2kbits/s speed=2.59x
[hevc @ 0000019e1933c140] Could not find ref with POC 19
[hevc @ 0000019e19a5dc40] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19a5dc40] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e1a132b80] Could not find ref with POC 21
[hevc @ 0000019e19b23b80] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19b23b80] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19be9ac0] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19be9ac0] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19cafb40] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19cafb40] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19d75a80] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19d75a80] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19e3bb40] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19e3bb40] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e1a1f8ac0] Could not find ref with POC 23
[hevc @ 0000019e19365800] Could not find ref with POC 25
[hevc @ 0000019e19375ec0] Could not find ref with POC 27
[hevc @ 0000019e19fa63c0] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19fa63c0] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19376280] Could not find ref with POC 29
[hevc @ 0000019e17175a40] Could not find ref with POC 31
[hevc @ 0000019e196dec00] Could not find ref with POC 33
[hevc @ 0000019e1933c140] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e1933c140] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e18dd2980] Could not find ref with POC 35
[hevc @ 0000019e19a5dc40] Could not find ref with POC 37
[hevc @ 0000019e1a132b80] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e1a132b80] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e1a1f8ac0] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e1a1f8ac0] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19365800] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19365800] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19b23b80] Could not find ref with POC 39
[hevc @ 0000019e19375ec0] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19375ec0] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19be9ac0] Could not find ref with POC 41
[hevc @ 0000019e19cafb40] Could not find ref with POC 43
[hevc @ 0000019e19d75a80] Could not find ref with POC 45
[hevc @ 0000019e19376280] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19376280] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e17175a40] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e17175a40] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e196dec00] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e196dec00] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19e3bb40] Could not find ref with POC 47
[hevc @ 0000019e19fa63c0] Could not find ref with POC 49
[hevc @ 0000019e1933c140] Could not find ref with POC 51
[hevc @ 0000019e18dd2980] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e18dd2980] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e1a132b80] Could not find ref with POC 53
[hevc @ 0000019e19a5dc40] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19a5dc40] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19b23b80] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19b23b80] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e1a1f8ac0] Could not find ref with POC 55
[hevc @ 0000019e19be9ac0] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19be9ac0] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19cafb40] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19cafb40] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19365800] Could not find ref with POC 57
[hevc @ 0000019e19d75a80] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19d75a80] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19375ec0] Could not find ref with POC 59
[hevc @ 0000019e19376280] Could not find ref with POC 61
[hevc @ 0000019e19e3bb40] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19e3bb40] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e196dec00] Could not find ref with POC 65
[hevc @ 0000019e19fa63c0] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19fa63c0] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e1933c140] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e1933c140] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e18dd2980] Could not find ref with POC 67
[hevc @ 0000019e1a132b80] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e1a132b80] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19a5dc40] Could not find ref with POC 69
[hevc @ 0000019e1a1f8ac0] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e1a1f8ac0] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19b23b80] Could not find ref with POC 71
[hevc @ 0000019e19365800] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19365800] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19375ec0] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19375ec0] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19be9ac0] Could not find ref with POC 73
[hevc @ 0000019e17175a40] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e17175a40] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19376280] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19376280] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e196dec00] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e196dec00] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19cafb40] Could not find ref with POC 75
[hevc @ 0000019e19d75a80] Could not find ref with POC 77
[hevc @ 0000019e18dd2980] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e18dd2980] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19e3bb40] Could not find ref with POC 79
[hevc @ 0000019e19fa63c0] Could not find ref with POC 81
[hevc @ 0000019e19a5dc40] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19a5dc40] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e1933c140] Could not find ref with POC 83
[hevc @ 0000019e1a132b80] Could not find ref with POC 85
[hevc @ 0000019e19b23b80] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19b23b80] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19be9ac0] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19be9ac0] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19cafb40] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19cafb40] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19d75a80] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19d75a80] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19e3bb40] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19e3bb40] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e1a1f8ac0] Could not find ref with POC 87
[hevc @ 0000019e19fa63c0] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19fa63c0] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19365800] Could not find ref with POC 89
[hevc @ 0000019e19375ec0] Could not find ref with POC 91
[hevc @ 0000019e19376280] Could not find ref with POC 93
[hevc @ 0000019e1933c140] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e1933c140] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e17175a40] Could not find ref with POC 95
[hevc @ 0000019e196dec00] Could not find ref with POC 97
[hevc @ 0000019e18dd2980] Could not find ref with POC 99
[hevc @ 0000019e19a5dc40] Could not find ref with POC 101
[hevc @ 0000019e1a132b80] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e1a132b80] Skipping invalid undecodable NALU: 1
frame= 725 fps= 78 q=41.0 size= 12288KiB time=00:00:24.12
bitrate=4172.7kbits/s speed= 2.6x
[hevc @ 0000019e1a1f8ac0] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e1a1f8ac0] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19365800] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19365800] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19b23b80] Could not find ref with POC 103
[hevc @ 0000019e19be9ac0] Could not find ref with POC 105
[hevc @ 0000019e19cafb40] Could not find ref with POC 107
[hevc @ 0000019e19375ec0] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19375ec0] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19d75a80] Could not find ref with POC 109
[hevc @ 0000019e19376280] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19376280] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e17175a40] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e17175a40] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19e3bb40] Could not find ref with POC 111
[hevc @ 0000019e19fa63c0] Could not find ref with POC 113
[hevc @ 0000019e196dec00] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e196dec00] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e1933c140] Could not find ref with POC 115
[hevc @ 0000019e1a132b80] Could not find ref with POC 117
[hevc @ 0000019e18dd2980] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e18dd2980] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19a5dc40] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19a5dc40] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19b23b80] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19b23b80] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e1a1f8ac0] Could not find ref with POC 119
[hevc @ 0000019e19be9ac0] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19be9ac0] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19365800] Could not find ref with POC 121
[hevc @ 0000019e19375ec0] Could not find ref with POC 123
[hevc @ 0000019e19376280] Could not find ref with POC 125
[hevc @ 0000019e19cafb40] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19cafb40] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19d75a80] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19d75a80] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19e3bb40] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19e3bb40] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19fa63c0] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19fa63c0] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e196dec00] Could not find ref with POC 1
[hevc @ 0000019e1933c140] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e1933c140] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e18dd2980] Could not find ref with POC 3
[hevc @ 0000019e1a132b80] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e1a132b80] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e1a1f8ac0] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e1a1f8ac0] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19365800] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19365800] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19375ec0] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19375ec0] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19376280] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19376280] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e17175a40] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e17175a40] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e196dec00] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e196dec00] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19a5dc40] Could not find ref with POC 5
[hevc @ 0000019e19b23b80] Could not find ref with POC 7
[hevc @ 0000019e18dd2980] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e18dd2980] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19a5dc40] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19a5dc40] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19b23b80] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19b23b80] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19be9ac0] Could not find ref with POC 9
[hevc @ 0000019e19be9ac0] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19be9ac0] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19cafb40] Could not find ref with POC 11
[hevc @ 0000019e19d75a80] Could not find ref with POC 13
[hevc @ 0000019e19e3bb40] Could not find ref with POC 15
[hevc @ 0000019e19cafb40] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19cafb40] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19fa63c0] Could not find ref with POC 17
[hevc @ 0000019e19d75a80] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19d75a80] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e1933c140] Could not find ref with POC 19
[hevc @ 0000019e1a132b80] Could not find ref with POC 21
[hevc @ 0000019e19e3bb40] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19e3bb40] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e1a1f8ac0] Could not find ref with POC 23
[hevc @ 0000019e19fa63c0] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19fa63c0] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19365800] Could not find ref with POC 25
[hevc @ 0000019e1933c140] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e1933c140] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19375ec0] Could not find ref with POC 27
[hevc @ 0000019e1a132b80] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e1a132b80] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19376280] Could not find ref with POC 29
[hevc @ 0000019e1a1f8ac0] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e1a1f8ac0] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e17175a40] Could not find ref with POC 31
[hevc @ 0000019e196dec00] Could not find ref with POC 33
[hevc @ 0000019e18dd2980] Could not find ref with POC 35
[hevc @ 0000019e19365800] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19365800] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19a5dc40] Could not find ref with POC 37
[hevc @ 0000019e19375ec0] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19375ec0] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19376280] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19376280] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19b23b80] Could not find ref with POC 39
[hevc @ 0000019e19be9ac0] Could not find ref with POC 41
[hevc @ 0000019e17175a40] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e17175a40] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19cafb40] Could not find ref with POC 43
[hevc @ 0000019e19d75a80] Could not find ref with POC 45
[hevc @ 0000019e196dec00] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e196dec00] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e18dd2980] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e18dd2980] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19e3bb40] Could not find ref with POC 47
[hevc @ 0000019e19fa63c0] Could not find ref with POC 49
[hevc @ 0000019e19a5dc40] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19a5dc40] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e1933c140] Could not find ref with POC 51
[hevc @ 0000019e1a132b80] Could not find ref with POC 53
[hevc @ 0000019e19b23b80] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19b23b80] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19be9ac0] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19be9ac0] Skipping invalid undecodable NALU: 1
frame= 765 fps= 78 q=41.0 size= 12800KiB time=00:00:25.45
bitrate=4118.7kbits/s speed=2.59x
[hevc @ 0000019e1a1f8ac0] Could not find ref with POC 55
[hevc @ 0000019e19cafb40] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19cafb40] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19365800] Could not find ref with POC 57
[hevc @ 0000019e19375ec0] Could not find ref with POC 59
[hevc @ 0000019e19d75a80] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19d75a80] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19e3bb40] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19e3bb40] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19fa63c0] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19fa63c0] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e1933c140] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e1933c140] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e1a132b80] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e1a132b80] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e1a1f8ac0] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e1a1f8ac0] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19365800] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19365800] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19375ec0] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19375ec0] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19376280] Could not find ref with POC 61
[hevc @ 0000019e19376280] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19376280] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e196dec00] Could not find ref with POC 65
[hevc @ 0000019e17175a40] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e17175a40] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e18dd2980] Could not find ref with POC 67
[hevc @ 0000019e196dec00] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e196dec00] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19a5dc40] Could not find ref with POC 69
[hevc @ 0000019e19b23b80] Could not find ref with POC 71
[hevc @ 0000019e19be9ac0] Could not find ref with POC 73
[hevc @ 0000019e18dd2980] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e18dd2980] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19cafb40] Could not find ref with POC 75
[hevc @ 0000019e19a5dc40] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19a5dc40] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19b23b80] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19b23b80] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19d75a80] Could not find ref with POC 77
[hevc @ 0000019e19be9ac0] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19be9ac0] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19e3bb40] Could not find ref with POC 79
[hevc @ 0000019e19cafb40] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19cafb40] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19fa63c0] Could not find ref with POC 81
[hevc @ 0000019e1933c140] Could not find ref with POC 83
[hevc @ 0000019e19d75a80] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19d75a80] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e1a132b80] Could not find ref with POC 85
[hevc @ 0000019e19e3bb40] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19e3bb40] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e1a1f8ac0] Could not find ref with POC 87
[hevc @ 0000019e19fa63c0] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19fa63c0] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e1933c140] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e1933c140] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19365800] Could not find ref with POC 89
[hevc @ 0000019e1a132b80] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e1a132b80] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e1a1f8ac0] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e1a1f8ac0] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19365800] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19365800] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19375ec0] Could not find ref with POC 91
[hevc @ 0000019e19376280] Could not find ref with POC 93
[hevc @ 0000019e17175a40] Could not find ref with POC 95
[hevc @ 0000019e196dec00] Could not find ref with POC 97
[hevc @ 0000019e18dd2980] Could not find ref with POC 99
[hevc @ 0000019e19a5dc40] Could not find ref with POC 101
[hevc @ 0000019e19375ec0] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19375ec0] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19376280] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19376280] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e17175a40] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e17175a40] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19b23b80] Could not find ref with POC 103
[hevc @ 0000019e19be9ac0] Could not find ref with POC 105
[hevc @ 0000019e19cafb40] Could not find ref with POC 107
[hevc @ 0000019e19d75a80] Could not find ref with POC 109
[hevc @ 0000019e196dec00] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e196dec00] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e18dd2980] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e18dd2980] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19a5dc40] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19a5dc40] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19e3bb40] Could not find ref with POC 111
[hevc @ 0000019e19fa63c0] Could not find ref with POC 113
[hevc @ 0000019e19b23b80] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19b23b80] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e1933c140] Could not find ref with POC 115
[hevc @ 0000019e19be9ac0] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19be9ac0] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19cafb40] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19cafb40] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19d75a80] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19d75a80] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e1a132b80] Could not find ref with POC 117
[hevc @ 0000019e19e3bb40] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19e3bb40] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e1a1f8ac0] Could not find ref with POC 119
[hevc @ 0000019e19fa63c0] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19fa63c0] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19365800] Could not find ref with POC 121
[hevc @ 0000019e1933c140] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e1933c140] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e1a132b80] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e1a132b80] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19375ec0] Could not find ref with POC 123
[hevc @ 0000019e19376280] Could not find ref with POC 125
[hevc @ 0000019e1a1f8ac0] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e1a1f8ac0] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19365800] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19365800] Skipping invalid undecodable NALU: 1
frame= 802 fps= 78 q=41.0 size= 13568KiB time=00:00:26.69
bitrate=4163.9kbits/s speed=2.58x
[hevc @ 0000019e19375ec0] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19375ec0] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19376280] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19376280] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e196dec00] Could not find ref with POC 1
[hevc @ 0000019e18dd2980] Could not find ref with POC 3
[hevc @ 0000019e19a5dc40] Could not find ref with POC 5
[hevc @ 0000019e19b23b80] Could not find ref with POC 7
[hevc @ 0000019e19be9ac0] Could not find ref with POC 9
[hevc @ 0000019e17175a40] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e17175a40] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19cafb40] Could not find ref with POC 11
[hevc @ 0000019e19d75a80] Could not find ref with POC 13
[hevc @ 0000019e196dec00] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e196dec00] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e18dd2980] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e18dd2980] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19e3bb40] Could not find ref with POC 15
[hevc @ 0000019e19fa63c0] Could not find ref with POC 17
[hevc @ 0000019e19a5dc40] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19a5dc40] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e1933c140] Could not find ref with POC 19
[hevc @ 0000019e1a132b80] Could not find ref with POC 21
[hevc @ 0000019e19b23b80] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19b23b80] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19be9ac0] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19be9ac0] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19cafb40] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19cafb40] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19d75a80] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19d75a80] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19e3bb40] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19e3bb40] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19fa63c0] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19fa63c0] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e1a1f8ac0] Could not find ref with POC 23
[hevc @ 0000019e19365800] Could not find ref with POC 25
[hevc @ 0000019e19375ec0] Could not find ref with POC 27
[hevc @ 0000019e19376280] Could not find ref with POC 29
[hevc @ 0000019e1933c140] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e1933c140] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e17175a40] Could not find ref with POC 31
[hevc @ 0000019e196dec00] Could not find ref with POC 33
[hevc @ 0000019e18dd2980] Could not find ref with POC 35
[hevc @ 0000019e19a5dc40] Could not find ref with POC 37
[hevc @ 0000019e1a132b80] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e1a132b80] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e1a1f8ac0] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e1a1f8ac0] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19365800] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19365800] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19b23b80] Could not find ref with POC 39
[hevc @ 0000019e19375ec0] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19375ec0] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19be9ac0] Could not find ref with POC 41
[hevc @ 0000019e19cafb40] Could not find ref with POC 43
[hevc @ 0000019e19d75a80] Could not find ref with POC 45
[hevc @ 0000019e19376280] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19376280] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e17175a40] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e17175a40] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e196dec00] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e196dec00] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e18dd2980] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e18dd2980] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19e3bb40] Could not find ref with POC 47
[hevc @ 0000019e19fa63c0] Could not find ref with POC 49
[hevc @ 0000019e1933c140] Could not find ref with POC 51
[hevc @ 0000019e1a132b80] Could not find ref with POC 53
[hevc @ 0000019e19a5dc40] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19a5dc40] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19b23b80] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19b23b80] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19be9ac0] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19be9ac0] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e1a1f8ac0] Could not find ref with POC 55
[hevc @ 0000019e19cafb40] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19cafb40] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19365800] Could not find ref with POC 57
[hevc @ 0000019e19d75a80] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19d75a80] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19375ec0] Could not find ref with POC 59
[hevc @ 0000019e19376280] Could not find ref with POC 61
[hevc @ 0000019e19e3bb40] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19e3bb40] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19fa63c0] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19fa63c0] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e1933c140] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e1933c140] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e1a132b80] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e1a132b80] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e1a1f8ac0] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e1a1f8ac0] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19365800] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19365800] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e196dec00] Could not find ref with POC 65
[hevc @ 0000019e19375ec0] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19375ec0] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e18dd2980] Could not find ref with POC 67
[hevc @ 0000019e19a5dc40] Could not find ref with POC 69
[hevc @ 0000019e19376280] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19376280] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19b23b80] Could not find ref with POC 71
[hevc @ 0000019e17175a40] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e17175a40] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19be9ac0] Could not find ref with POC 73
[hevc @ 0000019e196dec00] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e196dec00] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19cafb40] Could not find ref with POC 75
[hevc @ 0000019e19d75a80] Could not find ref with POC 77
[hevc @ 0000019e18dd2980] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e18dd2980] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19a5dc40] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19a5dc40] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19e3bb40] Could not find ref with POC 79
[hevc @ 0000019e19fa63c0] Could not find ref with POC 81
[hevc @ 0000019e1933c140] Could not find ref with POC 83
[hevc @ 0000019e19b23b80] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19b23b80] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e1a132b80] Could not find ref with POC 85
[hevc @ 0000019e19be9ac0] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19be9ac0] Skipping invalid undecodable NALU: 1
frame= 845 fps= 78 q=41.0 size= 14080KiB time=00:00:28.12
bitrate=4100.7kbits/s speed=2.59x
[hevc @ 0000019e19cafb40] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19cafb40] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e1a1f8ac0] Could not find ref with POC 87
[hevc @ 0000019e19365800] Could not find ref with POC 89
[hevc @ 0000019e19d75a80] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19d75a80] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19375ec0] Could not find ref with POC 91
[hevc @ 0000019e19e3bb40] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19e3bb40] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19fa63c0] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19fa63c0] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19376280] Could not find ref with POC 93
[hevc @ 0000019e1933c140] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e1933c140] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e17175a40] Could not find ref with POC 95
[hevc @ 0000019e196dec00] Could not find ref with POC 97
[hevc @ 0000019e1a132b80] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e1a132b80] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e18dd2980] Could not find ref with POC 99
[hevc @ 0000019e19a5dc40] Could not find ref with POC 101
[hevc @ 0000019e1a1f8ac0] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e1a1f8ac0] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19365800] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19365800] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19b23b80] Could not find ref with POC 103
[hevc @ 0000019e19375ec0] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19375ec0] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19be9ac0] Could not find ref with POC 105
[hevc @ 0000019e19cafb40] Could not find ref with POC 107
[hevc @ 0000019e19d75a80] Could not find ref with POC 109
[hevc @ 0000019e19376280] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19376280] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e17175a40] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e17175a40] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e196dec00] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e196dec00] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19e3bb40] Could not find ref with POC 111
[hevc @ 0000019e19fa63c0] Could not find ref with POC 113
[hevc @ 0000019e1933c140] Could not find ref with POC 115
[hevc @ 0000019e18dd2980] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e18dd2980] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e1a132b80] Could not find ref with POC 117
[hevc @ 0000019e19a5dc40] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19a5dc40] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e1a1f8ac0] Could not find ref with POC 119
[hevc @ 0000019e19b23b80] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19b23b80] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19365800] Could not find ref with POC 121
[hevc @ 0000019e19375ec0] Could not find ref with POC 123
[hevc @ 0000019e19376280] Could not find ref with POC 125
[hevc @ 0000019e19be9ac0] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19be9ac0] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19cafb40] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19cafb40] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19d75a80] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19d75a80] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19e3bb40] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19e3bb40] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19fa63c0] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19fa63c0] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e196dec00] Could not find ref with POC 1
[hevc @ 0000019e1933c140] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e1933c140] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e18dd2980] Could not find ref with POC 3
[hevc @ 0000019e19a5dc40] Could not find ref with POC 5
[hevc @ 0000019e1a132b80] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e1a132b80] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e1a1f8ac0] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e1a1f8ac0] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19365800] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19365800] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19375ec0] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19375ec0] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19376280] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19376280] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e17175a40] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e17175a40] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e196dec00] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e196dec00] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e18dd2980] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e18dd2980] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19b23b80] Could not find ref with POC 7
[hevc @ 0000019e19a5dc40] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19a5dc40] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19be9ac0] Could not find ref with POC 9
[hevc @ 0000019e19cafb40] Could not find ref with POC 11
[hevc @ 0000019e19d75a80] Could not find ref with POC 13
[hevc @ 0000019e19e3bb40] Could not find ref with POC 15
[hevc @ 0000019e19b23b80] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19b23b80] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19fa63c0] Could not find ref with POC 17
[hevc @ 0000019e19be9ac0] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19be9ac0] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e1933c140] Could not find ref with POC 19
[hevc @ 0000019e1a132b80] Could not find ref with POC 21
[hevc @ 0000019e19cafb40] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19cafb40] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19d75a80] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19d75a80] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e1a1f8ac0] Could not find ref with POC 23
[hevc @ 0000019e19365800] Could not find ref with POC 25
[hevc @ 0000019e19375ec0] Could not find ref with POC 27
[hevc @ 0000019e19e3bb40] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19e3bb40] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19fa63c0] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19fa63c0] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e1933c140] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e1933c140] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19376280] Could not find ref with POC 29
[hevc @ 0000019e1a132b80] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e1a132b80] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e17175a40] Could not find ref with POC 31
[hevc @ 0000019e196dec00] Could not find ref with POC 33
[hevc @ 0000019e18dd2980] Could not find ref with POC 35
[hevc @ 0000019e19a5dc40] Could not find ref with POC 37
[hevc @ 0000019e1a1f8ac0] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e1a1f8ac0] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19365800] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19365800] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19375ec0] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19375ec0] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19b23b80] Could not find ref with POC 39
[hevc @ 0000019e19be9ac0] Could not find ref with POC 41
[hevc @ 0000019e19cafb40] Could not find ref with POC 43
[hevc @ 0000019e19376280] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19376280] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19d75a80] Could not find ref with POC 45
[hevc @ 0000019e17175a40] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e17175a40] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e196dec00] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e196dec00] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19e3bb40] Could not find ref with POC 47
[hevc @ 0000019e19fa63c0] Could not find ref with POC 49
[hevc @ 0000019e1933c140] Could not find ref with POC 51
frame= 892 fps= 78 q=41.0 size= 14848KiB time=00:00:29.69
bitrate=4096.0kbits/s speed=2.61x
[hevc @ 0000019e18dd2980] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e18dd2980] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e1a132b80] Could not find ref with POC 53
[hevc @ 0000019e19a5dc40] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19a5dc40] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19b23b80] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19b23b80] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e1a1f8ac0] Could not find ref with POC 55
[hevc @ 0000019e19365800] Could not find ref with POC 57
[hevc @ 0000019e19375ec0] Could not find ref with POC 59
[hevc @ 0000019e19376280] Could not find ref with POC 61
[hevc @ 0000019e19be9ac0] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19be9ac0] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19cafb40] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19cafb40] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19d75a80] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19d75a80] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19e3bb40] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19e3bb40] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19fa63c0] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19fa63c0] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e1933c140] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e1933c140] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e1a132b80] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e1a132b80] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e1a1f8ac0] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e1a1f8ac0] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19365800] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19365800] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19375ec0] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19375ec0] Skipping invalid undecodable NALU: 1
[hevc @ 0000019e19376280] Two slices reporting being the first in the same
frame.
[hevc @ 0000019e19376280] Skipping invalid undecodable NALU: 1
frame= 935 fps= 79 q=41.0 size= 15616KiB time=N/A bitrate=N/A speed=N/A
[out#0/mp4 @ 0000019e16df6fc0] video:16237KiB audio:280KiB subtitle:0KiB
other streams:0KiB global headers:0KiB muxing overhead: 0.221967%
frame= 992 fps= 81 q=-1.0 Lsize= 16554KiB time=00:00:33.03
bitrate=4105.3kbits/s speed=2.69x
[libx264 @ 0000019e198d1180] frame I:29 Avg QP:37.27 size:102448
[libx264 @ 0000019e198d1180] frame P:317 Avg QP:36.16 size: 22694
[libx264 @ 0000019e198d1180] frame B:646 Avg QP:37.39 size: 10002
[libx264 @ 0000019e198d1180] consecutive B-frames: 12.3% 0.8% 5.4% 81.5%
[libx264 @ 0000019e198d1180] mb I I16..4: 6.0% 47.2% 46.8%
[libx264 @ 0000019e198d1180] mb P I16..4: 3.6% 15.4% 4.9% P16..4:
31.9% 6.9% 8.2% 0.0% 0.0% skip:29.2%
[libx264 @ 0000019e198d1180] mb B I16..4: 0.7% 1.5% 0.7% B16..8:
35.0% 4.1% 1.3% direct: 6.8% skip:50.1% L0:45.3% L1:49.6% BI: 5.2%
[libx264 @ 0000019e198d1180] 8x8 transform intra:58.6% inter:70.9%
[libx264 @ 0000019e198d1180] coded y,uvDC,uvAC intra: 59.6% 60.0% 18.3%
inter: 13.8% 17.0% 0.6%
[libx264 @ 0000019e198d1180] i16 v,h,dc,p: 30% 44% 14% 12%
[libx264 @ 0000019e198d1180] i8 v,h,dc,ddl,ddr,vr,hd,vl,hu: 13% 22% 35%
5% 3% 4% 5% 4% 9%
[libx264 @ 0000019e198d1180] i4 v,h,dc,ddl,ddr,vr,hd,vl,hu: 19% 35% 17%
4% 4% 4% 7% 4% 6%
[libx264 @ 0000019e198d1180] i8c dc,h,v,p: 63% 19% 15% 3%
[libx264 @ 0000019e198d1180] Weighted P-Frames: Y:1.3% UV:0.6%
[libx264 @ 0000019e198d1180] ref P L0: 60.2% 22.4% 17.3% 0.1%
[libx264 @ 0000019e198d1180] ref B L0: 87.2% 10.6% 2.2%
[libx264 @ 0000019e198d1180] ref B L1: 92.9% 7.1%
[libx264 @ 0000019e198d1180] kb/s:4018.46
[aac @ 0000019e19376640] Qavg: 177.724
}}}
Patches should be submitted to the ffmpeg-devel mailing list and not this
bug tracker.
--
Ticket URL: <https://trac.ffmpeg.org/ticket/11162>
FFmpeg <https://ffmpeg.org>
FFmpeg issue tracker
1
5
#11201(undetermined:new): Animated AVIF converts well to mp4 in ffmpeg v6, but not in v7
by FFmpeg 01 May '25
by FFmpeg 01 May '25
01 May '25
#11201: Animated AVIF converts well to mp4 in ffmpeg v6, but not in v7
-------------------------------------+-------------------------------------
Reporter: nmp5 | Type: defect
Status: new | Priority: normal
Component: | Version:
undetermined | unspecified
Keywords: avif | Blocked By:
Blocking: | Reproduced by developer: 0
Analyzed by developer: 0 |
-------------------------------------+-------------------------------------
I can no longer convert animated AVIF to MP4 when using ffmpeg v7. It does
convert, but the MP4 doesn't show the animation. Just the first frame or
so.
While, with ffmpeg v6, it works well (animation shown perfectly in the MP4
file, and file size bigger than the MP4 file created by ffmpeg v7).
I tried this in Alpine docker, and on Windows.
In the attachments, I include:
- the original AVIF file
- the various logs for each of the commands I ran (with the command in the
first line, for reference), with "-v trace"
- the outputs produced (animated-avif-ffmpeg-6-apk.mp4 and animated-avif-
ffmpeg-6-static.mp4 are the expected outputs)
- the output of "ffmpeg -v 9 -loglevel 99 -i"
--
Ticket URL: <https://trac.ffmpeg.org/ticket/11201>
FFmpeg <https://ffmpeg.org>
FFmpeg issue tracker
1
19
01 May '25
#10806: Heap-use-after-free in av_expr_free (libavutil/eval.c:361)
-------------------------------------+-------------------------------------
Reporter: Bachir | Type: defect
Bendrissou |
Status: new | Priority: important
Component: avutil | Version: git-
Keywords: error, | master
corrupted, bugs, memory | Blocked By:
Blocking: | Reproduced by developer: 0
Analyzed by developer: 0 |
-------------------------------------+-------------------------------------
==== Summary of the bug:
While attempting to apply a two-pass video encoding to a small mp4 video,
we encountered a heap-use-after-free memory error in file:
libavutil/eval.c, line: 361.
==== How to reproduce:
The bug is reproducible on the latest commit be4fcf027b.
The following builds ffmpeg:
{{{#!bash
git clone https://git.ffmpeg.org/ffmpeg.git ffmpeg
cd ffmpeg
./configure --disable-asm --toolchain=gcc-asan --disable-ffplay --disable-
ffprobe
make
}}}
Next, run the first pass that generates a log file, which is required by
the ffmpeg two-pass video encoding command:
{{{#!bash
./ffmpeg_g -y -v 9 -loglevel 99 -i small_movie.mp4 -pass 1
small_movie_out.mp4
}}}
The video file "small_movie.mp4" is attached.
Next, run the ffmpeg command:
{{{#!bash
./ffmpeg_g -y -v 9 -loglevel 99 -i small_movie.mp4 -pass 2
small_movie_out.mp4
}}}
Options `-v 9 -loglevel 99` are optional and were only added to produce
verbose logs.
==== Console output:
{{{
ffmpeg version N-113344-gbe4fcf027b Copyright (c) 2000-2024 the FFmpeg
developers
built with gcc 11 (Ubuntu 11.4.0-1ubuntu1~22.04)
configuration: --disable-asm --toolchain=gcc-asan --disable-ffplay
--disable-ffprobe
libavutil 58. 36.101 / 58. 36.101
libavcodec 60. 37.100 / 60. 37.100
libavformat 60. 20.100 / 60. 20.100
libavdevice 60. 4.100 / 60. 4.100
libavfilter 9. 17.100 / 9. 17.100
libswscale 7. 6.100 / 7. 6.100
libswresample 4. 13.100 / 4. 13.100
Splitting the commandline.
Reading option '-y' ... matched as option 'y' (overwrite output files)
with argument '1'.
Reading option '-v' ... matched as option 'v' (set logging level) with
argument '9'.
Reading option '-loglevel' ... matched as option 'loglevel' (set logging
level) with argument '99'.
Reading option '-i' ... matched as output url with argument 'input.mp4'.
Reading option '-pass' ... matched as option 'pass' (select the pass
number (1 to 3)) with argument '2'.
Reading option 'small_movie_out.mp4' ... matched as output url.
Finished splitting the commandline.
Parsing a group of options: global .
Applying option y (overwrite output files) with argument 1.
Applying option v (set logging level) with argument 9.
Successfully parsed a group of options.
Parsing a group of options: input url input.mp4.
Successfully parsed a group of options.
Opening an input file: input.mp4.
[AVFormatContext @ 0x617000000080] Opening 'input.mp4' for reading
[file @ 0x60c000000280] Setting default whitelist 'file,crypto,data'
Probing mov,mp4,m4a,3gp,3g2,mj2 score:100 size:1267
Probing mp3 score:1 size:1267
[mov,mp4,m4a,3gp,3g2,mj2 @ 0x617000000080] Format mov,mp4,m4a,3gp,3g2,mj2
probed with size=2048 and score=100
[mov,mp4,m4a,3gp,3g2,mj2 @ 0x617000000080] type:'ftyp' parent:'root' sz:
24 8 1267
[mov,mp4,m4a,3gp,3g2,mj2 @ 0x617000000080] ISO: File Type Major Brand:
mp42
[mov,mp4,m4a,3gp,3g2,mj2 @ 0x617000000080] type:'free' parent:'root' sz: 8
32 1267
[mov,mp4,m4a,3gp,3g2,mj2 @ 0x617000000080] type:'mdat' parent:'root' sz:
405 40 1267
[mov,mp4,m4a,3gp,3g2,mj2 @ 0x617000000080] type:'moov' parent:'root' sz:
830 445 1267
[mov,mp4,m4a,3gp,3g2,mj2 @ 0x617000000080] type:'mvhd' parent:'moov' sz:
108 8 822
[mov,mp4,m4a,3gp,3g2,mj2 @ 0x617000000080] time scale = 90000
[mov,mp4,m4a,3gp,3g2,mj2 @ 0x617000000080] type:'trak' parent:'moov' sz:
714 116 822
[mov,mp4,m4a,3gp,3g2,mj2 @ 0x617000000080] type:'tkhd' parent:'trak' sz:
92 8 706
[mov,mp4,m4a,3gp,3g2,mj2 @ 0x617000000080] type:'mdia' parent:'trak' sz:
614 100 706
[mov,mp4,m4a,3gp,3g2,mj2 @ 0x617000000080] type:'idhd' parent:'mdia' sz:
32 8 606
[mov,mp4,m4a,3gp,3g2,mj2 @ 0x617000000080] type:'hdlr' parent:'mdia' sz:
52 40 606
[mov,mp4,m4a,3gp,3g2,mj2 @ 0x617000000080] ctype=[0][0][0][0]
[mov,mp4,m4a,3gp,3g2,mj2 @ 0x617000000080] stype=vide
[mov,mp4,m4a,3gp,3g2,mj2 @ 0x617000000080] type:'minf' parent:'mdia' sz:
522 92 606
[mov,mp4,m4a,3gp,3g2,mj2 @ 0x617000000080] type:'vmhd' parent:'minf' sz:
20 8 514
[mov,mp4,m4a,3gp,3g2,mj2 @ 0x617000000080] type:'dinf' parent:'minf' sz:
36 28 514
[mov,mp4,m4a,3gp,3g2,mj2 @ 0x617000000080] type:'dref' parent:'dinf' sz:
28 8 28
[mov,mp4,m4a,3gp,3g2,mj2 @ 0x617000000080] Unknown dref type 0x206c7275
size 12
[mov,mp4,m4a,3gp,3g2,mj2 @ 0x617000000080] type:'stbl' parent:'minf' sz:
458 64 514
[mov,mp4,m4a,3gp,3g2,mj2 @ 0x617000000080] type:'stsd' parent:'stbl' sz:
162 8 450
[mov,mp4,m4a,3gp,3g2,mj2 @ 0x617000000080] size=146 4CC=avc1 codec_type=0
[mov,mp4,m4a,3gp,3g2,mj2 @ 0x617000000080] type:'avcC' parent:'stsd' sz:
60 8 60
[mov,mp4,m4a,3gp,3g2,mj2 @ 0x617000000080] type:'stts' parent:'stbl' sz:
24 170 450
[mov,mp4,m4a,3gp,3g2,mj2 @ 0x617000000080] track[0].stts.entries = 1
[mov,mp4,m4a,3gp,3g2,mj2 @ 0x617000000080] sample_count=12,
sample_duration=1
[mov,mp4,m4a,3gp,3g2,mj2 @ 0x617000000080] type:'ctts' parent:'stbl' sz:
96 194 450
[mov,mp4,m4a,3gp,3g2,mj2 @ 0x617000000080] track[0].ctts.entries = 10
[mov,mp4,m4a,3gp,3g2,mj2 @ 0x617000000080] count=1, duration=1
[mov,mp4,m4a,3gp,3g2,mj2 @ 0x617000000080] count=1, duration=3
[mov,mp4,m4a,3gp,3g2,mj2 @ 0x617000000080] count=2, duration=0
[mov,mp4,m4a,3gp,3g2,mj2 @ 0x617000000080] count=1, duration=4
[mov,mp4,m4a,3gp,3g2,mj2 @ 0x617000000080] count=1, duration=1
[mov,mp4,m4a,3gp,3g2,mj2 @ 0x617000000080] count=1, duration=-1
[mov,mp4,m4a,3gp,3g2,mj2 @ 0x617000000080] count=1, duration=0
[mov,mp4,m4a,3gp,3g2,mj2 @ 0x617000000080] count=1, duration=3
[mov,mp4,m4a,3gp,3g2,mj2 @ 0x617000000080] count=2, duration=0
[mov,mp4,m4a,3gp,3g2,mj2 @ 0x617000000080] count=1, duration=-1
[mov,mp4,m4a,3gp,3g2,mj2 @ 0x617000000080] dts shift 1
[mov,mp4,m4a,3gp,3g2,mj2 @ 0x617000000080] type:'stsc' parent:'stbl' sz:
52 290 450
[mov,mp4,m4a,3gp,3g2,mj2 @ 0x617000000080] track[0].stsc.entries = 3
[mov,mp4,m4a,3gp,3g2,mj2 @ 0x617000000080] type:'stsz' parent:'stbl' sz:
68 342 450
[mov,mp4,m4a,3gp,3g2,mj2 @ 0x617000000080] sample_size = 0 sample_count =
12
[mov,mp4,m4a,3gp,3g2,mj2 @ 0x617000000080] type:'stco' parent:'stbl' sz:
28 410 450
[mov,mp4,m4a,3gp,3g2,mj2 @ 0x617000000080] type:'stss' parent:'stbl' sz:
20 438 450
[mov,mp4,m4a,3gp,3g2,mj2 @ 0x617000000080] keyframe_count = 1
[mov,mp4,m4a,3gp,3g2,mj2 @ 0x617000000080] stream 0, timescale not set
[mov,mp4,m4a,3gp,3g2,mj2 @ 0x617000000080] AVIndex stream 0, sample 0,
offset 28, dts -1, size 124, distance 0, keyframe 1
[mov,mp4,m4a,3gp,3g2,mj2 @ 0x617000000080] AVIndex stream 0, sample 1,
offset a4, dts 0, size 64, distance 1, keyframe 0
[mov,mp4,m4a,3gp,3g2,mj2 @ 0x617000000080] AVIndex stream 0, sample 2,
offset e4, dts 1, size 25, distance 2, keyframe 0
[mov,mp4,m4a,3gp,3g2,mj2 @ 0x617000000080] AVIndex stream 0, sample 3,
offset fd, dts 2, size 25, distance 3, keyframe 0
[mov,mp4,m4a,3gp,3g2,mj2 @ 0x617000000080] AVIndex stream 0, sample 4,
offset 116, dts 3, size 24, distance 4, keyframe 0
[mov,mp4,m4a,3gp,3g2,mj2 @ 0x617000000080] AVIndex stream 0, sample 5,
offset 12e, dts 4, size 21, distance 5, keyframe 0
[mov,mp4,m4a,3gp,3g2,mj2 @ 0x617000000080] AVIndex stream 0, sample 6,
offset 143, dts 5, size 21, distance 6, keyframe 0
[mov,mp4,m4a,3gp,3g2,mj2 @ 0x617000000080] AVIndex stream 0, sample 7,
offset 158, dts 6, size 21, distance 7, keyframe 0
[mov,mp4,m4a,3gp,3g2,mj2 @ 0x617000000080] AVIndex stream 0, sample 8,
offset 16d, dts 7, size 25, distance 8, keyframe 0
[mov,mp4,m4a,3gp,3g2,mj2 @ 0x617000000080] AVIndex stream 0, sample 9,
offset 186, dts 8, size 21, distance 9, keyframe 0
[mov,mp4,m4a,3gp,3g2,mj2 @ 0x617000000080] AVIndex stream 0, sample 10,
offset 19b, dts 9, size 21, distance 10, keyframe 0
[mov,mp4,m4a,3gp,3g2,mj2 @ 0x617000000080] AVIndex stream 0, sample 11,
offset 1b0, dts 10, size 5, distance 11, keyframe 0
[mov,mp4,m4a,3gp,3g2,mj2 @ 0x617000000080] Setting codecpar->delay to 2
for stream st: 0
[mov,mp4,m4a,3gp,3g2,mj2 @ 0x617000000080] on_parse_exit_offset=1267
[mov,mp4,m4a,3gp,3g2,mj2 @ 0x617000000080] Before
avformat_find_stream_info() pos: 1267 bytes read:1267 seeks:0 nb_streams:1
[h264 @ 0x619000000080] nal_unit_type: 7(SPS), nal_ref_idc: 3
[h264 @ 0x619000000080] Decoding VUI
[h264 @ 0x619000000080] nal_unit_type: 8(PPS), nal_ref_idc: 3
[mov,mp4,m4a,3gp,3g2,mj2 @ 0x617000000080] stream 0, sample 0, dts -11
[h264 @ 0x619000000080] nal_unit_type: 7(SPS), nal_ref_idc: 3
[h264 @ 0x619000000080] Decoding VUI
[h264 @ 0x619000000080] nal_unit_type: 8(PPS), nal_ref_idc: 3
[h264 @ 0x619000000080] nal_unit_type: 5(IDR), nal_ref_idc: 3
[h264 @ 0x619000000080] Format yuv420p chosen by get_format().
[h264 @ 0x619000000080] Reinit context to 48x144, pix_fmt: yuv420p
[h264 @ 0x619000000080] no picture
[mov,mp4,m4a,3gp,3g2,mj2 @ 0x617000000080] All info found
[mov,mp4,m4a,3gp,3g2,mj2 @ 0x617000000080] stream 0: start_time:
1.11111e-05 duration: NOPTS
[mov,mp4,m4a,3gp,3g2,mj2 @ 0x617000000080] format: start_time: 1.1e-05
duration: NOPTS (estimate from bit rate) bitrate=0 kb/s
[mov,mp4,m4a,3gp,3g2,mj2 @ 0x617000000080] After
avformat_find_stream_info() pos: 164 bytes read:1267 seeks:0 frames:1
Input #0, mov,mp4,m4a,3gp,3g2,mj2, from 'input.mp4':
Metadata:
major_brand : mp42
minor_version : 19529854
compatible_brands: mp42isom
creation_time : 2014-11-14T07:34:24.000000Z
Duration: N/A, start: 0.000011, bitrate: N/A
Stream #0:0[0x1], 1, 1/90000: Video: h264 (High), 1 reference frame
(avc1 / 0x31637661), yuv420p(tv, smpte170m, progressive, left), 48x144
[SAR 1:1 DAR 1:3], 0/1, 90k fps, 90k tbr, 90k tbn (default)
Metadata:
handler_name : Video Media Handler
vendor_id : [0][0][0][0]
encoder : AVC Coding
Successfully opened the file.
Parsing a group of options: output url small_movie_out.mp4.
Applying option pass (select the pass number (1 to 3)) with argument 2.
Successfully parsed a group of options.
Opening an output file: small_movie_out.mp4.
[out#0/mp4 @ 0x611000000b80] No explicit maps, mapping streams
automatically...
[vost#0:0/mpeg4 @ 0x617000000780] Created video stream from input stream
0:0
[file @ 0x60d000001080] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x612000000c40] Statistics: 666494 bytes read, 0 seeks
detected 4 logical cores
[h264 @ 0x619000001980] nal_unit_type: 7(SPS), nal_ref_idc: 3
[h264 @ 0x619000001980] Decoding VUI
[h264 @ 0x619000001980] nal_unit_type: 8(PPS), nal_ref_idc: 3
[file @ 0x60d000001700] Setting default whitelist 'file,crypto,data'
Successfully opened the file.
Stream mapping:
Stream #0:0 -> #0:0 (h264 (native) -> mpeg4 (native))
[vost#0:0/mpeg4 @ 0x617000000780] Starting thread...
[vf#0:0 @ 0x60e0000002e0] Starting thread...
[vist#0:0/h264 @ 0x613000000ac0] Starting thread...
[in#0/mov,mp4,m4a,3gp,3g2,mj2 @ 0x612000000040] Starting thread...
Press [q] to stop, [?] for help
[mov,mp4,m4a,3gp,3g2,mj2 @ 0x617000000080] stream 0, sample 1, dts 0
[mov,mp4,m4a,3gp,3g2,mj2 @ 0x617000000080] stream 0, sample 2, dts 11
[mov,mp4,m4a,3gp,3g2,mj2 @ 0x617000000080] stream 0, sample 3, dts 22
[h264 @ 0x619000001980] nal_unit_type: 5(IDR), nal_ref_idc: 3
[h264 @ 0x619000001980] Format yuv420p chosen by get_format().
[h264 @ 0x619000001980] Reinit context to 48x144, pix_fmt: yuv420p
[h264 @ 0x619000001980] no picture
[mov,mp4,m4a,3gp,3g2,mj2 @ 0x617000000080] stream 0, sample 4, dts 33
[h264 @ 0x619000001e80] nal_unit_type: 9(AUD), nal_ref_idc: 0
[h264 @ 0x619000001e80] nal_unit_type: 1(Coded slice of a non-IDR
picture), nal_ref_idc: 2
[h264 @ 0x619000001e80] no picture
[mov,mp4,m4a,3gp,3g2,mj2 @ 0x617000000080] stream 0, sample 5, dts 44
[h264 @ 0x619000002380] nal_unit_type: 9(AUD), nal_ref_idc: 0
[h264 @ 0x619000002380] nal_unit_type: 1(Coded slice of a non-IDR
picture), nal_ref_idc: 0
[h264 @ 0x619000002880] nal_unit_type: 9(AUD), nal_ref_idc: 0
[h264 @ 0x619000002880] nal_unit_type: 1(Coded slice of a non-IDR
picture), nal_ref_idc: 0
[mov,mp4,m4a,3gp,3g2,mj2 @ 0x617000000080] stream 0, sample 6, dts 56
[mov,mp4,m4a,3gp,3g2,mj2 @ 0x617000000080] stream 0, sample 7, dts 67
[h264 @ 0x619000002d80] nal_unit_type: 9(AUD), nal_ref_idc: 0
[h264 @ 0x619000002d80] nal_unit_type: 1(Coded slice of a non-IDR
picture), nal_ref_idc: 2
[h264 @ 0x619000001980] nal_unit_type: 15(Subset SPS), nal_ref_idc: 0
[h264 @ 0x619000001980] nal_unit_type: 1(Coded slice of a non-IDR
picture), nal_ref_idc: 2
[h264 @ 0x619000001980] Unknown NAL code: 15 (11 bits)
[mov,mp4,m4a,3gp,3g2,mj2 @ 0x617000000080] stream 0, sample 8, dts 78
[h264 @ 0x619000001e80] nal_unit_type: 9(AUD), nal_ref_idc: 0
[h264 @ 0x619000001e80] nal_unit_type: 1(Coded slice of a non-IDR
picture), nal_ref_idc: 0
[mov,mp4,m4a,3gp,3g2,mj2 @ 0x617000000080] stream 0, sample 9, dts 89
[mov,mp4,m4a,3gp,3g2,mj2 @ 0x617000000080] stream 0, sample 10, dts 100
[h264 @ 0x619000002380] nal_unit_type: 9(AUD), nal_ref_idc: 0
[h264 @ 0x619000002380] nal_unit_type: 1(Coded slice of a non-IDR
picture), nal_ref_idc: 0
[h264 @ 0x619000002880] nal_unit_type: 9(AUD), nal_ref_idc: 0
[h264 @ 0x619000002880] nal_unit_type: 1(Coded slice of a non-IDR
picture), nal_ref_idc: 2
[graph 0 input from stream 0:0 @ 0x610000038140] Setting 'video_size' to
value '48x144'
[graph 0 input from stream 0:0 @ 0x610000038140] Setting 'pix_fmt' to
value '0'
[graph 0 input from stream 0:0 @ 0x610000038140] Setting 'time_base' to
value '1/90000'
[graph 0 input from stream 0:0 @ 0x610000038140] Setting 'pixel_aspect' to
value '1/1'
[graph 0 input from stream 0:0 @ 0x610000038140] Setting 'colorspace' to
value 'smpte170m'
[graph 0 input from stream 0:0 @ 0x610000038140] Setting 'range' to value
'tv'
[graph 0 input from stream 0:0 @ 0x610000038140] Setting 'frame_rate' to
value '90000/1'
[graph 0 input from stream 0:0 @ 0x610000038140] w:48 h:144 pixfmt:yuv420p
tb:1/90000 fr:90000/1 sar:1/1 csp:smpte170m range:tv
[format @ 0x610000038340] Setting 'pix_fmts' to value 'yuv420p'
[AVFilterGraph @ 0x609000024800] query_formats: 4 queried, 9 merged, 0
already done, 0 delayed
[vost#0:0/mpeg4 @ 0x617000000780] *** 5460 dup!
[mpeg4 @ 0x619000001480] intra_quant_bias = 0 inter_quant_bias = -64
[mpeg4 @ 0x619000001480] requested bitrate is too low
=================================================================
==4110427==ERROR: AddressSanitizer: heap-use-after-free on address
0x60800001c440 at pc 0x55acbc0fef0d bp 0x7f69c9024a20 sp 0x7f69c9024a10
READ of size 8 at 0x60800001c440 thread T7 (vf#0:0)
#0 0x55acbc0fef0c in av_expr_free libavutil/eval.c:361
#1 0x55acb9964d81 in ff_rate_control_uninit
libavcodec/ratecontrol.c:686
#2 0x55acb9950ba9 in ff_mpv_encode_end libavcodec/mpegvideo_enc.c:991
#3 0x55acb98fe2f0 in avcodec_close libavcodec/avcodec.c:452
#4 0x55acba612e63 in avcodec_open2 libavcodec/avcodec.c:380
#5 0x55acb9a3b132 in enc_open fftools/ffmpeg_enc.c:319
#6 0x55acb9a94f90 in enc_open fftools/ffmpeg_sched.c:1462
#7 0x55acb9a94f90 in send_to_enc fftools/ffmpeg_sched.c:1571
#8 0x55acb9a94f90 in sch_filter_send fftools/ffmpeg_sched.c:2154
#9 0x55acb9a4597c in fg_output_frame fftools/ffmpeg_filter.c:2303
#10 0x55acb9a4876c in fg_output_step fftools/ffmpeg_filter.c:2406
#11 0x55acb9a4876c in read_frames fftools/ffmpeg_filter.c:2467
#12 0x55acb9a512de in read_frames fftools/ffmpeg_filter.c:2423
#13 0x55acb9a512de in filter_thread fftools/ffmpeg_filter.c:2879
#14 0x55acb9a8adb8 in task_wrapper fftools/ffmpeg_sched.c:2200
#15 0x7f69cfb8eac2 (/lib/x86_64-linux-gnu/libc.so.6+0x94ac2)
#16 0x7f69cfc2084f (/lib/x86_64-linux-gnu/libc.so.6+0x12684f)
0x60800001c440 is located 32 bytes inside of 72-byte region
[0x60800001c420,0x60800001c468)
freed by thread T7 (vf#0:0) here:
#0 0x7f69cfeda537 in __interceptor_free
../../../../src/libsanitizer/asan/asan_malloc_linux.cpp:127
#1 0x55acbc0fee0e in av_expr_free libavutil/eval.c:366
#2 0x55acbc792057 (/home/bb1222/ffmpeg-asan/ffmpeg_g+0x341c057)
previously allocated by thread T7 (vf#0:0) here:
#0 0x7f69cfedb57c in __interceptor_posix_memalign
../../../../src/libsanitizer/asan/asan_malloc_linux.cpp:226
#1 0x55acbc12a78c in av_malloc libavutil/mem.c:105
Thread T7 (vf#0:0) created by T0 here:
#0 0x7f69cfe7e685 in __interceptor_pthread_create
../../../../src/libsanitizer/asan/asan_interceptors.cpp:216
#1 0x55acb9a88ad9 in task_start fftools/ffmpeg_sched.c:403
SUMMARY: AddressSanitizer: heap-use-after-free libavutil/eval.c:361 in
av_expr_free
Shadow bytes around the buggy address:
0x0c107fffb830: fa fa fa fa 00 00 00 00 00 00 00 00 00 fa fa fa
0x0c107fffb840: fa fa fa fa 00 00 00 00 00 00 00 00 00 fa fa fa
0x0c107fffb850: fa fa fa fa 00 00 00 00 00 00 00 00 00 fa fa fa
0x0c107fffb860: fa fa fa fa fd fd fd fd fd fd fd fd fd fa fa fa
0x0c107fffb870: fa fa fa fa fd fd fd fd fd fd fd fd fd fa fa fa
=>0x0c107fffb880: fa fa fa fa fd fd fd fd[fd]fd fd fd fd fa fa fa
0x0c107fffb890: fa fa fa fa fd fd fd fd fd fd fd fd fd fd fa fa
0x0c107fffb8a0: fa fa fa fa fa fa fa fa fa fa fa fa fa fa fa fa
0x0c107fffb8b0: fa fa fa fa fa fa fa fa fa fa fa fa fa fa fa fa
0x0c107fffb8c0: fa fa fa fa fa fa fa fa fa fa fa fa fa fa fa fa
0x0c107fffb8d0: fa fa fa fa fa fa fa fa fa fa fa fa fa fa fa fa
Shadow byte legend (one shadow byte represents 8 application bytes):
Addressable: 00
Partially addressable: 01 02 03 04 05 06 07
Heap left redzone: fa
Freed heap region: fd
Stack left redzone: f1
Stack mid redzone: f2
Stack right redzone: f3
Stack after return: f5
Stack use after scope: f8
Global redzone: f9
Global init order: f6
Poisoned by user: f7
Container overflow: fc
Array cookie: ac
Intra object redzone: bb
ASan internal: fe
Left alloca redzone: ca
Right alloca redzone: cb
Shadow gap: cc
==4110427==ABORTING
}}}
==== Environment:
{{{
ffmpeg version N-113344-gbe4fcf027b
gcc 11.4.0
Ubuntu 22.04.2
}}}
--
Ticket URL: <https://trac.ffmpeg.org/ticket/10806>
FFmpeg <https://ffmpeg.org>
FFmpeg issue tracker
1
2
#10843(ffmpeg:new): A -shortest-video option that acts just like -shortest but ignores audio
by FFmpeg 26 Apr '25
by FFmpeg 26 Apr '25
26 Apr '25
#10843: A -shortest-video option that acts just like -shortest but ignores audio
-------------------------------------+-------------------------------------
Reporter: Florian | Type:
| enhancement
Status: new | Priority: minor
Component: ffmpeg | Version:
Keywords: shortest, | unspecified
duration, -t | Blocked By:
Blocking: | Reproduced by developer: 0
Analyzed by developer: 0 |
-------------------------------------+-------------------------------------
Anyone who exported a final project with video+audio ready to then encode
with ffmpeg, they don't want the audio to extend the last frame of video.
Yet they cannot use **-shortest** because this would make the audio trim
the video if shorter.
A good solution to that problem would be a **-shortest-video** option
which would act exactly like **-shortest** but would only look at the
video inputs.
Also, this is probalby extremely simple to implement since you already
have -shortest
Thanks!
--
Ticket URL: <https://trac.ffmpeg.org/ticket/10843>
FFmpeg <https://ffmpeg.org>
FFmpeg issue tracker
1
2