[FFmpeg-user] Overlaying subtitles using overlay_cuda filter

Andy Sheimo asheimo at gmail.com
Mon Jan 17 02:52:09 EET 2022


Using the following command with ffmpeg:

ffmpeg -loglevel debug -stats -ss 0 -t 5187.893 -hwaccel cuda
-hwaccel_output_format cuda -i <input>.mkv -filter_complex
[0:0][0:4]overlay_cuda[v] -map [v] -c:v hevc_nvenc -b:v 4000k -maxrate:v
12000k -bufsize:v 12000k -color_primaries:v bt709 -color_trc:v bt709
-colorspace:v bt709 -metadata:s:v title= -disposition:v default -map 0:1
-c:a:0 eac3 -disposition:a:0 default -map 0:2 -c:a:1 eac3 -disposition:a:1
0 -map 0:3 -c:s:0 copy -disposition:s:0 0 -metadata:g title= -default_mode
passthrough <output>.mkv

Gives me the following error:

Impossible to convert between the formats supported by the filter 'graph 0
input from stream 0:4' and the filter 'auto_scale_0'
Error reinitializing filters!
Failed to inject frame into filter network: Function not implemented
Error while processing the decoded data for stream #0:0

>From what I am understanding this means that the format of the subtitles
which is S_HDMV/PGS is not able to be converted. from the vf_overlay_cuda.c
<https://git.ffmpeg.org/gitweb/ffmpeg.git/blob_plain/16b3be4989575c291338c8e34aedc99489910ac7:/libavfilter/vf_overlay_cuda.c>
the
possible inputs are:

static const enum AVPixelFormat supported_overlay_formats[] = {
AV_PIX_FMT_NV12,
AV_PIX_FMT_YUV420P,
AV_PIX_FMT_YUVA420P,
AV_PIX_FMT_NONE,
};

I am assuming possibly incorrectly that a subtitle would be AV_PIX_FMT_NONE
and should be an acceptable input. Is this just a limitation of the
overlay_cuda filter? Is there a conversion that should be done on the
subtitle track to make it compatible? I'm at a loss as to the direction to
take as I have been unable to find examples of how to use this filter since
the updates to it in the last year. Any input is appreciated.
-------------- next part --------------
ffmpeg version N-104831-g4f44a218e5-ffmpeg-windows-build-helpers Copyright (c) 2000-2021 the FFmpeg developers
  built with gcc 10.2.0 (GCC)
  configuration: --pkg-config=pkg-config --pkg-config-flags=--static --extra-version=ffmpeg-windows-build-helpers --enable-version3 --disable-debug --disable-w32threads --arch=x86_64 --target-os=mingw32 --cross-prefix=/home/andy/ffmpeg-windows-build-helpers/sandbox/cross_compilers/mingw-w64-x86_64/bin/x86_64-w64-mingw32- --enable-libcaca --enable-gray --enable-libtesseract --enable-fontconfig --enable-gmp --enable-gnutls --enable-libass --enable-libbluray --enable-libbs2b --enable-libflite --enable-libfreetype --enable-libfribidi --enable-libgme --enable-libgsm --enable-libilbc --enable-libmodplug --enable-libmp3lame --enable-libopencore-amrnb --enable-libopencore-amrwb --enable-libopus --enable-libsnappy --enable-libsoxr --enable-libspeex --enable-libtheora --enable-libtwolame --enable-libvo-amrwbenc --enable-libvorbis --enable-libwebp --enable-libzimg --enable-libzvbi --enable-libmysofa --enable-libopenjpeg --enable-libopenh264 --enable-liblensfun --enable-libvmaf --enable-libsrt --enable-libxml2 --enable-opengl --enable-libdav1d --enable-cuda-llvm --enable-libsvthevc --enable-libsvtav1 --enable-libaom --enable-libvpx --enable-nvenc --enable-nvdec --extra-libs=-lharfbuzz --extra-libs=-lm --extra-libs=-lpthread --extra-cflags=-DLIBTWOLAME_STATIC --extra-cflags=-DMODPLUG_STATIC --extra-cflags=-DCACA_STATIC --enable-amf --enable-libmfx --enable-gpl --enable-frei0r --enable-librubberband --enable-libvidstab --enable-libx264 --enable-libx265 --enable-avisynth --enable-libaribb24 --enable-libxvid --enable-libdavs2 --enable-libxavs2 --enable-libxavs --extra-cflags='-mtune=generic' --extra-cflags=-O3 --enable-static --disable-shared --prefix=/home/andy/ffmpeg-windows-build-helpers/sandbox/cross_compilers/mingw-w64-x86_64/x86_64-w64-mingw32
  libavutil      57. 10.101 / 57. 10.101
  libavcodec     59. 14.100 / 59. 14.100
  libavformat    59.  9.102 / 59.  9.102
  libavdevice    59.  0.101 / 59.  0.101
  libavfilter     8. 19.100 /  8. 19.100
  libswscale      6.  1.101 /  6.  1.101
  libswresample   4.  0.100 /  4.  0.100
  libpostproc    56.  0.100 / 56.  0.100
Splitting the commandline.
Reading option '-loglevel' ... matched as option 'loglevel' (set logging level) with argument 'debug'.
Reading option '-stats' ... matched as option 'stats' (print progress report during encoding) with argument '1'.
Reading option '-ss' ... matched as option 'ss' (set the start time offset) with argument '0'.
Reading option '-t' ... matched as option 't' (record or transcode "duration" seconds of audio/video) with argument '5187.893'.
Reading option '-hwaccel' ... matched as option 'hwaccel' (use HW accelerated decoding) with argument 'cuda'.
Reading option '-hwaccel_output_format' ... matched as option 'hwaccel_output_format' (select output format used with HW accelerated decoding) with argument 'cuda'.
Reading option '-i' ... matched as input url with argument 'J:\Remuxed\My Neighbor Totoro\My Neighbor Totoro.mkv'.
Reading option '-filter_complex' ... matched as option 'filter_complex' (create a complex filtergraph) with argument '[0:0][0:4]overlay_cuda[v]'.
Reading option '-map' ... matched as option 'map' (set input stream mapping) with argument '[v]'.
Reading option '-c:v' ... matched as option 'c' (codec name) with argument 'hevc_nvenc'.
Reading option '-b:v' ... matched as option 'b' (video bitrate (please use -b:v)) with argument '4000k'.
Reading option '-maxrate:v' ... matched as AVOption 'maxrate:v' with argument '12000k'.
Reading option '-bufsize:v' ... matched as AVOption 'bufsize:v' with argument '12000k'.
Reading option '-color_primaries:v' ... matched as AVOption 'color_primaries:v' with argument 'bt709'.
Reading option '-color_trc:v' ... matched as AVOption 'color_trc:v' with argument 'bt709'.
Reading option '-colorspace:v' ... matched as AVOption 'colorspace:v' with argument 'bt709'.
Reading option '-metadata:s:v' ... matched as option 'metadata' (add metadata) with argument 'title='.
Reading option '-disposition:v' ... matched as option 'disposition' (disposition) with argument 'default'.
Reading option '-map' ... matched as option 'map' (set input stream mapping) with argument '0:1'.
Reading option '-c:a:0' ... matched as option 'c' (codec name) with argument 'eac3'.
Reading option '-disposition:a:0' ... matched as option 'disposition' (disposition) with argument 'default'.
Reading option '-map' ... matched as option 'map' (set input stream mapping) with argument '0:2'.
Reading option '-c:a:1' ... matched as option 'c' (codec name) with argument 'eac3'.
Reading option '-disposition:a:1' ... matched as option 'disposition' (disposition) with argument '0'.
Reading option '-map' ... matched as option 'map' (set input stream mapping) with argument '0:3'.
Reading option '-c:s:0' ... matched as option 'c' (codec name) with argument 'copy'.
Reading option '-disposition:s:0' ... matched as option 'disposition' (disposition) with argument '0'.
Reading option '-metadata:g' ... matched as option 'metadata' (add metadata) with argument 'title='.
Reading option '-default_mode' ... matched as AVOption 'default_mode' with argument 'passthrough'.
Reading option 'My Neighbor Totoro.mkv' ... matched as output url.
Finished splitting the commandline.
Parsing a group of options: global .
Applying option loglevel (set logging level) with argument debug.
Applying option stats (print progress report during encoding) with argument 1.
Applying option filter_complex (create a complex filtergraph) with argument [0:0][0:4]overlay_cuda[v].
Successfully parsed a group of options.
Parsing a group of options: input url J:\Remuxed\My Neighbor Totoro\My Neighbor Totoro.mkv.
Applying option ss (set the start time offset) with argument 0.
Applying option t (record or transcode "duration" seconds of audio/video) with argument 5187.893.
Applying option hwaccel (use HW accelerated decoding) with argument cuda.
Applying option hwaccel_output_format (select output format used with HW accelerated decoding) with argument cuda.
Successfully parsed a group of options.
Opening an input file: J:\Remuxed\My Neighbor Totoro\My Neighbor Totoro.mkv.
[NULL @ 000002d9f5458000] Opening 'J:\Remuxed\My Neighbor Totoro\My Neighbor Totoro.mkv' for reading
[file @ 000002d9f54584c0] Setting default whitelist 'file,crypto,data'
[matroska,webm @ 000002d9f5458000] Format matroska,webm probed with size=2048 and score=100
[matroska,webm @ 000002d9f5458000] Unknown entry 0x22B59D at pos. 4489
[matroska,webm @ 000002d9f5458000] Unknown entry 0x22B59D at pos. 4552
[matroska,webm @ 000002d9f5458000] Unknown entry 0x22B59D at pos. 4611
[matroska,webm @ 000002d9f5458000] Unknown entry 0x22B59D at pos. 4671
[matroska,webm @ 000002d9f5458000] Unknown entry 0x22B59D at pos. 4717
[matroska,webm @ 000002d9f5458000] Unknown entry 0x437D at pos. 6065
[matroska,webm @ 000002d9f5458000] Unknown entry 0x437D at pos. 6124
[matroska,webm @ 000002d9f5458000] Unknown entry 0x437D at pos. 6183
[matroska,webm @ 000002d9f5458000] Unknown entry 0x437D at pos. 6242
[matroska,webm @ 000002d9f5458000] Unknown entry 0x437D at pos. 6302
[matroska,webm @ 000002d9f5458000] Unknown entry 0x437D at pos. 6363
[matroska,webm @ 000002d9f5458000] Unknown entry 0x437D at pos. 6424
[matroska,webm @ 000002d9f5458000] Unknown entry 0x437D at pos. 6485
[matroska,webm @ 000002d9f5458000] Unknown entry 0x437D at pos. 6546
[matroska,webm @ 000002d9f5458000] Unknown entry 0x437D at pos. 6607
[matroska,webm @ 000002d9f5458000] Unknown entry 0x437D at pos. 6668
[matroska,webm @ 000002d9f5458000] Unknown entry 0x437D at pos. 6729
[matroska,webm @ 000002d9f5458000] Unknown entry 0x437D at pos. 6790
[matroska,webm @ 000002d9f5458000] Unknown entry 0x437D at pos. 6851
[matroska,webm @ 000002d9f5458000] Unknown entry 0x437D at pos. 6912
[matroska,webm @ 000002d9f5458000] Unknown entry 0x437D at pos. 6973
[matroska,webm @ 000002d9f5458000] Unknown entry 0x437D at pos. 7034
[matroska,webm @ 000002d9f5458000] Unknown entry 0x437D at pos. 7095
st:0 removing common factor 1000000 from timebase
st:1 removing common factor 1000000 from timebase
st:2 removing common factor 1000000 from timebase
st:3 removing common factor 1000000 from timebase
st:4 removing common factor 1000000 from timebase
[matroska,webm @ 000002d9f5458000] Before avformat_find_stream_info() pos: 7207 bytes read:34577 seeks:2 nb_streams:5
[h264 @ 000002d9f545f5c0] nal_unit_type: 7(SPS), nal_ref_idc: 3
[h264 @ 000002d9f545f5c0] nal_unit_type: 8(PPS), nal_ref_idc: 3
[h264 @ 000002d9f545f5c0] nal_unit_type: 7(SPS), nal_ref_idc: 3
[h264 @ 000002d9f545f5c0] nal_unit_type: 8(PPS), nal_ref_idc: 3
[h264 @ 000002d9f545f5c0] ct_type:1 pic_struct:0
[h264 @ 000002d9f545f5c0] nal_unit_type: 7(SPS), nal_ref_idc: 3
[h264 @ 000002d9f545f5c0] nal_unit_type: 8(PPS), nal_ref_idc: 3
[h264 @ 000002d9f545f5c0] nal_unit_type: 6(SEI), nal_ref_idc: 0
    Last message repeated 2 times
[h264 @ 000002d9f545f5c0] nal_unit_type: 5(IDR), nal_ref_idc: 3
    Last message repeated 3 times
[h264 @ 000002d9f545f5c0] Format yuv420p chosen by get_format().
[h264 @ 000002d9f545f5c0] Reinit context to 1920x1088, pix_fmt: yuv420p
[h264 @ 000002d9f545f5c0] ct_type:1 pic_struct:0
[h264 @ 000002d9f545f5c0] no picture 
[h264 @ 000002d9f545f5c0] ct_type:1 pic_struct:0
    Last message repeated 5 times
