2002-03-03 18:47:29 +00:00
|
|
|
#ifndef __ST_HEADER_H
|
|
|
|
#define __ST_HEADER_H 1
|
|
|
|
|
2001-04-06 01:18:59 +00:00
|
|
|
// Stream headers:
|
|
|
|
|
2001-10-21 15:47:31 +00:00
|
|
|
#include "wine/mmreg.h"
|
|
|
|
#include "wine/avifmt.h"
|
|
|
|
#include "wine/vfw.h"
|
2001-04-06 01:18:59 +00:00
|
|
|
|
2002-04-13 19:14:34 +00:00
|
|
|
#include "../libmpcodecs/mp_image.h"
|
2002-01-16 12:24:36 +00:00
|
|
|
|
2001-04-06 01:18:59 +00:00
|
|
|
typedef struct {
|
|
|
|
demux_stream_t *ds;
|
2001-10-20 18:49:08 +00:00
|
|
|
struct codecs_st *codec;
|
2002-09-21 23:23:03 +00:00
|
|
|
unsigned int format;
|
2001-08-23 12:46:44 +00:00
|
|
|
int inited;
|
2001-07-21 01:17:00 +00:00
|
|
|
float timer; // value of old a_frame
|
2002-09-21 23:23:03 +00:00
|
|
|
// output format:
|
|
|
|
int sample_format;
|
2001-04-06 01:18:59 +00:00
|
|
|
int samplerate;
|
|
|
|
int samplesize;
|
|
|
|
int channels;
|
2001-05-10 03:39:54 +00:00
|
|
|
int o_bps; // == samplerate*samplesize*channels (uncompr. bytes/sec)
|
|
|
|
int i_bps; // == bitrate (compressed bytes/sec)
|
2001-04-06 16:31:18 +00:00
|
|
|
// in buffers:
|
2002-09-21 23:23:03 +00:00
|
|
|
int audio_in_minsize;
|
2001-04-06 01:18:59 +00:00
|
|
|
char* a_in_buffer;
|
|
|
|
int a_in_buffer_len;
|
|
|
|
int a_in_buffer_size;
|
2001-04-06 16:31:18 +00:00
|
|
|
// out buffers:
|
2002-09-21 23:23:03 +00:00
|
|
|
int audio_out_minsize;
|
2001-04-06 16:31:18 +00:00
|
|
|
char* a_buffer;
|
|
|
|
int a_buffer_len;
|
|
|
|
int a_buffer_size;
|
2002-09-21 23:23:03 +00:00
|
|
|
// win32-compatible codec parameters:
|
2001-04-06 01:18:59 +00:00
|
|
|
AVIStreamHeader audio;
|
2002-09-21 23:23:03 +00:00
|
|
|
WAVEFORMATEX* wf;
|
|
|
|
// codec-specific:
|
2001-12-21 16:17:24 +00:00
|
|
|
void* context; // codec-specific stuff (usually HANDLE or struct pointer)
|
2002-09-21 23:23:03 +00:00
|
|
|
unsigned char* codecdata; // extra header data passed from demuxer to codec
|
2002-03-24 02:25:41 +00:00
|
|
|
int codecdata_len;
|
2001-04-06 01:18:59 +00:00
|
|
|
} sh_audio_t;
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
demux_stream_t *ds;
|
2001-10-20 18:49:08 +00:00
|
|
|
struct codecs_st *codec;
|
2002-09-21 23:23:03 +00:00
|
|
|
unsigned int format;
|
2001-08-23 12:46:44 +00:00
|
|
|
int inited;
|
2002-09-21 23:23:03 +00:00
|
|
|
float timer; // value of old v_frame
|
|
|
|
// frame counters:
|
2001-07-28 20:33:51 +00:00
|
|
|
float num_frames; // number of frames played
|
2002-09-21 23:23:03 +00:00
|
|
|
int num_frames_decoded; // number of frames decoded
|
|
|
|
// output format: (set by demuxer)
|
|
|
|
float fps; // frames per second (set only if constant fps)
|
|
|
|
float frametime; // 1/fps
|
|
|
|
float aspect; // aspect ratio stored in the file (for prescaling)
|
|
|
|
int i_bps; // == bitrate (compressed bytes/sec)
|
|
|
|
int disp_w,disp_h; // display size (filled by fileformat parser)
|
|
|
|
// output driver/filters: (set by libmpcodecs core)
|
|
|
|
unsigned int outfmtidx;
|
|
|
|
void* video_out; // the video_out handle, used for this video stream
|
|
|
|
void* vfilter; // the video filter chain, used for this video stream
|
2002-05-01 17:30:23 +00:00
|
|
|
int vf_inited;
|
2002-09-21 23:23:03 +00:00
|
|
|
// win32-compatible codec parameters:
|
|
|
|
AVIStreamHeader video;
|
|
|
|
BITMAPINFOHEADER* bih;
|
|
|
|
// codec-specific:
|
|
|
|
void* context; // codec-specific stuff (usually HANDLE or struct pointer)
|
2001-04-06 01:18:59 +00:00
|
|
|
} sh_video_t;
|
|
|
|
|
2002-09-21 23:23:03 +00:00
|
|
|
// demuxer.c:
|
2001-07-07 18:46:15 +00:00
|
|
|
sh_audio_t* new_sh_audio(demuxer_t *demuxer,int id);
|
|
|
|
sh_video_t* new_sh_video(demuxer_t *demuxer,int id);
|
2002-03-15 15:53:11 +00:00
|
|
|
void free_sh_audio(sh_audio_t *sh);
|
|
|
|
void free_sh_video(sh_video_t *sh);
|
2001-04-15 03:40:37 +00:00
|
|
|
|
2002-09-21 23:23:03 +00:00
|
|
|
// video.c:
|
2001-10-30 20:36:20 +00:00
|
|
|
int video_read_properties(sh_video_t *sh_video);
|
|
|
|
int video_read_frame(sh_video_t* sh_video,float* frame_time_ptr,unsigned char** start,int force_fps);
|
2002-03-03 18:47:29 +00:00
|
|
|
|
|
|
|
#endif
|