Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAurelien Jacobs <aurel@gnuage.org>2007-10-16 02:51:15 +0400
committerAurelien Jacobs <aurel@gnuage.org>2007-10-16 02:51:15 +0400
commitc03c4cac82a561505ef2753e6c7a9a23b3779b48 (patch)
treeabac82a033a1be6d3d19e08cccb7d7b90cf234f8 /libavformat/electronicarts.c
parenta066c5b7c93fcf8aff22f2d8056a3ea8815194e0 (diff)
remove useless &0xFF
Originally committed as revision 10751 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/electronicarts.c')
-rw-r--r--libavformat/electronicarts.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavformat/electronicarts.c b/libavformat/electronicarts.c
index f3d1a66746..479e349e1d 100644
--- a/libavformat/electronicarts.c
+++ b/libavformat/electronicarts.c
@@ -86,7 +86,7 @@ static int process_ea_header(AVFormatContext *s) {
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(AVFormatContext *s) {
inSubheader = 1;
while (inSubheader) {
uint8_t subbyte;
- subbyte = get_byte(pb) & 0xFF;
+ subbyte = get_byte(pb);
switch (subbyte) {
case 0x82: