[FFmpeg-cvslog] r19786 - in trunk/libavformat: rm.c rm.h

reimar subversion
Sun Sep 6 10:57:19 CEST 2009


Author: reimar
Date: Sun Sep  6 10:57:19 2009
New Revision: 19786

Log:
ff_rm_metadata is const.

Modified:
   trunk/libavformat/rm.c
   trunk/libavformat/rm.h

Modified: trunk/libavformat/rm.c
==============================================================================
--- trunk/libavformat/rm.c	Sun Sep  6 10:56:10 2009	(r19785)
+++ trunk/libavformat/rm.c	Sun Sep  6 10:57:19 2009	(r19786)
@@ -21,7 +21,7 @@
 
 #include "rm.h"
 
-const char *ff_rm_metadata[4] = {
+const char * const ff_rm_metadata[4] = {
     "title",
     "author",
     "copyright",

Modified: trunk/libavformat/rm.h
==============================================================================
--- trunk/libavformat/rm.h	Sun Sep  6 10:56:10 2009	(r19785)
+++ trunk/libavformat/rm.h	Sun Sep  6 10:57:19 2009	(r19786)
@@ -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;
 



More information about the ffmpeg-cvslog mailing list