You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-15 14:13:16 +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:
@@ -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;
|
||||
|
Reference in New Issue
Block a user