mirror of https://git.ffmpeg.org/ffmpeg.git
avformat/movenc-test: Make format static
Makes greping for non static consts easier Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
parent
d3b6a9abac
commit
5dbd114b83
|
@ -44,7 +44,7 @@ static const uint8_t aac_extradata[] = {
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
const char *format = "mp4";
|
static const char *format = "mp4";
|
||||||
AVFormatContext *ctx;
|
AVFormatContext *ctx;
|
||||||
uint8_t iobuf[32768];
|
uint8_t iobuf[32768];
|
||||||
AVDictionary *opts;
|
AVDictionary *opts;
|
||||||
|
|
Loading…
Reference in New Issue