Mercurial > mplayer.hg
annotate libmpdemux/stheader.h @ 17997:7bb7f54b4cfa
increasing sync tag to 1.15 after update by Diego
author | gabrov |
---|---|
date | Thu, 30 Mar 2006 14:50:16 +0000 |
parents | cea08919336b |
children | caac2ca98168 |
rev | line source |
---|---|
4933 | 1 #ifndef __ST_HEADER_H |
2 #define __ST_HEADER_H 1 | |
3 | |
12341
0db4a3a5b01d
removed loader/ dependancy, imported some files from g2, also used patches from Dominik Mierzejewski
alex
parents:
8965
diff
changeset
|
4 #include "aviheader.h" |
0db4a3a5b01d
removed loader/ dependancy, imported some files from g2, also used patches from Dominik Mierzejewski
alex
parents:
8965
diff
changeset
|
5 #include "ms_hdr.h" |
7471 | 6 |
7 // Stream headers: | |
4196 | 8 |
291 | 9 typedef struct { |
10 demux_stream_t *ds; | |
7467 | 11 struct codecs_st *codec; |
303 | 12 unsigned int format; |
1656 | 13 int inited; |
8057 | 14 float delay; // relative (to sh_video->timer) time in audio stream |
17643 | 15 float stream_delay; // number of seconds stream should be delayed (according to dwStart or similar) |
291 | 16 // output format: |
7467 | 17 int sample_format; |
291 | 18 int samplerate; |
19 int samplesize; | |
20 int channels; | |
746 | 21 int o_bps; // == samplerate*samplesize*channels (uncompr. bytes/sec) |
22 int i_bps; // == bitrate (compressed bytes/sec) | |
296 | 23 // in buffers: |
7604
32efb806436e
aufio filter layer (libaf) integration to libmpcodecs, mplayer and mencoder
arpi
parents:
7471
diff
changeset
|
24 int audio_in_minsize; // max. compressed packet size (== min. in buffer size) |
291 | 25 char* a_in_buffer; |
26 int a_in_buffer_len; | |
27 int a_in_buffer_size; | |
7604
32efb806436e
aufio filter layer (libaf) integration to libmpcodecs, mplayer and mencoder
arpi
parents:
7471
diff
changeset
|
28 // decoder buffers: |
32efb806436e
aufio filter layer (libaf) integration to libmpcodecs, mplayer and mencoder
arpi
parents:
7471
diff
changeset
|
29 int audio_out_minsize; // max. uncompressed packet size (==min. out buffsize) |
296 | 30 char* a_buffer; |
31 int a_buffer_len; | |
32 int a_buffer_size; | |
7604
32efb806436e
aufio filter layer (libaf) integration to libmpcodecs, mplayer and mencoder
arpi
parents:
7471
diff
changeset
|
33 // output buffers: |
32efb806436e
aufio filter layer (libaf) integration to libmpcodecs, mplayer and mencoder
arpi
parents:
7471
diff
changeset
|
34 char* a_out_buffer; |
32efb806436e
aufio filter layer (libaf) integration to libmpcodecs, mplayer and mencoder
arpi
parents:
7471
diff
changeset
|
35 int a_out_buffer_len; |
32efb806436e
aufio filter layer (libaf) integration to libmpcodecs, mplayer and mencoder
arpi
parents:
7471
diff
changeset
|
36 int a_out_buffer_size; |
32efb806436e
aufio filter layer (libaf) integration to libmpcodecs, mplayer and mencoder
arpi
parents:
7471
diff
changeset
|
37 // void* audio_out; // the audio_out handle, used for this audio stream |
32efb806436e
aufio filter layer (libaf) integration to libmpcodecs, mplayer and mencoder
arpi
parents:
7471
diff
changeset
|
38 void* afilter; // the audio filter stream |
14819
601e2c8a2922
Remove file-global mpadec, add ad_driver member to sh_audio_t instead.
hzoli
parents:
12341
diff
changeset
|
39 struct ad_functions_s* ad_driver; |
8152 | 40 #ifdef DYNAMIC_PLUGINS |
41 void *dec_handle; | |
42 #endif | |
7467 | 43 // win32-compatible codec parameters: |
291 | 44 AVIStreamHeader audio; |
7467 | 45 WAVEFORMATEX* wf; |
46 // codec-specific: | |
3642
2cef9d562af0
void* context added - it should keep the codec-specific stuff (struct ptr or HANDLE)
arpi
parents:
2567
diff
changeset
|
47 void* context; // codec-specific stuff (usually HANDLE or struct pointer) |
7467 | 48 unsigned char* codecdata; // extra header data passed from demuxer to codec |
5301 | 49 int codecdata_len; |
291 | 50 } sh_audio_t; |
51 | |
52 typedef struct { | |
53 demux_stream_t *ds; | |
7467 | 54 struct codecs_st *codec; |
303 | 55 unsigned int format; |
1656 | 56 int inited; |
8057 | 57 float timer; // absolute time in video stream, since last start/seek |
17643 | 58 float stream_delay; // number of seconds stream should be delayed (according to dwStart or similar) |
7467 | 59 // frame counters: |
60 float num_frames; // number of frames played | |
61 int num_frames_decoded; // number of frames decoded | |
8965 | 62 // timing (mostly for mpeg): |
63 float pts; // predicted/interpolated PTS of the current frame | |
64 float i_pts; // PTS for the _next_ I/P frame | |
7467 | 65 // output format: (set by demuxer) |
66 float fps; // frames per second (set only if constant fps) | |
67 float frametime; // 1/fps | |
68 float aspect; // aspect ratio stored in the file (for prescaling) | |
69 int i_bps; // == bitrate (compressed bytes/sec) | |
70 int disp_w,disp_h; // display size (filled by fileformat parser) | |
71 // output driver/filters: (set by libmpcodecs core) | |
303 | 72 unsigned int outfmtidx; |
7467 | 73 void* video_out; // the video_out handle, used for this video stream |
74 void* vfilter; // the video filter chain, used for this video stream | |
75 int vf_inited; | |
8152 | 76 #ifdef DYNAMIC_PLUGINS |
77 void *dec_handle; | |
78 #endif | |
7467 | 79 // win32-compatible codec parameters: |
291 | 80 AVIStreamHeader video; |
7467 | 81 BITMAPINFOHEADER* bih; |
8158 | 82 void* ImageDesc; // for quicktime codecs |
7467 | 83 // codec-specific: |
84 void* context; // codec-specific stuff (usually HANDLE or struct pointer) | |
291 | 85 } sh_video_t; |
86 | |
7467 | 87 // demuxer.c: |
1289 | 88 sh_audio_t* new_sh_audio(demuxer_t *demuxer,int id); |
89 sh_video_t* new_sh_video(demuxer_t *demuxer,int id); | |
5084 | 90 void free_sh_audio(sh_audio_t *sh); |
91 void free_sh_video(sh_video_t *sh); | |
426 | 92 |
7467 | 93 // video.c: |
2567 | 94 int video_read_properties(sh_video_t *sh_video); |
95 int video_read_frame(sh_video_t* sh_video,float* frame_time_ptr,unsigned char** start,int force_fps); | |
4933 | 96 |
97 #endif |