diff options
author | Gwenole Beauchesne <gbeauchesne@splitted-desktop.com> | 2009-12-28 09:03:09 +0000 |
---|---|---|
committer | Gwenole Beauchesne <gbeauchesne@splitted-desktop.com> | 2009-12-28 09:03:09 +0000 |
commit | 8b0867121e71afa9c5ab59d283c1075be8ac4182 (patch) | |
tree | d247f017860a2f689c24d97549367fc9716d63ca /libavcodec/vaapi_vc1.c | |
parent | 36ad2b3ee014cac0f2d688dc9ef8cc92e07f73c8 (diff) | |
download | ffmpeg-8b0867121e71afa9c5ab59d283c1075be8ac4182.tar.gz |
Rename ff_vaapi_alloc_picture() to ff_vaapi_alloc_pic_param().
Originally committed as revision 20942 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/vaapi_vc1.c')
-rw-r--r-- | libavcodec/vaapi_vc1.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/vaapi_vc1.c b/libavcodec/vaapi_vc1.c index 137526972a..b3777f5186 100644 --- a/libavcodec/vaapi_vc1.c +++ b/libavcodec/vaapi_vc1.c @@ -142,7 +142,7 @@ static int vaapi_vc1_start_frame(AVCodecContext *avctx, av_unused const uint8_t vactx->slice_param_size = sizeof(VASliceParameterBufferVC1); /* Fill in VAPictureParameterBufferVC1 */ - pic_param = ff_vaapi_alloc_picture(vactx, sizeof(VAPictureParameterBufferVC1)); + pic_param = ff_vaapi_alloc_pic_param(vactx, sizeof(VAPictureParameterBufferVC1)); if (!pic_param) return -1; pic_param->forward_reference_picture = 0xffffffff; |