[matroska,webm @ 000002d9f5458000] first_dts 42 not matching first dts NOPTS (pts 0, duration 41) in the queue
[h264 @ 000002d9f545f5c0] ct_type:1 pic_struct:0
    Last message repeated 113 times
[matroska,webm @ 000002d9f5458000] max_analyze_duration 5000000 reached at 5005000 microseconds st:0
[matroska,webm @ 000002d9f5458000] Could not find codec parameters for stream 3 (Subtitle: hdmv_pgs_subtitle (pgssub)): unspecified size
Consider increasing the value for the 'analyzeduration' (0) and 'probesize' (5000000) options
[matroska,webm @ 000002d9f5458000] Could not find codec parameters for stream 4 (Subtitle: hdmv_pgs_subtitle (pgssub)): unspecified size
Consider increasing the value for the 'analyzeduration' (0) and 'probesize' (5000000) options
[matroska,webm @ 000002d9f5458000] After avformat_find_stream_info() pos: 2500562 bytes read:2527932 seeks:2 frames:1060
Input #0, matroska,webm, from 'J:\Remuxed\My Neighbor Totoro\My Neighbor Totoro.mkv':
  Metadata:
    title           : My Neighbor Totoro.mkv
    encoder         : libebml v1.4.2 + libmatroska v1.6.4
    creation_time   : 2022-01-13T01:00:16.000000Z
  Duration: 01:26:27.89, start: 0.000000, bitrate: 38167 kb/s
  Chapters:
    Chapter #0:0: start 0.000000, end 136.386250
      Metadata:
        title           : Chapter 01
    Chapter #0:1: start 136.386250, end 452.201750
      Metadata:
        title           : Chapter 02
    Chapter #0:2: start 452.201750, end 638.346042
      Metadata:
        title           : Chapter 03
    Chapter #0:3: start 638.346042, end 946.070125
      Metadata:
        title           : Chapter 04
    Chapter #0:4: start 946.070125, end 1257.589667
      Metadata:
        title           : Chapter 05
    Chapter #0:5: start 1257.589667, end 1500.332167
      Metadata:
        title           : Chapter 06
    Chapter #0:6: start 1500.332167, end 1891.389500
      Metadata:
        title           : Chapter 07
    Chapter #0:7: start 1891.389500, end 2150.565083
      Metadata:
        title           : Chapter 08
    Chapter #0:8: start 2150.565083, end 2484.565417
      Metadata:
        title           : Chapter 09
    Chapter #0:9: start 2484.565417, end 2782.654875
      Metadata:
        title           : Chapter 10
    Chapter #0:10: start 2782.654875, end 3010.674333
      Metadata:
        title           : Chapter 11
    Chapter #0:11: start 3010.674333, end 3381.044333
      Metadata:
        title           : Chapter 12
    Chapter #0:12: start 3381.044333, end 3731.394333
      Metadata:
        title           : Chapter 13
    Chapter #0:13: start 3731.394333, end 4032.611917
      Metadata:
        title           : Chapter 14
    Chapter #0:14: start 4032.611917, end 4300.379417
      Metadata:
        title           : Chapter 15
    Chapter #0:15: start 4300.379417, end 4628.081792
      Metadata:
        title           : Chapter 16
    Chapter #0:16: start 4628.081792, end 5008.795458
      Metadata:
        title           : Chapter 17
    Chapter #0:17: start 5008.795458, end 5187.891042
      Metadata:
        title           : Chapter 18
  Stream #0:0(eng), 120, 1/1000: Video: h264 (High), 1 reference frame, yuv420p(progressive, left), 1920x1080 (1920x1088) [SAR 1:1 DAR 16:9], 0/1, 23.98 fps, 23.98 tbr, 1k tbn (default)
    Metadata:
      BPS             : 34266104
      DURATION        : 01:26:27.891000000
      NUMBER_OF_FRAMES: 124385
      NUMBER_OF_BYTES : 22221101937
      SOURCE_ID       : 001011
      _STATISTICS_WRITING_APP: mkvmerge v63.0.0 ('Everything') 64-bit
      _STATISTICS_WRITING_DATE_UTC: 2022-01-13 01:00:16
      _STATISTICS_TAGS: BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES SOURCE_ID
  Stream #0:1(jpn), 470, 1/1000: Audio: dts (DTS-HD MA), 48000 Hz, stereo, s32p (24 bit) (default)
    Metadata:
      title           : Stereo
      BPS             : 1859208
      DURATION        : 01:26:27.893000000
      NUMBER_OF_FRAMES: 486365
      NUMBER_OF_BYTES : 1205671808
      SOURCE_ID       : 001101
      _STATISTICS_WRITING_APP: mkvmerge v63.0.0 ('Everything') 64-bit
      _STATISTICS_WRITING_DATE_UTC: 2022-01-13 01:00:16
      _STATISTICS_TAGS: BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES SOURCE_ID
  Stream #0:2(eng), 470, 1/1000: Audio: dts (DTS-HD MA), 48000 Hz, stereo, s32p (24 bit)
    Metadata:
      title           : Stereo
      BPS             : 2017303
      DURATION        : 01:26:27.893000000
      NUMBER_OF_FRAMES: 486365
      NUMBER_OF_BYTES : 1308194188
      SOURCE_ID       : 001100
      _STATISTICS_WRITING_APP: mkvmerge v63.0.0 ('Everything') 64-bit
      _STATISTICS_WRITING_DATE_UTC: 2022-01-13 01:00:16
      _STATISTICS_TAGS: BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES SOURCE_ID
  Stream #0:3(eng), 0, 1/1000: Subtitle: hdmv_pgs_subtitle
    Metadata:
      BPS             : 28590
      DURATION        : 01:25:39.698000000
      NUMBER_OF_FRAMES: 2114
      NUMBER_OF_BYTES : 18368539
      SOURCE_ID       : 001200
      _STATISTICS_WRITING_APP: mkvmerge v63.0.0 ('Everything') 64-bit
      _STATISTICS_WRITING_DATE_UTC: 2022-01-13 01:00:16
      _STATISTICS_TAGS: BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES SOURCE_ID
  Stream #0:4(eng), 0, 1/1000: Subtitle: hdmv_pgs_subtitle (default) (forced)
    Metadata:
      BPS             : 2657
      DURATION        : 00:01:56.429000000
      NUMBER_OF_FRAMES: 8
      NUMBER_OF_BYTES : 38674
      SOURCE_ID       : 001200
      _STATISTICS_WRITING_APP: mkvmerge v63.0.0 ('Everything') 64-bit
      _STATISTICS_WRITING_DATE_UTC: 2022-01-13 01:00:16
      _STATISTICS_TAGS: BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES SOURCE_ID
