comparison libmpdemux/demux_ogg.c @ 8375:22cbd7bcc6bf

Really (!) sync ov_struct_st between demux_ogg.c and ad_libvorbis.c
author rguyom
date Thu, 05 Dec 2002 21:04:26 +0000
parents 99ac11458d23
children a879b231b7e3
comparison
equal deleted inserted replaced
8374:99ac11458d23 8375:22cbd7bcc6bf
26 /// Vorbis decoder context : we need the vorbis_info for vorbis timestamping 26 /// Vorbis decoder context : we need the vorbis_info for vorbis timestamping
27 /// Shall we put this struct def in a common header ? 27 /// Shall we put this struct def in a common header ?
28 typedef struct ov_struct_st { 28 typedef struct ov_struct_st {
29 vorbis_info vi; /* struct that stores all the static vorbis bitstream 29 vorbis_info vi; /* struct that stores all the static vorbis bitstream
30 settings */ 30 settings */
31 vorbis_comment vc; /* struct that stores all the bitstream user comments */
31 vorbis_dsp_state vd; /* central working state for the packet->PCM decoder */ 32 vorbis_dsp_state vd; /* central working state for the packet->PCM decoder */
32 vorbis_block vb; /* local working space for packet->PCM decode */ 33 vorbis_block vb; /* local working space for packet->PCM decode */
33 float rg_scale; /* replaygain scale */ 34 float rg_scale; /* replaygain scale */
34 #ifdef TREMOR 35 #ifdef TREMOR
35 int rg_scale_int; 36 int rg_scale_int;