[FFmpeg-cvslog] psxstr: more correct array type.

Michael Niedermayer git at videolan.org
Sat Sep 1 23:50:26 CEST 2012


ffmpeg | branch: master | Michael Niedermayer <michaelni at gmx.at> | Sat Sep  1 21:16:18 2012 +0200| [19a71dbcb911513de0b835f63c3c78744b3b1703] | committer: Michael Niedermayer

psxstr: more correct array type.

Signed-off-by: Michael Niedermayer <michaelni at gmx.at>

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=19a71dbcb911513de0b835f63c3c78744b3b1703
---

 libavformat/psxstr.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/libavformat/psxstr.c b/libavformat/psxstr.c
index 49b3441..86fba16 100644
--- a/libavformat/psxstr.c
+++ b/libavformat/psxstr.c
@@ -64,7 +64,7 @@ typedef struct StrDemuxContext {
     StrChannel channels[32];
 } StrDemuxContext;
 
-static const char sync_header[12] = {0x00,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x00};
+static const uint8_t sync_header[12] = {0x00,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x00};
 
 static int str_probe(AVProbeData *p)
 {



More information about the ffmpeg-cvslog mailing list