summaryrefslogtreecommitdiffstats
path: root/libmpdemux/stheader.h
diff options
context:
space:
mode:
authorarpi <arpi@b3059339-0415-0410-9bf9-f77b7e298cf2>2001-10-21 16:31:19 +0000
committerarpi <arpi@b3059339-0415-0410-9bf9-f77b7e298cf2>2001-10-21 16:31:19 +0000
commite6d45e39c9aa45c6da2143dd142222ef3ec88a65 (patch)
treef71636f6d10e60364bc1cfc8fb9942b4b6d0cfda /libmpdemux/stheader.h
parenta00d15679d3c1de94a0e0d03787ce6dd3adc63a2 (diff)
downloadmpv-e6d45e39c9aa45c6da2143dd142222ef3ec88a65.tar.bz2
mpv-e6d45e39c9aa45c6da2143dd142222ef3ec88a65.tar.xz
oggvorbis stuff moved out from stheader.h
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@2342 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libmpdemux/stheader.h')
-rw-r--r--libmpdemux/stheader.h20
1 files changed, 1 insertions, 19 deletions
diff --git a/libmpdemux/stheader.h b/libmpdemux/stheader.h
index cb8907bdae..0a5ad63c4f 100644
--- a/libmpdemux/stheader.h
+++ b/libmpdemux/stheader.h
@@ -4,24 +4,6 @@
#include "wine/avifmt.h"
#include "wine/vfw.h"
-#ifdef HAVE_OGGVORBIS
-#include <math.h>
-#include <vorbis/codec.h>
-typedef struct {
- ogg_sync_state oy; /* sync and verify incoming physical bitstream */
- ogg_stream_state os; /* take physical pages, weld into a logical
- stream of packets */
- ogg_page og; /* one Ogg bitstream page. Vorbis packets are inside */
- ogg_packet op; /* one raw packet of data for decode */
-
- 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 */
-} ov_struct_t;
-#endif
-
typedef struct {
demux_stream_t *ds;
unsigned int format;
@@ -56,7 +38,7 @@ typedef struct {
void* ac3_frame;
int pcm_bswap;
#ifdef HAVE_OGGVORBIS
- ov_struct_t *ov; // should be assigned on init
+ struct ov_struct_st *ov; // should be assigned on init
#endif
} sh_audio_t;