Mercurial > mplayer.hg
annotate libmpdemux/muxer.h @ 8950:8fd72eae8886
Small updates for correctness and consistency.
author | diego |
---|---|
date | Mon, 13 Jan 2003 23:45:14 +0000 |
parents | 27da710563c2 |
children | 12fc55eb3373 |
rev | line source |
---|---|
2529 | 1 |
8585 | 2 #define MUXER_MAX_STREAMS 16 |
2529 | 3 |
8585 | 4 #define MUXER_TYPE_VIDEO 0 |
5 #define MUXER_TYPE_AUDIO 1 | |
6 | |
7 #define MUXER_TYPE_AVI 0 | |
8 #define MUXER_TYPE_MPEG 1 | |
9 | |
10 #define MUXER_MPEG_BLOCKSIZE 2048 // 2048 or 2324 - ? | |
2529 | 11 |
12 typedef struct { | |
13 // muxer data: | |
14 int type; // audio or video | |
15 int id; // stream no | |
8585 | 16 uint32_t ckid; // chunk id (00dc 01wb etc) |
2529 | 17 double timer; |
5572
8cd761968f35
BSD-BT848 TV update patch by Charles Henrich <henrich@sigbus.com>
arpi
parents:
2652
diff
changeset
|
18 off_t size; |
2529 | 19 // buffering: |
20 unsigned char *buffer; | |
21 unsigned int buffer_size; | |
2592 | 22 unsigned int buffer_len; |
8585 | 23 // mpeg block buffer: |
24 unsigned char *b_buffer; | |
25 unsigned int b_buffer_ptr; | |
2529 | 26 // source stream: |
27 void* source; // sh_audio or sh_video | |
28 int codec; // codec used for encoding. 0 means copy | |
29 // avi stream header: | |
30 AVIStreamHeader h; // Rate/Scale and SampleSize must be filled by caller! | |
31 // stream specific: | |
32 WAVEFORMATEX *wf; | |
33 BITMAPINFOHEADER *bih; // in format | |
8585 | 34 // mpeg specific: |
35 unsigned int gop_start; // frame number of this GOP start | |
36 size_t ipb[3]; // sizes of I/P/B frames | |
37 } muxer_stream_t; | |
2529 | 38 |
39 typedef struct { | |
8585 | 40 uint32_t id; |
7145
3854945aefbb
new mencoder option -info, to store copyright, title, encoder version etc in AVI
arpi
parents:
5572
diff
changeset
|
41 char *text; |
8585 | 42 } muxer_info_t; |
7145
3854945aefbb
new mencoder option -info, to store copyright, title, encoder version etc in AVI
arpi
parents:
5572
diff
changeset
|
43 |
8585 | 44 typedef struct muxer_t{ |
2529 | 45 // encoding: |
46 MainAVIHeader avih; | |
47 unsigned int movi_start; | |
48 unsigned int movi_end; | |
8585 | 49 unsigned int file_end; // for MPEG it's system timestamp in 1/90000 s |
2529 | 50 // index: |
51 AVIINDEXENTRY *idx; | |
52 int idx_pos; | |
53 int idx_size; | |
54 // streams: | |
8585 | 55 int num_videos; // for MPEG recalculations |
56 unsigned int sysrate; // max rate in bytes/s | |
2529 | 57 //int num_streams; |
8585 | 58 muxer_stream_t* def_v; // default video stream (for general headers) |
59 muxer_stream_t* streams[MUXER_MAX_STREAMS]; | |
60 void (*cont_write_chunk)(struct muxer_t *,muxer_stream_t *,FILE *,size_t,unsigned int); | |
61 void (*cont_write_header)(struct muxer_t *,FILE *); | |
62 void (*cont_write_index)(struct muxer_t *,FILE *); | |
63 muxer_stream_t* (*cont_new_stream)(struct muxer_t *,int); | |
64 } muxer_t; | |
2529 | 65 |
8585 | 66 muxer_t* muxer_new_muxer(int type); |
67 #define muxer_new_stream(muxer,a) muxer->cont_new_stream(muxer,a) | |
68 #define muxer_write_chunk(muxer,a,b,c,d) muxer->cont_write_chunk(muxer,a,b,c,d) | |
69 #define muxer_write_header(muxer,f) muxer->cont_write_header(muxer,f) | |
70 #define muxer_write_index(muxer,f) muxer->cont_write_index(muxer,f) | |
2529 | 71 |
8585 | 72 void muxer_init_muxer_avi(muxer_t *); |
73 void muxer_init_muxer_mpeg(muxer_t *); | |
2529 | 74 |