diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2014-09-28 03:40:13 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2014-09-28 03:40:13 +0200 |
commit | 4d9a46fe31e0dbeb4791fd2de896ce0cce5c3c1b (patch) | |
tree | 9a283c4693896bf20fa128b462df1b9acbd8caad /libavcodec/libx264.c | |
parent | 3edb9aaea6aaa6b93d708693cfa6454c17e03732 (diff) | |
download | ffmpeg-4d9a46fe31e0dbeb4791fd2de896ce0cce5c3c1b.tar.gz |
avcodec/libx264: mark unchanged pointer arguments as const
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/libx264.c')
-rw-r--r-- | libavcodec/libx264.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/libx264.c b/libavcodec/libx264.c index 8830f592cc..add3d987df 100644 --- a/libavcodec/libx264.c +++ b/libavcodec/libx264.c @@ -100,7 +100,7 @@ static void X264_log(void *p, int level, const char *fmt, va_list args) static int encode_nals(AVCodecContext *ctx, AVPacket *pkt, - x264_nal_t *nals, int nnal) + const x264_nal_t *nals, int nnal) { X264Context *x4 = ctx->priv_data; uint8_t *p; |