summaryrefslogtreecommitdiff
path: root/ffprobe.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2012-08-19 14:55:58 +0200
committerMichael Niedermayer <michaelni@gmx.at>2012-08-19 14:55:58 +0200
commitc9fe864472a2c55c7c4189ff6fb490bec8bd92b3 (patch)
treee6b713039096a079b01f66237e8516bdee893f2d /ffprobe.c
parent5980e57cf9a08ca284bc1b5ffba2363f9eff8ca8 (diff)
parent4855022aa11ec7aa1a3bd9797814e84795634abe (diff)
Merge remote-tracking branch 'qatar/master'
* qatar/master: vorbisdec: remove some pointless comments avprobe: add const to AVCodec pointer libavformat: add const to AVCodec pointers pthread: add const to AVCodec pointers Conflicts: ffprobe.c Merged-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'ffprobe.c')
-rw-r--r--ffprobe.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ffprobe.c b/ffprobe.c
index a40f756d82..95548c7d75 100644
--- a/ffprobe.c
+++ b/ffprobe.c
@@ -1722,7 +1722,7 @@ static void show_stream(WriterContext *w, AVFormatContext *fmt_ctx, int stream_i
{
AVStream *stream = fmt_ctx->streams[stream_idx];
AVCodecContext *dec_ctx;
- AVCodec *dec;
+ const AVCodec *dec;
char val_str[128];
const char *s;
AVRational sar, dar;