Changeset 1294:f8d7b9d770d8 in roaraudio


Ignore:
Timestamp:
03/16/09 03:24:17 (15 years ago)
Author:
phi
Branch:
default
Phase:
public
Message:

added container /codecs/

File:
1 edited

Legend:

Unmodified
Added
Removed
  • include/roaraudio/audio.h

    r1211 r1294  
    8585 |||||\-----> unsigned? (or other flags) 
    8686 ||||\------> META: text(0) or binary(1) 
    87  |||\-------> META(0) 
     87 |||\-------> META(0)/CONTAINER(1) 
    8888 ||\--------> (0) 
    8989 |\---------> second set(1) 
     
    9797      [...] 
    9898      11BB 0x4c -> Meta Binary: RoarAudio Like 
     99 
     100 Container 0x50: 
     101  76543210 
     102      0000 0x50 -> Null container: pass 
     103      0001 0x51 -> Gzip 
     104      0010 0x52 -> Bzip2 
     105      0011 0x53 -> OpenPGP bin 
     106      0100 0x54 -> OpenPGP asc 
     107      0101 0x55 -> TAR 
    99108 
    100109*/ 
     
    151160#define ROAR_CODEC_META_RALB_PDP (ROAR_CODEC_META_RALB | ROAR_CODEC_PDP) 
    152161 
     162// Container Codecs: 
     163/* 
     164 Container 0x50: 
     165  76543210 
     166      0000 0x50 -> Null container: pass 
     167      0001 0x51 -> Gzip 
     168      0010 0x52 -> Bzip2 
     169      0011 0x53 -> OpenPGP bin 
     170      0100 0x54 -> OpenPGP asc 
     171      0101 0x55 -> TAR 
     172*/ 
     173#define ROAR_CODEC_CONT_NULL    0x50 
     174#define ROAR_CODEC_CONT_BASE    ROAR_CODEC_CONT_NULL 
     175#define ROAR_CODEC_CONT_GZIP    0x51 
     176#define ROAR_CODEC_CONT_BZIP2   0x52 
     177#define ROAR_CODEC_CONT_OPGPBIN 0x53 
     178#define ROAR_CODEC_CONT_OPGPASC 0x54 
     179#define ROAR_CODEC_CONT_TAR     0x55 
     180 
    153181#if BYTE_ORDER == BIG_ENDIAN 
    154182 
Note: See TracChangeset for help on using the changeset viewer.