comparison vdpau.c @ 9048:058e47a00893 libavcodec

The field rangered in VDPAU's VdpPictureInfoVC1 now also contains rangeredfrm (VC-1 7.1.13) in bit 1. Patch by NVIDIA
author cehoyos
date Thu, 26 Feb 2009 00:29:01 +0000
parents b54938038170
children 16d0dfacd6c2
comparison
equal deleted inserted replaced
9047:91f9fe7bedd9 9048:058e47a00893
268 render->info.vc1.range_mapuv_flag = v->range_mapuv_flag; 268 render->info.vc1.range_mapuv_flag = v->range_mapuv_flag;
269 render->info.vc1.range_mapuv = v->range_mapuv; 269 render->info.vc1.range_mapuv = v->range_mapuv;
270 /* Specific to simple/main profile only */ 270 /* Specific to simple/main profile only */
271 render->info.vc1.multires = v->multires; 271 render->info.vc1.multires = v->multires;
272 render->info.vc1.syncmarker = v->s.resync_marker; 272 render->info.vc1.syncmarker = v->s.resync_marker;
273 render->info.vc1.rangered = v->rangered; 273 render->info.vc1.rangered = v->rangered | (v->rangeredfrm << 1);
274 render->info.vc1.maxbframes = v->s.max_b_frames; 274 render->info.vc1.maxbframes = v->s.max_b_frames;
275 275
276 render->info.vc1.deblockEnable = v->postprocflag & 1; 276 render->info.vc1.deblockEnable = v->postprocflag & 1;
277 render->info.vc1.pquant = v->pq; 277 render->info.vc1.pquant = v->pq;
278 278