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:
Philip Langdale 2015-07-12 19:55:56 -07:00
parent 10d7d0880c
commit b11c3fce38
1 changed files with 2 additions and 2 deletions

View File

@ -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;