Audio channels mixup after seeking
mpv Information
mpv 0.35.1 Copyright © 2000-2023 mpv/MPlayer/mplayer2 projects
built on UNKNOWN
FFmpeg library versions:
libavutil 57.28.100
libavcodec 59.37.100
libavformat 59.27.100
libswscale 6.7.100
libavfilter 8.44.100
libswresample 4.7.100
FFmpeg version: 5.1.6-0+deb12u1+rpt3
Other Information
- Linux version: Debian GNU/Linux 12 (bookworm)
- Kernel Version: Linux rpi 6.12.20+rpt-rpi-v8 #1 SMP PREEMPT Debian 1:6.12.20-1+rpt1~bpo12+1 (2025-03-19) aarch64 GNU/Linux
- GPU Model:
- Mesa/GPU Driver Version:
- Window Manager and Version: Raspberry Pi OS Lite with cage wayland compositor
- Source of mpv: http://deb.debian.org/debian
- Latest known working version:
- Issue started after the following happened:
Reproduction Steps
I tried this on a Raspberry Pi 4B with Raspberry Pi OS Lite.
Installed packages: cage, pulseaudio, mpv
By default, it doesn't output 5.1 audio. I needed a few configurations.
~/.config/mpv/mpv.conf
vo=gpu
gpu-context=wayland
hwdec=auto-copy
framedrop=decoder
interpolation=no
audio-device=alsa/hdmi:CARD=vc4hdmi0,DEV=0
audio-channels=auto
Steps:
- Play a 5.1 channel video file
cage mpv --fs --geometry=1920x1080 video.mp4 - Play few seconds
- Press the rewind button
- You will hear audio channels mixed up
For a workaround, I'm currently using save-position-on-quit= config and after I seek, I exit mpv and play again.
Expected Behavior
Rewind or seek forward should work fine
Actual Behavior
After seeking backwards, it plays audio channels mixed up. For example, the center channel sounds on the left surround speaker, and the left channel plays on the right surround speaker
Log File
[ 0.677][v][vo/gpu] Testing FBO format rgba16f
[ 0.677][d][vo/gpu] Resizing texture: 16x16
[ 0.677][v][vo/gpu] Using FBO format rgba16f.
[ 0.677][v][vo/gpu] No advanced processing required. Enabling dumb mode.
[ 0.677][v][vo/gpu/wayland] Handling resize on the egl side
[ 0.716][v][vo/gpu] Resize: 1920x1080
[ 0.716][v][vo/gpu] Window size: 1920x1080 (Borders: l=0 t=0 r=0 b=0)
[ 0.716][v][vo/gpu] Video source: 1920x1080 (1:1)
[ 0.716][v][vo/gpu] Video display: (0, 0) 1920x1080 -> (0, 0) 1920x1080
[ 0.716][v][vo/gpu] Video scale: 1.000000/1.000000
[ 0.716][v][vo/gpu] OSD borders: l=0 t=0 r=0 b=0
[ 0.716][v][vo/gpu] Video borders: l=0 t=0 r=0 b=0
[ 0.716][v][vo/gpu] Reported display depth: 10
[ 0.790][d][vo/gpu/opengl] vertex shader source:
[ 0.790][d][vo/gpu/opengl] [ 1] #version 140
[ 0.790][d][vo/gpu/opengl] [ 2] #define tex1D texture
[ 0.790][d][vo/gpu/opengl] [ 3] #define tex3D texture
[ 0.790][d][vo/gpu/opengl] [ 4] #define LUT_POS(x, lut_size) mix(0.5 / (lut_size), 1.0 - 0.5 / (lut_size), (x))
[ 0.790][d][vo/gpu/opengl] [ 5] in vec2 vertex_position;
[ 0.790][d][vo/gpu/opengl] [ 6] in vec2 vertex_texcoord0;
[ 0.790][d][vo/gpu/opengl] [ 7] out vec2 texcoord0;
[ 0.790][d][vo/gpu/opengl] [ 8] in vec2 vertex_texcoord1;
[ 0.790][d][vo/gpu/opengl] [ 9] out vec2 texcoord1;
[ 0.790][d][vo/gpu/opengl] [ 10] in vec2 vertex_texcoord2;
[ 0.790][d][vo/gpu/opengl] [ 11] out vec2 texcoord2;
[ 0.790][d][vo/gpu/opengl] [ 12] void main() {
[ 0.790][d][vo/gpu/opengl] [ 13] gl_Position = vec4(vertex_position, 1.0, 1.0);
[ 0.790][d][vo/gpu/opengl] [ 14] texcoord0 = vertex_texcoord0;
[ 0.790][d][vo/gpu/opengl] [ 15] texcoord1 = vertex_texcoord1;
[ 0.790][d][vo/gpu/opengl] [ 16] texcoord2 = vertex_texcoord2;
[ 0.790][d][vo/gpu/opengl] [ 17] }
[ 0.790][d][vo/gpu/opengl] fragment shader source:
[ 0.790][d][vo/gpu/opengl] [ 1] #version 140
[ 0.790][d][vo/gpu/opengl] [ 2] #define tex1D texture
[ 0.790][d][vo/gpu/opengl] [ 3] #define tex3D texture
[ 0.790][d][vo/gpu/opengl] [ 4] #define LUT_POS(x, lut_size) mix(0.5 / (lut_size), 1.0 - 0.5 / (lut_size), (x))
[ 0.790][d][vo/gpu/opengl] [ 5] out vec4 out_color;
[ 0.790][d][vo/gpu/opengl] [ 6] in vec2 texcoord0;
[ 0.790][d][vo/gpu/opengl] [ 7] in vec2 texcoord1;
[ 0.790][d][vo/gpu/opengl] [ 8] in vec2 texcoord2;
[ 0.790][d][vo/gpu/opengl] [ 9] uniform mat3 colormatrix;
[ 0.790][d][vo/gpu/opengl] [ 10] uniform vec3 colormatrix_c;
[ 0.790][d][vo/gpu/opengl] [ 11] uniform vec3 src_luma;
[ 0.790][d][vo/gpu/opengl] [ 12] uniform vec3 dst_luma;
[ 0.790][d][vo/gpu/opengl] [ 13] uniform sampler2D texture0;
[ 0.790][d][vo/gpu/opengl] [ 14] uniform vec2 texture_size0;
[ 0.790][d][vo/gpu/opengl] [ 15] uniform mat2 texture_rot0;
[ 0.790][d][vo/gpu/opengl] [ 16] uniform vec2 texture_off0;
[ 0.790][d][vo/gpu/opengl] [ 17] uniform vec2 pixel_size0;
[ 0.790][d][vo/gpu/opengl] [ 18] uniform sampler2D texture1;
[ 0.790][d][vo/gpu/opengl] [ 19] uniform vec2 texture_size1;
[ 0.790][d][vo/gpu/opengl] [ 20] uniform mat2 texture_rot1;
[ 0.790][d][vo/gpu/opengl] [ 21] uniform vec2 texture_off1;
[ 0.790][d][vo/gpu/opengl] [ 22] uniform vec2 pixel_size1;
[ 0.790][d][vo/gpu/opengl] [ 23] uniform sampler2D texture2;
[ 0.790][d][vo/gpu/opengl] [ 24] uniform vec2 texture_size2;
[ 0.790][d][vo/gpu/opengl] [ 25] uniform mat2 texture_rot2;
[ 0.790][d][vo/gpu/opengl] [ 26] uniform vec2 texture_off2;
[ 0.790][d][vo/gpu/opengl] [ 27] uniform vec2 pixel_size2;
[ 0.790][d][vo/gpu/opengl] [ 28] void main() {
[ 0.790][d][vo/gpu/opengl] [ 29] vec4 color = vec4(0.0, 0.0, 0.0, 1.0);
[ 0.790][d][vo/gpu/opengl] [ 30] color.r = 1.000000 * vec4(texture(texture0, texcoord0)).r;
[ 0.790][d][vo/gpu/opengl] [ 31] color.g = 1.000000 * vec4(texture(texture1, texcoord1)).r;
[ 0.790][d][vo/gpu/opengl] [ 32] color.b = 1.000000 * vec4(texture(texture2, texcoord2)).r;
[ 0.790][d][vo/gpu/opengl] [ 33] color = color.rgbr;
[ 0.790][d][vo/gpu/opengl] [ 34] color.rgb = mat3(colormatrix) * color.rgb + colormatrix_c;
[ 0.790][d][vo/gpu/opengl] [ 35] color.a = 1.0;
[ 0.790][d][vo/gpu/opengl] [ 36] // color mapping
[ 0.790][d][vo/gpu/opengl] [ 37] color.rgb *= vec3(1.000000);
[ 0.790][d][vo/gpu/opengl] [ 38] color.rgb *= vec3(1.000000);
[ 0.790][d][vo/gpu/opengl] [ 39] out_color = color;
[ 0.790][d][vo/gpu/opengl] [ 40] }
[ 0.792][d][vo/gpu/opengl] shader link log (status=1):
[ 0.806][v][vo/gpu/wayland] Surface entered output Sony SONY TV *01 (0x1a), scale = 1, refresh rate = 60.000000 Hz
[ 0.806][v][cplayer] first video frame after restart shown
[ 0.842][v][vo/gpu] Resize: 1920x1080
[ 0.842][v][vo/gpu] Window size: 1920x1080 (Borders: l=0 t=0 r=0 b=0)
[ 0.842][v][vo/gpu] Video source: 1920x1080 (1:1)
[ 0.842][v][vo/gpu] Video display: (0, 0) 1920x1080 -> (0, 0) 1920x1080
[ 0.842][v][vo/gpu] Video scale: 1.000000/1.000000
[ 0.842][v][vo/gpu] OSD borders: l=0 t=0 r=0 b=0
[ 0.842][v][vo/gpu] Video borders: l=0 t=0 r=0 b=0
[ 0.842][v][vo/gpu] Reported display depth: 10
[ 0.842][v][vo/gpu] Assuming 60.000000 FPS for display sync.
[ 0.843][v][cplayer] audio ready
[ 0.843][d][cplayer] starting video playback
[ 0.843][v][cplayer] delaying audio start 0.003000 vs. 0.000000, diff=0.003000
[ 0.843][v][cplayer] playback restart complete @ 0.000000, audio=ready, video=playing
[ 0.844][v][cplayer] starting audio playback
[ 0.853][v][ao/alsa] starting AO
[ 0.860][d][cplayer] Run command: change-list, flags=64, args=[name="shared-script-properties", operation="append", value="osc-margins=0.000000,0.000000,0.000000,0.000000"]
[ 0.860][v][cplayer] Set property: shared-script-properties -> 1
[ 0.860][d][cplayer] Run command: define-section, flags=64, args=[name="input_osc", contents="", flags="default"]
[ 0.861][d][cplayer] Run command: enable-section, flags=64, args=[name="input_osc", flags="allow-hide-cursor+allow-vo-dragging"]
[ 0.861][d][cplayer] Run command: define-section, flags=64, args=[name="input_forced_osc", contents="", flags="force"]
[ 0.861][d][cplayer] Run command: enable-section, flags=64, args=[name="input_forced_osc", flags="allow-hide-cursor+allow-vo-dragging"]
[ 0.861][d][osc] osc_init
[ 0.863][d][cplayer] Run command: change-list, flags=64, args=[name="shared-script-properties", operation="append", value="osc-margins=0.000000,0.000000,0.000000,0.000000"]
[ 0.864][v][cplayer] Set property: shared-script-properties -> 1
[ 0.880][v][vo/gpu/wayland] Enabling idle inhibitor
[ 45.742][d][cplayer] Run command: seek, flags=73, args=[target="-60.000000", flags="relative", legacy="unused"]
[ 45.749][v][mkv] queuing seek to -15.052000
[ 45.751][v][mkv] execute seek (to -15.052000 flags 32)
[ 45.752][v][mkv] Seeking to 15603097 to read header element 0x1c53bb6b.
[ 45.752][v][file] stream level seek from 5418850 to 15603097
[ 45.752][v][mkv] Parsing cues...
[ 45.752][v][file] stream level seek from 15603349 to 8138
[ 45.752][v][mkv] seek done
[ 45.755][v][cplayer] hr-seek, skipping to -15.052000
[ 45.780][d][ffmpeg/video] h264_v4l2m2m: Decode running
[ 45.782][d][global] config path: 'fonts' -/-> '/home/pi/.config/mpv/fonts'
[ 45.782][d][global] config path: 'fonts' -/-> '/home/pi/.mpv/fonts'
[ 45.783][d][global] config path: 'fonts' -/-> '/etc/mpv/fonts'
[ 45.783][d][osd/libass] ASS library version: 0x1701000 (runtime 0x1701000)
[ 45.783][v][osd/libass] libass API version: 0x1701000
[ 45.783][v][osd/libass] libass source: tarball: 0.17.1
[ 45.783][v][osd/libass] Shaper: FriBidi 1.0.8 (SIMPLE) HarfBuzz-ng 6.0.0 (COMPLEX)
[ 45.783][d][global] config path: 'subfont.ttf' -/-> '/home/pi/.config/mpv/subfont.ttf'
[ 45.783][d][global] config path: 'subfont.ttf' -/-> '/home/pi/.mpv/subfont.ttf'
[ 45.783][d][global] config path: 'subfont.ttf' -/-> '/etc/mpv/subfont.ttf'
[ 45.783][d][global] config path: 'fonts.conf' -/-> '/home/pi/.config/mpv/fonts.conf'
[ 45.783][d][global] config path: 'fonts.conf' -/-> '/home/pi/.mpv/fonts.conf'
[ 45.783][d][global] config path: 'fonts.conf' -/-> '/etc/mpv/fonts.conf'
[ 45.783][v][osd/libass] Setting up fonts...
[ 45.816][v][osd/libass] Using font provider fontconfig
[ 45.816][v][osd/libass] Done.
[ 45.827][v][vd] Decoder format: 1920x1080 yuv420p auto/auto/auto/auto/auto CL=unknown
[ 45.827][v][vd] Using container aspect ratio.
[ 45.836][v][osd/libass] fontselect: (sans-serif, 400, 0) -> /usr/share/fonts/truetype/dejavu/DejaVuSans.ttf, 0, DejaVuSans
[ 45.839][v][vo/gpu] Reallocating OSD texture to 2048x256.
[ 45.842][d][vo/gpu/opengl] vertex shader source:
[ 45.842][d][vo/gpu/opengl] [ 1] #version 140
[ 45.842][d][vo/gpu/opengl] [ 2] #define tex1D texture
[ 45.842][d][vo/gpu/opengl] [ 3] #define tex3D texture
[ 45.842][d][vo/gpu/opengl] [ 4] #define LUT_POS(x, lut_size) mix(0.5 / (lut_size), 1.0 - 0.5 / (lut_size), (x))
[ 45.842][d][vo/gpu/opengl] [ 5] in vec2 vertex_position;
[ 45.842][d][vo/gpu/opengl] [ 6] in vec2 vertex_texcoord;
[ 45.842][d][vo/gpu/opengl] [ 7] out vec2 texcoord;
[ 45.842][d][vo/gpu/opengl] [ 8] in vec4 vertex_ass_color;
[ 45.842][d][vo/gpu/opengl] [ 9] out vec4 ass_color;
[ 45.842][d][vo/gpu/opengl] [ 10] void main() {
[ 45.842][d][vo/gpu/opengl] [ 11] gl_Position = vec4(vertex_position, 1.0, 1.0);
[ 45.842][d][vo/gpu/opengl] [ 12] texcoord = vertex_texcoord;
[ 45.842][d][vo/gpu/opengl] [ 13] ass_color = vertex_ass_color;
[ 45.842][d][vo/gpu/opengl] [ 14] }
[ 45.842][d][vo/gpu/opengl] fragment shader source:
[ 45.842][d][vo/gpu/opengl] [ 1] #version 140
[ 45.842][d][vo/gpu/opengl] [ 2] #define tex1D texture
[ 45.842][d][vo/gpu/opengl] [ 3] #define tex3D texture
[ 45.842][d][vo/gpu/opengl] [ 4] #define LUT_POS(x, lut_size) mix(0.5 / (lut_size), 1.0 - 0.5 / (lut_size), (x))
[ 45.842][d][vo/gpu/opengl] [ 5] out vec4 out_color;
[ 45.842][d][vo/gpu/opengl] [ 6] in vec2 texcoord;
[ 45.842][d][vo/gpu/opengl] [ 7] in vec4 ass_color;
[ 45.842][d][vo/gpu/opengl] [ 8] uniform sampler2D osdtex;
[ 45.842][d][vo/gpu/opengl] [ 9] uniform vec3 src_luma;
[ 45.842][d][vo/gpu/opengl] [ 10] uniform vec3 dst_luma;
[ 45.843][d][vo/gpu/opengl] [ 11] void main() {
[ 45.843][d][vo/gpu/opengl] [ 12] vec4 color = vec4(0.0, 0.0, 0.0, 1.0);
[ 45.843][d][vo/gpu/opengl] [ 13] color = vec4(ass_color.rgb, ass_color.a * texture(osdtex, texcoord).r);
[ 45.843][d][vo/gpu/opengl] [ 14] // color mapping
[ 45.843][d][vo/gpu/opengl] [ 15] color.rgb *= vec3(1.000000);
[ 45.843][d][vo/gpu/opengl] [ 16] color.rgb *= vec3(1.000000);
[ 45.843][d][vo/gpu/opengl] [ 17] out_color = color;
[ 45.843][d][vo/gpu/opengl] [ 18] }
[ 45.844][d][vo/gpu/opengl] shader link log (status=1):
[ 45.849][v][vo/gpu/wayland] Disabling the idle inhibitor
[ 45.942][v][cplayer] first video frame after restart shown
[ 45.975][v][cplayer] audio ready
[ 45.975][d][cplayer] starting video playback
[ 45.975][v][cplayer] delaying audio start 0.003000 vs. 0.000000, diff=0.003000
[ 45.975][v][cplayer] playback restart complete @ 0.000000, audio=ready, video=playing
[ 45.978][v][cplayer] starting audio playback
[ 45.979][v][vo/gpu/wayland] Enabling idle inhibitor
[ 45.987][v][ao/alsa] starting AO
[ 137.564][v][mkv] EOF reached.
[ 138.753][v][af] filter input EOF
[ 138.753][v][af] filter output EOF
[ 138.753][v][cplayer] audio filter EOF
[ 138.753][v][cplayer] audio draining
[ 138.753][v][cplayer] audio EOF reached
[ 138.917][v][vf] filter input EOF
[ 138.917][v][vf] filter output EOF
[ 138.932][v][cplayer] EOF code: 1
[ 138.932][d][ad] Uninit decoder.
[ 138.933][d][vd] Uninit decoder.
[ 138.935][d][cplayer] Terminating demuxers...
[ 138.936][d][cplayer] Done terminating demuxers.
[ 138.936][v][cplayer] finished playback, success (reason 0)
[ 138.936][i][cplayer]
[ 138.936][i][cplayer] Exiting... (End of file)
[ 138.937][d][cplayer] Run command: change-list, flags=64, args=[name="shared-script-properties", operation="remove", value="osc-margins"]
[ 138.937][d][stats] Exiting...
[ 138.937][v][cplayer] Set property: shared-script-properties -> 1
[ 138.937][d][ytdl_hook] Exiting...
[ 138.937][d][console] Exiting...
[ 138.940][d][osc] Exiting...
[ 138.945][v][cplayer] draining left over audio
[ 138.946][v][vo/gpu/wayland] Disabling the idle inhibitor
[ 138.958][v][ao/alsa] audio end or underrun
[ 139.058][v][ao/alsa] attempt 1 to recover from state 'XRUN'...
[ 139.059][v][ao/alsa] audio end or underrun
[ 139.061][d][vo/gpu] flushing shader cache
[ 139.087][v][vo/gpu/wayland] Deregistering output Sony SONY TV *01 (0x1a)
Sample Files
https://drive.google.com/file/d/1AiEazgnM2UawKnbVN985n6qvFCm05KbB/view?usp=drive_link
I carefully read all instruction and confirm that I did the following:
- [x] I tested with the latest mpv version to validate that the issue is not already fixed.
- [x] I provided all required information including system and mpv version.
- [x] I produced the log file with the exact same set of files, parameters, and conditions used in "Reproduction Steps", with the addition of
--log-file=output.txt. - [x] I produced the log file while the behaviors described in "Actual Behavior" were actively observed.
- [x] I attached the full, untruncated log file.
- [x] I attached the backtrace in the case of a crash.
mpv 0.35.1 is very outdated and not supported.
I just checked with v0.40.0 from https://apt.fruit.je/debian/bookworm/ Still same.
pi@rpi:~$ mpv --version
mpv v0.40.0 Copyright © 2000-2025 mpv/MPlayer/mplayer2 projects
built on Mar 29 2025 08:29:17
libplacebo version: v7.350.0
FFmpeg version: 7.1.1
FFmpeg library versions:
libavcodec 61.19.101
libavdevice 61.3.100
libavfilter 10.4.100
libavformat 61.7.100
libavutil 59.39.100
libswresample 5.3.100
libswscale 8.3.100
debug log
[ 0.000][v][cplayer] Command line options: '--fs' '--geometry=1920x1080' '/mnt/500G/zz_Surround_Test_FIles/AAC 5.1.mp4'
[ 0.000][v][cplayer] mpv v0.40.0 Copyright © 2000-2025 mpv/MPlayer/mplayer2 projects
[ 0.000][v][cplayer] built on Mar 29 2025 08:29:17
[ 0.000][v][cplayer] libplacebo version: v7.350.0
[ 0.000][v][cplayer] FFmpeg version: 7.1.1
[ 0.000][v][cplayer] FFmpeg library versions:
[ 0.000][v][cplayer] libavcodec 61.19.101
[ 0.000][v][cplayer] libavdevice 61.3.100
[ 0.000][v][cplayer] libavfilter 10.4.100
[ 0.000][v][cplayer] libavformat 61.7.100
[ 0.000][v][cplayer] libavutil 59.39.100
[ 0.000][v][cplayer] libswresample 5.3.100
[ 0.000][v][cplayer] libswscale 8.3.100
[ 0.000][v][cplayer] Configuration: -Dbuildtype=release -Dopenal=enabled -Ddvbin=enabled -Ddvdnav=enabled -Dsdl2=enabled -Dcdda=enabled -Dprefix=/usr
[ 0.000][v][cplayer] List of enabled features: alsa build-date caca cdda cplugins dmabuf-interop-gl dmabuf-wayland drm dvbin dvdnav egl egl-drm egl-wayland egl-x11 ffmpeg gbm gl glibc-thread-name glob glob-posix gpl iconv jack jpeg lcms2 libarchive libass libavdevice libbluray libdl libplacebo linux-fstatfs lua52 memfd-create memrchr openal pipewire posix posix-shm ppoll pthread-condattr-setclock pulse rubberband rubberband-3 sdl2 sdl2-audio sdl2-gamepad sdl2-video sixel sndio sndio-1-9 uchardet vaapi vaapi-drm vaapi-wayland vaapi-x11 vdpau vector vk-khr-display vt.h vulkan wayland x11 xv zlib
[ 0.000][d][global] home path: '' -> '/home/pi/.config/mpv'
[ 0.000][d][global] user path: '~~home/' -> '/home/pi/.config/mpv'
[ 0.000][d][global] user path: '~~old_home/' -> '/home/pi/.mpv'
[ 0.000][d][global] config path: 'encoding-profiles.conf' -/-> '/home/pi/.config/mpv/encoding-profiles.conf'
[ 0.000][d][global] config path: 'encoding-profiles.conf' -/-> '/home/pi/.mpv/encoding-profiles.conf'
[ 0.000][d][global] config path: 'encoding-profiles.conf' -> '/etc/mpv/encoding-profiles.conf'
[ 0.000][v][cplayer] Reading config file /etc/mpv/encoding-profiles.conf
[ 0.000][v][ifo_dvdnav] Opening /etc/mpv/encoding-profiles.conf
[ 0.000][v][bdmv/bluray] Opening /etc/mpv/encoding-profiles.conf
[ 0.000][v][file] Opening /etc/mpv/encoding-profiles.conf
[ 0.000][d][file] resize stream to 131072 bytes, drop 0 bytes
[ 0.000][d][file] Stream opened successfully.
[ 0.000][v][cplayer] Applying profile 'default'...
[ 0.000][d][global] config path: 'mpv.conf' -> '/home/pi/.config/mpv/mpv.conf'
[ 0.000][d][global] config path: 'config' -/-> '/home/pi/.config/mpv/config'
[ 0.000][d][global] config path: 'mpv.conf' -/-> '/home/pi/.mpv/mpv.conf'
[ 0.000][d][global] config path: 'config' -/-> '/home/pi/.mpv/config'
[ 0.000][d][global] config path: 'mpv.conf' -/-> '/etc/mpv/mpv.conf'
[ 0.000][d][global] config path: 'config' -/-> '/etc/mpv/config'
[ 0.000][v][cplayer] Reading config file /home/pi/.config/mpv/mpv.conf
[ 0.000][v][ifo_dvdnav] Opening /home/pi/.config/mpv/mpv.conf
[ 0.000][v][bdmv/bluray] Opening /home/pi/.config/mpv/mpv.conf
[ 0.000][v][file] Opening /home/pi/.config/mpv/mpv.conf
[ 0.000][d][file] resize stream to 131072 bytes, drop 0 bytes
[ 0.000][d][file] Stream opened successfully.
[ 0.000][v][cplayer] Applying profile 'default'...
[ 0.000][v][cplayer] Setting option 'vo' = 'gpu' (flags = 4)
[ 0.000][v][cplayer] Setting option 'gpu-context' = 'wayland' (flags = 4)
[ 0.000][v][cplayer] Setting option 'hwdec' = 'auto-copy' (flags = 4)
[ 0.000][v][cplayer] Setting option 'framedrop' = 'decoder' (flags = 4)
[ 0.000][v][cplayer] Setting option 'interpolation' = 'no' (flags = 4)
[ 0.000][v][cplayer] Setting option 'audio-device' = 'alsa/hdmi:CARD=vc4hdmi0,DEV=0' (flags = 4)
[ 0.000][v][cplayer] Setting option 'audio-channels' = 'auto' (flags = 4)
[ 0.000][v][cplayer] Setting option 'audio-exclusive' = 'yes' (flags = 4)
[ 0.000][v][cplayer] Setting option 'term-status-msg' = '' (flags = 4)
[ 0.000][v][cplayer] Setting option 'save-position-on-quit' = '' (flags = 4)
[ 0.000][v][cplayer] Setting option 'hr-seek' = 'yes' (flags = 4)
[ 0.000][v][cplayer] Setting option 'autofit' = '' (flags = 4)
[ 0.000][v][cplayer] Setting option 'geometry' = '1920x1080' (flags = 4)
[ 0.000][v][cplayer] Setting option 'gpu-debug' = '' (flags = 4)
[ 0.000][v][cplayer] Setting option 'log-file' = '/tmp/mpv.log' (flags = 4)
[ 0.000][v][cplayer] Setting option 'fs' = '' (flags = 8)
[ 0.000][v][cplayer] Setting option 'geometry' = '1920x1080' (flags = 8)
[ 0.000][d][global] config path: 'input.conf' -> '/home/pi/.config/mpv/input.conf'
[ 0.000][d][global] config path: 'input.conf' -/-> '/home/pi/.mpv/input.conf'
[ 0.000][d][global] config path: 'input.conf' -/-> '/etc/mpv/input.conf'
[ 0.000][v][ifo_dvdnav] Opening /home/pi/.config/mpv/input.conf
[ 0.000][v][bdmv/bluray] Opening /home/pi/.config/mpv/input.conf
[ 0.000][v][file] Opening /home/pi/.config/mpv/input.conf
[ 0.000][d][file] resize stream to 131072 bytes, drop 0 bytes
[ 0.000][d][file] Stream opened successfully.
[ 0.000][v][input] Parsing input config file /home/pi/.config/mpv/input.conf
[ 0.000][v][input] Input config file /home/pi/.config/mpv/input.conf parsed: 2 binds
[ 0.017][v][cplayer] mpv v0.40.0 Copyright © 2000-2025 mpv/MPlayer/mplayer2 projects
[ 0.018][v][cplayer] built on Mar 29 2025 08:29:17
[ 0.018][v][cplayer] libplacebo version: v7.350.0
[ 0.018][v][cplayer] FFmpeg version: 7.1.1
[ 0.018][v][cplayer] FFmpeg library versions:
[ 0.018][v][cplayer] libavcodec 61.19.101
[ 0.018][v][cplayer] libavdevice 61.3.100
[ 0.018][v][cplayer] libavfilter 10.4.100
[ 0.018][v][cplayer] libavformat 61.7.100
[ 0.018][v][cplayer] libavutil 59.39.100
[ 0.018][v][cplayer] libswresample 5.3.100
[ 0.018][v][cplayer] libswscale 8.3.100
[ 0.018][v][cplayer] Configuration: -Dbuildtype=release -Dopenal=enabled -Ddvbin=enabled -Ddvdnav=enabled -Dsdl2=enabled -Dcdda=enabled -Dprefix=/usr
[ 0.018][v][cplayer] List of enabled features: alsa build-date caca cdda cplugins dmabuf-interop-gl dmabuf-wayland drm dvbin dvdnav egl egl-drm egl-wayland egl-x11 ffmpeg gbm gl glibc-thread-name glob glob-posix gpl iconv jack jpeg lcms2 libarchive libass libavdevice libbluray libdl libplacebo linux-fstatfs lua52 memfd-create memrchr openal pipewire posix posix-shm ppoll pthread-condattr-setclock pulse rubberband rubberband-3 sdl2 sdl2-audio sdl2-gamepad sdl2-video sixel sndio sndio-1-9 uchardet vaapi vaapi-drm vaapi-wayland vaapi-x11 vdpau vector vk-khr-display vt.h vulkan wayland x11 xv zlib
[ 0.018][d][osc] Loading lua script @osc.lua...
[ 0.018][d][ytdl_hook] Loading lua script @ytdl_hook.lua...
[ 0.018][d][stats] Loading lua script @stats.lua...
[ 0.018][d][console] Loading lua script @console.lua...
[ 0.018][d][auto_profiles] Loading lua script @auto_profiles.lua...
[ 0.023][d][select] Loading lua script @select.lua...
[ 0.023][d][positioning] Loading lua script @positioning.lua...
[ 0.023][d][ytdl_hook] loading mp.defaults
[ 0.023][d][osc] loading mp.defaults
[ 0.023][d][commands] Loading lua script @commands.lua...
[ 0.023][v][clipboard] Initialized vo clipboard backend.
[ 0.023][d][console] loading mp.defaults
[ 0.023][d][global] config path: 'scripts' -/-> '/home/pi/.config/mpv/scripts'
[ 0.023][d][global] config path: 'scripts' -/-> '/home/pi/.mpv/scripts'
[ 0.023][d][global] config path: 'scripts' -/-> '/etc/mpv/scripts'
[ 0.023][v][cplayer] Waiting for scripts...
[ 0.023][d][auto_profiles] loading mp.defaults
[ 0.023][d][positioning] loading mp.defaults
[ 0.023][d][ytdl_hook] loading @ytdl_hook.lua
[ 0.023][d][console] loading @console.lua
[ 0.023][d][positioning] loading @positioning.lua
[ 0.023][d][select] loading mp.defaults
[ 0.023][d][stats] loading mp.defaults
[ 0.023][d][commands] loading mp.defaults
[ 0.025][d][osc] loading @osc.lua
[ 0.025][d][select] loading @select.lua
[ 0.025][d][auto_profiles] loading @auto_profiles.lua
[ 0.025][d][stats] loading @stats.lua
[ 0.026][d][commands] loading @commands.lua
[ 0.028][d][positioning] reading options for positioning
[ 0.028][d][global] config path: 'script-opts/positioning.conf' -/-> '/home/pi/.config/mpv/script-opts/positioning.conf'
[ 0.028][d][global] config path: 'script-opts/positioning.conf' -/-> '/home/pi/.mpv/script-opts/positioning.conf'
[ 0.028][d][global] config path: 'script-opts/positioning.conf' -/-> '/etc/mpv/script-opts/positioning.conf'
[ 0.028][d][positioning] script-opts/positioning.conf not found.
[ 0.028][d][global] config path: 'lua-settings/positioning.conf' -/-> '/home/pi/.config/mpv/lua-settings/positioning.conf'
[ 0.028][d][global] config path: 'lua-settings/positioning.conf' -/-> '/home/pi/.mpv/lua-settings/positioning.conf'
[ 0.028][d][global] config path: 'lua-settings/positioning.conf' -/-> '/etc/mpv/lua-settings/positioning.conf'
[ 0.028][d][positioning] lua-settings/positioning.conf not found.
[ 0.029][d][cplayer] Run command: define-section, flags=64, args=[name="input_positioning", contents="", flags="default"]
[ 0.030][d][cplayer] Run command: enable-section, flags=64, args=[name="input_positioning", flags="allow-hide-cursor+allow-vo-dragging"]
[ 0.030][d][cplayer] Run command: define-section, flags=64, args=[name="input_forced_positioning", contents="", flags="force"]
[ 0.030][d][cplayer] Run command: enable-section, flags=64, args=[name="input_forced_positioning", flags="allow-hide-cursor+allow-vo-dragging"]
[ 0.030][d][select] reading options for select
[ 0.030][d][global] config path: 'script-opts/select.conf' -/-> '/home/pi/.config/mpv/script-opts/select.conf'
[ 0.030][d][global] config path: 'script-opts/select.conf' -/-> '/home/pi/.mpv/script-opts/select.conf'
[ 0.031][d][commands] reading options for commands
[ 0.031][d][global] config path: 'script-opts/commands.conf' -/-> '/home/pi/.config/mpv/script-opts/commands.conf'
[ 0.031][d][global] config path: 'script-opts/commands.conf' -/-> '/home/pi/.mpv/script-opts/commands.conf'
[ 0.031][d][global] config path: 'script-opts/commands.conf' -/-> '/etc/mpv/script-opts/commands.conf'
[ 0.031][d][commands] script-opts/commands.conf not found.
[ 0.031][d][global] config path: 'lua-settings/commands.conf' -/-> '/home/pi/.config/mpv/lua-settings/commands.conf'
[ 0.031][d][global] config path: 'lua-settings/commands.conf' -/-> '/home/pi/.mpv/lua-settings/commands.conf'
[ 0.031][d][global] config path: 'lua-settings/commands.conf' -/-> '/etc/mpv/lua-settings/commands.conf'
[ 0.031][d][commands] lua-settings/commands.conf not found.
[ 0.031][d][cplayer] Run command: define-section, flags=64, args=[name="input_commands", contents="", flags="default"]
[ 0.031][d][cplayer] Run command: enable-section, flags=64, args=[name="input_commands", flags="allow-hide-cursor+allow-vo-dragging"]
[ 0.031][d][cplayer] Run command: define-section, flags=64, args=[name="input_forced_commands", contents="", flags="force"]
[ 0.031][d][cplayer] Run command: enable-section, flags=64, args=[name="input_forced_commands", flags="allow-hide-cursor+allow-vo-dragging"]
[ 0.033][d][ytdl_hook] reading options for ytdl_hook
[ 0.033][d][global] config path: 'script-opts/ytdl_hook.conf' -/-> '/home/pi/.config/mpv/script-opts/ytdl_hook.conf'
[ 0.033][d][global] config path: 'script-opts/ytdl_hook.conf' -/-> '/home/pi/.mpv/script-opts/ytdl_hook.conf'
[ 0.033][d][global] config path: 'script-opts/ytdl_hook.conf' -/-> '/etc/mpv/script-opts/ytdl_hook.conf'
[ 0.033][d][ytdl_hook] script-opts/ytdl_hook.conf not found.
[ 0.033][d][global] config path: 'lua-settings/ytdl_hook.conf' -/-> '/home/pi/.config/mpv/lua-settings/ytdl_hook.conf'
[ 0.033][d][global] config path: 'lua-settings/ytdl_hook.conf' -/-> '/home/pi/.mpv/lua-settings/ytdl_hook.conf'
[ 0.033][d][global] config path: 'lua-settings/ytdl_hook.conf' -/-> '/etc/mpv/lua-settings/ytdl_hook.conf'
[ 0.033][d][ytdl_hook] lua-settings/ytdl_hook.conf not found.
[ 0.033][d][global] config path: 'script-opts/select.conf' -/-> '/etc/mpv/script-opts/select.conf'
[ 0.033][d][select] script-opts/select.conf not found.
[ 0.033][d][global] config path: 'lua-settings/select.conf' -/-> '/home/pi/.config/mpv/lua-settings/select.conf'
[ 0.033][d][global] config path: 'lua-settings/select.conf' -/-> '/home/pi/.mpv/lua-settings/select.conf'
[ 0.033][d][global] config path: 'lua-settings/select.conf' -/-> '/etc/mpv/lua-settings/select.conf'
[ 0.033][d][select] lua-settings/select.conf not found.
[ 0.034][d][cplayer] Run command: define-section, flags=64, args=[name="input_select", contents="", flags="default"]
[ 0.034][d][cplayer] Run command: enable-section, flags=64, args=[name="input_select", flags="allow-hide-cursor+allow-vo-dragging"]
[ 0.034][d][cplayer] Run command: define-section, flags=64, args=[name="input_forced_select", contents="", flags="force"]
[ 0.034][d][cplayer] Run command: enable-section, flags=64, args=[name="input_forced_select", flags="allow-hide-cursor+allow-vo-dragging"]
[ 0.039][d][auto_profiles] Destroying client handle...
[ 0.040][d][console] reading options for console
[ 0.040][d][global] config path: 'script-opts/console.conf' -/-> '/home/pi/.config/mpv/script-opts/console.conf'
[ 0.040][d][global] config path: 'script-opts/console.conf' -/-> '/home/pi/.mpv/script-opts/console.conf'
[ 0.040][d][global] config path: 'script-opts/console.conf' -/-> '/etc/mpv/script-opts/console.conf'
[ 0.040][d][console] script-opts/console.conf not found.
[ 0.040][d][global] config path: 'lua-settings/console.conf' -/-> '/home/pi/.config/mpv/lua-settings/console.conf'
[ 0.040][d][global] config path: 'lua-settings/console.conf' -/-> '/home/pi/.mpv/lua-settings/console.conf'
[ 0.040][d][global] config path: 'lua-settings/console.conf' -/-> '/etc/mpv/lua-settings/console.conf'
[ 0.040][d][console] lua-settings/console.conf not found.
[ 0.040][d][stats] reading options for stats
[ 0.040][d][global] config path: 'script-opts/stats.conf' -/-> '/home/pi/.config/mpv/script-opts/stats.conf'
[ 0.040][d][global] config path: 'script-opts/stats.conf' -/-> '/home/pi/.mpv/script-opts/stats.conf'
[ 0.040][d][global] config path: 'script-opts/stats.conf' -/-> '/etc/mpv/script-opts/stats.conf'
[ 0.040][d][stats] script-opts/stats.conf not found.
[ 0.040][d][global] config path: 'lua-settings/stats.conf' -/-> '/home/pi/.config/mpv/lua-settings/stats.conf'
[ 0.040][d][global] config path: 'lua-settings/stats.conf' -/-> '/home/pi/.mpv/lua-settings/stats.conf'
[ 0.040][d][global] config path: 'lua-settings/stats.conf' -/-> '/etc/mpv/lua-settings/stats.conf'
[ 0.040][d][stats] lua-settings/stats.conf not found.
[ 0.040][d][cplayer] Run command: define-section, flags=64, args=[name="input_console", contents="", flags="default"]
[ 0.040][d][cplayer] Run command: enable-section, flags=64, args=[name="input_console", flags="allow-hide-cursor+allow-vo-dragging"]
[ 0.040][d][cplayer] Run command: define-section, flags=64, args=[name="input_forced_console", contents="", flags="force"]
[ 0.041][d][cplayer] Run command: enable-section, flags=64, args=[name="input_forced_console", flags="allow-hide-cursor+allow-vo-dragging"]
[ 0.041][d][cplayer] Run command: define-section, flags=64, args=[name="input_stats", contents="", flags="default"]
[ 0.041][d][cplayer] Run command: enable-section, flags=64, args=[name="input_stats", flags="allow-hide-cursor+allow-vo-dragging"]
[ 0.041][d][cplayer] Run command: define-section, flags=64, args=[name="input_forced_stats", contents="", flags="force"]
[ 0.041][d][cplayer] Run command: enable-section, flags=64, args=[name="input_forced_stats", flags="allow-hide-cursor+allow-vo-dragging"]
[ 0.046][d][cplayer] Run command: define-section, flags=64, args=[name="showhide", contents="mouse_move script-binding osc/__keybinding1\nmouse_leave script-binding osc/__keybinding2\n", flags="force"]
[ 0.046][d][cplayer] Run command: define-section, flags=64, args=[name="showhide_wc", contents="mouse_move script-binding osc/__keybinding3\nmouse_leave script-binding osc/__keybinding4\n", flags="force"]
[ 0.046][d][cplayer] Run command: enable-section, flags=64, args=[name="showhide", flags="allow-hide-cursor+allow-vo-dragging"]
[ 0.046][d][cplayer] Run command: enable-section, flags=64, args=[name="showhide_wc", flags="allow-hide-cursor+allow-vo-dragging"]
[ 0.047][d][cplayer] Run command: define-section, flags=64, args=[name="input", contents="mbtn_left script-binding osc/__keybinding5\nmbtn_mid script-binding osc/__keybinding6\nmbtn_right script-binding osc/__keybinding7\nshift+mbtn_left script-binding osc/__keybinding8\nwheel_up script-binding osc/__keybinding9\nwheel_down script-binding osc/__keybinding10\nmbtn_left_dbl ignore\nshift+mbtn_left_dbl ignore\nmbtn_right_dbl ignore\n", flags="force"]
[ 0.047][d][cplayer] Run command: enable-section, flags=64, args=[name="input", flags=""]
[ 0.047][d][cplayer] Run command: define-section, flags=64, args=[name="window-controls", contents="mbtn_left script-binding osc/__keybinding11\n", flags="force"]
[ 0.047][d][cplayer] Run command: enable-section, flags=64, args=[name="window-controls", flags=""]
[ 0.048][d][osc] reading options for osc
[ 0.048][d][global] config path: 'script-opts/osc.conf' -/-> '/home/pi/.config/mpv/script-opts/osc.conf'
[ 0.048][d][global] config path: 'script-opts/osc.conf' -/-> '/home/pi/.mpv/script-opts/osc.conf'
[ 0.048][d][global] config path: 'script-opts/osc.conf' -/-> '/etc/mpv/script-opts/osc.conf'
[ 0.048][d][osc] script-opts/osc.conf not found.
[ 0.048][d][global] config path: 'lua-settings/osc.conf' -/-> '/home/pi/.config/mpv/lua-settings/osc.conf'
[ 0.048][d][global] config path: 'lua-settings/osc.conf' -/-> '/home/pi/.mpv/lua-settings/osc.conf'
[ 0.048][d][global] config path: 'lua-settings/osc.conf' -/-> '/etc/mpv/lua-settings/osc.conf'
[ 0.048][d][osc] lua-settings/osc.conf not found.
[ 0.049][v][cplayer] Set property: user-data/osc/visibility="auto" -> 1
[ 0.049][d][cplayer] Run command: disable-section, flags=64, args=[name="input"]
[ 0.049][d][cplayer] Run command: disable-section, flags=64, args=[name="window-controls"]
[ 0.050][v][cplayer] Set property: user-data/osc/margins={"r":0,"b":0,"l":0,"t":0} -> 1
[ 0.050][v][cplayer] Done loading scripts.
[ 0.050][d][global] state path: 'watch_later' -> '/home/pi/.local/state/mpv/watch_later'
[ 0.050][v][cplayer] Running hook: auto_profiles/on_before_start_file
[ 0.050][v][cplayer] Failed sending hook command auto_profiles/on_before_start_file. Removing hook.
[ 0.050][d][global] state path: 'watch_later' -> '/home/pi/.local/state/mpv/watch_later'
[ 0.050][v][cplayer] Running hook: auto_profiles/on_load
[ 0.050][v][cplayer] Failed sending hook command auto_profiles/on_load. Removing hook.
[ 0.050][v][cplayer] Running hook: ytdl_hook/on_load
[ 0.052][v][cplayer] Running hook: ytdl_hook/on_load
[ 0.052][v][ytdl_hook] playlist hook
[ 0.052][v][ifo_dvdnav] Opening /mnt/500G/zz_Surround_Test_FIles/AAC 5.1.mp4
[ 0.052][v][bdmv/bluray] Opening /mnt/500G/zz_Surround_Test_FIles/AAC 5.1.mp4
[ 0.052][v][file] Opening /mnt/500G/zz_Surround_Test_FIles/AAC 5.1.mp4
[ 0.052][d][file] resize stream to 131072 bytes, drop 0 bytes
[ 0.052][d][file] Stream opened successfully.
[ 0.052][v][demux] Trying demuxers for level=normal.
[ 0.052][d][demux] Trying demuxer: directory (force-level: normal)
[ 0.053][v][cplayer] Set property: user-data/osc/margins={"r":0,"b":0,"l":0,"t":0} -> 1
[ 0.053][d][osc] osc_init
[ 0.053][d][demux] Trying demuxer: disc (force-level: normal)
[ 0.053][d][demux] Trying demuxer: edl (force-level: normal)
[ 0.053][d][demux] Trying demuxer: cue (force-level: normal)
[ 0.053][d][demux] Trying demuxer: rawaudio (force-level: normal)
[ 0.053][d][demux] Trying demuxer: rawvideo (force-level: normal)
[ 0.053][d][demux] Trying demuxer: mkv (force-level: normal)
[ 0.053][d][demux] Trying demuxer: libarchive (force-level: normal)
[ 0.054][d][demux] Trying demuxer: lavf (force-level: normal)
[ 0.055][v][cplayer] Set property: user-data/osc/margins={"r":0,"b":0,"l":0,"t":0} -> 1
[ 0.055][d][global] config path: 'fonts' -/-> '/home/pi/.config/mpv/fonts'
[ 0.055][d][global] config path: 'fonts' -/-> '/home/pi/.mpv/fonts'
[ 0.055][d][global] config path: 'fonts' -/-> '/etc/mpv/fonts'
[ 0.055][d][osd/libass] ASS library version: 0x1703020 (runtime 0x1703020)
[ 0.055][v][osd/libass] libass API version: 0x1703020
[ 0.055][v][osd/libass] libass source: tarball: 0.17.3
[ 0.056][v][osd/libass] Shaper: FriBidi 1.0.8 (SIMPLE) HarfBuzz-ng 6.0.0 (COMPLEX)
[ 0.056][d][global] config path: 'subfont.ttf' -/-> '/home/pi/.config/mpv/subfont.ttf'
[ 0.056][d][global] config path: 'subfont.ttf' -/-> '/home/pi/.mpv/subfont.ttf'
[ 0.056][d][global] config path: 'subfont.ttf' -/-> '/etc/mpv/subfont.ttf'
[ 0.056][d][global] config path: 'fonts.conf' -/-> '/home/pi/.config/mpv/fonts.conf'
[ 0.056][d][global] config path: 'fonts.conf' -/-> '/home/pi/.mpv/fonts.conf'
[ 0.056][d][global] config path: 'fonts.conf' -/-> '/etc/mpv/fonts.conf'
[ 0.056][v][osd/libass] Setting up fonts...
[ 0.069][v][lavf] Found 'mov,mp4,m4a,3gp,3g2,mj2' at score=100 size=2048.
[ 0.072][v][file] stream level seek from 131072 to 1099354
[ 0.072][v][demux] Detected file format: mov,mp4,m4a,3gp,3g2,mj2 (libavformat)
[ 0.072][v][cplayer] Opening done: /mnt/500G/zz_Surround_Test_FIles/AAC 5.1.mp4
[ 0.078][v][osd/libass] Using font provider fontconfig
[ 0.078][v][osd/libass] Done.
[ 0.081][v][find_files] Loading external files in /mnt/500G/zz_Surround_Test_FIles/
[ 0.082][d][global] config path: 'sub' -/-> '/home/pi/.config/mpv/sub'
[ 0.082][d][global] config path: 'sub' -/-> '/home/pi/.mpv/sub'
[ 0.082][d][global] config path: 'sub' -/-> '/etc/mpv/sub'
[ 0.082][d][cplayer] Run command: define-section, flags=64, args=[name="input_osc", contents="", flags="default"]
[ 0.082][d][cplayer] Run command: enable-section, flags=64, args=[name="input_osc", flags="allow-hide-cursor+allow-vo-dragging"]
[ 0.082][d][cplayer] Run command: define-section, flags=64, args=[name="input_forced_osc", contents="", flags="force"]
[ 0.082][d][cplayer] Run command: enable-section, flags=64, args=[name="input_forced_osc", flags="allow-hide-cursor+allow-vo-dragging"]
[ 0.082][v][cplayer] Running hook: auto_profiles/on_preloaded
[ 0.082][v][cplayer] Failed sending hook command auto_profiles/on_preloaded. Removing hook.
[ 0.082][v][cplayer] Running hook: ytdl_hook/on_preloaded
[ 0.082][v][lavf] select track 0
[ 0.082][v][lavf] select track 1
[ 0.082][i][cplayer] ● Video --vid=1 (h264 800x600 8 fps) [default]
[ 0.083][i][cplayer] ● Audio --aid=1 (aac 6ch 44100 Hz 160 kbps) [default]
[ 0.083][v][vo/gpu/opengl] Initializing GPU context 'wayland'
[ 0.084][v][vo/gpu/wayland] Registered interface wl_shm at version 1
[ 0.084][v][vo/gpu/wayland] Registered interface zwp_linux_dmabuf_v1 at version 4
[ 0.084][v][vo/gpu/wayland] Registered interface wl_compositor at version 4
[ 0.084][v][vo/gpu/wayland] Registered interface wl_subcompositor at version 1
[ 0.084][v][vo/gpu/wayland] Registered interface wl_data_device_manager at version 3
[ 0.084][v][vo/gpu/wayland] Registered interface wl_seat at version 8
[ 0.084][v][vo/gpu/wayland] Registered interface zwp_idle_inhibit_manager_v1 at version 1
[ 0.084][v][vo/gpu/wayland] Registered interface xdg_wm_base at version 4
[ 0.084][v][vo/gpu/wayland] Registered interface zxdg_decoration_manager_v1 at version 1
[ 0.084][v][vo/gpu/wayland] Registered interface wp_viewporter at version 1
[ 0.084][v][vo/gpu/wayland] Registered interface wp_presentation at version 1
[ 0.084][v][vo/gpu/wayland] Registered interface wp_single_pixel_buffer_manager_v1 at version 1
[ 0.084][v][vo/gpu/wayland] Registered interface wl_output at version 4
[ 0.084][v][vo/gpu/wayland] Compositor doesn't support the xdg_activation_v1 protocol!
[ 0.084][v][vo/gpu/wayland] Compositor doesn't support the wp_content_type_manager_v1 protocol!
[ 0.084][v][vo/gpu/wayland] Compositor doesn't support the wp_fractional_scale_manager_v1 protocol!
[ 0.084][v][vo/gpu/wayland] Compositor doesn't support the zwp_text_input_manager_v3 protocol!
[ 0.085][d][vo/gpu/wayland] Querying available drm format and modifier pairs from tranche on device '57856'
[ 0.085][d][vo/gpu/wayland] Compositor supports drm format: 'AB4H(0700000000000006)'
[ 0.085][d][vo/gpu/wayland] Compositor supports drm format: 'AB4H(0000000000000000)'
[ 0.085][d][vo/gpu/wayland] Compositor supports drm format: 'AB4H(00ffffffffffffff)'
[ 0.085][d][vo/gpu/wayland] Compositor supports drm format: 'AB48(0700000000000006)'
[ 0.085][d][vo/gpu/wayland] Compositor supports drm format: 'AB48(0000000000000000)'
[ 0.085][d][vo/gpu/wayland] Compositor supports drm format: 'AB48(00ffffffffffffff)'
[ 0.085][d][vo/gpu/wayland] Compositor supports drm format: 'AR30(0700000000000006)'
[ 0.085][d][vo/gpu/wayland] Compositor supports drm format: 'AR30(0000000000000000)'
[ 0.085][d][vo/gpu/wayland] Compositor supports drm format: 'AR30(00ffffffffffffff)'
[ 0.085][d][vo/gpu/wayland] Compositor supports drm format: 'XR30(0700000000000006)'
[ 0.085][d][vo/gpu/wayland] Compositor supports drm format: 'XR30(0000000000000000)'
[ 0.085][d][vo/gpu/wayland] Compositor supports drm format: 'XR30(00ffffffffffffff)'
[ 0.085][d][vo/gpu/wayland] Compositor supports drm format: 'AB30(0700000000000006)'
[ 0.085][d][vo/gpu/wayland] Compositor supports drm format: 'AB30(0000000000000000)'
[ 0.085][d][vo/gpu/wayland] Compositor supports drm format: 'AB30(00ffffffffffffff)'
[ 0.085][d][vo/gpu/wayland] Compositor supports drm format: 'XB30(0700000000000006)'
[ 0.085][d][vo/gpu/wayland] Compositor supports drm format: 'XB30(0000000000000000)'
[ 0.085][d][vo/gpu/wayland] Compositor supports drm format: 'XB30(00ffffffffffffff)'
[ 0.085][d][vo/gpu/wayland] Compositor supports drm format: 'AR24(0700000000000006)'
[ 0.085][d][vo/gpu/wayland] Compositor supports drm format: 'AR24(0000000000000000)'
[ 0.085][d][vo/gpu/wayland] Compositor supports drm format: 'AR24(00ffffffffffffff)'
[ 0.085][d][vo/gpu/wayland] Compositor supports drm format: 'AB24(0700000000000006)'
[ 0.085][d][vo/gpu/wayland] Compositor supports drm format: 'AB24(0000000000000000)'
[ 0.085][d][vo/gpu/wayland] Compositor supports drm format: 'AB24(00ffffffffffffff)'
[ 0.085][d][vo/gpu/wayland] Compositor supports drm format: 'XR24(0700000000000006)'
[ 0.085][d][vo/gpu/wayland] Compositor supports drm format: 'XR24(0000000000000000)'
[ 0.085][d][vo/gpu/wayland] Compositor supports drm format: 'XR24(00ffffffffffffff)'
[ 0.085][d][vo/gpu/wayland] Compositor supports drm format: 'XB24(0700000000000006)'
[ 0.085][d][vo/gpu/wayland] Compositor supports drm format: 'XB24(0000000000000000)'
[ 0.085][d][vo/gpu/wayland] Compositor supports drm format: 'XB24(00ffffffffffffff)'
[ 0.085][d][vo/gpu/wayland] Compositor supports drm format: 'RG16(0700000000000006)'
[ 0.085][d][vo/gpu/wayland] Compositor supports drm format: 'RG16(0000000000000000)'
[ 0.085][d][vo/gpu/wayland] Compositor supports drm format: 'RG16(00ffffffffffffff)'
[ 0.085][d][vo/gpu/wayland] Compositor supports drm format: 'R8 (0700000000000006)'
[ 0.085][d][vo/gpu/wayland] Compositor supports drm format: 'R8 (0000000000000000)'
[ 0.085][d][vo/gpu/wayland] Compositor supports drm format: 'R8 (0700000000000004)'
[ 0.085][d][vo/gpu/wayland] Compositor supports drm format: 'R8 (00ffffffffffffff)'
[ 0.085][d][vo/gpu/wayland] Compositor supports drm format: 'R16 (0700000000000006)'
[ 0.085][d][vo/gpu/wayland] Compositor supports drm format: 'R16 (0000000000000000)'
[ 0.085][d][vo/gpu/wayland] Compositor supports drm format: 'R16 (0700000000000004)'
[ 0.085][d][vo/gpu/wayland] Compositor supports drm format: 'R16 (00ffffffffffffff)'
[ 0.085][d][vo/gpu/wayland] Compositor supports drm format: 'GR88(0700000000000006)'
[ 0.085][d][vo/gpu/wayland] Compositor supports drm format: 'GR88(0000000000000000)'
[ 0.085][d][vo/gpu/wayland] Compositor supports drm format: 'GR88(0700000000000004)'
[ 0.085][d][vo/gpu/wayland] Compositor supports drm format: 'GR88(00ffffffffffffff)'
[ 0.085][d][vo/gpu/wayland] Compositor supports drm format: 'GR32(0700000000000006)'
[ 0.085][d][vo/gpu/wayland] Compositor supports drm format: 'GR32(0000000000000000)'
[ 0.085][d][vo/gpu/wayland] Compositor supports drm format: 'GR32(0700000000000004)'
[ 0.085][d][vo/gpu/wayland] Compositor supports drm format: 'GR32(00ffffffffffffff)'
[ 0.085][d][vo/gpu/wayland] Compositor supports drm format: 'YUV9(0700000000000006)'
[ 0.085][d][vo/gpu/wayland] Compositor supports drm format: 'YUV9(0000000000000000)'
[ 0.085][d][vo/gpu/wayland] Compositor supports drm format: 'YUV9(00ffffffffffffff)'
[ 0.085][d][vo/gpu/wayland] Compositor supports drm format: 'YU11(0700000000000006)'
[ 0.085][d][vo/gpu/wayland] Compositor supports drm format: 'YU11(0000000000000000)'
[ 0.085][d][vo/gpu/wayland] Compositor supports drm format: 'YU11(00ffffffffffffff)'
[ 0.085][d][vo/gpu/wayland] Compositor supports drm format: 'YU12(0700000000000006)'
[ 0.085][d][vo/gpu/wayland] Compositor supports drm format: 'YU12(0000000000000000)'
[ 0.085][d][vo/gpu/wayland] Compositor supports drm format: 'YU12(00ffffffffffffff)'
[ 0.085][d][vo/gpu/wayland] Compositor supports drm format: 'YU16(0700000000000006)'
[ 0.085][d][vo/gpu/wayland] Compositor supports drm format: 'YU16(0000000000000000)'
[ 0.085][d][vo/gpu/wayland] Compositor supports drm format: 'YU16(00ffffffffffffff)'
[ 0.085][d][vo/gpu/wayland] Compositor supports drm format: 'YU24(0700000000000006)'
[ 0.085][d][vo/gpu/wayland] Compositor supports drm format: 'YU24(0000000000000000)'
[ 0.085][d][vo/gpu/wayland] Compositor supports drm format: 'YU24(00ffffffffffffff)'
[ 0.085][d][vo/gpu/wayland] Compositor supports drm format: 'YVU9(0700000000000006)'
[ 0.085][d][vo/gpu/wayland] Compositor supports drm format: 'YVU9(0000000000000000)'
[ 0.085][d][vo/gpu/wayland] Compositor supports drm format: 'YVU9(00ffffffffffffff)'
[ 0.085][d][vo/gpu/wayland] Compositor supports drm format: 'YV11(0700000000000006)'
[ 0.085][d][vo/gpu/wayland] Compositor supports drm format: 'YV11(0000000000000000)'
[ 0.085][d][vo/gpu/wayland] Compositor supports drm format: 'YV11(00ffffffffffffff)'
[ 0.085][d][vo/gpu/wayland] Compositor supports drm format: 'YV12(0700000000000006)'
[ 0.085][d][vo/gpu/wayland] Compositor supports drm format: 'YV12(0000000000000000)'
[ 0.085][d][vo/gpu/wayland] Compositor supports drm format: 'YV12(00ffffffffffffff)'
[ 0.085][d][vo/gpu/wayland] Compositor supports drm format: 'YV16(0700000000000006)'
[ 0.085][d][vo/gpu/wayland] Compositor supports drm format: 'YV16(0000000000000000)'
[ 0.085][d][vo/gpu/wayland] Compositor supports drm format: 'YV16(00ffffffffffffff)'
[ 0.085][d][vo/gpu/wayland] Compositor supports drm format: 'YV24(0700000000000006)'
[ 0.085][d][vo/gpu/wayland] Compositor supports drm format: 'YV24(0000000000000000)'
[ 0.085][d][vo/gpu/wayland] Compositor supports drm format: 'YV24(00ffffffffffffff)'
[ 0.085][d][vo/gpu/wayland] Compositor supports drm format: 'NV12(0700000000000006)'
[ 0.085][d][vo/gpu/wayland] Compositor supports drm format: 'NV12(0000000000000000)'
[ 0.085][d][vo/gpu/wayland] Compositor supports drm format: 'NV12(0700000000000004)'
[ 0.085][d][vo/gpu/wayland] Compositor supports drm format: 'NV12(00ffffffffffffff)'
[ 0.085][d][vo/gpu/wayland] Compositor supports drm format: 'NV21(0700000000000006)'
[ 0.085][d][vo/gpu/wayland] Compositor supports drm format: 'NV21(0000000000000000)'
[ 0.085][d][vo/gpu/wayland] Compositor supports drm format: 'NV21(00ffffffffffffff)'
[ 0.085][d][vo/gpu/wayland] Compositor supports drm format: 'P010(0700000000000006)'
[ 0.085][d][vo/gpu/wayland] Compositor supports drm format: 'P010(0000000000000000)'
[ 0.085][d][vo/gpu/wayland] Compositor supports drm format: 'P010(00ffffffffffffff)'
[ 0.085][d][vo/gpu/wayland] Compositor supports drm format: 'P012(0700000000000006)'
[ 0.085][d][vo/gpu/wayland] Compositor supports drm format: 'P012(0000000000000000)'
[ 0.085][d][vo/gpu/wayland] Compositor supports drm format: 'P012(00ffffffffffffff)'
[ 0.085][d][vo/gpu/wayland] Compositor supports drm format: 'P016(0700000000000006)'
[ 0.085][d][vo/gpu/wayland] Compositor supports drm format: 'P016(0000000000000000)'
[ 0.085][d][vo/gpu/wayland] Compositor supports drm format: 'P016(00ffffffffffffff)'
[ 0.085][d][vo/gpu/wayland] Compositor supports drm format: 'P030(0700000000000004)'
[ 0.085][d][vo/gpu/wayland] Compositor supports drm format: 'P030(00ffffffffffffff)'
[ 0.085][d][vo/gpu/wayland] Compositor supports drm format: 'NV16(0700000000000006)'
[ 0.085][d][vo/gpu/wayland] Compositor supports drm format: 'NV16(0000000000000000)'
[ 0.085][d][vo/gpu/wayland] Compositor supports drm format: 'NV16(0700000000000004)'
[ 0.085][d][vo/gpu/wayland] Compositor supports drm format: 'NV16(00ffffffffffffff)'
[ 0.085][d][vo/gpu/wayland] Compositor supports drm format: 'AYUV(0700000000000006)'
[ 0.085][d][vo/gpu/wayland] Compositor supports drm format: 'AYUV(0000000000000000)'
[ 0.085][d][vo/gpu/wayland] Compositor supports drm format: 'AYUV(00ffffffffffffff)'
[ 0.085][d][vo/gpu/wayland] Compositor supports drm format: 'XYUV(0700000000000006)'
[ 0.085][d][vo/gpu/wayland] Compositor supports drm format: 'XYUV(0000000000000000)'
[ 0.085][d][vo/gpu/wayland] Compositor supports drm format: 'XYUV(00ffffffffffffff)'
[ 0.085][d][vo/gpu/wayland] Compositor supports drm format: 'Y410(0700000000000006)'
[ 0.085][d][vo/gpu/wayland] Compositor supports drm format: 'Y410(0000000000000000)'
[ 0.085][d][vo/gpu/wayland] Compositor supports drm format: 'Y410(00ffffffffffffff)'
[ 0.085][d][vo/gpu/wayland] Compositor supports drm format: 'Y412(0700000000000006)'
[ 0.085][d][vo/gpu/wayland] Compositor supports drm format: 'Y412(0000000000000000)'
[ 0.085][d][vo/gpu/wayland] Compositor supports drm format: 'Y412(00ffffffffffffff)'
[ 0.085][d][vo/gpu/wayland] Compositor supports drm format: 'Y416(0700000000000006)'
[ 0.085][d][vo/gpu/wayland] Compositor supports drm format: 'Y416(0000000000000000)'
[ 0.085][d][vo/gpu/wayland] Compositor supports drm format: 'Y416(00ffffffffffffff)'
[ 0.085][d][vo/gpu/wayland] Compositor supports drm format: 'YUYV(0700000000000006)'
[ 0.085][d][vo/gpu/wayland] Compositor supports drm format: 'YUYV(0000000000000000)'
[ 0.085][d][vo/gpu/wayland] Compositor supports drm format: 'YUYV(00ffffffffffffff)'
[ 0.085][d][vo/gpu/wayland] Compositor supports drm format: 'YVYU(0700000000000006)'
[ 0.085][d][vo/gpu/wayland] Compositor supports drm format: 'YVYU(0000000000000000)'
[ 0.085][d][vo/gpu/wayland] Compositor supports drm format: 'YVYU(00ffffffffffffff)'
[ 0.085][d][vo/gpu/wayland] Compositor supports drm format: 'UYVY(0700000000000006)'
[ 0.085][d][vo/gpu/wayland] Compositor supports drm format: 'UYVY(0000000000000000)'
[ 0.085][d][vo/gpu/wayland] Compositor supports drm format: 'UYVY(00ffffffffffffff)'
[ 0.085][d][vo/gpu/wayland] Compositor supports drm format: 'VYUY(0700000000000006)'
[ 0.085][d][vo/gpu/wayland] Compositor supports drm format: 'VYUY(0000000000000000)'
[ 0.085][d][vo/gpu/wayland] Compositor supports drm format: 'VYUY(00ffffffffffffff)'
[ 0.085][d][vo/gpu/wayland] Compositor supports drm format: 'Y210(0700000000000006)'
[ 0.085][d][vo/gpu/wayland] Compositor supports drm format: 'Y210(0000000000000000)'
[ 0.085][d][vo/gpu/wayland] Compositor supports drm format: 'Y210(00ffffffffffffff)'
[ 0.086][d][vo/gpu/wayland] Compositor supports drm format: 'Y212(0700000000000006)'
[ 0.086][d][vo/gpu/wayland] Compositor supports drm format: 'Y212(0000000000000000)'
[ 0.086][d][vo/gpu/wayland] Compositor supports drm format: 'Y212(00ffffffffffffff)'
[ 0.086][d][vo/gpu/wayland] Compositor supports drm format: 'Y216(0700000000000006)'
[ 0.086][d][vo/gpu/wayland] Compositor supports drm format: 'Y216(0000000000000000)'
[ 0.086][d][vo/gpu/wayland] Compositor supports drm format: 'Y216(00ffffffffffffff)'
[ 0.086][v][vo/gpu/wayland] Registered output Sony SONY TV *01 (0x1c):
[ 0.086][v][vo/gpu/wayland] x: 0px, y: 0px
[ 0.086][v][vo/gpu/wayland] w: 1920px (930mm), h: 1080px (520mm)
[ 0.086][v][vo/gpu/wayland] scale: 1.000000
[ 0.086][v][vo/gpu/wayland] Hz: 60.000000
[ 0.086][d][vo/gpu/wayland] Requested server-side decorations but compositor responded with client-side. It is likely that compositor wants us to stay in a given mode.
[ 0.086][v][vo/gpu/wayland] Disabling server decorations
[ 0.086][v][vo/gpu/wayland] Compositor does not support parametric image descriptions!
[ 0.086][v][vo/gpu/wayland] Compositor does not support ICC profiles!
[ 0.120][v][vo/gpu/opengl] EGL_VERSION=1.4
[ 0.120][v][vo/gpu/opengl] EGL_VENDOR=Mesa Project
[ 0.120][v][vo/gpu/opengl] EGL_CLIENT_APIS=OpenGL OpenGL_ES
[ 0.120][v][vo/gpu/opengl] Trying to create Desktop OpenGL context.
[ 0.121][d][vo/gpu/opengl] Chosen EGLConfig:
[ 0.121][d][vo/gpu/opengl] EGL_CONFIG_ID=0x9
[ 0.121][d][vo/gpu/opengl] EGL_RED_SIZE=0xa
[ 0.121][d][vo/gpu/opengl] EGL_GREEN_SIZE=0xa
[ 0.121][d][vo/gpu/opengl] EGL_BLUE_SIZE=0xa
[ 0.121][d][vo/gpu/opengl] EGL_ALPHA_SIZE=0x0
[ 0.121][d][vo/gpu/opengl] EGL_COLOR_BUFFER_TYPE=0x308e
[ 0.121][d][vo/gpu/opengl] EGL_CONFIG_CAVEAT=0x3038
[ 0.121][d][vo/gpu/opengl] EGL_CONFORMANT=0x4d
[ 0.121][d][vo/gpu/opengl] EGL_NATIVE_VISUAL_ID=0x0
[ 0.129][v][vo/gpu/wayland] GL_VERSION='3.1 Mesa 24.2.8-1~bpo12+rpt2'
[ 0.129][v][vo/gpu/wayland] Detected desktop OpenGL 3.1.
[ 0.130][v][vo/gpu/wayland] GL_VENDOR='Broadcom'
[ 0.130][v][vo/gpu/wayland] GL_RENDERER='V3D 4.2.14.0'
[ 0.130][v][vo/gpu/wayland] GL_SHADING_LANGUAGE_VERSION='1.40'
[ 0.130][d][vo/gpu/wayland] Combined OpenGL extensions string:
[ 0.130][d][vo/gpu/wayland] EGL_ANDROID_blob_cache EGL_ANDROID_native_fence_sync EGL_EXT_buffer_age EGL_EXT_config_select_group EGL_EXT_image_dma_buf_import EGL_EXT_image_dma_buf_import_modifiers EGL_EXT_present_opaque EGL_EXT_surface_compression EGL_EXT_swap_buffers_with_damage EGL_KHR_cl_event2 EGL_KHR_config_attribs EGL_KHR_context_flush_control EGL_KHR_create_context EGL_KHR_create_context_no_error EGL_KHR_fence_sync EGL_KHR_get_all_proc_addresses EGL_KHR_gl_colorspace EGL_KHR_gl_renderbuffer_image EGL_KHR_gl_texture_2D_image EGL_KHR_gl_texture_3D_image EGL_KHR_gl_texture_cubemap_image EGL_KHR_image_base EGL_KHR_no_config_context EGL_KHR_reusable_sync EGL_KHR_surfaceless_context EGL_KHR_swap_buffers_with_damage EGL_EXT_pixel_format_float EGL_KHR_wait_sync EGL_MESA_configless_context EGL_MESA_drm_image EGL_MESA_gl_interop EGL_MESA_image_dma_buf_export EGL_MESA_query_driver EGL_MESA_x11_native_visual_id EGL_WL_bind_wayland_display EGL_WL_create_wayland_buffer_from_image GL_AMD_conservative_depth GL_AMD_draw_buffers_blend GL_AMD_multi_draw_indirect GL_AMD_performance_monitor GL_AMD_shader_trinary_minmax GL_AMD_texture_texture4 GL_ANGLE_texture_compression_dxt3 GL_ANGLE_texture_compression_dxt5 GL_APPLE_packed_pixels GL_ARB_ES2_compatibility GL_ARB_ES3_compatibility GL_ARB_arrays_of_arrays GL_ARB_base_instance GL_ARB_buffer_storage GL_ARB_clear_buffer_object GL_ARB_clear_texture GL_ARB_color_buffer_float GL_ARB_compatibility GL_ARB_compressed_texture_pixel_storage GL_ARB_conditional_render_inverted GL_ARB_conservative_depth GL_ARB_copy_buffer GL_ARB_copy_image GL_ARB_debug_output GL_ARB_depth_buffer_float GL_ARB_depth_texture GL_ARB_direct_state_access GL_ARB_draw_buffers GL_ARB_draw_buffers_blend GL_ARB_draw_elements_base_vertex GL_ARB_draw_indirect GL_ARB_draw_instanced GL_ARB_explicit_attrib_location GL_ARB_explicit_uniform_location GL_ARB_fragment_coord_conventions GL_ARB_fragment_program GL_ARB_fragment_program_shadow GL_ARB_fragment_shader GL_ARB_framebuffer_no_attachments GL_ARB_framebuffer_object GL_ARB_framebuffer_sRGB GL_ARB_get_program_binary GL_ARB_get_texture_sub_image GL_ARB_half_float_pixel GL_ARB_half_float_vertex GL_ARB_instanced_arrays GL_ARB_internalformat_query GL_ARB_internalformat_query2 GL_ARB_invalidate_subdata GL_ARB_map_buffer_alignment GL_ARB_map_buffer_range GL_ARB_multi_bind GL_ARB_multi_draw_indirect GL_ARB_multisample GL_ARB_multitexture GL_ARB_occlusion_query GL_ARB_occlusion_query2 GL_ARB_parallel_shader_compile GL_ARB_pixel_buffer_object GL_ARB_point_parameters GL_ARB_point_sprite GL_ARB_polygon_offset_clamp GL_ARB_program_interface_query GL_ARB_provoking_vertex GL_ARB_robustness GL_ARB_sampler_objects GL_ARB_separate_shader_objects GL_ARB_shader_atomic_counter_ops GL_ARB_shader_atomic_counters GL_ARB_shader_bit_encoding GL_ARB_shader_objects GL_ARB_shader_storage_buffer_object GL_ARB_shader_subroutine GL_ARB_shader_texture_lod GL_ARB_shading_language_100 GL_ARB_shading_language_420pack GL_ARB_shading_language_include GL_ARB_shading_language_packing GL_ARB_shadow GL_ARB_stencil_texturing GL_ARB_sync GL_ARB_texture_barrier GL_ARB_texture_border_clamp GL_ARB_texture_buffer_object GL_ARB_texture_buffer_range GL_ARB_texture_compression GL_ARB_texture_compression_rgtc GL_ARB_texture_cube_map GL_ARB_texture_cube_map_array GL_ARB_texture_env_add GL_ARB_texture_env_combine GL_ARB_texture_env_crossbar GL_ARB_texture_env_dot3 GL_ARB_texture_filter_anisotropic GL_ARB_texture_float GL_ARB_texture_gather GL_ARB_texture_mirror_clamp_to_edge GL_ARB_texture_mirrored_repeat GL_ARB_texture_multisample GL_ARB_texture_non_power_of_two GL_ARB_texture_query_levels GL_ARB_texture_query_lod GL_ARB_texture_rectangle GL_ARB_texture_rg GL_ARB_texture_rgb10_a2ui GL_ARB_texture_stencil8 GL_ARB_texture_storage GL_ARB_texture_storage_multisample GL_ARB_texture_swizzle GL_ARB_texture_view GL_ARB_transform_feedback2 GL_ARB_transform_feedback_instanced GL_ARB_transpose_matrix GL_ARB_uniform_buffer_object GL_ARB_vertex_array_bgra GL_ARB_vertex_array_object GL_ARB_vertex_attrib_binding GL_ARB_vertex_buffer_object GL_ARB_vertex_program GL_ARB_vertex_shader GL_ARB_vertex_type_2_10_10_10_rev GL_ARB_window_pos GL_ATI_blend_equation_separate GL_ATI_draw_buffers GL_ATI_fragment_shader GL_ATI_separate_stencil GL_ATI_texture_compression_3dc GL_ATI_texture_env_combine3 GL_ATI_texture_float GL_EXT_EGL_image_storage GL_EXT_EGL_image_storage_compression GL_EXT_EGL_sync GL_EXT_abgr GL_EXT_bgra GL_EXT_blend_color GL_EXT_blend_equation_separate GL_EXT_blend_func_separate GL_EXT_blend_minmax GL_EXT_blend_subtract GL_EXT_compiled_vertex_array GL_EXT_copy_texture GL_EXT_debug_label GL_EXT_direct_state_access GL_EXT_draw_buffers2 GL_EXT_draw_instanced GL_EXT_draw_range_elements GL_EXT_fog_coord GL_EXT_framebuffer_blit GL_EXT_framebuffer_multisample GL_EXT_framebuffer_multisample_blit_scaled GL_EXT_framebuffer_object GL_EXT_framebuffer_sRGB GL_EXT_gpu_program_parameters GL_EXT_gpu_shader4 GL_EXT_multi_draw_arrays GL_EXT_packed_depth_stencil GL_EXT_packed_float GL_EXT_packed_pixels GL_EXT_pixel_buffer_object GL_EXT_point_parameters GL_EXT_polygon_offset_clamp GL_EXT_provoking_vertex GL_EXT_rescale_normal GL_EXT_secondary_color GL_EXT_separate_specular_color GL_EXT_shader_integer_mix GL_EXT_shadow_funcs GL_EXT_stencil_two_side GL_EXT_stencil_wrap GL_EXT_subtexture GL_EXT_texture GL_EXT_texture3D GL_EXT_texture_array GL_EXT_texture_buffer_object GL_EXT_texture_compression_dxt1 GL_EXT_texture_compression_rgtc GL_EXT_texture_compression_s3tc GL_EXT_texture_cube_map GL_EXT_texture_edge_clamp GL_EXT_texture_env_add GL_EXT_texture_env_combine GL_EXT_texture_env_dot3 GL_EXT_texture_filter_anisotropic GL_EXT_texture_integer GL_EXT_texture_lod_bias GL_EXT_texture_object GL_EXT_texture_rectangle GL_EXT_texture_sRGB GL_EXT_texture_sRGB_decode GL_EXT_texture_shared_exponent GL_EXT_texture_snorm GL_EXT_texture_storage GL_EXT_texture_swizzle GL_EXT_transform_feedback GL_EXT_vertex_array GL_EXT_vertex_array_bgra GL_IBM_multimode_draw_arrays GL_IBM_rasterpos_clip GL_IBM_texture_mirrored_repeat GL_INGR_blend_func_separate GL_KHR_context_flush_control GL_KHR_debug GL_KHR_no_error GL_KHR_parallel_shader_compile GL_KHR_texture_compression_astc_ldr GL_KHR_texture_compression_astc_sliced_3d GL_MESA_pack_invert GL_MESA_shader_integer_functions GL_MESA_texture_signed_rgba GL_MESA_window_pos GL_NV_ES1_1_compatibility GL_NV_blend_square GL_NV_conditional_render GL_NV_copy_image GL_NV_fog_distance GL_NV_half_float GL_NV_light_max_exponent GL_NV_packed_depth_stencil GL_NV_primitive_restart GL_NV_texgen_reflection GL_NV_texture_barrier GL_NV_texture_env_combine4 GL_NV_texture_rectangle GL_OES_EGL_image GL_OES_read_format GL_S3_s3tc GL_SGIS_generate_mipmap GL_SGIS_texture_border_clamp GL_SGIS_texture_edge_clamp GL_SGIS_texture_lod GL_SUN_multi_draw_arrays
[ 0.130][v][vo/gpu/wayland] Loaded extension GL_ARB_sync.
[ 0.130][v][vo/gpu/wayland] Loaded extension GL_ARB_invalidate_subdata.
[ 0.130][v][vo/gpu/wayland] Loaded extension GL_ARB_get_program_binary.
[ 0.130][v][vo/gpu/wayland] Loaded extension GL_ARB_buffer_storage.
[ 0.130][v][vo/gpu/wayland] Loaded extension GL_ARB_shader_storage_buffer_object.
[ 0.130][v][vo/gpu/wayland] Loaded extension GL_ARB_arrays_of_arrays.
[ 0.131][v][vo/gpu/wayland] Loaded extension GL_ARB_debug_output.
[ 0.131][v][vo/gpu/wayland] Loaded extension GL_KHR_debug.
[ 0.132][d][vo/gpu/opengl] Texture formats:
[ 0.132][d][vo/gpu/opengl] NAME COMP*TYPE SIZE DEPTH PER COMP.
[ 0.132][d][vo/gpu/opengl] r8 1*unorm 1B LF CR ST {8}
[ 0.132][d][vo/gpu/opengl] rg8 2*unorm 2B LF CR ST {8 8}
[ 0.132][d][vo/gpu/opengl] rgb8 3*unorm 3B LF CR ST {8 8 8}
[ 0.132][d][vo/gpu/opengl] rgba8 4*unorm 4B LF CR ST {8 8 8 8}
[ 0.132][d][vo/gpu/opengl] r16 1*unorm 2B LF CR ST {16}
[ 0.132][d][vo/gpu/opengl] rg16 2*unorm 4B LF CR ST {16 16}
[ 0.132][d][vo/gpu/opengl] rgb16 3*unorm 6B LF CR ST {16 16 16}
[ 0.132][d][vo/gpu/opengl] rgba16 4*unorm 8B LF CR ST {16 16 16 16}
[ 0.132][d][vo/gpu/opengl] r8ui 1*uint 1B CR ST {8}
[ 0.132][d][vo/gpu/opengl] rg8ui 2*uint 2B CR ST {8 8}
[ 0.132][d][vo/gpu/opengl] rgb8ui 3*uint 3B ST {8 8 8}
[ 0.132][d][vo/gpu/opengl] rgba8ui 4*uint 4B CR ST {8 8 8 8}
[ 0.132][d][vo/gpu/opengl] r16ui 1*uint 2B CR ST {16}
[ 0.132][d][vo/gpu/opengl] rg16ui 2*uint 4B CR ST {16 16}
[ 0.132][d][vo/gpu/opengl] rgb16ui 3*uint 6B ST {16 16 16}
[ 0.132][d][vo/gpu/opengl] rgba16ui 4*uint 8B CR ST {16 16 16 16}
[ 0.132][d][vo/gpu/opengl] r16f 1*float 4B LF CR ST {32/16}
[ 0.132][d][vo/gpu/opengl] rg16f 2*float 8B LF CR ST {32/16 32/16}
[ 0.132][d][vo/gpu/opengl] rgb16f 3*float 12B LF CR ST {32/16 32/16 32/16}
[ 0.132][d][vo/gpu/opengl] rgba16f 4*float 16B LF CR ST {32/16 32/16 32/16 32/16}
[ 0.132][d][vo/gpu/opengl] r32f 1*float 4B LF CR ST {32}
[ 0.132][d][vo/gpu/opengl] rg32f 2*float 8B LF CR ST {32 32}
[ 0.132][d][vo/gpu/opengl] rgb32f 3*float 12B LF CR ST {32 32 32}
[ 0.132][d][vo/gpu/opengl] rgba32f 4*float 16B LF CR ST {32 32 32 32}
[ 0.132][d][vo/gpu/opengl] rgb10_a2 4*unorm 4B LF CR ST {0/10 0/10 0/10 0/2}
[ 0.132][d][vo/gpu/opengl] rgba12 4*unorm 8B LF CR ST {16 16 16 16}
[ 0.132][d][vo/gpu/opengl] rgb10 3*unorm 6B LF CR ST {16/10 16/10 16/10}
[ 0.132][d][vo/gpu/opengl] rgb565 3*unorm 2B LF ST {0/8 0/8 0/8}
[ 0.132][d][vo/gpu/opengl] LA = LUMINANCE_ALPHA hack format
[ 0.132][d][vo/gpu/opengl] LF = linear filterable
[ 0.132][d][vo/gpu/opengl] CR = can be used for render targets
[ 0.132][d][vo/gpu/opengl] ST = can be used for storable images
[ 0.132][d][vo/gpu/opengl] Image formats:
[ 0.132][d][vo/gpu/opengl] yuv444p => 3 planes 1x1 8/0 [r8/r8/r8] (r/g/b) [unorm]
[ 0.132][d][vo/gpu/opengl] yuv420p => 3 planes 2x2 8/0 [r8/r8/r8] (r/g/b) [unorm]
[ 0.132][d][vo/gpu/opengl] gray => 1 planes 1x1 8/0 [r8] (r) [unorm]
[ 0.132][d][vo/gpu/opengl] gray16 => 1 planes 1x1 16/0 [r16] (r) [unorm]
[ 0.132][d][vo/gpu/opengl] uyvy422
[ 0.132][d][vo/gpu/opengl] nv12 => 2 planes 2x2 8/0 [r8/rg8] (r/gb) [unorm]
[ 0.132][d][vo/gpu/opengl] p010 => 2 planes 2x2 16/6 [r16/rg16] (r/gb) [unorm]
[ 0.132][d][vo/gpu/opengl] argb => 1 planes 1x1 8/0 [rgba8] (argb) [unorm]
[ 0.132][d][vo/gpu/opengl] bgra => 1 planes 1x1 8/0 [rgba8] (bgra) [unorm]
[ 0.132][d][vo/gpu/opengl] abgr => 1 planes 1x1 8/0 [rgba8] (abgr) [unorm]
[ 0.132][d][vo/gpu/opengl] rgba => 1 planes 1x1 8/0 [rgba8] (rgba) [unorm]
[ 0.132][d][vo/gpu/opengl] bgr24 => 1 planes 1x1 8/0 [rgb8] (bgr) [unorm]
[ 0.132][d][vo/gpu/opengl] rgb24 => 1 planes 1x1 8/0 [rgb8] (rgb) [unorm]
[ 0.132][d][vo/gpu/opengl] 0rgb => 1 planes 1x1 8/0 [rgba8] (_rgb) [unorm]
[ 0.132][d][vo/gpu/opengl] bgr0 => 1 planes 1x1 8/0 [rgba8] (bgr) [unorm]
[ 0.132][d][vo/gpu/opengl] 0bgr => 1 planes 1x1 8/0 [rgba8] (_bgr) [unorm]
[ 0.132][d][vo/gpu/opengl] rgb0 => 1 planes 1x1 8/0 [rgba8] (rgb) [unorm]
[ 0.132][d][vo/gpu/opengl] rgba64 => 1 planes 1x1 16/0 [rgba16] (rgba) [unorm]
[ 0.132][d][vo/gpu/opengl] rgb565 => 1 planes 1x1 0/0 [rgb565] (rgb) [unknown]
[ 0.132][d][vo/gpu/opengl] pal8
[ 0.132][d][vo/gpu/opengl] vdpau
[ 0.132][d][vo/gpu/opengl] d3d11
[ 0.132][d][vo/gpu/opengl] dxva2_vld
[ 0.132][d][vo/gpu/opengl] mmal
[ 0.132][d][vo/gpu/opengl] mediacodec
[ 0.132][d][vo/gpu/opengl] cuda
[ 0.132][d][vo/gpu/opengl] yap8 => 2 planes 1x1 8/0 [r8/r8] (r/a) [unorm]
[ 0.132][d][vo/gpu/opengl] yap16 => 2 planes 1x1 16/0 [r16/r16] (r/a) [unorm]
[ 0.132][d][vo/gpu/opengl] grayaf32 => 2 planes 1x1 32/0 [r16f/r16f] (r/a) [float]
[ 0.132][d][vo/gpu/opengl] yuv444pf => 3 planes 1x1 32/0 [r16f/r16f/r16f] (r/g/b) [float]
[ 0.132][d][vo/gpu/opengl] yuva444pf => 4 planes 1x1 32/0 [r16f/r16f/r16f/r16f] (r/g/b/a) [float]
[ 0.132][d][vo/gpu/opengl] yuv420pf => 3 planes 2x2 32/0 [r16f/r16f/r16f] (r/g/b) [float]
[ 0.132][d][vo/gpu/opengl] yuva420pf => 4 planes 2x2 32/0 [r16f/r16f/r16f/r16f] (r/g/b/a) [float]
[ 0.132][d][vo/gpu/opengl] yuv422pf => 3 planes 2x1 32/0 [r16f/r16f/r16f] (r/g/b) [float]
[ 0.132][d][vo/gpu/opengl] yuva422pf => 4 planes 2x1 32/0 [r16f/r16f/r16f/r16f] (r/g/b/a) [float]
[ 0.132][d][vo/gpu/opengl] yuv440pf => 3 planes 1x2 32/0 [r16f/r16f/r16f] (r/g/b) [float]
[ 0.132][d][vo/gpu/opengl] yuva440pf => 4 planes 1x2 32/0 [r16f/r16f/r16f/r16f] (r/g/b/a) [float]
[ 0.132][d][vo/gpu/opengl] yuv410pf => 3 planes 4x4 32/0 [r16f/r16f/r16f] (r/g/b) [float]
[ 0.132][d][vo/gpu/opengl] yuva410pf => 4 planes 4x4 32/0 [r16f/r16f/r16f/r16f] (r/g/b/a) [float]
[ 0.132][d][vo/gpu/opengl] yuv411pf => 3 planes 4x1 32/0 [r16f/r16f/r16f] (r/g/b) [float]
[ 0.132][d][vo/gpu/opengl] yuva411pf => 4 planes 4x1 32/0 [r16f/r16f/r16f/r16f] (r/g/b/a) [float]
[ 0.132][d][vo/gpu/opengl] rgb30 => 1 planes 1x1 10/0 [rgb10_a2] (bgr) [unknown]
[ 0.132][d][vo/gpu/opengl] y1 => 1 planes 1x1 8/-7 [r8] (r) [unorm]
[ 0.132][d][vo/gpu/opengl] gbrp1 => 3 planes 1x1 8/-7 [r8/r8/r8] (g/b/r) [unorm]
[ 0.132][d][vo/gpu/opengl] gbrp2 => 3 planes 1x1 8/-6 [r8/r8/r8] (g/b/r) [unorm]
[ 0.132][d][vo/gpu/opengl] gbrp3 => 3 planes 1x1 8/-5 [r8/r8/r8] (g/b/r) [unorm]
[ 0.132][d][vo/gpu/opengl] gbrp4 => 3 planes 1x1 8/-4 [r8/r8/r8] (g/b/r) [unorm]
[ 0.132][d][vo/gpu/opengl] gbrp5 => 3 planes 1x1 8/-3 [r8/r8/r8] (g/b/r) [unorm]
[ 0.132][d][vo/gpu/opengl] gbrp6 => 3 planes 1x1 8/-2 [r8/r8/r8] (g/b/r) [unorm]
[ 0.132][d][vo/gpu/opengl] vdpau_output
[ 0.132][d][vo/gpu/opengl] vaapi
[ 0.132][d][vo/gpu/opengl] videotoolbox
[ 0.132][d][vo/gpu/opengl] vulkan
[ 0.132][d][vo/gpu/opengl] drm_prime
[ 0.132][d][vo/gpu/opengl] yuyv422
[ 0.132][d][vo/gpu/opengl] yuv422p => 3 planes 2x1 8/0 [r8/r8/r8] (r/g/b) [unorm]
[ 0.132][d][vo/gpu/opengl] yuv410p => 3 planes 4x4 8/0 [r8/r8/r8] (r/g/b) [unorm]
[ 0.132][d][vo/gpu/opengl] yuv411p => 3 planes 4x1 8/0 [r8/r8/r8] (r/g/b) [unorm]
[ 0.132][d][vo/gpu/opengl] monow
[ 0.132][d][vo/gpu/opengl] monob
[ 0.132][d][vo/gpu/opengl] yuvj422p => 3 planes 2x1 8/0 [r8/r8/r8] (r/g/b) [unorm]
[ 0.132][d][vo/gpu/opengl] uyyvyy411
[ 0.132][d][vo/gpu/opengl] bgr8
[ 0.133][d][vo/gpu/opengl] bgr4
[ 0.133][d][vo/gpu/opengl] bgr4_byte
[ 0.133][d][vo/gpu/opengl] rgb8
[ 0.133][d][vo/gpu/opengl] rgb4
[ 0.133][d][vo/gpu/opengl] rgb4_byte
[ 0.133][d][vo/gpu/opengl] nv21 => 2 planes 2x2 8/0 [r8/rg8] (r/bg) [unorm]
[ 0.133][d][vo/gpu/opengl] gray16be
[ 0.133][d][vo/gpu/opengl] yuv440p => 3 planes 1x2 8/0 [r8/r8/r8] (r/g/b) [unorm]
[ 0.133][d][vo/gpu/opengl] yuvj440p => 3 planes 1x2 8/0 [r8/r8/r8] (r/g/b) [unorm]
[ 0.133][d][vo/gpu/opengl] yuva420p => 4 planes 2x2 8/0 [r8/r8/r8/r8] (r/g/b/a) [unorm]
[ 0.133][d][vo/gpu/opengl] rgb48be
[ 0.133][d][vo/gpu/opengl] rgb48 => 1 planes 1x1 16/0 [rgb16] (rgb) [unorm]
[ 0.133][d][vo/gpu/opengl] rgb565be
[ 0.133][d][vo/gpu/opengl] rgb555be
[ 0.133][d][vo/gpu/opengl] rgb555
[ 0.133][d][vo/gpu/opengl] bgr565be
[ 0.133][d][vo/gpu/opengl] bgr565
[ 0.133][d][vo/gpu/opengl] bgr555be
[ 0.133][d][vo/gpu/opengl] bgr555
[ 0.133][d][vo/gpu/opengl] yuv420p16 => 3 planes 2x2 16/0 [r16/r16/r16] (r/g/b) [unorm]
[ 0.133][d][vo/gpu/opengl] yuv420p16be
[ 0.133][d][vo/gpu/opengl] yuv422p16 => 3 planes 2x1 16/0 [r16/r16/r16] (r/g/b) [unorm]
[ 0.133][d][vo/gpu/opengl] yuv422p16be
[ 0.133][d][vo/gpu/opengl] yuv444p16 => 3 planes 1x1 16/0 [r16/r16/r16] (r/g/b) [unorm]
[ 0.133][d][vo/gpu/opengl] yuv444p16be
[ 0.133][d][vo/gpu/opengl] rgb444
[ 0.133][d][vo/gpu/opengl] rgb444be
[ 0.133][d][vo/gpu/opengl] bgr444
[ 0.133][d][vo/gpu/opengl] bgr444be
[ 0.133][d][vo/gpu/opengl] ya8 => 1 planes 1x1 8/0 [rg8] (ra) [unorm]
[ 0.133][d][vo/gpu/opengl] bgr48be
[ 0.133][d][vo/gpu/opengl] bgr48 => 1 planes 1x1 16/0 [rgb16] (bgr) [unorm]
[ 0.133][d][vo/gpu/opengl] yuv420p9be
[ 0.133][d][vo/gpu/opengl] yuv420p9 => 3 planes 2x2 16/-7 [r16/r16/r16] (r/g/b) [unorm]
[ 0.133][d][vo/gpu/opengl] yuv420p10be
[ 0.133][d][vo/gpu/opengl] yuv420p10 => 3 planes 2x2 16/-6 [r16/r16/r16] (r/g/b) [unorm]
[ 0.133][d][vo/gpu/opengl] yuv422p10be
[ 0.133][d][vo/gpu/opengl] yuv422p10 => 3 planes 2x1 16/-6 [r16/r16/r16] (r/g/b) [unorm]
[ 0.133][d][vo/gpu/opengl] yuv444p9be
[ 0.133][d][vo/gpu/opengl] yuv444p9 => 3 planes 1x1 16/-7 [r16/r16/r16] (r/g/b) [unorm]
[ 0.133][d][vo/gpu/opengl] yuv444p10be
[ 0.133][d][vo/gpu/opengl] yuv444p10 => 3 planes 1x1 16/-6 [r16/r16/r16] (r/g/b) [unorm]
[ 0.133][d][vo/gpu/opengl] yuv422p9be
[ 0.133][d][vo/gpu/opengl] yuv422p9 => 3 planes 2x1 16/-7 [r16/r16/r16] (r/g/b) [unorm]
[ 0.133][d][vo/gpu/opengl] gbrp => 3 planes 1x1 8/0 [r8/r8/r8] (g/b/r) [unorm]
[ 0.133][d][vo/gpu/opengl] gbrp9be
[ 0.133][d][vo/gpu/opengl] gbrp9 => 3 planes 1x1 16/-7 [r16/r16/r16] (g/b/r) [unorm]
[ 0.133][d][vo/gpu/opengl] gbrp10be
[ 0.133][d][vo/gpu/opengl] gbrp10 => 3 planes 1x1 16/-6 [r16/r16/r16] (g/b/r) [unorm]
[ 0.133][d][vo/gpu/opengl] gbrp16be
[ 0.133][d][vo/gpu/opengl] gbrp16 => 3 planes 1x1 16/0 [r16/r16/r16] (g/b/r) [unorm]
[ 0.133][d][vo/gpu/opengl] yuva422p => 4 planes 2x1 8/0 [r8/r8/r8/r8] (r/g/b/a) [unorm]
[ 0.133][d][vo/gpu/opengl] yuva444p => 4 planes 1x1 8/0 [r8/r8/r8/r8] (r/g/b/a) [unorm]
[ 0.133][d][vo/gpu/opengl] yuva420p9be
[ 0.133][d][vo/gpu/opengl] yuva420p9 => 4 planes 2x2 16/-7 [r16/r16/r16/r16] (r/g/b/a) [unorm]
[ 0.133][d][vo/gpu/opengl] yuva422p9be
[ 0.133][d][vo/gpu/opengl] yuva422p9 => 4 planes 2x1 16/-7 [r16/r16/r16/r16] (r/g/b/a) [unorm]
[ 0.133][d][vo/gpu/opengl] yuva444p9be
[ 0.133][d][vo/gpu/opengl] yuva444p9 => 4 planes 1x1 16/-7 [r16/r16/r16/r16] (r/g/b/a) [unorm]
[ 0.133][d][vo/gpu/opengl] yuva420p10be
[ 0.133][d][vo/gpu/opengl] yuva420p10 => 4 planes 2x2 16/-6 [r16/r16/r16/r16] (r/g/b/a) [unorm]
[ 0.133][d][vo/gpu/opengl] yuva422p10be
[ 0.133][d][vo/gpu/opengl] yuva422p10 => 4 planes 2x1 16/-6 [r16/r16/r16/r16] (r/g/b/a) [unorm]
[ 0.133][d][vo/gpu/opengl] yuva444p10be
[ 0.133][d][vo/gpu/opengl] yuva444p10 => 4 planes 1x1 16/-6 [r16/r16/r16/r16] (r/g/b/a) [unorm]
[ 0.133][d][vo/gpu/opengl] yuva420p16be
[ 0.133][d][vo/gpu/opengl] yuva420p16 => 4 planes 2x2 16/0 [r16/r16/r16/r16] (r/g/b/a) [unorm]
[ 0.133][d][vo/gpu/opengl] yuva422p16be
[ 0.133][d][vo/gpu/opengl] yuva422p16 => 4 planes 2x1 16/0 [r16/r16/r16/r16] (r/g/b/a) [unorm]
[ 0.133][d][vo/gpu/opengl] yuva444p16be
[ 0.133][d][vo/gpu/opengl] yuva444p16 => 4 planes 1x1 16/0 [r16/r16/r16/r16] (r/g/b/a) [unorm]
[ 0.133][d][vo/gpu/opengl] xyz12 => 1 planes 1x1 16/4 [rgb16] (rgb) [unorm]
[ 0.133][d][vo/gpu/opengl] xyz12be
[ 0.133][d][vo/gpu/opengl] nv16 => 2 planes 2x1 8/0 [r8/rg8] (r/gb) [unorm]
[ 0.133][d][vo/gpu/opengl] nv20 => 2 planes 2x1 16/-6 [r16/rg16] (r/gb) [unorm]
[ 0.133][d][vo/gpu/opengl] nv20be
[ 0.133][d][vo/gpu/opengl] rgba64be
[ 0.133][d][vo/gpu/opengl] bgra64be
[ 0.133][d][vo/gpu/opengl] bgra64 => 1 planes 1x1 16/0 [rgba16] (bgra) [unorm]
[ 0.133][d][vo/gpu/opengl] yvyu422
[ 0.133][d][vo/gpu/opengl] ya16be
[ 0.133][d][vo/gpu/opengl] ya16 => 1 planes 1x1 16/0 [rg16] (ra) [unorm]
[ 0.133][d][vo/gpu/opengl] gbrap => 4 planes 1x1 8/0 [r8/r8/r8/r8] (g/b/r/a) [unorm]
[ 0.133][d][vo/gpu/opengl] gbrap16be
[ 0.133][d][vo/gpu/opengl] gbrap16 => 4 planes 1x1 16/0 [r16/r16/r16/r16] (g/b/r/a) [unorm]
[ 0.133][d][vo/gpu/opengl] qsv
[ 0.133][d][vo/gpu/opengl] d3d11va_vld
[ 0.133][d][vo/gpu/opengl] yuv420p12be
[ 0.133][d][vo/gpu/opengl] yuv420p12 => 3 planes 2x2 16/-4 [r16/r16/r16] (r/g/b) [unorm]
[ 0.133][d][vo/gpu/opengl] yuv420p14be
[ 0.133][d][vo/gpu/opengl] yuv420p14 => 3 planes 2x2 16/-2 [r16/r16/r16] (r/g/b) [unorm]
[ 0.133][d][vo/gpu/opengl] yuv422p12be
[ 0.133][d][vo/gpu/opengl] yuv422p12 => 3 planes 2x1 16/-4 [r16/r16/r16] (r/g/b) [unorm]
[ 0.133][d][vo/gpu/opengl] yuv422p14be
[ 0.133][d][vo/gpu/opengl] yuv422p14 => 3 planes 2x1 16/-2 [r16/r16/r16] (r/g/b) [unorm]
[ 0.133][d][vo/gpu/opengl] yuv444p12be
[ 0.133][d][vo/gpu/opengl] yuv444p12 => 3 planes 1x1 16/-4 [r16/r16/r16] (r/g/b) [unorm]
[ 0.133][d][vo/gpu/opengl] yuv444p14be
[ 0.133][d][vo/gpu/opengl] yuv444p14 => 3 planes 1x1 16/-2 [r16/r16/r16] (r/g/b) [unorm]
[ 0.133][d][vo/gpu/opengl] gbrp12be
[ 0.133][d][vo/gpu/opengl] gbrp12 => 3 planes 1x1 16/-4 [r16/r16/r16] (g/b/r) [unorm]
[ 0.134][d][vo/gpu/opengl] gbrp14be
[ 0.134][d][vo/gpu/opengl] gbrp14 => 3 planes 1x1 16/-2 [r16/r16/r16] (g/b/r) [unorm]
[ 0.134][d][vo/gpu/opengl] yuvj411p => 3 planes 4x1 8/0 [r8/r8/r8] (r/g/b) [unorm]
[ 0.134][d][vo/gpu/opengl] bayer_bggr8
[ 0.134][d][vo/gpu/opengl] bayer_rggb8
[ 0.134][d][vo/gpu/opengl] bayer_gbrg8
[ 0.134][d][vo/gpu/opengl] bayer_grbg8
[ 0.134][d][vo/gpu/opengl] bayer_bggr16
[ 0.134][d][vo/gpu/opengl] bayer_bggr16be
[ 0.134][d][vo/gpu/opengl] bayer_rggb16
[ 0.134][d][vo/gpu/opengl] bayer_rggb16be
[ 0.134][d][vo/gpu/opengl] bayer_gbrg16
[ 0.134][d][vo/gpu/opengl] bayer_gbrg16be
[ 0.134][d][vo/gpu/opengl] bayer_grbg16
[ 0.134][d][vo/gpu/opengl] bayer_grbg16be
[ 0.134][d][vo/gpu/opengl] yuv440p10 => 3 planes 1x2 16/-6 [r16/r16/r16] (r/g/b) [unorm]
[ 0.134][d][vo/gpu/opengl] yuv440p10be
[ 0.134][d][vo/gpu/opengl] yuv440p12 => 3 planes 1x2 16/-4 [r16/r16/r16] (r/g/b) [unorm]
[ 0.134][d][vo/gpu/opengl] yuv440p12be
[ 0.134][d][vo/gpu/opengl] ayuv64 => 1 planes 1x1 16/0 [rgba16] (argb) [unorm]
[ 0.134][d][vo/gpu/opengl] ayuv64be
[ 0.134][d][vo/gpu/opengl] p010be
[ 0.134][d][vo/gpu/opengl] gbrap12be
[ 0.134][d][vo/gpu/opengl] gbrap12 => 4 planes 1x1 16/-4 [r16/r16/r16/r16] (g/b/r/a) [unorm]
[ 0.134][d][vo/gpu/opengl] gbrap10be
[ 0.134][d][vo/gpu/opengl] gbrap10 => 4 planes 1x1 16/-6 [r16/r16/r16/r16] (g/b/r/a) [unorm]
[ 0.134][d][vo/gpu/opengl] gray12be
[ 0.134][d][vo/gpu/opengl] gray12 => 1 planes 1x1 16/-4 [r16] (r) [unorm]
[ 0.134][d][vo/gpu/opengl] gray10be
[ 0.134][d][vo/gpu/opengl] gray10 => 1 planes 1x1 16/-6 [r16] (r) [unorm]
[ 0.134][d][vo/gpu/opengl] p016 => 2 planes 2x2 16/0 [r16/rg16] (r/gb) [unorm]
[ 0.134][d][vo/gpu/opengl] p016be
[ 0.134][d][vo/gpu/opengl] gray9be
[ 0.134][d][vo/gpu/opengl] gray9 => 1 planes 1x1 16/-7 [r16] (r) [unorm]
[ 0.134][d][vo/gpu/opengl] gbrpf32be
[ 0.134][d][vo/gpu/opengl] gbrpf32 => 3 planes 1x1 32/0 [r16f/r16f/r16f] (g/b/r) [float]
[ 0.134][d][vo/gpu/opengl] gbrapf32be
[ 0.134][d][vo/gpu/opengl] gbrapf32 => 4 planes 1x1 32/0 [r16f/r16f/r16f/r16f] (g/b/r/a) [float]
[ 0.134][d][vo/gpu/opengl] opencl
[ 0.134][d][vo/gpu/opengl] gray14be
[ 0.134][d][vo/gpu/opengl] gray14 => 1 planes 1x1 16/-2 [r16] (r) [unorm]
[ 0.134][d][vo/gpu/opengl] grayf32be
[ 0.134][d][vo/gpu/opengl] grayf32 => 1 planes 1x1 32/0 [r16f] (r) [float]
[ 0.134][d][vo/gpu/opengl] yuva422p12be
[ 0.134][d][vo/gpu/opengl] yuva422p12 => 4 planes 2x1 16/-4 [r16/r16/r16/r16] (r/g/b/a) [unorm]
[ 0.134][d][vo/gpu/opengl] yuva444p12be
[ 0.134][d][vo/gpu/opengl] yuva444p12 => 4 planes 1x1 16/-4 [r16/r16/r16/r16] (r/g/b/a) [unorm]
[ 0.134][d][vo/gpu/opengl] nv24 => 2 planes 1x1 8/0 [r8/rg8] (r/gb) [unorm]
[ 0.134][d][vo/gpu/opengl] nv42 => 2 planes 1x1 8/0 [r8/rg8] (r/bg) [unorm]
[ 0.134][d][vo/gpu/opengl] y210be
[ 0.134][d][vo/gpu/opengl] y210
[ 0.134][d][vo/gpu/opengl] x2rgb10be
[ 0.134][d][vo/gpu/opengl] x2bgr10
[ 0.134][d][vo/gpu/opengl] x2bgr10be
[ 0.134][d][vo/gpu/opengl] p210be
[ 0.134][d][vo/gpu/opengl] p210 => 2 planes 2x1 16/6 [r16/rg16] (r/gb) [unorm]
[ 0.134][d][vo/gpu/opengl] p410be
[ 0.134][d][vo/gpu/opengl] p410 => 2 planes 1x1 16/6 [r16/rg16] (r/gb) [unorm]
[ 0.134][d][vo/gpu/opengl] p216be
[ 0.134][d][vo/gpu/opengl] p216 => 2 planes 2x1 16/0 [r16/rg16] (r/gb) [unorm]
[ 0.134][d][vo/gpu/opengl] p416be
[ 0.134][d][vo/gpu/opengl] p416 => 2 planes 1x1 16/0 [r16/rg16] (r/gb) [unorm]
[ 0.134][d][vo/gpu/opengl] vuya => 1 planes 1x1 8/0 [rgba8] (bgra) [unorm]
[ 0.134][d][vo/gpu/opengl] rgbaf16be
[ 0.134][d][vo/gpu/opengl] rgbaf16
[ 0.134][d][vo/gpu/opengl] vuyx => 1 planes 1x1 8/0 [rgba8] (bgr) [unorm]
[ 0.134][d][vo/gpu/opengl] p012 => 2 planes 2x2 16/4 [r16/rg16] (r/gb) [unorm]
[ 0.134][d][vo/gpu/opengl] p012be
[ 0.134][d][vo/gpu/opengl] y212be
[ 0.134][d][vo/gpu/opengl] y212
[ 0.134][d][vo/gpu/opengl] xv30be
[ 0.134][d][vo/gpu/opengl] xv30
[ 0.134][d][vo/gpu/opengl] xv36be
[ 0.134][d][vo/gpu/opengl] xv36 => 1 planes 1x1 16/4 [rgba16] (grb) [unorm]
[ 0.134][d][vo/gpu/opengl] rgbf32be
[ 0.134][d][vo/gpu/opengl] rgbf32
[ 0.134][d][vo/gpu/opengl] rgbaf32be
[ 0.134][d][vo/gpu/opengl] rgbaf32
[ 0.134][d][vo/gpu/opengl] p212be
[ 0.134][d][vo/gpu/opengl] p212 => 2 planes 2x1 16/4 [r16/rg16] (r/gb) [unorm]
[ 0.134][d][vo/gpu/opengl] p412be
[ 0.134][d][vo/gpu/opengl] p412 => 2 planes 1x1 16/4 [r16/rg16] (r/gb) [unorm]
[ 0.134][d][vo/gpu/opengl] gbrap14be
[ 0.134][d][vo/gpu/opengl] gbrap14 => 4 planes 1x1 16/-2 [r16/r16/r16/r16] (g/b/r/a) [unorm]
[ 0.134][d][vo/gpu/opengl] d3d12
[ 0.134][v][vo/gpu] Testing FBO format rgba16f
[ 0.134][d][vo/gpu] Resizing texture: 16x16
[ 0.134][v][vo/gpu] Using FBO format rgba16f.
[ 0.134][v][vo/gpu] Disabling HDR peak computation (one or more of the following is not supported: compute shaders=0, SSBO=1).
[ 0.134][d][global] cache path: '' -> '/home/pi/.cache/mpv'
[ 0.143][v][vo/gpu] Resize: 0x0
[ 0.143][v][vo/gpu] Assuming 60.000000 FPS for display sync.
[ 0.143][v][vd] Container reported FPS: 8.000000
[ 0.144][v][vd] Codec list:
[ 0.144][v][vd] h264 - H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10
[ 0.144][v][vd] h264_v4l2m2m (h264) - V4L2 mem2mem H.264 decoder wrapper
[ 0.144][v][vd] Opening decoder h264
[ 0.144][v][vd] Looking at hwdec h264-vaapi...
[ 0.144][v][vd] Not using this for auto-copy.
[ 0.144][v][vd] Looking at hwdec h264-vaapi-copy...
[ 0.144][v][vaapi] libva: VA-API version 1.17.0
[ 0.144][v][vaapi] libva: Trying to open /usr/lib/aarch64-linux-gnu/dri/v3d_drv_video.so
[ 0.145][v][vaapi] libva: va_openDriver() returns -1
[ 0.145][v][vd] Could not create device.
[ 0.145][v][vd] Looking at hwdec h264-vdpau-copy...
[ 0.429][v][vd] Error when calling vdp_device_create_x11: 1
[ 0.429][v][vd] Could not create device.
[ 0.429][v][vd] Using software decoding.
[ 0.430][v][vd] Detected 4 logical cores.
[ 0.430][v][vd] Requesting 5 threads for decoding.
[ 0.436][v][vd] Selected decoder: h264 - H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10
[ 0.436][v][vf] User filter list:
[ 0.436][v][vf] (empty)
[ 0.438][v][ad] Codec list:
[ 0.438][v][ad] aac - AAC (Advanced Audio Coding)
[ 0.438][v][ad] aac_fixed (aac) - AAC (Advanced Audio Coding)
[ 0.438][v][ad] Opening decoder aac
[ 0.438][v][ad] Requesting 1 threads for decoding.
[ 0.443][v][ad] Selected decoder: aac - AAC (Advanced Audio Coding)
[ 0.443][v][af] User filter list:
[ 0.443][v][af] (empty)
[ 0.443][v][cplayer] Starting playback...
[ 0.444][v][file] stream level seek from 1099408 to 11175
[ 0.444][d][lavf] stream 1: resize index to 128
[ 0.445][d][osc] osc_init
[ 0.445][d][global] config path: 'fonts' -/-> '/home/pi/.config/mpv/fonts'
[ 0.445][d][global] config path: 'fonts' -/-> '/home/pi/.mpv/fonts'
[ 0.445][d][global] config path: 'fonts' -/-> '/etc/mpv/fonts'
[ 0.445][d][osd/libass] ASS library version: 0x1703020 (runtime 0x1703020)
[ 0.445][v][osd/libass] libass API version: 0x1703020
[ 0.445][v][osd/libass] libass source: tarball: 0.17.3
[ 0.446][v][osd/libass] Shaper: FriBidi 1.0.8 (SIMPLE) HarfBuzz-ng 6.0.0 (COMPLEX)
[ 0.446][d][global] config path: 'subfont.ttf' -/-> '/home/pi/.config/mpv/subfont.ttf'
[ 0.446][d][global] config path: 'subfont.ttf' -/-> '/home/pi/.mpv/subfont.ttf'
[ 0.446][d][global] config path: 'subfont.ttf' -/-> '/etc/mpv/subfont.ttf'
[ 0.446][d][global] config path: 'fonts.conf' -/-> '/home/pi/.config/mpv/fonts.conf'
[ 0.446][d][global] config path: 'fonts.conf' -/-> '/home/pi/.mpv/fonts.conf'
[ 0.446][d][global] config path: 'fonts.conf' -/-> '/etc/mpv/fonts.conf'
[ 0.446][v][osd/libass] Setting up fonts...
[ 0.453][d][lavf] stream 0: resize index to 128
[ 0.457][v][lavf] EOF reached.
[ 0.464][v][osd/libass] Using font provider fontconfig
[ 0.464][v][osd/libass] Done.
[ 0.469][v][af] [in] 44100Hz 5.1 6ch floatp
[ 0.469][v][af] [userspeed] 44100Hz 5.1 6ch floatp
[ 0.469][v][af] [userspeed] (disabled)
[ 0.469][v][af] [convert] 44100Hz 5.1 6ch floatp
[ 0.469][d][ffmpeg/video] h264: Reinit context to 800x608, pix_fmt: yuv420p
[ 0.470][d][vd] DR parameter change to 800x610 yuv420p align=64
[ 0.470][d][vd] Allocating new (host-cached) DR image...
[ 0.470][v][vo/gpu] DR path suspected slow/uncached, disabling.
[ 0.470][d][vd] ...failed..
[ 0.470][v][vd] DR failed - disabling.
[ 0.487][v][vd] Using software decoding.
[ 0.487][v][vd] Decoder format: 800x600 [0:1] yuv420p auto/auto/auto/auto/auto CL=mpeg2/4/h264 crop=800x600+0+0
[ 0.487][v][vf] [in] 800x600 yuv420p bt.709/bt.709/bt.1886/limited/display CL=mpeg2/4/h264 crop=800x600+0+0
[ 0.487][v][vf] [userdeint] 800x600 yuv420p bt.709/bt.709/bt.1886/limited/display CL=mpeg2/4/h264 crop=800x600+0+0
[ 0.487][v][vf] [userdeint] (disabled)
[ 0.487][v][vf] [autorotate] 800x600 yuv420p bt.709/bt.709/bt.1886/limited/display CL=mpeg2/4/h264 crop=800x600+0+0
[ 0.487][v][vf] [autorotate] (disabled)
[ 0.487][v][vf] [convert] 800x600 yuv420p bt.709/bt.709/bt.1886/limited/display CL=mpeg2/4/h264 crop=800x600+0+0
[ 0.488][v][vf] [convert] (disabled)
[ 0.488][v][vf] [out] 800x600 yuv420p bt.709/bt.709/bt.1886/limited/display CL=mpeg2/4/h264 crop=800x600+0+0
[ 0.491][v][cplayer] Set property: user-data/osc/margins={"r":0,"b":0,"l":0,"t":0} -> 1
[ 0.491][v][ao] Trying audio driver 'alsa'
[ 0.491][v][ao] Using preferred device 'hdmi:CARD=vc4hdmi0,DEV=0'
[ 0.491][v][ao/alsa] requested format: 44100 Hz, 5.1 channels, floatp
[ 0.491][v][ao/alsa] using ALSA version: 1.2.8
[ 0.491][v][ao/alsa] opening device 'hdmi:CARD=vc4hdmi0,DEV=0'
[ 0.500][d][ao/alsa] PCM setup:
[ 0.500][d][ao/alsa] ---
[ 0.500][d][ao/alsa] IEC958 subframe conversion PCM (IEC958_SUBFRAME_LE)
[ 0.500][d][ao/alsa] Slave: Hooks PCM
[ 0.500][d][ao/alsa] Slave: Hardware PCM card 1 'vc4-hdmi-0' device 0 subdevice 0
[ 0.500][d][ao/alsa] ---
[ 0.500][d][ao/alsa] Start HW params:
[ 0.500][d][ao/alsa] ---
[ 0.500][d][ao/alsa] ACCESS: MMAP_INTERLEAVED MMAP_NONINTERLEAVED RW_INTERLEAVED RW_NONINTERLEAVED
[ 0.500][d][ao/alsa] FORMAT: S8 U8 S16_LE S16_BE U16_LE U16_BE S24_LE S24_BE U24_LE U24_BE S32_LE S32_BE U32_LE U32_BE S20_LE S20_BE U20_LE U20_BE S24_3LE S24_3BE U24_3LE U24_3BE S20_3LE S20_3BE U20_3LE U20_3BE S18_3LE S18_3BE U18_3LE U18_3BE
[ 0.500][d][ao/alsa] SUBFORMAT: STD
[ 0.500][d][ao/alsa] SAMPLE_BITS: [8 32]
[ 0.500][d][ao/alsa] FRAME_BITS: [16 256]
[ 0.500][d][ao/alsa] CHANNELS: [2 8]
[ 0.500][d][ao/alsa] RATE: [32000 192000]
[ 0.500][d][ao/alsa] PERIOD_TIME: (5 1024000]
[ 0.500][d][ao/alsa] PERIOD_SIZE: [1 32768]
[ 0.500][d][ao/alsa] PERIOD_BYTES: [2 1048576]
[ 0.500][d][ao/alsa] PERIODS: [2 65536]
[ 0.500][d][ao/alsa] BUFFER_TIME: (10 2048000]
[ 0.500][d][ao/alsa] BUFFER_SIZE: [2 65536]
[ 0.500][d][ao/alsa] BUFFER_BYTES: [4 2097152]
[ 0.500][d][ao/alsa] TICK_TIME: ALL
[ 0.500][d][ao/alsa] ---
[ 0.500][d][ao/alsa] HW params after rate:
[ 0.500][d][ao/alsa] ---
[ 0.500][d][ao/alsa] ACCESS: MMAP_INTERLEAVED MMAP_NONINTERLEAVED RW_INTERLEAVED RW_NONINTERLEAVED
[ 0.500][d][ao/alsa] FORMAT: S8 U8 S16_LE S16_BE U16_LE U16_BE S24_LE S24_BE U24_LE U24_BE S32_LE S32_BE U32_LE U32_BE S20_LE S20_BE U20_LE U20_BE S24_3LE S24_3BE U24_3LE U24_3BE S20_3LE S20_3BE U20_3LE U20_3BE S18_3LE S18_3BE U18_3LE U18_3BE
[ 0.500][d][ao/alsa] SUBFORMAT: STD
[ 0.500][d][ao/alsa] SAMPLE_BITS: [8 32]
[ 0.500][d][ao/alsa] FRAME_BITS: [16 256]
[ 0.500][d][ao/alsa] CHANNELS: [2 8]
[ 0.500][d][ao/alsa] RATE: [32000 192000]
[ 0.500][d][ao/alsa] PERIOD_TIME: (5 1024000]
[ 0.500][d][ao/alsa] PERIOD_SIZE: [1 32768]
[ 0.500][d][ao/alsa] PERIOD_BYTES: [2 1048576]
[ 0.500][d][ao/alsa] PERIODS: [2 65536]
[ 0.500][d][ao/alsa] BUFFER_TIME: (10 2048000]
[ 0.500][d][ao/alsa] BUFFER_SIZE: [2 65536]
[ 0.500][d][ao/alsa] BUFFER_BYTES: [4 2097152]
[ 0.500][d][ao/alsa] TICK_TIME: ALL
[ 0.500][d][ao/alsa] ---
[ 0.500][d][ao/alsa] HW params after access:
[ 0.500][d][ao/alsa] ---
[ 0.500][d][ao/alsa] ACCESS: RW_INTERLEAVED
[ 0.500][d][ao/alsa] FORMAT: S8 U8 S16_LE S16_BE U16_LE U16_BE S24_LE S24_BE U24_LE U24_BE S32_LE S32_BE U32_LE U32_BE S20_LE S20_BE U20_LE U20_BE S24_3LE S24_3BE U24_3LE U24_3BE S20_3LE S20_3BE U20_3LE U20_3BE S18_3LE S18_3BE U18_3LE U18_3BE
[ 0.500][d][ao/alsa] SUBFORMAT: STD
[ 0.500][d][ao/alsa] SAMPLE_BITS: [8 32]
[ 0.500][d][ao/alsa] FRAME_BITS: [16 256]
[ 0.500][d][ao/alsa] CHANNELS: [2 8]
[ 0.500][d][ao/alsa] RATE: [32000 192000]
[ 0.500][d][ao/alsa] PERIOD_TIME: (5 1024000]
[ 0.500][d][ao/alsa] PERIOD_SIZE: [1 32768]
[ 0.500][d][ao/alsa] PERIOD_BYTES: [2 1048576]
[ 0.500][d][ao/alsa] PERIODS: [2 65536]
[ 0.500][d][ao/alsa] BUFFER_TIME: (10 2048000]
[ 0.500][d][ao/alsa] BUFFER_SIZE: [2 65536]
[ 0.500][d][ao/alsa] BUFFER_BYTES: [4 2097152]
[ 0.500][d][ao/alsa] TICK_TIME: ALL
[ 0.500][d][ao/alsa] ---
[ 0.500][v][ao/alsa] trying format float/14
[ 0.500][v][ao/alsa] trying format double/16
[ 0.501][v][ao/alsa] trying format s32/10
[ 0.501][d][ao/alsa] HW params after format:
[ 0.501][d][ao/alsa] ---
[ 0.501][d][ao/alsa] ACCESS: RW_INTERLEAVED
[ 0.501][d][ao/alsa] FORMAT: S32_LE
[ 0.501][d][ao/alsa] SUBFORMAT: STD
[ 0.501][d][ao/alsa] SAMPLE_BITS: 32
[ 0.501][d][ao/alsa] FRAME_BITS: [64 256]
[ 0.501][d][ao/alsa] CHANNELS: [2 8]
[ 0.501][d][ao/alsa] RATE: [32000 192000]
[ 0.501][d][ao/alsa] PERIOD_TIME: (5 1024000]
[ 0.501][d][ao/alsa] PERIOD_SIZE: [1 32768]
[ 0.501][d][ao/alsa] PERIOD_BYTES: [8 1048576]
[ 0.501][d][ao/alsa] PERIODS: [2 65536]
[ 0.501][d][ao/alsa] BUFFER_TIME: (10 2048000]
[ 0.501][d][ao/alsa] BUFFER_SIZE: [2 65536]
[ 0.501][d][ao/alsa] BUFFER_BYTES: [16 2097152]
[ 0.501][d][ao/alsa] TICK_TIME: ALL
[ 0.501][d][ao/alsa] ---
[ 0.501][d][ao/alsa] got ALSA chmap: FL FR (FIXED) -> stereo
[ 0.501][d][ao/alsa] got ALSA chmap: FL FR LFE NA (FIXED) -> fl-fr-lfe-na
[ 0.501][d][ao/alsa] got ALSA chmap: FL FR NA FC (FIXED) -> fl-fr-na-fc -> fl-fr-fc-na
[ 0.501][d][ao/alsa] got ALSA chmap: FL FR LFE FC (FIXED) -> fl-fr-lfe-fc -> 3.1
[ 0.501][d][ao/alsa] got ALSA chmap: FL FR NA NA RC NA (FIXED) -> fl-fr-na-na-bc-na -> fl-fr-bc-na-na-na
[ 0.501][d][ao/alsa] got ALSA chmap: FL FR LFE NA RC NA (FIXED) -> fl-fr-lfe-na-bc-na -> fl-fr-lfe-bc-na-na
[ 0.501][d][ao/alsa] got ALSA chmap: FL FR NA FC RC NA (FIXED) -> fl-fr-na-fc-bc-na -> fl-fr-fc-bc-na-na
[ 0.501][d][ao/alsa] got ALSA chmap: FL FR LFE FC RC NA (FIXED) -> fl-fr-lfe-fc-bc-na -> fl-fr-fc-lfe-bc-na
[ 0.501][d][ao/alsa] got ALSA chmap: FL FR NA NA RL RR (FIXED) -> fl-fr-na-na-bl-br -> fl-fr-bl-br-na-na
[ 0.501][d][ao/alsa] got ALSA chmap: FL FR LFE NA RL RR (FIXED) -> fl-fr-lfe-na-bl-br -> fl-fr-lfe-bl-br-na
[ 0.501][d][ao/alsa] got ALSA chmap: FL FR NA FC RL RR (FIXED) -> fl-fr-na-fc-bl-br -> fl-fr-fc-bl-br-na
[ 0.501][d][ao/alsa] got ALSA chmap: FL FR LFE FC RL RR (FIXED) -> fl-fr-lfe-fc-bl-br -> 5.1
[ 0.501][d][ao/alsa] got ALSA chmap: FL FR NA NA RL RR RC NA (FIXED) -> fl-fr-na-na-bl-br-bc-na -> fl-fr-bl-br-bc-na-na-na
[ 0.501][d][ao/alsa] got ALSA chmap: FL FR LFE NA RL RR RC NA (FIXED) -> fl-fr-lfe-na-bl-br-bc-na -> fl-fr-lfe-bl-br-bc-na-na
[ 0.501][d][ao/alsa] got ALSA chmap: FL FR NA FC RL RR RC NA (FIXED) -> fl-fr-na-fc-bl-br-bc-na -> fl-fr-fc-bl-br-bc-na-na
[ 0.501][d][ao/alsa] got ALSA chmap: FL FR LFE FC RL RR RC NA (FIXED) -> fl-fr-lfe-fc-bl-br-bc-na -> fl-fr-fc-lfe-bl-br-bc-na
[ 0.501][d][ao/alsa] got ALSA chmap: FL FR NA NA RL RR RLC RRC (FIXED) -> fl-fr-na-na-sl-sr-bl-br -> fl-fr-bl-br-sl-sr-na-na
[ 0.501][d][ao/alsa] got ALSA chmap: FL FR LFE NA RL RR RLC RRC (FIXED) -> fl-fr-lfe-na-sl-sr-bl-br -> fl-fr-lfe-bl-br-sl-sr-na
[ 0.501][d][ao/alsa] got ALSA chmap: FL FR NA FC RL RR RLC RRC (FIXED) -> fl-fr-na-fc-sl-sr-bl-br -> fl-fr-fc-bl-br-sl-sr-na
[ 0.501][d][ao/alsa] got ALSA chmap: FL FR LFE FC RL RR RLC RRC (FIXED) -> fl-fr-lfe-fc-sl-sr-bl-br -> 7.1
[ 0.501][d][ao/alsa] got ALSA chmap: FL FR NA NA NA NA FLC FRC (FIXED) -> fl-fr-na-na-na-na-flc-frc -> fl-fr-flc-frc-na-na-na-na
[ 0.501][d][ao/alsa] got ALSA chmap: FL FR LFE NA NA NA FLC FRC (FIXED) -> fl-fr-lfe-na-na-na-flc-frc -> fl-fr-lfe-flc-frc-na-na-na
[ 0.501][d][ao/alsa] got ALSA chmap: FL FR NA FC NA NA FLC FRC (FIXED) -> fl-fr-na-fc-na-na-flc-frc -> fl-fr-fc-flc-frc-na-na-na
[ 0.501][d][ao/alsa] got ALSA chmap: FL FR LFE FC NA NA FLC FRC (FIXED) -> fl-fr-lfe-fc-na-na-flc-frc -> fl-fr-fc-lfe-flc-frc-na-na
[ 0.501][d][ao/alsa] got ALSA chmap: FL FR NA NA NA NA FLC FRC (FIXED) -> fl-fr-na-na-na-na-flc-frc -> fl-fr-flc-frc-na-na-na-na
[ 0.501][d][ao/alsa] got ALSA chmap: FL FR LFE NA NA NA FLC FRC (FIXED) -> fl-fr-lfe-na-na-na-flc-frc -> fl-fr-lfe-flc-frc-na-na-na
[ 0.501][d][ao/alsa] got ALSA chmap: FL FR NA FC NA NA FLC FRC (FIXED) -> fl-fr-na-fc-na-na-flc-frc -> fl-fr-fc-flc-frc-na-na-na
[ 0.501][d][ao/alsa] got ALSA chmap: FL FR LFE FC NA NA FLC FRC (FIXED) -> fl-fr-lfe-fc-na-na-flc-frc -> fl-fr-fc-lfe-flc-frc-na-na
[ 0.501][d][ao/alsa] got ALSA chmap: FL FR NA NA NA NA FLC FRC (FIXED) -> fl-fr-na-na-na-na-flc-frc -> fl-fr-flc-frc-na-na-na-na
[ 0.501][d][ao/alsa] got ALSA chmap: FL FR LFE NA NA NA FLC FRC (FIXED) -> fl-fr-lfe-na-na-na-flc-frc -> fl-fr-lfe-flc-frc-na-na-na
[ 0.501][d][ao/alsa] got ALSA chmap: FL FR NA FC NA NA FLC FRC (FIXED) -> fl-fr-na-fc-na-na-flc-frc -> fl-fr-fc-flc-frc-na-na-na
[ 0.501][d][ao/alsa] got ALSA chmap: FL FR LFE FC NA NA FLC FRC (FIXED) -> fl-fr-lfe-fc-na-na-flc-frc -> fl-fr-fc-lfe-flc-frc-na-na
[ 0.501][v][ao/alsa] Channel layouts:
[ 0.501][v][ao/alsa] - stereo
[ 0.501][v][ao/alsa] - fl-fr-lfe-na
[ 0.501][v][ao/alsa] - fl-fr-na-fc
[ 0.501][v][ao/alsa] - fl-fr-lfe-fc
[ 0.501][v][ao/alsa] - fl-fr-na-na-bc-na
[ 0.501][v][ao/alsa] - fl-fr-lfe-na-bc-na
[ 0.501][v][ao/alsa] - fl-fr-na-fc-bc-na
[ 0.501][v][ao/alsa] - fl-fr-lfe-fc-bc-na
[ 0.501][v][ao/alsa] - fl-fr-na-na-bl-br
[ 0.501][v][ao/alsa] - fl-fr-lfe-na-bl-br
[ 0.501][v][ao/alsa] - fl-fr-na-fc-bl-br
[ 0.501][v][ao/alsa] - fl-fr-lfe-fc-bl-br
[ 0.501][v][ao/alsa] - fl-fr-na-na-bl-br-bc-na
[ 0.501][v][ao/alsa] - fl-fr-lfe-na-bl-br-bc-na
[ 0.501][v][ao/alsa] - fl-fr-na-fc-bl-br-bc-na
[ 0.501][v][ao/alsa] - fl-fr-lfe-fc-bl-br-bc-na
[ 0.501][v][ao/alsa] - fl-fr-na-na-sl-sr-bl-br
[ 0.501][v][ao/alsa] - fl-fr-lfe-na-sl-sr-bl-br
[ 0.501][v][ao/alsa] - fl-fr-na-fc-sl-sr-bl-br
[ 0.501][v][ao/alsa] - fl-fr-lfe-fc-sl-sr-bl-br
[ 0.501][v][ao/alsa] - fl-fr-na-na-na-na-flc-frc
[ 0.501][v][ao/alsa] - fl-fr-lfe-na-na-na-flc-frc
[ 0.501][v][ao/alsa] - fl-fr-na-fc-na-na-flc-frc
[ 0.501][v][ao/alsa] - fl-fr-lfe-fc-na-na-flc-frc
[ 0.501][v][ao/alsa] - fl-fr-na-na-na-na-flc-frc
[ 0.501][v][ao/alsa] - fl-fr-lfe-na-na-na-flc-frc
[ 0.501][v][ao/alsa] - fl-fr-na-fc-na-na-flc-frc
[ 0.501][v][ao/alsa] - fl-fr-lfe-fc-na-na-flc-frc
[ 0.501][v][ao/alsa] - fl-fr-na-na-na-na-flc-frc
[ 0.501][v][ao/alsa] - fl-fr-lfe-na-na-na-flc-frc
[ 0.501][v][ao/alsa] - fl-fr-na-fc-na-na-flc-frc
[ 0.501][v][ao/alsa] - fl-fr-lfe-fc-na-na-flc-frc
[ 0.502][v][ao/alsa] result: fl-fr-lfe-fc-bl-br
[ 0.502][d][ao/alsa] HW params after channels:
[ 0.502][d][ao/alsa] ---
[ 0.502][d][ao/alsa] ACCESS: RW_INTERLEAVED
[ 0.502][d][ao/alsa] FORMAT: S32_LE
[ 0.502][d][ao/alsa] SUBFORMAT: STD
[ 0.502][d][ao/alsa] SAMPLE_BITS: 32
[ 0.502][d][ao/alsa] FRAME_BITS: 192
[ 0.502][d][ao/alsa] CHANNELS: 6
[ 0.502][d][ao/alsa] RATE: [32000 192000]
[ 0.502][d][ao/alsa] PERIOD_TIME: (5 341313)
[ 0.502][d][ao/alsa] PERIOD_SIZE: [1 10922]
[ 0.502][d][ao/alsa] PERIOD_BYTES: [24 262128]
[ 0.502][d][ao/alsa] PERIODS: [2 21845]
[ 0.502][d][ao/alsa] BUFFER_TIME: (10 682657)
[ 0.502][d][ao/alsa] BUFFER_SIZE: [2 21845]
[ 0.502][d][ao/alsa] BUFFER_BYTES: [48 524280]
[ 0.502][d][ao/alsa] TICK_TIME: ALL
[ 0.502][d][ao/alsa] ---
[ 0.502][d][ao/alsa] HW params after rate-2:
[ 0.502][d][ao/alsa] ---
[ 0.502][d][ao/alsa] ACCESS: RW_INTERLEAVED
[ 0.502][d][ao/alsa] FORMAT: S32_LE
[ 0.502][d][ao/alsa] SUBFORMAT: STD
[ 0.502][d][ao/alsa] SAMPLE_BITS: 32
[ 0.502][d][ao/alsa] FRAME_BITS: 192
[ 0.502][d][ao/alsa] CHANNELS: 6
[ 0.502][d][ao/alsa] RATE: 44100
[ 0.502][d][ao/alsa] PERIOD_TIME: (22 247665)
[ 0.502][d][ao/alsa] PERIOD_SIZE: [1 10922]
[ 0.502][d][ao/alsa] PERIOD_BYTES: [24 262128]
[ 0.502][d][ao/alsa] PERIODS: [2 21845]
[ 0.502][d][ao/alsa] BUFFER_TIME: (45 495352)
[ 0.502][d][ao/alsa] BUFFER_SIZE: [2 21845]
[ 0.502][d][ao/alsa] BUFFER_BYTES: [48 524280]
[ 0.502][d][ao/alsa] TICK_TIME: ALL
[ 0.502][d][ao/alsa] ---
[ 0.502][d][ao/alsa] Going to set final HW params:
[ 0.502][d][ao/alsa] ---
[ 0.502][d][ao/alsa] ACCESS: RW_INTERLEAVED
[ 0.502][d][ao/alsa] FORMAT: S32_LE
[ 0.502][d][ao/alsa] SUBFORMAT: STD
[ 0.502][d][ao/alsa] SAMPLE_BITS: 32
[ 0.502][d][ao/alsa] FRAME_BITS: 192
[ 0.502][d][ao/alsa] CHANNELS: 6
[ 0.502][d][ao/alsa] RATE: 44100
[ 0.502][d][ao/alsa] PERIOD_TIME: 20000
[ 0.502][d][ao/alsa] PERIOD_SIZE: 882
[ 0.502][d][ao/alsa] PERIOD_BYTES: 21168
[ 0.502][d][ao/alsa] PERIODS: 5
[ 0.502][d][ao/alsa] BUFFER_TIME: 100000
[ 0.502][d][ao/alsa] BUFFER_SIZE: 4410
[ 0.502][d][ao/alsa] BUFFER_BYTES: 105840
[ 0.502][d][ao/alsa] TICK_TIME: ALL
[ 0.502][d][ao/alsa] ---
[ 0.502][d][ao/alsa] Final HW params:
[ 0.502][d][ao/alsa] ---
[ 0.502][d][ao/alsa] ACCESS: RW_INTERLEAVED
[ 0.502][d][ao/alsa] FORMAT: S32_LE
[ 0.502][d][ao/alsa] SUBFORMAT: STD
[ 0.502][d][ao/alsa] SAMPLE_BITS: 32
[ 0.502][d][ao/alsa] FRAME_BITS: 192
[ 0.502][d][ao/alsa] CHANNELS: 6
[ 0.502][d][ao/alsa] RATE: 44100
[ 0.502][d][ao/alsa] PERIOD_TIME: 20000
[ 0.502][d][ao/alsa] PERIOD_SIZE: 882
[ 0.502][d][ao/alsa] PERIOD_BYTES: 21168
[ 0.502][d][ao/alsa] PERIODS: 5
[ 0.502][d][ao/alsa] BUFFER_TIME: 100000
[ 0.502][d][ao/alsa] BUFFER_SIZE: 4410
[ 0.502][d][ao/alsa] BUFFER_BYTES: 105840
[ 0.502][d][ao/alsa] TICK_TIME: 0
[ 0.502][d][ao/alsa] ---
[ 0.502][v][ao/alsa] trying to set ALSA channel map: FL FR LFE FC RL RR
[ 0.503][v][ao/alsa] channel map reported by ALSA: FL FR LFE FC RL RR
[ 0.503][v][ao/alsa] which we understand as: fl-fr-lfe-fc-bl-br
[ 0.503][v][ao/alsa] which is what we requested.
[ 0.503][v][ao/alsa] hw pausing supported: no
[ 0.503][v][ao/alsa] buffersize: 4410 samples
[ 0.503][v][ao/alsa] period size: 882 samples
[ 0.503][v][ao/alsa] device buffer: 4410 samples.
[ 0.503][v][ao/alsa] using soft-buffer of 8820 samples.
[ 0.503][i][cplayer] AO: [alsa] 44100Hz fl-fr-lfe-fc-bl-br (5.1) 6ch s32
[ 0.503][v][cplayer] AO: Description: ALSA audio output
[ 0.503][v][autoconvert] inserting resampler
[ 0.503][v][swresample] format change, reinitializing resampler
[ 0.503][v][swresample] 44100Hz 5.1 floatp -> 44100Hz fl-fr-lfe-fc-bl-br s32
[ 0.504][v][af] [out] 44100Hz fl-fr-lfe-fc-bl-br (5.1
[ 0.507][i][cplayer] VO: [gpu] 800x600 yuv420p
[ 0.507][v][cplayer] VO: Description: Shader-based GPU Renderer
[ 0.507][v][vo/gpu] reconfig to 800x600 yuv420p bt.709/bt.709/bt.1886/limited/display CL=mpeg2/4/h264 crop=800x600+0+0
[ 0.507][v][vo/gpu/wayland] Reconfiguring!
[ 0.507][d][vo/gpu] max content size: 1920x1080
[ 0.507][d][vo/gpu] monitor size: 1920x1080
[ 0.515][v][vo/gpu] Resize: 1920x1080
[ 0.515][v][vo/gpu] Window size: 1920x1080 (Borders: l=0 t=0 r=0 b=0)
[ 0.515][v][vo/gpu] Video source: 800x600 (1:1)
[ 0.515][v][vo/gpu] Video display: (0, 0) 800x600 -> (240, 0) 1440x1080
[ 0.515][v][vo/gpu] Video scale: 1.800000/1.800000
[ 0.515][v][vo/gpu] OSD borders: l=240 t=0 r=240 b=0
[ 0.515][v][vo/gpu] Video borders: l=240 t=0 r=240 b=0
[ 0.515][v][vo/gpu] Texture for plane 0: 800x600
[ 0.516][v][vo/gpu] Texture for plane 1: 400x300
[ 0.516][v][vo/gpu] Texture for plane 2: 400x300
[ 0.516][v][vo/gpu] Testing FBO format rgba16f
[ 0.516][d][vo/gpu] Resizing texture: 16x16
[ 0.516][v][vo/gpu] Using FBO format rgba16f.
[ 0.516][v][vo/gpu/wayland] Handling resize on the egl side
[ 0.517][v][vo/gpu] Resize: 1920x1080
[ 0.517][v][vo/gpu] Window size: 1920x1080 (Borders: l=0 t=0 r=0 b=0)
[ 0.517][v][vo/gpu] Video source: 800x600 (1:1)
[ 0.517][v][vo/gpu] Video display: (0, 0) 800x600 -> (240, 0) 1440x1080
[ 0.517][v][vo/gpu] Video scale: 1.800000/1.800000
[ 0.517][v][vo/gpu] OSD borders: l=240 t=0 r=240 b=0
[ 0.517][v][vo/gpu] Video borders: l=240 t=0 r=240 b=0
[ 0.517][v][vo/gpu] Reported display depth: 10
[ 0.517][v][vo/gpu] Resize: 1920x1080
[ 0.517][v][vo/gpu] Window size: 1920x1080 (Borders: l=0 t=0 r=0 b=0)
[ 0.517][v][vo/gpu] Video source: 800x600 (1:1)
[ 0.517][v][vo/gpu] Video display: (0, 0) 800x600 -> (240, 0) 1440x1080
[ 0.517][v][vo/gpu] Video scale: 1.800000/1.800000
[ 0.517][v][vo/gpu] OSD borders: l=240 t=0 r=240 b=0
[ 0.517][v][vo/gpu] Video borders: l=240 t=0 r=240 b=0
[ 0.517][v][vo/gpu] Reported display depth: 10
[ 0.519][d][vo/gpu] Resizing texture: 400x300
[ 0.522][d][vo/gpu] Trying to load shader from disk...
[ 0.523][d][vo/gpu/opengl] Loading binary program succeeded.
[ 0.531][d][vo/gpu] Resizing texture: 400x600
[ 0.538][d][vo/gpu] Trying to load shader from disk...
[ 0.539][d][vo/gpu/opengl] Loading binary program succeeded.
[ 0.540][d][vo/gpu] Resizing texture: 800x600
[ 0.548][d][vo/gpu] Trying to load shader from disk...
[ 0.549][d][vo/gpu/opengl] Loading binary program succeeded.
[ 0.553][d][vo/gpu] Resizing texture: 800x600
[ 0.557][d][vo/gpu] Trying to load shader from disk...
[ 0.558][d][vo/gpu/opengl] Loading binary program succeeded.
[ 0.563][d][vo/gpu] Resizing texture: 800x1080
[ 0.582][d][vo/gpu] Trying to load shader from disk...
[ 0.583][d][vo/gpu/opengl] Loading binary program succeeded.
[ 0.587][v][vo/gpu] Dither to 10.
[ 0.714][d][vo/gpu] Trying to load shader from disk...
[ 0.715][d][vo/gpu/opengl] Loading binary program succeeded.
[ 0.735][v][vo/gpu/wayland] Surface entered output Sony SONY TV *01 (0x1c), scale = 1.000000, refresh rate = 60.000000 Hz
[ 0.736][v][cplayer] first video frame after restart shown
[ 0.736][d][osc] osc_init
[ 0.765][d][vo/gpu] Resizing texture: 1920x1080
[ 0.858][d][vo/gpu] Trying to load shader from disk...
[ 0.860][d][vo/gpu/opengl] Loading binary program succeeded.
[ 1.009][v][cplayer] audio ready
[ 1.009][d][cplayer] starting video playback
[ 1.009][v][cplayer] starting audio playback
[ 1.010][v][cplayer] playback restart complete @ 0.000000, audio=playing, video=playing
[ 1.010][v][vo/gpu/wayland] Enabling idle inhibitor
[ 1.012][v][ao/alsa] starting AO
[ 1.020][v][cplayer] Set property: user-data/osc/margins={"r":0,"b":0,"l":0,"t":0} -> 1
[ 1.023][d][osc] osc_init
[ 1.025][v][cplayer] Set property: user-data/osc/margins={"r":0,"b":0,"l":0,"t":0} -> 1
[ 22.638][d][cplayer] Run command: seek, flags=73, args=[target="-60.000000", flags="relative", legacy="unused"]
[ 22.638][v][lavf] queuing seek to -38.375000
[ 22.638][v][lavf] cached range 0: 0.000000 <-> 46.579229 (bof=1, eof=1)
[ 22.638][v][lavf] ...using this range for in-cache seek.
[ 22.638][v][lavf] seeking stream 0 (video) to packet 0.000000/-0.250000
[ 22.638][v][lavf] seeking stream 1 (audio) to packet 0.000000/0.000000
[ 22.640][v][cplayer] hr-seek, skipping to -38.375000
[ 22.640][v][vo/gpu/wayland] Disabling the idle inhibitor
[ 22.641][d][ffmpeg/video] h264: Reinit context to 800x608, pix_fmt: yuv420p
[ 22.642][v][lavf] EOF reached.
[ 22.661][v][vd] Decoder format: 800x600 [0:1] yuv420p auto/auto/auto/auto/auto CL=mpeg2/4/h264 crop=800x600+0+0
[ 22.672][d][global] config path: 'fonts' -/-> '/home/pi/.config/mpv/fonts'
[ 22.672][d][global] config path: 'fonts' -/-> '/home/pi/.mpv/fonts'
[ 22.672][d][global] config path: 'fonts' -/-> '/etc/mpv/fonts'
[ 22.672][d][osd/libass] ASS library version: 0x1703020 (runtime 0x1703020)
[ 22.672][v][osd/libass] libass API version: 0x1703020
[ 22.672][v][osd/libass] libass source: tarball: 0.17.3
[ 22.675][v][osd/libass] Shaper: FriBidi 1.0.8 (SIMPLE) HarfBuzz-ng 6.0.0 (COMPLEX)
[ 22.675][d][global] config path: 'subfont.ttf' -/-> '/home/pi/.config/mpv/subfont.ttf'
[ 22.675][d][global] config path: 'subfont.ttf' -/-> '/home/pi/.mpv/subfont.ttf'
[ 22.675][d][global] config path: 'subfont.ttf' -/-> '/etc/mpv/subfont.ttf'
[ 22.675][d][global] config path: 'fonts.conf' -/-> '/home/pi/.config/mpv/fonts.conf'
[ 22.675][d][global] config path: 'fonts.conf' -/-> '/home/pi/.mpv/fonts.conf'
[ 22.675][d][global] config path: 'fonts.conf' -/-> '/etc/mpv/fonts.conf'
[ 22.675][v][osd/libass] Setting up fonts...
[ 22.719][v][osd/libass] Using font provider fontconfig
[ 22.719][v][osd/libass] Done.
[ 22.724][v][osd/libass] fontselect: (sans-serif, 400, 0) -> /usr/share/fonts/truetype/dejavu/DejaVuSans.ttf, 0, DejaVuSans
[ 22.726][d][osd] Spent 54.421 ms in osd_render (slow!)
[ 22.727][v][vo/gpu] Reallocating OSD texture to 2048x128.
[ 22.728][d][vo/gpu] Trying to load shader from disk...
[ 22.730][d][vo/gpu/opengl] Loading binary program succeeded.
[ 22.734][v][cplayer] first video frame after restart shown
[ 22.744][v][cplayer] audio ready
[ 22.744][d][cplayer] starting video playback
[ 22.744][v][cplayer] starting audio playback
[ 22.744][v][cplayer] playback restart complete @ 0.000000, audio=playing, video=playing
[ 22.745][v][vo/gpu/wayland] Enabling idle inhibitor
[ 22.746][v][ao/alsa] starting AO
[ 22.846][d][cplayer] Run command: seek, flags=73, args=[target="-60.000000", flags="relative", legacy="unused"]
[ 22.847][v][lavf] queuing seek to -59.875000
[ 22.847][v][lavf] cached range 0: 0.000000 <-> 46.579229 (bof=1, eof=1)
[ 22.847][v][lavf] ...using this range for in-cache seek.
[ 22.847][v][lavf] seeking stream 0 (video) to packet 0.000000/-0.250000
[ 22.847][v][lavf] seeking stream 1 (audio) to packet 0.000000/0.000000
[ 22.847][v][cplayer] hr-seek, skipping to -59.875000
[ 22.849][v][lavf] EOF reached.
[ 22.849][d][ffmpeg/video] h264: Reinit context to 800x608, pix_fmt: yuv420p
[ 22.859][v][vd] Decoder format: 800x600 [0:1] yuv420p auto/auto/auto/auto/auto CL=mpeg2/4/h264 crop=800x600+0+0
[ 22.872][v][vo/gpu/wayland] Disabling the idle inhibitor
[ 22.890][v][cplayer] first video frame after restart shown
[ 22.898][v][cplayer] audio ready
[ 22.898][d][cplayer] starting video playback
[ 22.898][v][cplayer] starting audio playback
[ 22.899][v][cplayer] playback restart complete @ 0.000000, audio=playing, video=playing
[ 22.899][v][vo/gpu/wayland] Enabling idle inhibitor
[ 22.900][v][ao/alsa] starting AO
[ 69.213][v][af] filter input EOF
[ 69.213][v][af] filter output EOF
[ 69.213][v][cplayer] audio filter EOF
[ 69.213][v][cplayer] audio draining
[ 69.213][v][cplayer] audio EOF reached
[ 69.226][v][vf] filter input EOF
[ 69.226][v][vf] filter output EOF
[ 69.350][v][cplayer] EOF code: 1
[ 69.350][d][ad] Uninit decoder.
[ 69.351][d][vd] Uninit decoder.
[ 69.354][d][cplayer] Terminating demuxers...
[ 69.356][d][osc] osc_init
[ 69.356][d][cplayer] Done terminating demuxers.
[ 69.357][v][cplayer] finished playback, success (reason 0)
[ 69.357][v][cplayer] Running hook: ytdl_hook/on_after_end_file
[ 69.402][v][vo/gpu/wayland] Disabling the idle inhibitor
[ 69.403][d][cplayer] Run command: del, flags=64, args=[name="user-data/mpv/ytdl/json-subprocess-result"]
[ 69.405][i][cplayer] Exiting... (End of file)
[ 69.405][d][positioning] Destroying client handle...
[ 69.406][d][ytdl_hook] Destroying client handle...
[ 69.407][d][select] Destroying client handle...
[ 69.408][d][stats] Destroying client handle...
[ 69.408][d][commands] Destroying client handle...
[ 69.409][d][cplayer] Run command: del, flags=64, args=[name="user-data/mpv/console"]
[ 69.411][d][console] Destroying client handle...
[ 69.418][v][cplayer] Set property: user-data/osc/margins={"r":0,"b":0,"l":0,"t":0} -> 1
[ 69.418][d][cplayer] Run command: del, flags=64, args=[name="user-data/osc"]
[ 69.423][d][osc] Destroying client handle...
[ 69.432][v][cplayer] draining left over audio
[ 69.447][v][ao/alsa] audio end or underrun
[ 69.548][v][ao/alsa] attempt 1 to recover from state 'XRUN'...
[ 69.548][v][ao/alsa] audio end or underrun
[ 69.550][d][vo/gpu] flushing shader cache
[ 69.592][v][vo/gpu/wayland] Deregistering output Sony SONY TV *01 (0x1c)
[ 69.592][v][vo/gpu/wayland] Deregistering seat 0x8
I am seeing something similar on Arch right now; at the very least the center speaker's audio is coming out of rear-left as well.
Notable differences to this issue:
- System uses PipeWire, and issue happens with --ao=pulse and --ao=pipewire
- No seeking required
This appears to have been triggered by an update to PipeWire.
- Last known good PipeWire package version:
pipewire-1:1.4.2-1 - First known bad PipeWire package version:
pipewire-1:1.4.4-1
Possibly related issue in the Arch Linux issue tracker: Issue 16
Other applications do not seem affected; at the very least, these work as expected:
- VLC Media Player
- GNOME Shell audio settings "Test Speakers" functionality
Versions:
- mpv 0.40.0-3
- pipewire 1.4.4-1
This is about an alsa-only issue. Have you looked at #16367?
This issue may have been fixed with PipeWire 1.4.5, and may have been started with PipeWire 1.4.3.
Reasoning: Both issues' time frames and at least one symptom (mpv playing the center track on rear-left) match.
FYI: I don’t have PipeWire installed. The system is using pulseaudio 16.1+dfsg1-2+rpt1