Fix ff_seek_frame_binary bug with Xcode 14.3

This commit is contained in:
Ali 2023-04-13 00:38:49 +04:00
parent 8be2f274ee
commit cb22202ce9

View File

@ -2164,7 +2164,7 @@ int ff_seek_frame_binary(AVFormatContext *s, int stream_index,
int64_t target_ts, int flags)
{
AVInputFormat *avif = s->iformat;
int64_t av_uninit(pos_min), av_uninit(pos_max), pos, pos_limit;
int64_t pos_min = 0, pos_max = 0, pos, pos_limit;
int64_t ts_min, ts_max, ts;
int index;
int64_t ret;