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_rm_metadata is const.
Originally committed as revision 19786 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.6
Reimar Döffinger
16 years ago
parent
c55e5b5fee
commit
88e70e1b0a
2 changed files
with
2 additions
and
2 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
libavformat/rm.c
+1
-1
libavformat/rm.h
+ 1
- 1
libavformat/rm.c
View File
@@ -21,7 +21,7 @@
#include "rm.h"
const char *ff_rm_metadata[4] = {
const char *
const
ff_rm_metadata[4] = {
"title",
"author",
"copyright",
+ 1
- 1
libavformat/rm.h
View File
@@ -24,7 +24,7 @@
#include "avformat.h"
extern const char *ff_rm_metadata[4];
extern const char *
const
ff_rm_metadata[4];
typedef struct RMStream RMStream;
Write
Preview
Loading…
Cancel
Save