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.
pull/140/head
Philip Langdale 10 years ago
parent 10d7d0880c
commit b11c3fce38
  1. 4
      libavcodec/vdpau_hevc.c

@ -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…
Cancel
Save