diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2013-08-06 20:30:12 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2013-08-06 20:30:12 +0200 |
commit | ef71717901b0e5fc6ba47756407da8118a591e11 (patch) | |
tree | 09c9e7020356a4b6491e435f7d3cc1fdde91ad34 | |
parent | 5b13778f93237903378f9a81efa7811a7812c2cf (diff) | |
download | ffmpeg-ef71717901b0e5fc6ba47756407da8118a591e11.tar.gz |
avformat/smoothstreamingenc: Make const tables static const
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-rw-r--r-- | libavformat/smoothstreamingenc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/smoothstreamingenc.c b/libavformat/smoothstreamingenc.c index 096bf79c30..7163c90c4d 100644 --- a/libavformat/smoothstreamingenc.c +++ b/libavformat/smoothstreamingenc.c @@ -428,7 +428,7 @@ static int parse_fragment(AVFormatContext *s, const char *filename, int64_t *sta if (len < 8 || len >= *moof_size) goto fail; if (tag == MKTAG('u','u','i','d')) { - const uint8_t tfxd[] = { + static const uint8_t tfxd[] = { 0x6d, 0x1d, 0x9b, 0x05, 0x42, 0xd5, 0x44, 0xe6, 0x80, 0xe2, 0x14, 0x1d, 0xaf, 0xf7, 0x57, 0xb2 }; |