Browse Source

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
tags/v0.5
NVIDIA Corporation Carl Eugen Hoyos 17 years ago
parent
commit
2f9c978a07
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavcodec/vdpau.c

+ 1
- 1
libavcodec/vdpau.c 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;


Loading…
Cancel
Save