Skip to content

Commit 26b29fb

Browse files
committed
demux_mkv: fix compilation after deprecated definitions removal
See: FFmpeg/FFmpeg@8224327
1 parent 0893966 commit 26b29fb

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

demux/demux_mkv.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2200,16 +2200,16 @@ static int demux_mkv_open_sub(demuxer_t *demuxer, mkv_track_t *track)
22002200
// [0x30..0x37] are component tags utilized for
22012201
// non-mobile captioning service ("profile A").
22022202
if (component_tag >= 0x30 && component_tag <= 0x37)
2203-
lav->profile = FF_PROFILE_ARIB_PROFILE_A;
2203+
lav->profile = AV_PROFILE_ARIB_PROFILE_A;
22042204
break;
22052205
case 0x0012:
22062206
// component tag 0x87 signifies a mobile/partial reception
22072207
// (1seg) captioning service ("profile C").
22082208
if (component_tag == 0x87)
2209-
lav->profile = FF_PROFILE_ARIB_PROFILE_C;
2209+
lav->profile = AV_PROFILE_ARIB_PROFILE_C;
22102210
break;
22112211
}
2212-
if (lav->profile == FF_PROFILE_UNKNOWN)
2212+
if (lav->profile == AV_PROFILE_UNKNOWN)
22132213
MP_WARN(demuxer, "ARIB caption profile %02x / %04x not supported.\n",
22142214
component_tag, data_component_id);
22152215
}

0 commit comments

Comments
 (0)