Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mpc-hc/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2015-03-15 01:30:16 +0300
committerMichael Niedermayer <michaelni@gmx.at>2015-03-15 01:33:31 +0300
commita994fc39b3fc8b3996b24450916ec3ae69a00de5 (patch)
tree0606d4bd21b69925098c516cb1d75bcda6d71e7b /libavcodec/internal.h
parent43cafb956e29d690df6f4deb4c83508a2e066e58 (diff)
avcodec/utils: mark codec argument as const in ff_lock_avcodec()
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/internal.h')
-rw-r--r--libavcodec/internal.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/internal.h b/libavcodec/internal.h
index 3d0cd5b582..3bf35df3d6 100644
--- a/libavcodec/internal.h
+++ b/libavcodec/internal.h
@@ -167,7 +167,7 @@ int ff_init_buffer_info(AVCodecContext *s, AVFrame *frame);
void avpriv_color_frame(AVFrame *frame, const int color[4]);
extern volatile int ff_avcodec_locked;
-int ff_lock_avcodec(AVCodecContext *log_ctx, AVCodec *codec);
+int ff_lock_avcodec(AVCodecContext *log_ctx, const AVCodec *codec);
int ff_unlock_avcodec(void);
int avpriv_lock_avformat(void);