summaryrefslogtreecommitdiff
path: root/apps/codecs/libcook/bitstream.h
diff options
context:
space:
mode:
authorMohamed Tarek <mt@rockbox.org>2009-08-15 16:50:52 +0000
committerMohamed Tarek <mt@rockbox.org>2009-08-15 16:50:52 +0000
commit2402aecbb5eeb82c5920f9d837cd287581c11c05 (patch)
treeedcb57ecebd37222dd043265116d0bcc46f07a90 /apps/codecs/libcook/bitstream.h
parent6b12928035a71b41ef9901cab58689351f0804b5 (diff)
downloadrockbox-2402aecbb5eeb82c5920f9d837cd287581c11c05.tar.gz
rockbox-2402aecbb5eeb82c5920f9d837cd287581c11c05.zip
remove duplicates of bswap.h from libwma, libcook and libatrac. Create codecs/lib/ffmpeg_bswap.h and use it instead.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@22328 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/codecs/libcook/bitstream.h')
-rw-r--r--apps/codecs/libcook/bitstream.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/codecs/libcook/bitstream.h b/apps/codecs/libcook/bitstream.h
index b4c3136be3..c4b5496d00 100644
--- a/apps/codecs/libcook/bitstream.h
+++ b/apps/codecs/libcook/bitstream.h
@@ -26,7 +26,7 @@
26//#include <assert.h> 26//#include <assert.h>
27#include <string.h> 27#include <string.h>
28#include <stdio.h> 28#include <stdio.h>
29#include "bswap.h" 29#include "../lib/ffmpeg_bswap.h"
30 30
31/* The following 2 defines are taken from libavutil/intreadwrite.h */ 31/* The following 2 defines are taken from libavutil/intreadwrite.h */
32#define AV_RB32(x) ((((const uint8_t*)(x))[0] << 24) | \ 32#define AV_RB32(x) ((((const uint8_t*)(x))[0] << 24) | \