mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-11-21 10:55:51 +02:00
The field rangered in VDPAU's VdpPictureInfoVC1 now also contains
rangeredfrm (VC-1 7.1.13) in bit 1. Patch by NVIDIA Originally committed as revision 17595 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
1a022c2fbf
commit
f90b55166e
@ -270,7 +270,7 @@ void ff_vdpau_vc1_decode_picture(MpegEncContext *s, const uint8_t *buf,
|
||||
/* Specific to simple/main profile only */
|
||||
render->info.vc1.multires = v->multires;
|
||||
render->info.vc1.syncmarker = v->s.resync_marker;
|
||||
render->info.vc1.rangered = v->rangered;
|
||||
render->info.vc1.rangered = v->rangered | (v->rangeredfrm << 1);
|
||||
render->info.vc1.maxbframes = v->s.max_b_frames;
|
||||
|
||||
render->info.vc1.deblockEnable = v->postprocflag & 1;
|
||||
|
Loading…
Reference in New Issue
Block a user