diff options
author | Zdenek Kabelac <kabi@informatics.muni.cz> | 2004-10-06 08:50:46 +0000 |
---|---|---|
committer | Zdenek Kabelac <kabi@informatics.muni.cz> | 2004-10-06 08:50:46 +0000 |
commit | 7fea94ce4af2c97cbfc0a279fe7a755f9185f343 (patch) | |
tree | 3a57473464a85cbe464d056ae5db963c17e19abd /libavformat/avformat.h | |
parent | a319bbac5c1b887894a4edea8bb0016161e239a2 (diff) | |
download | ffmpeg-7fea94ce4af2c97cbfc0a279fe7a755f9185f343.tar.gz |
* fixing a few of gcc 'clean-code' warnings
Originally committed as revision 3563 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/avformat.h')
-rw-r--r-- | libavformat/avformat.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/avformat.h b/libavformat/avformat.h index 888b8b334b..a4793a7ca7 100644 --- a/libavformat/avformat.h +++ b/libavformat/avformat.h @@ -251,7 +251,7 @@ typedef struct AVStream { /* format I/O context */ typedef struct AVFormatContext { - AVClass *av_class; /* set by av_alloc_format_context */ + const AVClass *av_class; /* set by av_alloc_format_context */ /* can only be iformat or oformat, not both at the same time */ struct AVInputFormat *iformat; struct AVOutputFormat *oformat; |