diff options
author | RĂ©mi Denis-Courmont <remi@remlab.net> | 2013-01-14 22:00:05 +0200 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2013-01-14 21:56:55 +0100 |
commit | 171f1446f05440c9f5ffb986e3dcc828e50d440a (patch) | |
tree | 164a56a519eeb784201d85d7cc135e66b93cfb2b | |
parent | ea382767ad2191acbe97e90624059723e15f0e4b (diff) | |
download | ffmpeg-171f1446f05440c9f5ffb986e3dcc828e50d440a.tar.gz |
vdpau: Remove av_unused attribute from function declaration
Signed-off-by: Diego Biurrun <diego@biurrun.de>
-rw-r--r-- | libavcodec/vdpau_internal.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/libavcodec/vdpau_internal.h b/libavcodec/vdpau_internal.h index 87c94c803b..4aefc85196 100644 --- a/libavcodec/vdpau_internal.h +++ b/libavcodec/vdpau_internal.h @@ -34,8 +34,7 @@ static inline uintptr_t ff_vdpau_get_surface_id(Picture *pic) } int ff_vdpau_common_start_frame(AVCodecContext *avctx, - av_unused const uint8_t *buffer, - av_unused uint32_t size); + const uint8_t *buffer, uint32_t size); int ff_vdpau_common_end_frame(AVCodecContext *avctx); int ff_vdpau_add_buffer(AVCodecContext *avctx, const uint8_t *buf, uint32_t buf_size); |