diff options
author | Clément Bœsch <ubitux@gmail.com> | 2011-11-05 13:14:43 +0100 |
---|---|---|
committer | Clément Bœsch <ubitux@gmail.com> | 2011-11-05 15:07:19 +0100 |
commit | 1e4027747a70fbf8ab60e0ffc113bcdc0c20acb1 (patch) | |
tree | 2a66fa9fd9981dd0be0c7476c81db198ebf2e9a8 | |
parent | 0e5ecd806eadf7dd0ec645b1b69310ee76c0cd1c (diff) | |
download | ffmpeg-1e4027747a70fbf8ab60e0ffc113bcdc0c20acb1.tar.gz |
ffprobe: fix const compiler warning.
-rw-r--r-- | ffprobe.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -710,7 +710,7 @@ static void show_stream(WriterContext *w, AVFormatContext *fmt_ctx, int stream_i print_str("codec_type", "unknown"); } if (dec_ctx->codec && dec_ctx->codec->priv_class) { - AVOption *opt = NULL; + const AVOption *opt = NULL; while (opt = av_opt_next(dec_ctx->priv_data,opt)) { uint8_t *str; if (opt->flags) continue; |