Browse Source

do not compare mode extension

master
Christophe Massiot 11 years ago
parent
commit
a794bdb252
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      mpeg/mpga.h

+ 1
- 1
mpeg/mpga.h View File

@ -217,7 +217,7 @@ static inline bool mpga_sync_compare_formats(const uint8_t *p_mpga1, const uint8
return p_mpga1[0] == p_mpga2[0] &&
(p_mpga1[1] & 0xfe) == (p_mpga2[1] & 0xfe) &&
(p_mpga1[2] & 0xfc) == (p_mpga2[2] & 0xfc) &&
(p_mpga1[3] & 0xf0) == (p_mpga2[3] & 0xf0);
(p_mpga1[3] & 0xc0) == (p_mpga2[3] & 0xc0);
}
#ifdef __cplusplus

Loading…
Cancel
Save