mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-03-25 04:19:05 +00:00
Make ff_mkv_codec_tags array const, it is never written.
Originally committed as revision 11137 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
b639896915
commit
73a727f369
@ -21,7 +21,7 @@
|
||||
|
||||
#include "matroska.h"
|
||||
|
||||
CodecTags ff_mkv_codec_tags[]={
|
||||
const CodecTags ff_mkv_codec_tags[]={
|
||||
// {"V_MS/VFW/FOURCC" , CODEC_ID_NONE},
|
||||
{"V_UNCOMPRESSED" , CODEC_ID_RAWVIDEO},
|
||||
{"V_MPEG4/ISO/ASP" , CODEC_ID_MPEG4},
|
||||
|
@ -191,6 +191,6 @@ typedef struct CodecTags{
|
||||
/* max. depth in the EBML tree structure */
|
||||
#define EBML_MAX_DEPTH 16
|
||||
|
||||
extern CodecTags ff_mkv_codec_tags[];
|
||||
extern const CodecTags ff_mkv_codec_tags[];
|
||||
|
||||
#endif /* FFMPEG_MATROSKA_H */
|
||||
|
Loading…
Reference in New Issue
Block a user