Mercurial > mplayer.hg
annotate libmpcodecs/ve.c @ 17349:a1e06cd764cc
sync w/ 1.1205
author | gpoirier |
---|---|
date | Sun, 08 Jan 2006 21:41:01 +0000 |
parents | 6ff3379a0862 |
children | ed69754aa58d |
rev | line source |
---|---|
5550 | 1 #include <stdio.h> |
2 #include <stdlib.h> | |
3 #include <string.h> | |
4 | |
17012 | 5 #include "config.h" |
6 #include "mp_msg.h" | |
5550 | 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; | |
11966 | 15 extern vf_info_t ve_info_raw; |
5577 | 16 extern vf_info_t ve_info_libdv; |
7456 | 17 extern vf_info_t ve_info_xvid; |
8471 | 18 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
|
19 extern vf_info_t ve_info_nuv; |
13166
d198f255bee9
x264 encoder support. Original patch send by Bernhard Rosenkraenzer <bero at arklinux dot org>, modifications by Loren Merritt <lorenm at u.washington dot edu>, Jeff Clagg <snacky at ikaruga.co dot uk> and me
iive
parents:
11966
diff
changeset
|
20 extern vf_info_t ve_info_x264; |
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, | |
15453
d7a2ffc6e694
compilation/link fix with --disable-qtx --disable-dshow
diego
parents:
13166
diff
changeset
|
31 #ifdef USE_QTX_CODECS |
8471 | 32 &ve_info_qtvideo, |
5550 | 33 #endif |
15453
d7a2ffc6e694
compilation/link fix with --disable-qtx --disable-dshow
diego
parents:
13166
diff
changeset
|
34 #endif |
5577 | 35 #ifdef HAVE_LIBDV095 |
36 &ve_info_libdv, | |
37 #endif | |
11966 | 38 &ve_info_raw, |
11436 | 39 #if defined(HAVE_XVID3) || defined(HAVE_XVID4) |
7456 | 40 &ve_info_xvid, |
41 #endif | |
9520
2860f7c9d9ca
A new nuppel video encoder. Mainly for RT encoding on slow box.
albeu
parents:
8471
diff
changeset
|
42 &ve_info_nuv, |
13166
d198f255bee9
x264 encoder support. Original patch send by Bernhard Rosenkraenzer <bero at arklinux dot org>, modifications by Loren Merritt <lorenm at u.washington dot edu>, Jeff Clagg <snacky at ikaruga.co dot uk> and me
iive
parents:
11966
diff
changeset
|
43 #ifdef HAVE_X264 |
d198f255bee9
x264 encoder support. Original patch send by Bernhard Rosenkraenzer <bero at arklinux dot org>, modifications by Loren Merritt <lorenm at u.washington dot edu>, Jeff Clagg <snacky at ikaruga.co dot uk> and me
iive
parents:
11966
diff
changeset
|
44 &ve_info_x264, |
d198f255bee9
x264 encoder support. Original patch send by Bernhard Rosenkraenzer <bero at arklinux dot org>, modifications by Loren Merritt <lorenm at u.washington dot edu>, Jeff Clagg <snacky at ikaruga.co dot uk> and me
iive
parents:
11966
diff
changeset
|
45 #endif |
5550 | 46 NULL |
47 }; | |
48 | |
49 vf_instance_t* vf_open_encoder(vf_instance_t* next, char *name, char *args){ | |
9595 | 50 char* vf_args[] = { "_oldargs_", args, NULL }; |
51 return vf_open_plugin(encoder_list,next,name,vf_args); | |
5550 | 52 } |
53 |