summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
Diffstat (limited to 'apps')
-rw-r--r--apps/plugins/mpegplayer/mpegplayer.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/apps/plugins/mpegplayer/mpegplayer.c b/apps/plugins/mpegplayer/mpegplayer.c
index 4af4ed2ca4..481454dc87 100644
--- a/apps/plugins/mpegplayer/mpegplayer.c
+++ b/apps/plugins/mpegplayer/mpegplayer.c
@@ -451,14 +451,14 @@ static void init_mad(void* mad_frame_overlap)
451#else 451#else
452/* Don't know what this is - use bytewise comparisons */ 452/* Don't know what this is - use bytewise comparisons */
453#define CMP_3_CONST(a, b) \ 453#define CMP_3_CONST(a, b) \
454 (( ((a)[0] ^ ((b) >> 24)) | \ 454 (( ((a)[0] ^ (((b) >> 24) & 0xff)) | \
455 ((a)[1] ^ ((b) << 8 >> 24)) | \ 455 ((a)[1] ^ (((b) >> 16) & 0xff)) | \
456 ((a)[2] ^ ((b) << 16 >> 24)) ) == 0) 456 ((a)[2] ^ (((b) >> 8) & 0xff)) ) == 0)
457#define CMP_4_CONST(a, b) \ 457#define CMP_4_CONST(a, b) \
458 (( ((a)[0] ^ ((b) >> 24)) | \ 458 (( ((a)[0] ^ (((b) >> 24) & 0xff)) | \
459 ((a)[1] ^ ((b) << 8 >> 24)) | \ 459 ((a)[1] ^ (((b) >> 16) & 0xff)) | \
460 ((a)[2] ^ ((b) << 16 >> 24)) | \ 460 ((a)[2] ^ (((b) >> 8) & 0xff)) | \
461 ((a)[3] ^ ((b) << 24 >> 24)) ) == 0) 461 ((a)[3] ^ ((b) & 0xff)) ) == 0)
462#endif 462#endif
463 463
464/* Codes for various header byte sequences - MSB represents lowest memory 464/* Codes for various header byte sequences - MSB represents lowest memory