diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2013-08-03 22:24:31 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2013-08-03 22:24:31 +0200 |
commit | c0ef5d6c169fb0668e2ba029f9cc34ad32db9520 (patch) | |
tree | 40487f18ab35c69994a647fa8c4347683d0964d5 /libavdevice | |
parent | 8862ed73403a9ed19cf37522d3aa7530cad26b19 (diff) | |
download | ffmpeg-c0ef5d6c169fb0668e2ba029f9cc34ad32db9520.tar.gz |
avdevice/vfwcap: make constant arrays static
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavdevice')
-rw-r--r-- | libavdevice/vfwcap.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavdevice/vfwcap.c b/libavdevice/vfwcap.c index 66b02befda..014f18c27e 100644 --- a/libavdevice/vfwcap.c +++ b/libavdevice/vfwcap.c @@ -155,7 +155,7 @@ static void dump_bih(AVFormatContext *s, BITMAPINFOHEADER *bih) static int shall_we_drop(AVFormatContext *s) { struct vfw_ctx *ctx = s->priv_data; - const uint8_t dropscore[] = {62, 75, 87, 100}; + static const uint8_t dropscore[] = {62, 75, 87, 100}; const int ndropscores = FF_ARRAY_ELEMS(dropscore); unsigned int buffer_fullness = (ctx->curbufsize*100)/s->max_picture_buffer; |