summaryrefslogtreecommitdiff
path: root/libavcodec/vaapi.c
diff options
context:
space:
mode:
authorGwenole Beauchesne <gbeauchesne@splitted-desktop.com>2009-12-28 09:03:09 +0000
committerGwenole Beauchesne <gbeauchesne@splitted-desktop.com>2009-12-28 09:03:09 +0000
commit8b0867121e71afa9c5ab59d283c1075be8ac4182 (patch)
treed247f017860a2f689c24d97549367fc9716d63ca /libavcodec/vaapi.c
parent36ad2b3ee014cac0f2d688dc9ef8cc92e07f73c8 (diff)
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.c')
-rw-r--r--libavcodec/vaapi.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/vaapi.c b/libavcodec/vaapi.c
index 7912198e5d..10f9054278 100644
--- a/libavcodec/vaapi.c
+++ b/libavcodec/vaapi.c
@@ -129,7 +129,7 @@ static void *alloc_buffer(struct vaapi_context *vactx, int type, unsigned int si
return data;
}
-void *ff_vaapi_alloc_picture(struct vaapi_context *vactx, unsigned int size)
+void *ff_vaapi_alloc_pic_param(struct vaapi_context *vactx, unsigned int size)
{
return alloc_buffer(vactx, VAPictureParameterBufferType, size, &vactx->pic_param_buf_id);
}