diff options
| author | Mohamed Tarek <mt@rockbox.org> | 2010-05-02 18:27:01 +0000 |
|---|---|---|
| committer | Mohamed Tarek <mt@rockbox.org> | 2010-05-02 18:27:01 +0000 |
| commit | 7aaae54afcda1f4ea5224d3d9d0ac3ffd69defaf (patch) | |
| tree | 8aa54989bf4104440070e926a4a70706a0202793 /apps/codecs/libwma/asf.h | |
| parent | 2ab15d959cc56bf6037616a359fd0ec7a9ecef60 (diff) | |
| download | rockbox-7aaae54afcda1f4ea5224d3d9d0ac3ffd69defaf.zip rockbox-7aaae54afcda1f4ea5224d3d9d0ac3ffd69defaf.tar.gz rockbox-7aaae54afcda1f4ea5224d3d9d0ac3ffd69defaf.tar.bz2 rockbox-7aaae54afcda1f4ea5224d3d9d0ac3ffd69defaf.tar.xz | |
- Modify metadata/asf.c to use libasf.
- Modify the files in libwma to use libasf.
- Remove apps/codecs/libwma/asf.h since it's not used now.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@25783 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/codecs/libwma/asf.h')
| -rw-r--r-- | apps/codecs/libwma/asf.h | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/apps/codecs/libwma/asf.h b/apps/codecs/libwma/asf.h deleted file mode 100644 index 550e44d..0000000 --- a/apps/codecs/libwma/asf.h +++ /dev/null @@ -1,24 +0,0 @@ -#ifndef _ASF_H -#define _ASF_H - -#include <inttypes.h> - -/* ASF codec IDs */ -#define ASF_CODEC_ID_WMAV1 0x160 -#define ASF_CODEC_ID_WMAV2 0x161 - -struct asf_waveformatex_s { - uint32_t packet_size; - int audiostream; - uint16_t codec_id; - uint16_t channels; - uint32_t rate; - uint32_t bitrate; - uint16_t blockalign; - uint16_t bitspersample; - uint16_t datalen; - uint8_t data[6]; -}; -typedef struct asf_waveformatex_s asf_waveformatex_t; - -#endif |