Successfully opened the file.
Parsing a group of options: output url My Neighbor Totoro.mkv.
Applying option map (set input stream mapping) with argument [v].
Applying option c:v (codec name) with argument hevc_nvenc.
Applying option b:v (video bitrate (please use -b:v)) with argument 4000k.
Applying option metadata:s:v (add metadata) with argument title=.
Applying option disposition:v (disposition) with argument default.
Applying option map (set input stream mapping) with argument 0:1.
Applying option c:a:0 (codec name) with argument eac3.
Applying option disposition:a:0 (disposition) with argument default.
Applying option map (set input stream mapping) with argument 0:2.
Applying option c:a:1 (codec name) with argument eac3.
Applying option disposition:a:1 (disposition) with argument 0.
Applying option map (set input stream mapping) with argument 0:3.
Applying option c:s:0 (codec name) with argument copy.
Applying option disposition:s:0 (disposition) with argument 0.
Applying option metadata:g (add metadata) with argument title=.
Successfully parsed a group of options.
Opening an output file: My Neighbor Totoro.mkv.
[file @ 000002d9f54d9500] Setting default whitelist 'file,crypto,data'
Successfully opened the file.
[AVHWDeviceContext @ 000002d9f6197fc0] Loaded lib: nvcuda.dll
[AVHWDeviceContext @ 000002d9f6197fc0] Loaded sym: cuInit
[AVHWDeviceContext @ 000002d9f6197fc0] Loaded sym: cuDeviceGetCount
[AVHWDeviceContext @ 000002d9f6197fc0] Loaded sym: cuDeviceGet
[AVHWDeviceContext @ 000002d9f6197fc0] Loaded sym: cuDeviceGetAttribute
[AVHWDeviceContext @ 000002d9f6197fc0] Loaded sym: cuDeviceGetName
[AVHWDeviceContext @ 000002d9f6197fc0] Loaded sym: cuDeviceComputeCapability
[AVHWDeviceContext @ 000002d9f6197fc0] Loaded sym: cuCtxCreate_v2
[AVHWDeviceContext @ 000002d9f6197fc0] Loaded sym: cuCtxSetLimit
[AVHWDeviceContext @ 000002d9f6197fc0] Loaded sym: cuCtxPushCurrent_v2
[AVHWDeviceContext @ 000002d9f6197fc0] Loaded sym: cuCtxPopCurrent_v2
[AVHWDeviceContext @ 000002d9f6197fc0] Loaded sym: cuCtxDestroy_v2
[AVHWDeviceContext @ 000002d9f6197fc0] Loaded sym: cuMemAlloc_v2
[AVHWDeviceContext @ 000002d9f6197fc0] Loaded sym: cuMemAllocPitch_v2
[AVHWDeviceContext @ 000002d9f6197fc0] Loaded sym: cuMemAllocManaged
[AVHWDeviceContext @ 000002d9f6197fc0] Loaded sym: cuMemsetD8Async
[AVHWDeviceContext @ 000002d9f6197fc0] Loaded sym: cuMemFree_v2
[AVHWDeviceContext @ 000002d9f6197fc0] Loaded sym: cuMemcpy
[AVHWDeviceContext @ 000002d9f6197fc0] Loaded sym: cuMemcpyAsync
[AVHWDeviceContext @ 000002d9f6197fc0] Loaded sym: cuMemcpy2D_v2
[AVHWDeviceContext @ 000002d9f6197fc0] Loaded sym: cuMemcpy2DAsync_v2
[AVHWDeviceContext @ 000002d9f6197fc0] Loaded sym: cuMemcpyHtoD_v2
[AVHWDeviceContext @ 000002d9f6197fc0] Loaded sym: cuMemcpyHtoDAsync_v2
[AVHWDeviceContext @ 000002d9f6197fc0] Loaded sym: cuMemcpyDtoH_v2
[AVHWDeviceContext @ 000002d9f6197fc0] Loaded sym: cuMemcpyDtoHAsync_v2
[AVHWDeviceContext @ 000002d9f6197fc0] Loaded sym: cuMemcpyDtoD_v2
[AVHWDeviceContext @ 000002d9f6197fc0] Loaded sym: cuMemcpyDtoDAsync_v2
[AVHWDeviceContext @ 000002d9f6197fc0] Loaded sym: cuGetErrorName
[AVHWDeviceContext @ 000002d9f6197fc0] Loaded sym: cuGetErrorString
[AVHWDeviceContext @ 000002d9f6197fc0] Loaded sym: cuCtxGetDevice
[AVHWDeviceContext @ 000002d9f6197fc0] Loaded sym: cuDevicePrimaryCtxRetain
[AVHWDeviceContext @ 000002d9f6197fc0] Loaded sym: cuDevicePrimaryCtxRelease
[AVHWDeviceContext @ 000002d9f6197fc0] Loaded sym: cuDevicePrimaryCtxSetFlags
[AVHWDeviceContext @ 000002d9f6197fc0] Loaded sym: cuDevicePrimaryCtxGetState
[AVHWDeviceContext @ 000002d9f6197fc0] Loaded sym: cuDevicePrimaryCtxReset
[AVHWDeviceContext @ 000002d9f6197fc0] Loaded sym: cuStreamCreate
[AVHWDeviceContext @ 000002d9f6197fc0] Loaded sym: cuStreamQuery
[AVHWDeviceContext @ 000002d9f6197fc0] Loaded sym: cuStreamSynchronize
[AVHWDeviceContext @ 000002d9f6197fc0] Loaded sym: cuStreamDestroy_v2
[AVHWDeviceContext @ 000002d9f6197fc0] Loaded sym: cuStreamAddCallback
[AVHWDeviceContext @ 000002d9f6197fc0] Loaded sym: cuEventCreate
[AVHWDeviceContext @ 000002d9f6197fc0] Loaded sym: cuEventDestroy_v2
[AVHWDeviceContext @ 000002d9f6197fc0] Loaded sym: cuEventSynchronize
[AVHWDeviceContext @ 000002d9f6197fc0] Loaded sym: cuEventQuery
[AVHWDeviceContext @ 000002d9f6197fc0] Loaded sym: cuEventRecord
[AVHWDeviceContext @ 000002d9f6197fc0] Loaded sym: cuLaunchKernel
[AVHWDeviceContext @ 000002d9f6197fc0] Loaded sym: cuLinkCreate
[AVHWDeviceContext @ 000002d9f6197fc0] Loaded sym: cuLinkAddData
[AVHWDeviceContext @ 000002d9f6197fc0] Loaded sym: cuLinkComplete
[AVHWDeviceContext @ 000002d9f6197fc0] Loaded sym: cuLinkDestroy
[AVHWDeviceContext @ 000002d9f6197fc0] Loaded sym: cuModuleLoadData
[AVHWDeviceContext @ 000002d9f6197fc0] Loaded sym: cuModuleUnload
[AVHWDeviceContext @ 000002d9f6197fc0] Loaded sym: cuModuleGetFunction
[AVHWDeviceContext @ 000002d9f6197fc0] Loaded sym: cuModuleGetGlobal
[AVHWDeviceContext @ 000002d9f6197fc0] Loaded sym: cuTexObjectCreate
[AVHWDeviceContext @ 000002d9f6197fc0] Loaded sym: cuTexObjectDestroy
[AVHWDeviceContext @ 000002d9f6197fc0] Loaded sym: cuGLGetDevices_v2
[AVHWDeviceContext @ 000002d9f6197fc0] Loaded sym: cuGraphicsGLRegisterImage
[AVHWDeviceContext @ 000002d9f6197fc0] Loaded sym: cuGraphicsUnregisterResource
[AVHWDeviceContext @ 000002d9f6197fc0] Loaded sym: cuGraphicsMapResources
[AVHWDeviceContext @ 000002d9f6197fc0] Loaded sym: cuGraphicsUnmapResources
[AVHWDeviceContext @ 000002d9f6197fc0] Loaded sym: cuGraphicsSubResourceGetMappedArray
[AVHWDeviceContext @ 000002d9f6197fc0] Loaded sym: cuDeviceGetUuid
[AVHWDeviceContext @ 000002d9f6197fc0] Loaded sym: cuImportExternalMemory
[AVHWDeviceContext @ 000002d9f6197fc0] Loaded sym: cuDestroyExternalMemory
[AVHWDeviceContext @ 000002d9f6197fc0] Loaded sym: cuExternalMemoryGetMappedBuffer
[AVHWDeviceContext @ 000002d9f6197fc0] Loaded sym: cuExternalMemoryGetMappedMipmappedArray
[AVHWDeviceContext @ 000002d9f6197fc0] Loaded sym: cuMipmappedArrayGetLevel
[AVHWDeviceContext @ 000002d9f6197fc0] Loaded sym: cuMipmappedArrayDestroy
[AVHWDeviceContext @ 000002d9f6197fc0] Loaded sym: cuImportExternalSemaphore
[AVHWDeviceContext @ 000002d9f6197fc0] Loaded sym: cuDestroyExternalSemaphore
[AVHWDeviceContext @ 000002d9f6197fc0] Loaded sym: cuSignalExternalSemaphoresAsync
[AVHWDeviceContext @ 000002d9f6197fc0] Loaded sym: cuWaitExternalSemaphoresAsync
detected 16 logical cores
[h264 @ 000002d9f54db2c0] nal_unit_type: 7(SPS), nal_ref_idc: 3
[h264 @ 000002d9f54db2c0] nal_unit_type: 8(PPS), nal_ref_idc: 3
Stream mapping:
  Stream #0:0 (h264) -> overlay_cuda (graph 0)
  Stream #0:4 (pgssub) -> overlay_cuda (graph 0)
  overlay_cuda:default (graph 0) -> Stream #0:0 (hevc_nvenc)
  Stream #0:1 -> #0:1 (dts (dca) -> eac3 (native))
  Stream #0:2 -> #0:2 (dts (dca) -> eac3 (native))
  Stream #0:3 -> #0:3 (copy)
