[FFmpeg-cvslog] r10751 - trunk/libavformat/electronicarts.c

aurel subversion
Tue Oct 16 00:51:15 CEST 2007


Author: aurel
Date: Tue Oct 16 00:51:15 2007
New Revision: 10751

Log:
remove useless &0xFF

Modified:
   trunk/libavformat/electronicarts.c

Modified: trunk/libavformat/electronicarts.c
==============================================================================
--- trunk/libavformat/electronicarts.c	(original)
+++ trunk/libavformat/electronicarts.c	Tue Oct 16 00:51:15 2007
@@ -86,7 +86,7 @@ static int process_ea_header(AVFormatCon
     while (inHeader) {
         int inSubheader;
         uint8_t byte;
-        byte = get_byte(pb) & 0xFF;
+        byte = get_byte(pb);
 
         switch (byte) {
         case 0xFD:
@@ -94,7 +94,7 @@ static int process_ea_header(AVFormatCon
             inSubheader = 1;
             while (inSubheader) {
                 uint8_t subbyte;
-                subbyte = get_byte(pb) & 0xFF;
+                subbyte = get_byte(pb);
 
                 switch (subbyte) {
                 case 0x82:




More information about the ffmpeg-cvslog mailing list