summaryrefslogtreecommitdiff
path: root/libavfilter/framepool.h
diff options
context:
space:
mode:
Diffstat (limited to 'libavfilter/framepool.h')
-rw-r--r--libavfilter/framepool.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavfilter/framepool.h b/libavfilter/framepool.h
index 28857a4a16..daab88e4a5 100644
--- a/libavfilter/framepool.h
+++ b/libavfilter/framepool.h
@@ -44,7 +44,7 @@ typedef struct FFFramePool FFFramePool;
* @param align buffers alignement of each frame in this pool
* @return newly created video frame pool on success, NULL on error.
*/
-FFFramePool *ff_frame_pool_video_init(AVBufferRef* (*alloc)(buffer_size_t size),
+FFFramePool *ff_frame_pool_video_init(AVBufferRef* (*alloc)(size_t size),
int width,
int height,
enum AVPixelFormat format,
@@ -62,7 +62,7 @@ FFFramePool *ff_frame_pool_video_init(AVBufferRef* (*alloc)(buffer_size_t size),
* @param align buffers alignement of each frame in this pool
* @return newly created audio frame pool on success, NULL on error.
*/
-FFFramePool *ff_frame_pool_audio_init(AVBufferRef* (*alloc)(buffer_size_t size),
+FFFramePool *ff_frame_pool_audio_init(AVBufferRef* (*alloc)(size_t size),
int channels,
int samples,
enum AVSampleFormat format,