Press [q] to stop, [?] for help
cur_dts is invalid st:0 (0) [init:0 i_done:0 finish:0] (this is harmless if it occurs once at the start per stream)
[NULL @ 000002d9f545f5c0] nal_unit_type: 7(SPS), nal_ref_idc: 3
[NULL @ 000002d9f545f5c0] nal_unit_type: 8(PPS), nal_ref_idc: 3
[NULL @ 000002d9f545f5c0] ct_type:1 pic_struct:0
cur_dts is invalid st:0 (0) [init:0 i_done:0 finish:0] (this is harmless if it occurs once at the start per stream)
[h264 @ 000002d9f54db2c0] nal_unit_type: 7(SPS), nal_ref_idc: 3
[h264 @ 000002d9f54db2c0] nal_unit_type: 8(PPS), nal_ref_idc: 3
[h264 @ 000002d9f54db2c0] nal_unit_type: 6(SEI), nal_ref_idc: 0
    Last message repeated 2 times
[h264 @ 000002d9f54db2c0] nal_unit_type: 5(IDR), nal_ref_idc: 3
    Last message repeated 3 times
[h264 @ 000002d9f54db2c0] Format cuda chosen by get_format().
[h264 @ 000002d9f54db2c0] Format cuda requires hwaccel initialisation.
[AVHWFramesContext @ 000002d9f61a7200] CUDA texture alignment: 512
[AVHWFramesContext @ 000002d9f61573c0] CUDA texture alignment: 512
[h264 @ 000002d9f54db2c0] Loaded lib: nvcuvid.dll
[h264 @ 000002d9f54db2c0] Loaded sym: cuvidGetDecoderCaps
[h264 @ 000002d9f54db2c0] Loaded sym: cuvidCreateDecoder
[h264 @ 000002d9f54db2c0] Loaded sym: cuvidDestroyDecoder
[h264 @ 000002d9f54db2c0] Loaded sym: cuvidDecodePicture
[h264 @ 000002d9f54db2c0] Loaded sym: cuvidGetDecodeStatus
[h264 @ 000002d9f54db2c0] Loaded sym: cuvidReconfigureDecoder
[h264 @ 000002d9f54db2c0] Loaded sym: cuvidMapVideoFrame64
[h264 @ 000002d9f54db2c0] Loaded sym: cuvidUnmapVideoFrame64
[h264 @ 000002d9f54db2c0] Loaded sym: cuvidCtxLockCreate
[h264 @ 000002d9f54db2c0] Loaded sym: cuvidCtxLockDestroy
[h264 @ 000002d9f54db2c0] Loaded sym: cuvidCtxLock
[h264 @ 000002d9f54db2c0] Loaded sym: cuvidCtxUnlock
[h264 @ 000002d9f54db2c0] Loaded sym: cuvidCreateVideoSource
[h264 @ 000002d9f54db2c0] Loaded sym: cuvidCreateVideoSourceW
[h264 @ 000002d9f54db2c0] Loaded sym: cuvidDestroyVideoSource
[h264 @ 000002d9f54db2c0] Loaded sym: cuvidSetVideoSourceState
[h264 @ 000002d9f54db2c0] Loaded sym: cuvidGetVideoSourceState
[h264 @ 000002d9f54db2c0] Loaded sym: cuvidGetSourceVideoFormat
[h264 @ 000002d9f54db2c0] Loaded sym: cuvidGetSourceAudioFormat
[h264 @ 000002d9f54db2c0] Loaded sym: cuvidCreateVideoParser
[h264 @ 000002d9f54db2c0] Loaded sym: cuvidParseVideoData
[h264 @ 000002d9f54db2c0] Loaded sym: cuvidDestroyVideoParser
[graph_2_in_0_2 @ 000002d9f5a6d280] Setting 'time_base' to value '1/48000'
[graph_2_in_0_2 @ 000002d9f5a6d280] Setting 'sample_rate' to value '48000'
[graph_2_in_0_2 @ 000002d9f5a6d280] Setting 'sample_fmt' to value 's32p'
[graph_2_in_0_2 @ 000002d9f5a6d280] Setting 'channel_layout' to value '0x3'
[graph_2_in_0_2 @ 000002d9f5a6d280] tb:1/48000 samplefmt:s32p samplerate:48000 chlayout:0x3
[format_out_0_2 @ 000002d9f5a6be80] Setting 'sample_fmts' to value 'fltp'
[format_out_0_2 @ 000002d9f5a6be80] Setting 'sample_rates' to value '48000|44100|32000'
[format_out_0_2 @ 000002d9f5a6be80] Setting 'channel_layouts' to value '0x4|0x3|0x103|0x7|0x603|0x33|0x107|0x607|0x37|0xc|0xb|0x10b|0xf|0x60b|0x3b|0x10f|0x60f|0x3f'
[format_out_0_2 @ 000002d9f5a6be80] auto-inserting filter 'auto_aresample_0' between the filter 'Parsed_anull_0' and the filter 'format_out_0_2'
[AVFilterGraph @ 000002d9f61a74c0] query_formats: 5 queried, 9 merged, 3 already done, 0 delayed
[auto_aresample_0 @ 000002d9f5a6ba80] [SWR @ 000002d9f5a3cd80] Using fltp internally between filters
[auto_aresample_0 @ 000002d9f5a6ba80] ch:2 chl:stereo fmt:s32p r:48000Hz -> ch:2 chl:stereo fmt:fltp r:48000Hz
cur_dts is invalid st:0 (0) [init:0 i_done:0 finish:0] (this is harmless if it occurs once at the start per stream)
    Last message repeated 6 times
[h264 @ 000002d9f54db2c0] NVDEC capabilities:
[h264 @ 000002d9f54db2c0] format supported: yes, max_mb_count: 65536
[h264 @ 000002d9f54db2c0] min_width: 48, max_width: 4096
[h264 @ 000002d9f54db2c0] min_height: 16, max_height: 4096
cur_dts is invalid st:0 (0) [init:0 i_done:0 finish:0] (this is harmless if it occurs once at the start per stream)
[graph_1_in_0_1 @ 000002d9f5a6bb80] Setting 'time_base' to value '1/48000'
[graph_1_in_0_1 @ 000002d9f5a6bb80] Setting 'sample_rate' to value '48000'
[graph_1_in_0_1 @ 000002d9f5a6bb80] Setting 'sample_fmt' to value 's32p'
[graph_1_in_0_1 @ 000002d9f5a6bb80] Setting 'channel_layout' to value '0x3'
[graph_1_in_0_1 @ 000002d9f5a6bb80] tb:1/48000 samplefmt:s32p samplerate:48000 chlayout:0x3
[format_out_0_1 @ 000002d9f5a6bf80] Setting 'sample_fmts' to value 'fltp'
[format_out_0_1 @ 000002d9f5a6bf80] Setting 'sample_rates' to value '48000|44100|32000'
[format_out_0_1 @ 000002d9f5a6bf80] Setting 'channel_layouts' to value '0x4|0x3|0x103|0x7|0x603|0x33|0x107|0x607|0x37|0xc|0xb|0x10b|0xf|0x60b|0x3b|0x10f|0x60f|0x3f'
[format_out_0_1 @ 000002d9f5a6bf80] auto-inserting filter 'auto_aresample_0' between the filter 'Parsed_anull_0' and the filter 'format_out_0_1'
[AVFilterGraph @ 000002d9f6157cc0] query_formats: 5 queried, 9 merged, 3 already done, 0 delayed
[auto_aresample_0 @ 000002d9f5a6cf80] [SWR @ 000002d9f683d000] Using fltp internally between filters
[auto_aresample_0 @ 000002d9f5a6cf80] ch:2 chl:stereo fmt:s32p r:48000Hz -> ch:2 chl:stereo fmt:fltp r:48000Hz
cur_dts is invalid st:0 (0) [init:0 i_done:0 finish:0] (this is harmless if it occurs once at the start per stream)
    Last message repeated 7 times
[NULL @ 000002d9f545f5c0] ct_type:1 pic_struct:0
[h264 @ 000002d9f54db2c0] Reinit context to 1920x1088, pix_fmt: cuda
[h264 @ 000002d9f54db2c0] ct_type:1 pic_struct:0
[h264 @ 000002d9f54db2c0] no picture 
cur_dts is invalid st:0 (0) [init:0 i_done:0 finish:0] (this is harmless if it occurs once at the start per stream)
[NULL @ 000002d9f545f5c0] ct_type:1 pic_struct:0
[h264 @ 000002d9f54dce40] nal_unit_type: 6(SEI), nal_ref_idc: 0
[h264 @ 000002d9f54dce40] nal_unit_type: 1(Coded slice of a non-IDR picture), nal_ref_idc: 2
    Last message repeated 3 times
[h264 @ 000002d9f54dce40] ct_type:1 pic_struct:0
[h264 @ 000002d9f54dce40] no picture 
cur_dts is invalid st:0 (0) [init:0 i_done:0 finish:0] (this is harmless if it occurs once at the start per stream)
[h264 @ 000002d9f54dc640] nal_unit_type: 6(SEI), nal_ref_idc: 0
[h264 @ 000002d9f54dc640] nal_unit_type: 1(Coded slice of a non-IDR picture), nal_ref_idc: 0
    Last message repeated 3 times
cur_dts is invalid st:0 (0) [init:0 i_done:0 finish:0] (this is harmless if it occurs once at the start per stream)
    Last message repeated 5 times
[h264 @ 000002d9f54dc640] ct_type:1 pic_struct:0
[h264 @ 000002d9f54dc640] no picture 
cur_dts is invalid st:0 (0) [init:0 i_done:0 finish:0] (this is harmless if it occurs once at the start per stream)
    Last message repeated 25 times
[NULL @ 000002d9f545f5c0] ct_type:1 pic_struct:0
cur_dts is invalid st:0 (0) [init:0 i_done:0 finish:0] (this is harmless if it occurs once at the start per stream)
[NULL @ 000002d9f545f5c0] ct_type:1 pic_struct:0
[h264 @ 000002d9f54db680] nal_unit_type: 6(SEI), nal_ref_idc: 0
[h264 @ 000002d9f54db680] nal_unit_type: 1(Coded slice of a non-IDR picture), nal_ref_idc: 2
    Last message repeated 3 times
