diff options
author | Mans Rullgard <mans@mansr.com> | 2012-08-18 13:22:57 +0100 |
---|---|---|
committer | Mans Rullgard <mans@mansr.com> | 2012-08-18 14:20:57 +0100 |
commit | 8b13445791952324174f50b76519eddc347dc29a (patch) | |
tree | 588ae17921c31bd82b9167152b3691d0c8c73690 | |
parent | edb5238ccbd3ac3cd8c8fd533c3eab1287ea84b6 (diff) | |
download | ffmpeg-streaming-8b13445791952324174f50b76519eddc347dc29a.zip ffmpeg-streaming-8b13445791952324174f50b76519eddc347dc29a.tar.gz |
avprobe: add const to AVCodec pointer
Signed-off-by: Mans Rullgard <mans@mansr.com>
-rw-r--r-- | avprobe.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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; |