Mercurial > mplayer.hg
annotate libmpdemux/stheader.h @ 21230:ec4092ce08fe
Remove superfluous comment.
author | diego |
---|---|
date | Sat, 25 Nov 2006 19:15:23 +0000 |
parents | 7f3cccd16b26 |
children | b6aa3eedf49b |
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 { |
19540 | 10 int aid; |
291 | 11 demux_stream_t *ds; |
7467 | 12 struct codecs_st *codec; |
303 | 13 unsigned int format; |
1656 | 14 int inited; |
18309
87161f96fa66
Change common pts variables from floats to doubles. Individual demuxers
uau
parents:
18242
diff
changeset
|
15 double delay; // relative (to sh_video->timer) time in audio stream |
17643 | 16 float stream_delay; // number of seconds stream should be delayed (according to dwStart or similar) |
291 | 17 // output format: |
7467 | 18 int sample_format; |
291 | 19 int samplerate; |
20 int samplesize; | |
21 int channels; | |
746 | 22 int o_bps; // == samplerate*samplesize*channels (uncompr. bytes/sec) |
23 int i_bps; // == bitrate (compressed bytes/sec) | |
296 | 24 // in buffers: |
7604
32efb806436e
aufio filter layer (libaf) integration to libmpcodecs, mplayer and mencoder
arpi
parents:
7471
diff
changeset
|
25 int audio_in_minsize; // max. compressed packet size (== min. in buffer size) |
291 | 26 char* a_in_buffer; |
27 int a_in_buffer_len; | |
28 int a_in_buffer_size; | |
7604
32efb806436e
aufio filter layer (libaf) integration to libmpcodecs, mplayer and mencoder
arpi
parents:
7471
diff
changeset
|
29 // decoder buffers: |
32efb806436e
aufio filter layer (libaf) integration to libmpcodecs, mplayer and mencoder
arpi
parents:
7471
diff
changeset
|
30 int audio_out_minsize; // max. uncompressed packet size (==min. out buffsize) |
296 | 31 char* a_buffer; |
32 int a_buffer_len; | |
33 int a_buffer_size; | |
7604
32efb806436e
aufio filter layer (libaf) integration to libmpcodecs, mplayer and mencoder
arpi
parents:
7471
diff
changeset
|
34 // output buffers: |
32efb806436e
aufio filter layer (libaf) integration to libmpcodecs, mplayer and mencoder
arpi
parents:
7471
diff
changeset
|
35 char* a_out_buffer; |
32efb806436e
aufio filter layer (libaf) integration to libmpcodecs, mplayer and mencoder
arpi
parents:
7471
diff
changeset
|
36 int a_out_buffer_len; |
32efb806436e
aufio filter layer (libaf) integration to libmpcodecs, mplayer and mencoder
arpi
parents:
7471
diff
changeset
|
37 int a_out_buffer_size; |
32efb806436e
aufio filter layer (libaf) integration to libmpcodecs, mplayer and mencoder
arpi
parents:
7471
diff
changeset
|
38 // 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
|
39 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
|
40 struct ad_functions_s* ad_driver; |
8152 | 41 #ifdef DYNAMIC_PLUGINS |
42 void *dec_handle; | |
43 #endif | |
7467 | 44 // win32-compatible codec parameters: |
291 | 45 AVIStreamHeader audio; |
7467 | 46 WAVEFORMATEX* wf; |
47 // codec-specific: | |
3642
2cef9d562af0
void* context added - it should keep the codec-specific stuff (struct ptr or HANDLE)
arpi
parents:
2567
diff
changeset
|
48 void* context; // codec-specific stuff (usually HANDLE or struct pointer) |
7467 | 49 unsigned char* codecdata; // extra header data passed from demuxer to codec |
5301 | 50 int codecdata_len; |
18242
caac2ca98168
4 - Implement a better way to calculate current audio pts and use it for
rtognimp
parents:
17643
diff
changeset
|
51 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
|
52 int pts_bytes; // bytes output by decoder after last known pts |
291 | 53 } sh_audio_t; |
54 | |
55 typedef struct { | |
19540 | 56 int vid; |
291 | 57 demux_stream_t *ds; |
7467 | 58 struct codecs_st *codec; |
303 | 59 unsigned int format; |
1656 | 60 int inited; |
8057 | 61 float timer; // absolute time in video stream, since last start/seek |
17643 | 62 float stream_delay; // number of seconds stream should be delayed (according to dwStart or similar) |
7467 | 63 // frame counters: |
64 float num_frames; // number of frames played | |
65 int num_frames_decoded; // number of frames decoded | |
8965 | 66 // timing (mostly for mpeg): |
18309
87161f96fa66
Change common pts variables from floats to doubles. Individual demuxers
uau
parents:
18242
diff
changeset
|
67 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
|
68 double i_pts; // PTS for the _next_ I/P frame |
21077 | 69 float next_frame_time; |
70 double last_pts; | |
18917
d9a75b26da6c
Add a new video pts tracking mode, enabled by option -correct-pts.
uau
parents:
18708
diff
changeset
|
71 double buffered_pts[20]; |
d9a75b26da6c
Add a new video pts tracking mode, enabled by option -correct-pts.
uau
parents:
18708
diff
changeset
|
72 int num_buffered_pts; |
7467 | 73 // output format: (set by demuxer) |
74 float fps; // frames per second (set only if constant fps) | |
75 float frametime; // 1/fps | |
76 float aspect; // aspect ratio stored in the file (for prescaling) | |
77 int i_bps; // == bitrate (compressed bytes/sec) | |
78 int disp_w,disp_h; // display size (filled by fileformat parser) | |
79 // output driver/filters: (set by libmpcodecs core) | |
303 | 80 unsigned int outfmtidx; |
7467 | 81 void* video_out; // the video_out handle, used for this video stream |
82 void* vfilter; // the video filter chain, used for this video stream | |
83 int vf_inited; | |
8152 | 84 #ifdef DYNAMIC_PLUGINS |
85 void *dec_handle; | |
86 #endif | |
7467 | 87 // win32-compatible codec parameters: |
291 | 88 AVIStreamHeader video; |
7467 | 89 BITMAPINFOHEADER* bih; |
8158 | 90 void* ImageDesc; // for quicktime codecs |
7467 | 91 // codec-specific: |
92 void* context; // codec-specific stuff (usually HANDLE or struct pointer) | |
291 | 93 } sh_video_t; |
94 | |
20876
0587328d9392
Move sh_sub_t to stheader.h, where all the other sh structs are defined
reimar
parents:
20873
diff
changeset
|
95 typedef struct { |
0587328d9392
Move sh_sub_t to stheader.h, where all the other sh structs are defined
reimar
parents:
20873
diff
changeset
|
96 int sid; |
0587328d9392
Move sh_sub_t to stheader.h, where all the other sh structs are defined
reimar
parents:
20873
diff
changeset
|
97 char type; // t = text, v = VobSub, a = SSA/ASS |
0587328d9392
Move sh_sub_t to stheader.h, where all the other sh structs are defined
reimar
parents:
20873
diff
changeset
|
98 int has_palette; // If we have a valid palette |
0587328d9392
Move sh_sub_t to stheader.h, where all the other sh structs are defined
reimar
parents:
20873
diff
changeset
|
99 unsigned int palette[16]; // for VobSubs |
0587328d9392
Move sh_sub_t to stheader.h, where all the other sh structs are defined
reimar
parents:
20873
diff
changeset
|
100 int width, height; // for VobSubs |
0587328d9392
Move sh_sub_t to stheader.h, where all the other sh structs are defined
reimar
parents:
20873
diff
changeset
|
101 int custom_colors; |
0587328d9392
Move sh_sub_t to stheader.h, where all the other sh structs are defined
reimar
parents:
20873
diff
changeset
|
102 unsigned int colors[4]; |
0587328d9392
Move sh_sub_t to stheader.h, where all the other sh structs are defined
reimar
parents:
20873
diff
changeset
|
103 int forced_subs_only; |
0587328d9392
Move sh_sub_t to stheader.h, where all the other sh structs are defined
reimar
parents:
20873
diff
changeset
|
104 #ifdef USE_ASS |
0587328d9392
Move sh_sub_t to stheader.h, where all the other sh structs are defined
reimar
parents:
20873
diff
changeset
|
105 ass_track_t* ass_track; // for SSA/ASS streams (type == 'a') |
0587328d9392
Move sh_sub_t to stheader.h, where all the other sh structs are defined
reimar
parents:
20873
diff
changeset
|
106 #endif |
0587328d9392
Move sh_sub_t to stheader.h, where all the other sh structs are defined
reimar
parents:
20873
diff
changeset
|
107 } sh_sub_t; |
0587328d9392
Move sh_sub_t to stheader.h, where all the other sh structs are defined
reimar
parents:
20873
diff
changeset
|
108 |
7467 | 109 // demuxer.c: |
19540 | 110 #define new_sh_audio(d, i) new_sh_audio_aid(d, i, i) |
111 sh_audio_t* new_sh_audio_aid(demuxer_t *demuxer,int id,int aid); | |
112 #define new_sh_video(d, i) new_sh_video_vid(d, i, i) | |
113 sh_video_t* new_sh_video_vid(demuxer_t *demuxer,int id,int vid); | |
20873 | 114 #define new_sh_sub(d, i) new_sh_sub_sid(d, i, i) |
115 sh_sub_t *new_sh_sub_sid(demuxer_t *demuxer, int id, int sid); | |
18708
9e2b300db17b
Change free_sh_audio() to take demuxer and stream id as parameters
uau
parents:
18309
diff
changeset
|
116 void free_sh_audio(demuxer_t *demuxer, int id); |
5084 | 117 void free_sh_video(sh_video_t *sh); |
426 | 118 |
7467 | 119 // video.c: |
2567 | 120 int video_read_properties(sh_video_t *sh_video); |
121 int video_read_frame(sh_video_t* sh_video,float* frame_time_ptr,unsigned char** start,int force_fps); | |
4933 | 122 |
123 #endif |