diff options
author | Mark Thompson <sw@jkqxz.net> | 2018-06-22 15:52:58 +0100 |
---|---|---|
committer | Mark Thompson <sw@jkqxz.net> | 2018-06-25 21:00:54 +0100 |
commit | e7c0b44e747b4ccd5d682cd7e61d4bdd154434b1 (patch) | |
tree | f29878a2b70c0a7275780f110c9ca7ec64c24ff8 /libavformat/mpjpegdec.c | |
parent | bd02b2c05df1fa8c515b9d8fbe3b8c0c14fed1a4 (diff) | |
download | ffmpeg-streaming-e7c0b44e747b4ccd5d682cd7e61d4bdd154434b1.zip ffmpeg-streaming-e7c0b44e747b4ccd5d682cd7e61d4bdd154434b1.tar.gz |
lavf/mpjpegdec: Mark local variable static
Diffstat (limited to 'libavformat/mpjpegdec.c')
-rw-r--r-- | libavformat/mpjpegdec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/mpjpegdec.c b/libavformat/mpjpegdec.c index 83aa70d..64d880a 100644 --- a/libavformat/mpjpegdec.c +++ b/libavformat/mpjpegdec.c @@ -375,7 +375,7 @@ static int mpjpeg_read_packet(AVFormatContext *s, AVPacket *pkt) #define OFFSET(x) offsetof(MPJPEGDemuxContext, x) #define DEC AV_OPT_FLAG_DECODING_PARAM -const AVOption mpjpeg_options[] = { +static const AVOption mpjpeg_options[] = { { "strict_mime_boundary", "require MIME boundaries match", OFFSET(strict_mime_boundary), AV_OPT_TYPE_BOOL, {.i64 = 0}, 0, 1, DEC }, { NULL } }; |