Mercurial > mplayer.hg
annotate libmpdemux/stheader.h @ 18470:0ea3c732d72d
New karaoke af
author | reynaldo |
---|---|
date | Sat, 13 May 2006 08:46:31 +0000 |
parents | 87161f96fa66 |
children | 9e2b300db17b |
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; |
18309
87161f96fa66
Change common pts variables from floats to doubles. Individual demuxers
uau
parents:
18242
diff
changeset
|
14 double 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; |
18242
caac2ca98168
4 - Implement a better way to calculate current audio pts and use it for
rtognimp
parents:
17643
diff
changeset
|
50 double pts; // last known pts value in output from decoder |
caac2ca98168
4 - Implement a better way to calculate current audio pts and use it for
rtognimp
parents:
17643
diff
changeset
|
51 int pts_bytes; // bytes output by decoder after last known pts |
291 | 52 } sh_audio_t; |
53 | |
54 typedef struct { | |
55 demux_stream_t *ds; | |
7467 | 56 struct codecs_st *codec; |
303 | 57 unsigned int format; |
1656 | 58 int inited; |
8057 | 59 float timer; // absolute time in video stream, since last start/seek |
17643 | 60 float stream_delay; // number of seconds stream should be delayed (according to dwStart or similar) |
7467 | 61 // frame counters: |
62 float num_frames; // number of frames played | |
63 int num_frames_decoded; // number of frames decoded | |
8965 | 64 // timing (mostly for mpeg): |
18309
87161f96fa66
Change common pts variables from floats to doubles. Individual demuxers
uau
parents:
18242
diff
changeset
|
65 double pts; // predicted/interpolated PTS of the current frame |
87161f96fa66
Change common pts variables from floats to doubles. Individual demuxers
uau
parents:
18242
diff
changeset
|
66 double i_pts; // PTS for the _next_ I/P frame |
7467 | 67 // output format: (set by demuxer) |
68 float fps; // frames per second (set only if constant fps) | |
69 float frametime; // 1/fps | |
70 float aspect; // aspect ratio stored in the file (for prescaling) | |
71 int i_bps; // == bitrate (compressed bytes/sec) | |
72 int disp_w,disp_h; // display size (filled by fileformat parser) | |
73 // output driver/filters: (set by libmpcodecs core) | |
303 | 74 unsigned int outfmtidx; |
7467 | 75 void* video_out; // the video_out handle, used for this video stream |
76 void* vfilter; // the video filter chain, used for this video stream | |
77 int vf_inited; | |
8152 | 78 #ifdef DYNAMIC_PLUGINS |
79 void *dec_handle; | |
80 #endif | |
7467 | 81 // win32-compatible codec parameters: |
291 | 82 AVIStreamHeader video; |
7467 | 83 BITMAPINFOHEADER* bih; |
8158 | 84 void* ImageDesc; // for quicktime codecs |
7467 | 85 // codec-specific: |
86 void* context; // codec-specific stuff (usually HANDLE or struct pointer) | |
291 | 87 } sh_video_t; |
88 | |
7467 | 89 // demuxer.c: |
1289 | 90 sh_audio_t* new_sh_audio(demuxer_t *demuxer,int id); |
91 sh_video_t* new_sh_video(demuxer_t *demuxer,int id); | |
5084 | 92 void free_sh_audio(sh_audio_t *sh); |
93 void free_sh_video(sh_video_t *sh); | |
426 | 94 |
7467 | 95 // video.c: |
2567 | 96 int video_read_properties(sh_video_t *sh_video); |
97 int video_read_frame(sh_video_t* sh_video,float* frame_time_ptr,unsigned char** start,int force_fps); | |
4933 | 98 |
99 #endif |