Ignore:
Timestamp:
08/19/08 01:13:03 (16 years ago)
Author:
phi
Branch:
default
Phase:
public
Message:

adding a lot thingss in preperation to encode vorbis :)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • roard/include/codecfilter_vorbis.h

    r382 r569  
    1212#include <math.h> 
    1313 
     14#ifdef ROAR_HAVE_LIBVORBISENC 
     15#include <vorbis/vorbisenc.h> 
     16#endif 
     17 
    1418struct codecfilter_vorbis_inst { 
    1519 int current_section; 
     
    2024 OggVorbis_File vf; 
    2125 int got_it_running; 
     26#ifdef ROAR_HAVE_LIBVORBISENC 
     27 int encoding; 
     28 struct { 
     29  float v_base_quality; 
     30  ogg_stream_state os; 
     31  ogg_page         og; 
     32  ogg_packet       op; 
     33 
     34  vorbis_dsp_state vd; 
     35  vorbis_block     vb; 
     36  vorbis_info      vi; 
     37  vorbis_comment   vc; 
     38 } encoder; 
     39#endif 
    2240}; 
    2341 
Note: See TracChangeset for help on using the changeset viewer.