[h264 @ 000002d9f54db680] ct_type:1 pic_struct:0
[h264 @ 000002d9f54db680] no picture 
cur_dts is invalid st:0 (0) [init:0 i_done:0 finish:0] (this is harmless if it occurs once at the start per stream)
[NULL @ 000002d9f545f5c0] ct_type:1 pic_struct:0
[h264 @ 000002d9f54dbe80] nal_unit_type: 6(SEI), nal_ref_idc: 0
[h264 @ 000002d9f54dbe80] nal_unit_type: 1(Coded slice of a non-IDR picture), nal_ref_idc: 2
    Last message repeated 3 times
[h264 @ 000002d9f54dbe80] ct_type:1 pic_struct:0
cur_dts is invalid st:0 (0) [init:0 i_done:0 finish:0] (this is harmless if it occurs once at the start per stream)
    Last message repeated 1 times
[h264 @ 000002d9f54dc280] nal_unit_type: 6(SEI), nal_ref_idc: 0
[h264 @ 000002d9f54dc280] nal_unit_type: 1(Coded slice of a non-IDR picture), nal_ref_idc: 0
    Last message repeated 1 times
cur_dts is invalid st:0 (0) [init:0 i_done:0 finish:0] (this is harmless if it occurs once at the start per stream)
[h264 @ 000002d9f54dc280] nal_unit_type: 1(Coded slice of a non-IDR picture), nal_ref_idc: 0
    Last message repeated 1 times
cur_dts is invalid st:0 (0) [init:0 i_done:0 finish:0] (this is harmless if it occurs once at the start per stream)
    Last message repeated 4 times
[h264 @ 000002d9f54dc280] ct_type:1 pic_struct:0
cur_dts is invalid st:0 (0) [init:0 i_done:0 finish:0] (this is harmless if it occurs once at the start per stream)
    Last message repeated 8 times
[NULL @ 000002d9f545f5c0] ct_type:1 pic_struct:0
cur_dts is invalid st:0 (0) [init:0 i_done:0 finish:0] (this is harmless if it occurs once at the start per stream)
[NULL @ 000002d9f545f5c0] ct_type:1 pic_struct:0
[h264 @ 000002d9f54dba80] nal_unit_type: 6(SEI), nal_ref_idc: 0
[h264 @ 000002d9f54dba80] nal_unit_type: 1(Coded slice of a non-IDR picture), nal_ref_idc: 2
    Last message repeated 3 times
[h264 @ 000002d9f54dba80] ct_type:1 pic_struct:0
cur_dts is invalid st:0 (0) [init:0 i_done:0 finish:0] (this is harmless if it occurs once at the start per stream)
[NULL @ 000002d9f545f5c0] ct_type:1 pic_struct:0
[h264 @ 000002d9f601e780] nal_unit_type: 6(SEI), nal_ref_idc: 0
[h264 @ 000002d9f601e780] nal_unit_type: 1(Coded slice of a non-IDR picture), nal_ref_idc: 2
    Last message repeated 3 times
[h264 @ 000002d9f601e780] ct_type:1 pic_struct:0
cur_dts is invalid st:0 (0) [init:0 i_done:0 finish:0] (this is harmless if it occurs once at the start per stream)
[h264 @ 000002d9f601fb40] nal_unit_type: 6(SEI), nal_ref_idc: 0
[h264 @ 000002d9f601fb40] nal_unit_type: 1(Coded slice of a non-IDR picture), nal_ref_idc: 0
    Last message repeated 3 times
cur_dts is invalid st:0 (0) [init:0 i_done:0 finish:0] (this is harmless if it occurs once at the start per stream)
    Last message repeated 5 times
[h264 @ 000002d9f601fb40] ct_type:1 pic_struct:0
cur_dts is invalid st:0 (0) [init:0 i_done:0 finish:0] (this is harmless if it occurs once at the start per stream)
    Last message repeated 25 times
[NULL @ 000002d9f545f5c0] ct_type:1 pic_struct:0
cur_dts is invalid st:0 (0) [init:0 i_done:0 finish:0] (this is harmless if it occurs once at the start per stream)
[NULL @ 000002d9f545f5c0] ct_type:1 pic_struct:0
[h264 @ 000002d9f601ff00] nal_unit_type: 6(SEI), nal_ref_idc: 0
[h264 @ 000002d9f601ff00] nal_unit_type: 1(Coded slice of a non-IDR picture), nal_ref_idc: 2
    Last message repeated 3 times
[h264 @ 000002d9f601ff00] ct_type:1 pic_struct:0
cur_dts is invalid st:0 (0) [init:0 i_done:0 finish:0] (this is harmless if it occurs once at the start per stream)
[NULL @ 000002d9f545f5c0] ct_type:1 pic_struct:0
[h264 @ 000002d9f601eb80] nal_unit_type: 6(SEI), nal_ref_idc: 0
[h264 @ 000002d9f601eb80] nal_unit_type: 1(Coded slice of a non-IDR picture), nal_ref_idc: 2
    Last message repeated 3 times
[h264 @ 000002d9f601eb80] ct_type:1 pic_struct:0
cur_dts is invalid st:0 (0) [init:0 i_done:0 finish:0] (this is harmless if it occurs once at the start per stream)
    Last message repeated 2 times
[h264 @ 000002d9f601df80] nal_unit_type: 6(SEI), nal_ref_idc: 0
[h264 @ 000002d9f601df80] nal_unit_type: 1(Coded slice of a non-IDR picture), nal_ref_idc: 0
    Last message repeated 2 times
cur_dts is invalid st:0 (0) [init:0 i_done:0 finish:0] (this is harmless if it occurs once at the start per stream)
[h264 @ 000002d9f601df80] nal_unit_type: 1(Coded slice of a non-IDR picture), nal_ref_idc: 0
cur_dts is invalid st:0 (0) [init:0 i_done:0 finish:0] (this is harmless if it occurs once at the start per stream)
    Last message repeated 6 times
[h264 @ 000002d9f601df80] ct_type:1 pic_struct:0
cur_dts is invalid st:0 (0) [init:0 i_done:0 finish:0] (this is harmless if it occurs once at the start per stream)
    Last message repeated 5 times
[NULL @ 000002d9f545f5c0] ct_type:1 pic_struct:0
cur_dts is invalid st:0 (0) [init:0 i_done:0 finish:0] (this is harmless if it occurs once at the start per stream)
[NULL @ 000002d9f545f5c0] ct_type:1 pic_struct:0
[h264 @ 000002d9f601e380] nal_unit_type: 6(SEI), nal_ref_idc: 0
[h264 @ 000002d9f601e380] nal_unit_type: 1(Coded slice of a non-IDR picture), nal_ref_idc: 2
    Last message repeated 3 times
[h264 @ 000002d9f601e380] ct_type:1 pic_struct:0
cur_dts is invalid st:0 (0) [init:0 i_done:0 finish:0] (this is harmless if it occurs once at the start per stream)
[NULL @ 000002d9f545f5c0] ct_type:1 pic_struct:0
[h264 @ 000002d9f6020300] nal_unit_type: 6(SEI), nal_ref_idc: 0
[h264 @ 000002d9f6020300] nal_unit_type: 1(Coded slice of a non-IDR picture), nal_ref_idc: 2
    Last message repeated 3 times
[h264 @ 000002d9f6020300] ct_type:1 pic_struct:0
cur_dts is invalid st:0 (0) [init:0 i_done:0 finish:0] (this is harmless if it occurs once at the start per stream)
[h264 @ 000002d9f6020b00] nal_unit_type: 6(SEI), nal_ref_idc: 0
[h264 @ 000002d9f6020b00] nal_unit_type: 1(Coded slice of a non-IDR picture), nal_ref_idc: 0
    Last message repeated 3 times
cur_dts is invalid st:0 (0) [init:0 i_done:0 finish:0] (this is harmless if it occurs once at the start per stream)
    Last message repeated 5 times
[h264 @ 000002d9f6020b00] ct_type:1 pic_struct:0
cur_dts is invalid st:0 (0) [init:0 i_done:0 finish:0] (this is harmless if it occurs once at the start per stream)
    Last message repeated 25 times
[NULL @ 000002d9f545f5c0] ct_type:1 pic_struct:0
cur_dts is invalid st:0 (0) [init:0 i_done:0 finish:0] (this is harmless if it occurs once at the start per stream)
[NULL @ 000002d9f545f5c0] ct_type:1 pic_struct:0
[h264 @ 000002d9f601ef40] nal_unit_type: 6(SEI), nal_ref_idc: 0
[h264 @ 000002d9f601ef40] nal_unit_type: 1(Coded slice of a non-IDR picture), nal_ref_idc: 2
    Last message repeated 3 times
[h264 @ 000002d9f601ef40] ct_type:1 pic_struct:0
[h264 @ 000002d9f54db2c0] nal_unit_type: 6(SEI), nal_ref_idc: 0
[h264 @ 000002d9f54db2c0] nal_unit_type: 1(Coded slice of a non-IDR picture), nal_ref_idc: 2
    Last message repeated 2 times
cur_dts is invalid st:0 (0) [init:0 i_done:0 finish:0] (this is harmless if it occurs once at the start per stream)
[h264 @ 000002d9f54db2c0] nal_unit_type: 1(Coded slice of a non-IDR picture), nal_ref_idc: 2
[NULL @ 000002d9f545f5c0] ct_type:1 pic_struct:0
[h264 @ 000002d9f54db2c0] ct_type:1 pic_struct:0
[h264 @ 000002d9f54dce40] nal_unit_type: 6(SEI), nal_ref_idc: 0
[h264 @ 000002d9f54dce40] nal_unit_type: 1(Coded slice of a non-IDR picture), nal_ref_idc: 0
    Last message repeated 3 times
cur_dts is invalid st:0 (0) [init:0 i_done:0 finish:0] (this is harmless if it occurs once at the start per stream)
    Last message repeated 5 times
[h264 @ 000002d9f54dce40] ct_type:1 pic_struct:0
cur_dts is invalid st:0 (0) [init:0 i_done:0 finish:0] (this is harmless if it occurs once at the start per stream)
    Last message repeated 10 times
[NULL @ 000002d9f545f5c0] ct_type:1 pic_struct:0
[h264 @ 000002d9f54dc640] nal_unit_type: 6(SEI), nal_ref_idc: 0
[h264 @ 000002d9f54dc640] nal_unit_type: 1(Coded slice of a non-IDR picture), nal_ref_idc: 2
    Last message repeated 3 times
cur_dts is invalid st:0 (0) [init:0 i_done:0 finish:0] (this is harmless if it occurs once at the start per stream)
[NULL @ 000002d9f545f5c0] ct_type:1 pic_struct:0
[h264 @ 000002d9f54dc640] ct_type:1 pic_struct:0
[h264 @ 000002d9f54db680] nal_unit_type: 6(SEI), nal_ref_idc: 0
[h264 @ 000002d9f54db680] nal_unit_type: 1(Coded slice of a non-IDR picture), nal_ref_idc: 2
    Last message repeated 3 times
[h264 @ 000002d9f54db680] ct_type:1 pic_struct:0
[graph 0 input from stream 0:0 @ 000002d9f5a6c980] Setting 'video_size' to value '1920x1080'
[graph 0 input from stream 0:0 @ 000002d9f5a6c980] Setting 'pix_fmt' to value '117'
[graph 0 input from stream 0:0 @ 000002d9f5a6c980] Setting 'time_base' to value '1/1000'
[graph 0 input from stream 0:0 @ 000002d9f5a6c980] Setting 'pixel_aspect' to value '1/1'
[graph 0 input from stream 0:0 @ 000002d9f5a6c980] Setting 'frame_rate' to value '24000/1001'
[graph 0 input from stream 0:0 @ 000002d9f5a6c980] w:1920 h:1080 pixfmt:cuda tb:1/1000 fr:24000/1001 sar:1/1
[matroska,webm @ 000002d9f5458000] sub2video: using 1920x1080 canvas
[graph 0 input from stream 0:4 @ 000002d9f5a6bc80] Setting 'video_size' to value '1920x1080'
[graph 0 input from stream 0:4 @ 000002d9f5a6bc80] Setting 'pix_fmt' to value '28'
[graph 0 input from stream 0:4 @ 000002d9f5a6bc80] Setting 'time_base' to value '1/1000'
[graph 0 input from stream 0:4 @ 000002d9f5a6bc80] Setting 'pixel_aspect' to value '0/1'
[graph 0 input from stream 0:4 @ 000002d9f5a6bc80] w:1920 h:1080 pixfmt:bgra tb:1/1000 fr:0/1 sar:0/1
[format @ 000002d9f5a6cb80] Setting 'pix_fmts' to value 'yuv420p|nv12|p010le|yuv444p|p016le|yuv444p16le|bgr0|rgb0|gbrp|gbrp16le|cuda|d3d11'
[auto_scale_0 @ 000002d9f5a6b780] w:iw h:ih flags:'' interl:0
[trim_in_0_4 @ 000002d9f5a6ca80] auto-inserting filter 'auto_scale_0' between the filter 'graph 0 input from stream 0:4' and the filter 'trim_in_0_4'
Impossible to convert between the formats supported by the filter 'graph 0 input from stream 0:4' and the filter 'auto_scale_0'
Error reinitializing filters!
Failed to inject frame into filter network: Function not implemented
Error while processing the decoded data for stream #0:0
[AVIOContext @ 000002d9f545f980] Statistics: 0 bytes written, 0 seeks, 0 writeouts
[AVIOContext @ 000002d9f5460780] Statistics: 3070479 bytes read, 5 seeks
Conversion failed!


More information about the ffmpeg-user mailing list