git.videolan.org
/
ffmpeg.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
65dd932
)
avformat/matroskaenc: make 2 tables static that are not used outside matroskaenc
author
Michael Niedermayer
<michaelni@gmx.at>
Fri, 2 Aug 2013 19:14:25 +0000
(21:14 +0200)
committer
Michael Niedermayer
<michaelni@gmx.at>
Fri, 2 Aug 2013 19:14:59 +0000
(21:14 +0200)
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
libavformat/matroskaenc.c
patch
|
blob
|
history
diff --git
a/libavformat/matroskaenc.c
b/libavformat/matroskaenc.c
index
cb1e4e1
..
c201d5e
100644
(file)
--- 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 },