# --- T2-COPYRIGHT-BEGIN --- # t2/package/*/mpv/hotfix-ffmpeg-v8.patch # Copyright (C) 2025 The T2 SDE Project # SPDX-License-Identifier: GPL-2.0 or patched project license # --- T2-COPYRIGHT-END --- --- mpv-0.40.0/demux/demux_mkv.c.vanilla 2025-11-05 22:33:27.914010435 +0100 +++ mpv-0.40.0/demux/demux_mkv.c 2025-11-05 22:35:01.289000000 +0100 @@ -2200,16 +2200,16 @@ // [0x30..0x37] are component tags utilized for // non-mobile captioning service ("profile A"). if (component_tag >= 0x30 && component_tag <= 0x37) - lav->profile = FF_PROFILE_ARIB_PROFILE_A; + lav->profile = AV_PROFILE_ARIB_PROFILE_A; break; case 0x0012: // component tag 0x87 signifies a mobile/partial reception // (1seg) captioning service ("profile C"). if (component_tag == 0x87) - lav->profile = FF_PROFILE_ARIB_PROFILE_C; + lav->profile = AV_PROFILE_ARIB_PROFILE_C; break; } - if (lav->profile == FF_PROFILE_UNKNOWN) + if (lav->profile == AV_PROFILE_UNKNOWN) MP_WARN(demuxer, "ARIB caption profile %02x / %04x not supported.\n", component_tag, data_component_id); }