mirror of https://git.ffmpeg.org/ffmpeg.git
Use VA_INVALID_ID instead of hard coded values.
Originally committed as revision 20948 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
c373f61ddb
commit
e6d3534f9c
|
@ -54,8 +54,8 @@ static int vaapi_mpeg2_start_frame(AVCodecContext *avctx, av_unused const uint8_
|
||||||
return -1;
|
return -1;
|
||||||
pic_param->horizontal_size = s->width;
|
pic_param->horizontal_size = s->width;
|
||||||
pic_param->vertical_size = s->height;
|
pic_param->vertical_size = s->height;
|
||||||
pic_param->forward_reference_picture = 0xffffffff;
|
pic_param->forward_reference_picture = VA_INVALID_ID;
|
||||||
pic_param->backward_reference_picture = 0xffffffff;
|
pic_param->backward_reference_picture = VA_INVALID_ID;
|
||||||
pic_param->picture_coding_type = s->pict_type;
|
pic_param->picture_coding_type = s->pict_type;
|
||||||
pic_param->f_code = mpeg2_get_f_code(s);
|
pic_param->f_code = mpeg2_get_f_code(s);
|
||||||
pic_param->picture_coding_extension.value = 0; /* reset all bits */
|
pic_param->picture_coding_extension.value = 0; /* reset all bits */
|
||||||
|
|
|
@ -56,8 +56,8 @@ static int vaapi_mpeg4_start_frame(AVCodecContext *avctx, av_unused const uint8_
|
||||||
return -1;
|
return -1;
|
||||||
pic_param->vop_width = s->width;
|
pic_param->vop_width = s->width;
|
||||||
pic_param->vop_height = s->height;
|
pic_param->vop_height = s->height;
|
||||||
pic_param->forward_reference_picture = 0xffffffff;
|
pic_param->forward_reference_picture = VA_INVALID_ID;
|
||||||
pic_param->backward_reference_picture = 0xffffffff;
|
pic_param->backward_reference_picture = VA_INVALID_ID;
|
||||||
pic_param->vol_fields.value = 0; /* reset all bits */
|
pic_param->vol_fields.value = 0; /* reset all bits */
|
||||||
pic_param->vol_fields.bits.short_video_header = avctx->codec->id == CODEC_ID_H263;
|
pic_param->vol_fields.bits.short_video_header = avctx->codec->id == CODEC_ID_H263;
|
||||||
pic_param->vol_fields.bits.chroma_format = CHROMA_420;
|
pic_param->vol_fields.bits.chroma_format = CHROMA_420;
|
||||||
|
|
|
@ -145,9 +145,9 @@ static int vaapi_vc1_start_frame(AVCodecContext *avctx, av_unused const uint8_t
|
||||||
pic_param = ff_vaapi_alloc_pic_param(vactx, sizeof(VAPictureParameterBufferVC1));
|
pic_param = ff_vaapi_alloc_pic_param(vactx, sizeof(VAPictureParameterBufferVC1));
|
||||||
if (!pic_param)
|
if (!pic_param)
|
||||||
return -1;
|
return -1;
|
||||||
pic_param->forward_reference_picture = 0xffffffff;
|
pic_param->forward_reference_picture = VA_INVALID_ID;
|
||||||
pic_param->backward_reference_picture = 0xffffffff;
|
pic_param->backward_reference_picture = VA_INVALID_ID;
|
||||||
pic_param->inloop_decoded_picture = 0xffffffff;
|
pic_param->inloop_decoded_picture = VA_INVALID_ID;
|
||||||
pic_param->sequence_fields.value = 0; /* reset all bits */
|
pic_param->sequence_fields.value = 0; /* reset all bits */
|
||||||
pic_param->sequence_fields.bits.pulldown = v->broadcast;
|
pic_param->sequence_fields.bits.pulldown = v->broadcast;
|
||||||
pic_param->sequence_fields.bits.interlace = v->interlace;
|
pic_param->sequence_fields.bits.interlace = v->interlace;
|
||||||
|
|
Loading…
Reference in New Issue