You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-15 14:13:16 +02:00
remove useless &0xFF
Originally committed as revision 10751 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
@@ -86,7 +86,7 @@ static int process_ea_header(AVFormatContext *s) {
|
|||||||
while (inHeader) {
|
while (inHeader) {
|
||||||
int inSubheader;
|
int inSubheader;
|
||||||
uint8_t byte;
|
uint8_t byte;
|
||||||
byte = get_byte(pb) & 0xFF;
|
byte = get_byte(pb);
|
||||||
|
|
||||||
switch (byte) {
|
switch (byte) {
|
||||||
case 0xFD:
|
case 0xFD:
|
||||||
@@ -94,7 +94,7 @@ static int process_ea_header(AVFormatContext *s) {
|
|||||||
inSubheader = 1;
|
inSubheader = 1;
|
||||||
while (inSubheader) {
|
while (inSubheader) {
|
||||||
uint8_t subbyte;
|
uint8_t subbyte;
|
||||||
subbyte = get_byte(pb) & 0xFF;
|
subbyte = get_byte(pb);
|
||||||
|
|
||||||
switch (subbyte) {
|
switch (subbyte) {
|
||||||
case 0x82:
|
case 0x82:
|
||||||
|
Reference in New Issue
Block a user