Ignore:
Timestamp:
07/21/08 01:02:24 (16 years ago)
Author:
phi
Branch:
default
Phase:
public
Message:

playing around with cf_vorbis*

File:
1 edited

Legend:

Unmodified
Added
Removed
  • roard/include/codecfilter_vorbis.h

    r204 r205  
    55 
    66#include <roaraudio.h> 
     7#include <vorbis/codec.h> 
     8#include <vorbis/vorbisfile.h> 
     9 
     10struct codecfilter_vorbis_inst { 
     11 int current_section; 
     12 int last_section; 
     13 int opened; 
     14 FILE * in; 
     15 struct roar_stream_server * stream; 
     16 OggVorbis_File vf; 
     17}; 
     18 
     19int cf_vorbis_open(CODECFILTER_USERDATA_T * inst, int codec, 
     20                                            struct roar_stream_server * info, 
     21                                            struct roar_codecfilter   * filter); 
     22 
     23int cf_vorbis_close(CODECFILTER_USERDATA_T   inst); 
     24 
     25int cf_vorbis_read(CODECFILTER_USERDATA_T   inst, char * buf, int len); 
    726 
    827#endif 
Note: See TracChangeset for help on using the changeset viewer.