avprobe: add const to AVCodec pointer

Signed-off-by: Mans Rullgard <mans@mansr.com>
This commit is contained in:
Mans Rullgard 2012-08-18 13:22:57 +01:00
parent edb5238ccb
commit 8b13445791
1 changed files with 1 additions and 1 deletions

View File

@ -581,7 +581,7 @@ static void show_stream(AVFormatContext *fmt_ctx, int stream_idx)
{
AVStream *stream = fmt_ctx->streams[stream_idx];
AVCodecContext *dec_ctx;
AVCodec *dec;
const AVCodec *dec;
const char *profile;
char val_str[128];
AVRational display_aspect_ratio;