diff options
author | Zdenek Kabelac | 2004-03-05 14:07:33 +0000 |
---|---|---|
committer | Zdenek Kabelac | 2004-03-05 14:07:33 +0000 |
commit | b0df362b11759d3140c64a9c89b4b2417e1bb0e0 (patch) | |
tree | c8aeeef54046edda1615a07df48d3fe64dc88cc2 | |
parent | 494c56d36fd2556175550a951857793ced4970ac (diff) |
* const
Originally committed as revision 2844 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavcodec/avcodec.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h index ba9f4d074f..cbc65dfc6a 100644 --- a/libavcodec/avcodec.h +++ b/libavcodec/avcodec.h @@ -1624,7 +1624,7 @@ typedef struct AVCodec { const AVOption *options; struct AVCodec *next; void (*flush)(AVCodecContext *); - AVRational *supported_framerates; ///array of supported framerates, or NULL if any, array is terminated by {0,0} + const AVRational *supported_framerates; ///array of supported framerates, or NULL if any, array is terminated by {0,0} } AVCodec; /** |