diff options
author | reimar <reimar@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2006-12-07 12:02:01 +0000 |
---|---|---|
committer | reimar <reimar@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2006-12-07 12:02:01 +0000 |
commit | 6fb4b1b30a8af0584f37342e1c15865d441c0336 (patch) | |
tree | 3f5612f1dfac5e9ff427d632b4e3aeb53b49bfce /libmpdemux | |
parent | 18004d2d98875ceb46484d3dd39ba51342d8bd0e (diff) | |
download | mpv-6fb4b1b30a8af0584f37342e1c15865d441c0336.tar.bz2 mpv-6fb4b1b30a8af0584f37342e1c15865d441c0336.tar.xz |
Remove unused ov_struct_t
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21524 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libmpdemux')
-rw-r--r-- | libmpdemux/demux_ogg.c | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/libmpdemux/demux_ogg.c b/libmpdemux/demux_ogg.c index 6bb5f8ccaa..e3f8c562c8 100644 --- a/libmpdemux/demux_ogg.c +++ b/libmpdemux/demux_ogg.c @@ -33,20 +33,6 @@ extern int _ilog (unsigned int); /* defined in many places in theora/lib/ */ #define BLOCK_SIZE 4096 -/// Vorbis decoder context : we need the vorbis_info for vorbis timestamping -/// Shall we put this struct def in a common header ? -typedef struct ov_struct_st { - vorbis_info vi; /* struct that stores all the static vorbis bitstream - settings */ - vorbis_comment vc; /* struct that stores all the bitstream user comments */ - vorbis_dsp_state vd; /* central working state for the packet->PCM decoder */ - vorbis_block vb; /* local working space for packet->PCM decode */ - float rg_scale; /* replaygain scale */ -#ifdef TREMOR - int rg_scale_int; -#endif -} ov_struct_t; - /* Theora decoder context : we won't be able to interpret granule positions * without using theora_granule_time with the theora_state of the stream. * This is duplicated in `vd_theora.c'; put this in a common header? |