Commit 77629420 authored by James Almer's avatar James Almer

Merge commit '00fd914d'

* commit '00fd914d':
  hevcdec: set the active SPS before calling get_format()
Merged-by: 's avatarJames Almer <jamrial@gmail.com>
parents 09100ccc 00fd914d
......@@ -503,13 +503,14 @@ static int hls_slice_header(HEVCContext *s)
}
ff_hevc_clear_refs(s);
ret = set_sps(s, sps, sps->pix_fmt);
if (ret < 0)
return ret;
pix_fmt = get_format(s, sps);
if (pix_fmt < 0)
return pix_fmt;
ret = set_sps(s, sps, pix_fmt);
if (ret < 0)
return ret;
s->avctx->pix_fmt = pix_fmt;
s->seq_decode = (s->seq_decode + 1) & 0xff;
s->max_ra = INT_MAX;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment