Do not set h264.is_reference for pictures that are delayed, but not

actually reference frames.

Patch by NVIDIA

Originally committed as revision 17596 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
NVIDIA Corporation 2009-02-26 01:03:01 +00:00 committed by Carl Eugen Hoyos
parent f90b55166e
commit 2f9c978a07
1 changed files with 1 additions and 1 deletions

View File

@ -147,7 +147,7 @@ void ff_vdpau_h264_picture_complete(MpegEncContext *s)
render->info.h264.field_order_cnt[i] = foc;
}
render->info.h264.is_reference = s->current_picture_ptr->reference ? VDP_TRUE : VDP_FALSE;
render->info.h264.is_reference = (s->current_picture_ptr->reference & 3) ? VDP_TRUE : VDP_FALSE;
render->info.h264.frame_num = h->frame_num;
render->info.h264.field_pic_flag = s->picture_structure != PICT_FRAME;
render->info.h264.bottom_field_flag = s->picture_structure == PICT_BOTTOM_FIELD;