diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2013-08-03 22:24:11 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2013-08-03 22:24:11 +0200 |
commit | 8862ed73403a9ed19cf37522d3aa7530cad26b19 (patch) | |
tree | 362c241a8f0db32515d4bf5329954a12f4c88586 /libavdevice | |
parent | f1873909070da597c471e4fc0ea1a6b94f41cd67 (diff) | |
download | ffmpeg-8862ed73403a9ed19cf37522d3aa7530cad26b19.tar.gz |
avdevice/dshow: make constant arrays static
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavdevice')
-rw-r--r-- | libavdevice/dshow.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavdevice/dshow.c b/libavdevice/dshow.c index 8cc12f5fb8..37efabe52a 100644 --- a/libavdevice/dshow.c +++ b/libavdevice/dshow.c @@ -183,7 +183,7 @@ static char *dup_wchar_to_utf8(wchar_t *w) static int shall_we_drop(AVFormatContext *s) { struct dshow_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; |