Browse Source

* minor warning fix

Originally committed as revision 1209 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.5
Zdenek Kabelac 23 years ago
parent
commit
6a85ec8d9c
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavcodec/common.h

+ 1
- 1
libavcodec/common.h View File

@@ -836,7 +836,7 @@ static inline int ff_sqrt(int a)
/**
* converts fourcc string to int
*/
static inline int ff_get_fourcc(char *s){
static inline int ff_get_fourcc(const char *s){
assert( strlen(s)==4 );
return (s[0]) + (s[1]<<8) + (s[2]<<16) + (s[3]<<24);


Loading…
Cancel
Save