mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-01-24 13:56:33 +02:00
avcodec/vdpau_hevc: unbreak compilation after sps/pps changes
There was some reorganisation in the HEVC headers so the sps and pps now live in a different place.
This commit is contained in:
parent
10d7d0880c
commit
b11c3fce38
@ -37,8 +37,8 @@ static int vdpau_hevc_start_frame(AVCodecContext *avctx,
|
||||
|
||||
VdpPictureInfoHEVC *info = &pic_ctx->info.hevc;
|
||||
|
||||
const HEVCSPS *sps = h->sps;
|
||||
const HEVCPPS *pps = h->pps;
|
||||
const HEVCSPS *sps = h->ps.sps;
|
||||
const HEVCPPS *pps = h->ps.pps;
|
||||
const SliceHeader *sh = &h->sh;
|
||||
const ScalingList *sl = pps->scaling_list_data_present_flag ?
|
||||
&pps->scaling_list : &sps->scaling_list;
|
||||
|
Loading…
x
Reference in New Issue
Block a user