Commit d00054e1 authored by aurel's avatar aurel

remove useless &0xFF

git-svn-id: file:///var/local/repositories/ffmpeg/trunk@10751 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 8a8be155
......@@ -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:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment