Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Niedermayer <michael@niedermayer.cc>2015-12-22 19:12:02 +0300
committerMichael Niedermayer <michael@niedermayer.cc>2015-12-22 19:17:56 +0300
commit5dbd114b83b05adea7d0dea0ec53b6700291fb37 (patch)
treefd3fd28e41a2b93fb34c75552e21bc81b82235c2 /libavformat
parentd3b6a9abacc9df124388ca2c38bf9456570f5d59 (diff)
avformat/movenc-test: Make format static
Makes greping for non static consts easier Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
Diffstat (limited to 'libavformat')
-rw-r--r--libavformat/movenc-test.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/movenc-test.c b/libavformat/movenc-test.c
index 957ae69a3a..cba6762b77 100644
--- a/libavformat/movenc-test.c
+++ b/libavformat/movenc-test.c
@@ -44,7 +44,7 @@ static const uint8_t aac_extradata[] = {
};
-const char *format = "mp4";
+static const char *format = "mp4";
AVFormatContext *ctx;
uint8_t iobuf[32768];
AVDictionary *opts;