comparison stheader.h @ 587:8511095c5283

stage#1 completed: c files no more included from mplayer.c
author arpi_esp
date Mon, 23 Apr 2001 03:42:17 +0000
parents 5251b0c57e39
children cd1f0d4de0b8
comparison
equal deleted inserted replaced
586:e1b8c0b3ec35 587:8511095c5283
31 WAVEFORMATEX o_wf; // out format 31 WAVEFORMATEX o_wf; // out format
32 HACMSTREAM srcstream; // handle 32 HACMSTREAM srcstream; // handle
33 int audio_in_minsize; 33 int audio_in_minsize;
34 int audio_out_minsize; 34 int audio_out_minsize;
35 // other codecs: 35 // other codecs:
36 ac3_frame_t *ac3_frame; 36 // ac3_frame_t *ac3_frame;
37 void* ac3_frame;
37 int pcm_bswap; 38 int pcm_bswap;
38 } sh_audio_t; 39 } sh_audio_t;
39 40
40 typedef struct { 41 typedef struct {
41 demux_stream_t *ds; 42 demux_stream_t *ds;
55 BITMAPINFOHEADER *bih; // in format 56 BITMAPINFOHEADER *bih; // in format
56 BITMAPINFOHEADER o_bih; // out format 57 BITMAPINFOHEADER o_bih; // out format
57 HIC hic; // handle 58 HIC hic; // handle
58 } sh_video_t; 59 } sh_video_t;
59 60
61 sh_audio_t* new_sh_audio(int id);
62 sh_video_t* new_sh_video(int id);
60 63