Changeset 2921:d2fd1f7cdfa6 in roaraudio for include/libroardsp


Ignore:
Timestamp:
10/16/09 17:47:00 (15 years ago)
Author:
phi
Branch:
default
Phase:
public
Message:

added roar_xcoder_proc_header(), roar_bixcoder_read_header() and roar_bixcoder_write_header()

File:
1 edited

Legend:

Unmodified
Added
Removed
  • include/libroardsp/transcode.h

    r2179 r2921  
    6060 int (*encode)(struct roar_xcoder * state, void * buf, size_t len); 
    6161 int (*decode)(struct roar_xcoder * state, void * buf, size_t len); 
     62 int (*proc_header)(struct roar_xcoder * state); 
    6263}; 
    6364 
     
    9091int roar_xcoder_packet_size(struct roar_xcoder * state, int samples); 
    9192int roar_xcoder_close      (struct roar_xcoder * state); 
     93int roar_xcoder_proc_header(struct roar_xcoder * state); 
    9294int roar_xcoder_proc_packet(struct roar_xcoder * state, void * buf, size_t len); 
    9395int roar_xcoder_proc       (struct roar_xcoder * state, void * buf, size_t len); 
     
    9698int roar_bixcoder_packet_size (struct roar_bixcoder * state, int samples); 
    9799int roar_bixcoder_close       (struct roar_bixcoder * state); 
     100int roar_bixcoder_read_header (struct roar_bixcoder * state); 
    98101int roar_bixcoder_read_packet (struct roar_bixcoder * state, void * buf, size_t len); 
    99102int roar_bixcoder_read        (struct roar_bixcoder * state, void * buf, size_t len); 
     103int roar_bixcoder_write_header(struct roar_bixcoder * state); 
    100104int roar_bixcoder_write_packet(struct roar_bixcoder * state, void * buf, size_t len); 
    101105int roar_bixcoder_write       (struct roar_bixcoder * state, void * buf, size_t len); 
Note: See TracChangeset for help on using the changeset viewer.