Mercurial > mplayer.hg
annotate libmpcodecs/vd_internal.h @ 25759:2c8b63ea79ef
sync w/r25786
author | gpoirier |
---|---|
date | Fri, 18 Jan 2008 22:48:12 +0000 |
parents | 6ac1ece1f9fe |
children | aee6ea2b39ee |
rev | line source |
---|---|
25553
6ac1ece1f9fe
Add multiple inclusion guards to all header files that lack them.
diego
parents:
22601
diff
changeset
|
1 #ifndef VD_INTERNAL |
6ac1ece1f9fe
Add multiple inclusion guards to all header files that lack them.
diego
parents:
22601
diff
changeset
|
2 #define VD_INTERNAL |
4986 | 3 |
4 #include "codec-cfg.h" | |
5607 | 5 #include "img_format.h" |
4986 | 6 |
22599
4faee1254928
Add explicit location for headers from the stream/ directory.
diego
parents:
5607
diff
changeset
|
7 #include "stream/stream.h" |
22601
ed8f90096c65
Add explicit location for headers from the libmpdemux/ directory.
diego
parents:
22599
diff
changeset
|
8 #include "libmpdemux/demuxer.h" |
ed8f90096c65
Add explicit location for headers from the libmpdemux/ directory.
diego
parents:
22599
diff
changeset
|
9 #include "libmpdemux/stheader.h" |
4986 | 10 |
11 #include "vd.h" | |
4878 | 12 |
5003 | 13 extern int divx_quality; |
14 | |
4878 | 15 // prototypes: |
4966 | 16 //static vd_info_t info; |
4878 | 17 static int control(sh_video_t *sh,int cmd,void* arg,...); |
18 static int init(sh_video_t *sh); | |
19 static void uninit(sh_video_t *sh); | |
20 static mp_image_t* decode(sh_video_t *sh,void* data,int len,int flags); | |
21 | |
22 #define LIBVD_EXTERN(x) vd_functions_t mpcodecs_vd_##x = {\ | |
23 &info,\ | |
24 init,\ | |
25 uninit,\ | |
26 control,\ | |
27 decode\ | |
28 }; | |
29 | |
25553
6ac1ece1f9fe
Add multiple inclusion guards to all header files that lack them.
diego
parents:
22601
diff
changeset
|
30 #endif /* VD_INTERNAL */ |