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
Make the id3v1_genre_str array const, not just the strings it points to.
Originally committed as revision 14942 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.5
Reimar Döffinger
17 years ago
parent
dad6afb4cb
commit
1bef65f4fe
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
libavformat/mp3.c
+ 1
- 1
libavformat/mp3.c
View File
@@ -30,7 +30,7 @@
#define ID3v1_GENRE_MAX 125
static const char *id3v1_genre_str[ID3v1_GENRE_MAX + 1] = {
static const char *
const
id3v1_genre_str[ID3v1_GENRE_MAX + 1] = {
[0] = "Blues",
[1] = "Classic Rock",
[2] = "Country",
Write
Preview
Loading…
Cancel
Save