diff options
author | Kostya Shishkov <kostya.shishkov@gmail.com> | 2012-01-12 10:01:33 +0100 |
---|---|---|
committer | Kostya Shishkov <kostya.shishkov@gmail.com> | 2012-01-12 13:54:41 +0100 |
commit | 08bab32cf1dff7dc25dab4f010c42c13ba9627c7 (patch) | |
tree | 74423d20b006899eff419efd66ba463e316e98b0 /libavcodec/indeo4.c | |
parent | 3faa303a47e0c3b59a53988e0f76018930c6cb1a (diff) | |
download | ffmpeg-08bab32cf1dff7dc25dab4f010c42c13ba9627c7.tar.gz |
indeo4: add some missing static and const qualifiers
From the patch by Reimar Döffinger.
Diffstat (limited to 'libavcodec/indeo4.c')
-rw-r--r-- | libavcodec/indeo4.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/indeo4.c b/libavcodec/indeo4.c index dd8e5b1830..573718e374 100644 --- a/libavcodec/indeo4.c +++ b/libavcodec/indeo4.c @@ -94,7 +94,7 @@ typedef struct { } IVI4DecContext; -struct { +static const struct { InvTransformPtr *inv_trans; DCTransformPtr *dc_trans; int is_2d_trans; |