Mercurial > mplayer.hg
annotate libmpdemux/muxer.c @ 12016:b962aaad2940
rawvideo muxer patch by John Earl <jwe21@cam.ac.uk>
author | ranma |
---|---|
date | Tue, 09 Mar 2004 14:46:34 +0000 |
parents | 12fc55eb3373 |
children | 0db4a3a5b01d |
rev | line source |
---|---|
8585 | 1 |
2 #include <stdio.h> | |
3 #include <stdlib.h> | |
4 #include <string.h> | |
5 #include <inttypes.h> | |
8591 | 6 #include <unistd.h> |
8585 | 7 |
8 #include "config.h" | |
9 #include "../version.h" | |
10 | |
11 #include "wine/mmreg.h" | |
12 #include "wine/avifmt.h" | |
13 #include "wine/vfw.h" | |
14 | |
15 #include "muxer.h" | |
16 | |
9007
12fc55eb3373
Cleanup of the muxer API, func parameters muxer & muxer_f eliminated.
arpi
parents:
8591
diff
changeset
|
17 muxer_t *muxer_new_muxer(int type,FILE *f){ |
8585 | 18 muxer_t* muxer=malloc(sizeof(muxer_t)); |
19 memset(muxer,0,sizeof(muxer_t)); | |
9007
12fc55eb3373
Cleanup of the muxer API, func parameters muxer & muxer_f eliminated.
arpi
parents:
8591
diff
changeset
|
20 muxer->file = f; |
8585 | 21 switch (type) { |
22 case MUXER_TYPE_MPEG: | |
23 muxer_init_muxer_mpeg(muxer); | |
24 break; | |
12016 | 25 case MUXER_TYPE_RAWVIDEO: |
26 muxer_init_muxer_rawvideo(muxer); | |
27 break; | |
8585 | 28 case MUXER_TYPE_AVI: |
29 default: | |
30 muxer_init_muxer_avi(muxer); | |
31 } | |
32 return muxer; | |
33 } |