Mercurial > mplayer.hg
annotate libmpdemux/stheader.h @ 29827:d6d8b9d5a4fb
Add a default to switch(image_format), suppresses a warning after a future patch.
author | cehoyos |
---|---|
date | Tue, 10 Nov 2009 09:52:43 +0000 |
parents | d643e4643313 |
children | f72ea7a67421 |
rev | line source |
---|---|
29238
d643e4643313
Add standard license header to all files in libmpdemux.
diego
parents:
27807
diff
changeset
|
1 /* |
d643e4643313
Add standard license header to all files in libmpdemux.
diego
parents:
27807
diff
changeset
|
2 * This file is part of MPlayer. |
d643e4643313
Add standard license header to all files in libmpdemux.
diego
parents:
27807
diff
changeset
|
3 * |
d643e4643313
Add standard license header to all files in libmpdemux.
diego
parents:
27807
diff
changeset
|
4 * MPlayer is free software; you can redistribute it and/or modify |
d643e4643313
Add standard license header to all files in libmpdemux.
diego
parents:
27807
diff
changeset
|
5 * it under the terms of the GNU General Public License as published by |
d643e4643313
Add standard license header to all files in libmpdemux.
diego
parents:
27807
diff
changeset
|
6 * the Free Software Foundation; either version 2 of the License, or |
d643e4643313
Add standard license header to all files in libmpdemux.
diego
parents:
27807
diff
changeset
|
7 * (at your option) any later version. |
d643e4643313
Add standard license header to all files in libmpdemux.
diego
parents:
27807
diff
changeset
|
8 * |
d643e4643313
Add standard license header to all files in libmpdemux.
diego
parents:
27807
diff
changeset
|
9 * MPlayer is distributed in the hope that it will be useful, |
d643e4643313
Add standard license header to all files in libmpdemux.
diego
parents:
27807
diff
changeset
|
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
d643e4643313
Add standard license header to all files in libmpdemux.
diego
parents:
27807
diff
changeset
|
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
d643e4643313
Add standard license header to all files in libmpdemux.
diego
parents:
27807
diff
changeset
|
12 * GNU General Public License for more details. |
d643e4643313
Add standard license header to all files in libmpdemux.
diego
parents:
27807
diff
changeset
|
13 * |
d643e4643313
Add standard license header to all files in libmpdemux.
diego
parents:
27807
diff
changeset
|
14 * You should have received a copy of the GNU General Public License along |
d643e4643313
Add standard license header to all files in libmpdemux.
diego
parents:
27807
diff
changeset
|
15 * with MPlayer; if not, write to the Free Software Foundation, Inc., |
d643e4643313
Add standard license header to all files in libmpdemux.
diego
parents:
27807
diff
changeset
|
16 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. |
d643e4643313
Add standard license header to all files in libmpdemux.
diego
parents:
27807
diff
changeset
|
17 */ |
d643e4643313
Add standard license header to all files in libmpdemux.
diego
parents:
27807
diff
changeset
|
18 |
26029 | 19 #ifndef MPLAYER_STHEADER_H |
20 #define MPLAYER_STHEADER_H | |
4933 | 21 |
26143
268ecf0e1ba4
Add missing header #includes to fix 'make checkheaders'.
diego
parents:
26082
diff
changeset
|
22 #include "demuxer.h" |
12341
0db4a3a5b01d
removed loader/ dependancy, imported some files from g2, also used patches from Dominik Mierzejewski
alex
parents:
8965
diff
changeset
|
23 #include "aviheader.h" |
0db4a3a5b01d
removed loader/ dependancy, imported some files from g2, also used patches from Dominik Mierzejewski
alex
parents:
8965
diff
changeset
|
24 #include "ms_hdr.h" |
7471 | 25 |
26 // Stream headers: | |
4196 | 27 |
291 | 28 typedef struct { |
19540 | 29 int aid; |
291 | 30 demux_stream_t *ds; |
7467 | 31 struct codecs_st *codec; |
303 | 32 unsigned int format; |
25962 | 33 int initialized; |
17643 | 34 float stream_delay; // number of seconds stream should be delayed (according to dwStart or similar) |
291 | 35 // output format: |
7467 | 36 int sample_format; |
291 | 37 int samplerate; |
38 int samplesize; | |
39 int channels; | |
746 | 40 int o_bps; // == samplerate*samplesize*channels (uncompr. bytes/sec) |
41 int i_bps; // == bitrate (compressed bytes/sec) | |
296 | 42 // in buffers: |
7604
32efb806436e
aufio filter layer (libaf) integration to libmpcodecs, mplayer and mencoder
arpi
parents:
7471
diff
changeset
|
43 int audio_in_minsize; // max. compressed packet size (== min. in buffer size) |
291 | 44 char* a_in_buffer; |
45 int a_in_buffer_len; | |
46 int a_in_buffer_size; | |
7604
32efb806436e
aufio filter layer (libaf) integration to libmpcodecs, mplayer and mencoder
arpi
parents:
7471
diff
changeset
|
47 // decoder buffers: |
32efb806436e
aufio filter layer (libaf) integration to libmpcodecs, mplayer and mencoder
arpi
parents:
7471
diff
changeset
|
48 int audio_out_minsize; // max. uncompressed packet size (==min. out buffsize) |
296 | 49 char* a_buffer; |
50 int a_buffer_len; | |
51 int a_buffer_size; | |
7604
32efb806436e
aufio filter layer (libaf) integration to libmpcodecs, mplayer and mencoder
arpi
parents:
7471
diff
changeset
|
52 // output buffers: |
32efb806436e
aufio filter layer (libaf) integration to libmpcodecs, mplayer and mencoder
arpi
parents:
7471
diff
changeset
|
53 char* a_out_buffer; |
32efb806436e
aufio filter layer (libaf) integration to libmpcodecs, mplayer and mencoder
arpi
parents:
7471
diff
changeset
|
54 int a_out_buffer_len; |
32efb806436e
aufio filter layer (libaf) integration to libmpcodecs, mplayer and mencoder
arpi
parents:
7471
diff
changeset
|
55 int a_out_buffer_size; |
32efb806436e
aufio filter layer (libaf) integration to libmpcodecs, mplayer and mencoder
arpi
parents:
7471
diff
changeset
|
56 // void* audio_out; // the audio_out handle, used for this audio stream |
24891 | 57 struct af_stream_s *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
|
58 struct ad_functions_s* ad_driver; |
27397
d47744b95b78
Give a CONFIG_ prefix to preprocessor directives that lacked one and
diego
parents:
27341
diff
changeset
|
59 #ifdef CONFIG_DYNAMIC_PLUGINS |
8152 | 60 void *dec_handle; |
61 #endif | |
7467 | 62 // win32-compatible codec parameters: |
291 | 63 AVIStreamHeader audio; |
7467 | 64 WAVEFORMATEX* wf; |
65 // codec-specific: | |
3642
2cef9d562af0
void* context added - it should keep the codec-specific stuff (struct ptr or HANDLE)
arpi
parents:
2567
diff
changeset
|
66 void* context; // codec-specific stuff (usually HANDLE or struct pointer) |
7467 | 67 unsigned char* codecdata; // extra header data passed from demuxer to codec |
5301 | 68 int codecdata_len; |
18242
caac2ca98168
4 - Implement a better way to calculate current audio pts and use it for
rtognimp
parents:
17643
diff
changeset
|
69 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
|
70 int pts_bytes; // bytes output by decoder after last known pts |
26082 | 71 char* lang; // track language |
26269
65ad20416dd7
Support 'default' attribute for audio and subtitle tracks.
eugeni
parents:
26143
diff
changeset
|
72 int default_track; |
291 | 73 } sh_audio_t; |
74 | |
75 typedef struct { | |
19540 | 76 int vid; |
291 | 77 demux_stream_t *ds; |
7467 | 78 struct codecs_st *codec; |
303 | 79 unsigned int format; |
25962 | 80 int initialized; |
8057 | 81 float timer; // absolute time in video stream, since last start/seek |
17643 | 82 float stream_delay; // number of seconds stream should be delayed (according to dwStart or similar) |
7467 | 83 // frame counters: |
84 float num_frames; // number of frames played | |
85 int num_frames_decoded; // number of frames decoded | |
8965 | 86 // timing (mostly for mpeg): |
18309
87161f96fa66
Change common pts variables from floats to doubles. Individual demuxers
uau
parents:
18242
diff
changeset
|
87 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
|
88 double i_pts; // PTS for the _next_ I/P frame |
21077 | 89 float next_frame_time; |
90 double last_pts; | |
18917
d9a75b26da6c
Add a new video pts tracking mode, enabled by option -correct-pts.
uau
parents:
18708
diff
changeset
|
91 double buffered_pts[20]; |
d9a75b26da6c
Add a new video pts tracking mode, enabled by option -correct-pts.
uau
parents:
18708
diff
changeset
|
92 int num_buffered_pts; |
7467 | 93 // output format: (set by demuxer) |
94 float fps; // frames per second (set only if constant fps) | |
95 float frametime; // 1/fps | |
96 float aspect; // aspect ratio stored in the file (for prescaling) | |
24299
725638f690bb
added .stream_aspect to st_video_t: if non-zero and if not specified otherwise
nicodvb
parents:
23689
diff
changeset
|
97 float stream_aspect; // aspect ratio stored in the media headers (e.g. in DVD IFO files) |
7467 | 98 int i_bps; // == bitrate (compressed bytes/sec) |
99 int disp_w,disp_h; // display size (filled by fileformat parser) | |
100 // output driver/filters: (set by libmpcodecs core) | |
303 | 101 unsigned int outfmtidx; |
24891 | 102 struct vf_instance_s *vfilter; // the video filter chain, used for this video stream |
25962 | 103 int vf_initialized; |
27397
d47744b95b78
Give a CONFIG_ prefix to preprocessor directives that lacked one and
diego
parents:
27341
diff
changeset
|
104 #ifdef CONFIG_DYNAMIC_PLUGINS |
8152 | 105 void *dec_handle; |
106 #endif | |
7467 | 107 // win32-compatible codec parameters: |
291 | 108 AVIStreamHeader video; |
7467 | 109 BITMAPINFOHEADER* bih; |
8158 | 110 void* ImageDesc; // for quicktime codecs |
7467 | 111 // codec-specific: |
112 void* context; // codec-specific stuff (usually HANDLE or struct pointer) | |
291 | 113 } sh_video_t; |
114 | |
20876
0587328d9392
Move sh_sub_t to stheader.h, where all the other sh structs are defined
reimar
parents:
20873
diff
changeset
|
115 typedef struct { |
0587328d9392
Move sh_sub_t to stheader.h, where all the other sh structs are defined
reimar
parents:
20873
diff
changeset
|
116 int sid; |
0587328d9392
Move sh_sub_t to stheader.h, where all the other sh structs are defined
reimar
parents:
20873
diff
changeset
|
117 char type; // t = text, v = VobSub, a = SSA/ASS |
25652 | 118 unsigned char* extradata; // extra header data passed from demuxer |
119 int extradata_len; | |
27341
e7c989f7a7c9
Start unifying names of internal preprocessor directives.
diego
parents:
26269
diff
changeset
|
120 #ifdef CONFIG_ASS |
20876
0587328d9392
Move sh_sub_t to stheader.h, where all the other sh structs are defined
reimar
parents:
20873
diff
changeset
|
121 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
|
122 #endif |
26082 | 123 char* lang; // track language |
26269
65ad20416dd7
Support 'default' attribute for audio and subtitle tracks.
eugeni
parents:
26143
diff
changeset
|
124 int default_track; |
20876
0587328d9392
Move sh_sub_t to stheader.h, where all the other sh structs are defined
reimar
parents:
20873
diff
changeset
|
125 } sh_sub_t; |
0587328d9392
Move sh_sub_t to stheader.h, where all the other sh structs are defined
reimar
parents:
20873
diff
changeset
|
126 |
7467 | 127 // demuxer.c: |
19540 | 128 #define new_sh_audio(d, i) new_sh_audio_aid(d, i, i) |
129 sh_audio_t* new_sh_audio_aid(demuxer_t *demuxer,int id,int aid); | |
130 #define new_sh_video(d, i) new_sh_video_vid(d, i, i) | |
131 sh_video_t* new_sh_video_vid(demuxer_t *demuxer,int id,int vid); | |
20873 | 132 #define new_sh_sub(d, i) new_sh_sub_sid(d, i, i) |
133 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
|
134 void free_sh_audio(demuxer_t *demuxer, int id); |
5084 | 135 void free_sh_video(sh_video_t *sh); |
426 | 136 |
7467 | 137 // video.c: |
2567 | 138 int video_read_properties(sh_video_t *sh_video); |
139 int video_read_frame(sh_video_t* sh_video,float* frame_time_ptr,unsigned char** start,int force_fps); | |
4933 | 140 |
26029 | 141 #endif /* MPLAYER_STHEADER_H */ |