diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2013-08-02 21:14:25 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2013-08-02 21:14:59 +0200 |
commit | 0553f2c6e5852842498e53026cae887246dd31ed (patch) | |
tree | 724ea54a842308b5ae7ff9ed6eac58d6454b58af /libavformat | |
parent | 65dd93209dc1931978cd7311f7ee1801e0bf7b0b (diff) | |
download | ffmpeg-0553f2c6e5852842498e53026cae887246dd31ed.tar.gz |
avformat/matroskaenc: make 2 tables static that are not used outside matroskaenc
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavformat')
-rw-r--r-- | libavformat/matroskaenc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavformat/matroskaenc.c b/libavformat/matroskaenc.c index cb1e4e1fc7..c201d5e640 100644 --- a/libavformat/matroskaenc.c +++ b/libavformat/matroskaenc.c @@ -1608,7 +1608,7 @@ static int mkv_query_codec(enum AVCodecID codec_id, int std_compliance) return 0; } -const AVCodecTag additional_audio_tags[] = { +static const AVCodecTag additional_audio_tags[] = { { AV_CODEC_ID_ALAC, 0XFFFFFFFF }, { AV_CODEC_ID_EAC3, 0XFFFFFFFF }, { AV_CODEC_ID_MLP, 0xFFFFFFFF }, @@ -1625,7 +1625,7 @@ const AVCodecTag additional_audio_tags[] = { { AV_CODEC_ID_NONE, 0xFFFFFFFF } }; -const AVCodecTag additional_video_tags[] = { +static const AVCodecTag additional_video_tags[] = { { AV_CODEC_ID_PRORES, 0xFFFFFFFF }, { AV_CODEC_ID_RV10, 0xFFFFFFFF }, { AV_CODEC_ID_RV20, 0xFFFFFFFF }, |