Mercurial > mplayer.hg
annotate libmpdemux/stheader.h @ 20489:4419e00b54df
Support new flac-in-ogg, fixes bug #229
author | reimar |
---|---|
date | Sun, 29 Oct 2006 11:05:49 +0000 |
parents | 70a5e89ea4cd |
children | 8f0c616d7425 |
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 |
18917
d9a75b26da6c
Add a new video pts tracking mode, enabled by option -correct-pts.
uau
parents:
18708
diff
changeset
|
69 double buffered_pts[20]; |
d9a75b26da6c
Add a new video pts tracking mode, enabled by option -correct-pts.
uau
parents:
18708
diff
changeset
|
70 int num_buffered_pts; |
7467 | 71 // output format: (set by demuxer) |
72 float fps; // frames per second (set only if constant fps) | |
73 float frametime; // 1/fps | |
74 float aspect; // aspect ratio stored in the file (for prescaling) | |
75 int i_bps; // == bitrate (compressed bytes/sec) | |
76 int disp_w,disp_h; // display size (filled by fileformat parser) | |
77 // output driver/filters: (set by libmpcodecs core) | |
303 | 78 unsigned int outfmtidx; |
7467 | 79 void* video_out; // the video_out handle, used for this video stream |
80 void* vfilter; // the video filter chain, used for this video stream | |
81 int vf_inited; | |
8152 | 82 #ifdef DYNAMIC_PLUGINS |
83 void *dec_handle; | |
84 #endif | |
7467 | 85 // win32-compatible codec parameters: |
291 | 86 AVIStreamHeader video; |
7467 | 87 BITMAPINFOHEADER* bih; |
8158 | 88 void* ImageDesc; // for quicktime codecs |
7467 | 89 // codec-specific: |
90 void* context; // codec-specific stuff (usually HANDLE or struct pointer) | |
291 | 91 } sh_video_t; |
92 | |
7467 | 93 // demuxer.c: |
19540 | 94 #define new_sh_audio(d, i) new_sh_audio_aid(d, i, i) |
95 sh_audio_t* new_sh_audio_aid(demuxer_t *demuxer,int id,int aid); | |
96 #define new_sh_video(d, i) new_sh_video_vid(d, i, i) | |
97 sh_video_t* new_sh_video_vid(demuxer_t *demuxer,int id,int vid); | |
18708
9e2b300db17b
Change free_sh_audio() to take demuxer and stream id as parameters
uau
parents:
18309
diff
changeset
|
98 void free_sh_audio(demuxer_t *demuxer, int id); |
5084 | 99 void free_sh_video(sh_video_t *sh); |
426 | 100 |
7467 | 101 // video.c: |
2567 | 102 int video_read_properties(sh_video_t *sh_video); |
103 int video_read_frame(sh_video_t* sh_video,float* frame_time_ptr,unsigned char** start,int force_fps); | |
4933 | 104 |
105 #endif |