This website works better with JavaScript.
Home
Help
Sign In
falkTX
/
FFmpeg
mirror of
https://github.com/falkTX/FFmpeg.git
Watch
1
Star
0
Fork
0
Code
Issues
0
Releases
338
Wiki
Activity
Browse Source
ff_id3v1_genre_str table should be const.
Originally committed as revision 19781 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.6
Reimar Döffinger
16 years ago
parent
4d2a4dfd88
commit
ed034f6c59
2 changed files
with
2 additions
and
2 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
libavformat/id3v1.c
+1
-1
libavformat/id3v1.h
+ 1
- 1
libavformat/id3v1.c
View File
@@ -22,7 +22,7 @@
#include "id3v1.h"
#include "libavcodec/avcodec.h"
const char *ff_id3v1_genre_str[ID3v1_GENRE_MAX + 1] = {
const char *
const
ff_id3v1_genre_str[ID3v1_GENRE_MAX + 1] = {
[0] = "Blues",
[1] = "Classic Rock",
[2] = "Country",
+ 1
- 1
libavformat/id3v1.h
View File
@@ -31,7 +31,7 @@
/**
* ID3v1 genres
*/
extern const char *ff_id3v1_genre_str[ID3v1_GENRE_MAX + 1];
extern const char *
const
ff_id3v1_genre_str[ID3v1_GENRE_MAX + 1];
/**
* Read an ID3v1 tag
Write
Preview
Loading…
Cancel
Save