Mercurial > mplayer.hg
annotate libmpcodecs/ve.c @ 11759:29eea271490e
add -codecs-file for selecting a specific codecs.conf on the comand line
author | attila |
---|---|
date | Thu, 08 Jan 2004 18:02:31 +0000 |
parents | 6ea42c885d60 |
children | b58fdd5d8e8d |
rev | line source |
---|---|
5550 | 1 #include <stdio.h> |
2 #include <stdlib.h> | |
3 #include <string.h> | |
4 | |
5 #include "../config.h" | |
6 #include "../mp_msg.h" | |
7 | |
5607 | 8 #include "img_format.h" |
9 #include "mp_image.h" | |
5550 | 10 #include "vf.h" |
11 | |
12 extern vf_info_t ve_info_divx4; | |
13 extern vf_info_t ve_info_lavc; | |
14 extern vf_info_t ve_info_vfw; | |
15 extern vf_info_t ve_info_rawrgb; | |
11581
6ea42c885d60
RAWYUV output in MEncoder. Patch by Tuukka Toivonen <tuukkat@ee.oulu.fi>
alex
parents:
11436
diff
changeset
|
16 extern vf_info_t ve_info_rawyuv; |
5577 | 17 extern vf_info_t ve_info_libdv; |
7456 | 18 extern vf_info_t ve_info_xvid; |
8471 | 19 extern vf_info_t ve_info_qtvideo; |
9520
2860f7c9d9ca
A new nuppel video encoder. Mainly for RT encoding on slow box.
albeu
parents:
8471
diff
changeset
|
20 extern vf_info_t ve_info_nuv; |
5550 | 21 |
22 static vf_info_t* encoder_list[]={ | |
23 #ifdef HAVE_DIVX4ENCORE | |
24 &ve_info_divx4, | |
25 #endif | |
26 #ifdef USE_LIBAVCODEC | |
27 &ve_info_lavc, | |
28 #endif | |
29 #ifdef USE_WIN32DLL | |
30 &ve_info_vfw, | |
8471 | 31 &ve_info_qtvideo, |
5550 | 32 #endif |
5577 | 33 #ifdef HAVE_LIBDV095 |
34 &ve_info_libdv, | |
35 #endif | |
5550 | 36 &ve_info_rawrgb, |
11581
6ea42c885d60
RAWYUV output in MEncoder. Patch by Tuukka Toivonen <tuukkat@ee.oulu.fi>
alex
parents:
11436
diff
changeset
|
37 &ve_info_rawyuv, |
11436 | 38 #if defined(HAVE_XVID3) || defined(HAVE_XVID4) |
7456 | 39 &ve_info_xvid, |
40 #endif | |
9520
2860f7c9d9ca
A new nuppel video encoder. Mainly for RT encoding on slow box.
albeu
parents:
8471
diff
changeset
|
41 &ve_info_nuv, |
5550 | 42 NULL |
43 }; | |
44 | |
45 vf_instance_t* vf_open_encoder(vf_instance_t* next, char *name, char *args){ | |
9595 | 46 char* vf_args[] = { "_oldargs_", args, NULL }; |
47 return vf_open_plugin(encoder_list,next,name,vf_args); | |
5550 | 48 } |
49 |