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;
|
5577
|
16 extern vf_info_t ve_info_libdv;
|
5550
|
17
|
|
18 static vf_info_t* encoder_list[]={
|
|
19 #ifdef HAVE_DIVX4ENCORE
|
|
20 &ve_info_divx4,
|
|
21 #endif
|
|
22 #ifdef USE_LIBAVCODEC
|
|
23 &ve_info_lavc,
|
|
24 #endif
|
|
25 #ifdef USE_WIN32DLL
|
|
26 &ve_info_vfw,
|
|
27 #endif
|
5577
|
28 #ifdef HAVE_LIBDV095
|
|
29 &ve_info_libdv,
|
|
30 #endif
|
5550
|
31 &ve_info_rawrgb,
|
|
32 NULL
|
|
33 };
|
|
34
|
|
35 vf_instance_t* vf_open_encoder(vf_instance_t* next, char *name, char *args){
|
|
36 return vf_open_plugin(encoder_list,next,name,args);
|
|
37 }
|
|
38
|