summaryrefslogtreecommitdiff
path: root/libavcodec
diff options
context:
space:
mode:
authorZdenek Kabelac <kabi@informatics.muni.cz>2004-03-05 14:07:33 +0000
committerZdenek Kabelac <kabi@informatics.muni.cz>2004-03-05 14:07:33 +0000
commitb0df362b11759d3140c64a9c89b4b2417e1bb0e0 (patch)
treec8aeeef54046edda1615a07df48d3fe64dc88cc2 /libavcodec
parent494c56d36fd2556175550a951857793ced4970ac (diff)
* const
Originally committed as revision 2844 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec')
-rw-r--r--libavcodec/avcodec.h2
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;
/**