summaryrefslogtreecommitdiff
path: root/ffmpeg.c
diff options
context:
space:
mode:
authorAlex Converse <alex.converse@gmail.com>2011-06-09 09:52:47 -0700
committerAlex Converse <alex.converse@gmail.com>2011-06-09 10:12:50 -0700
commit9a1b79128c25a5c1004bbd0af85a68c9a2a3e580 (patch)
treef23bcb9bcc96365ff98b48900908aa908463c347 /ffmpeg.c
parented8a50068caacf722b6c7a81f77abcadc134e544 (diff)
ffmpeg.c: Add a necessary const qualifier
Diffstat (limited to 'ffmpeg.c')
-rw-r--r--ffmpeg.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ffmpeg.c b/ffmpeg.c
index 5099fc29ea..cbcdba8c64 100644
--- a/ffmpeg.c
+++ b/ffmpeg.c
@@ -573,7 +573,7 @@ static void update_sample_fmt(AVCodecContext *dec, AVCodec *dec_codec,
if (dec_codec && dec_codec->sample_fmts &&
dec_codec->sample_fmts[0] != AV_SAMPLE_FMT_NONE &&
dec_codec->sample_fmts[1] != AV_SAMPLE_FMT_NONE) {
- enum AVSampleFormat *p;
+ const enum AVSampleFormat *p;
int min_dec = -1, min_inc = -1;
/* find a matching sample format in the encoder */