mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2026-08-12 13:23:48 +00:00
avcodec: Fix reference data type for nvdec vc1 hwaccel
I took the reference lookup code from the vp9 hwaccel where the type is unsigned char, but for vc1, the type is signed int. This is particularly important because the value used when there's no reference is different (255 vs -1). It didn't seem to break anything, but for mpeg1/2/4, this mistake caused decode errors.
This commit is contained in:
@@ -25,13 +25,13 @@
|
||||
#include "decode.h"
|
||||
#include "vc1.h"
|
||||
|
||||
static unsigned char get_ref_idx(AVFrame *frame)
|
||||
static int get_ref_idx(AVFrame *frame)
|
||||
{
|
||||
FrameDecodeData *fdd;
|
||||
NVDECFrame *cf;
|
||||
|
||||
if (!frame || !frame->private_ref)
|
||||
return 255;
|
||||
return -1;
|
||||
|
||||
fdd = (FrameDecodeData*)frame->private_ref->data;
|
||||
cf = (NVDECFrame*)fdd->hwaccel_priv;
|
||||
|
||||
Reference in New Issue
Block a user