blob: 18c1f3af1f61d62c90c36c51c4353a9c58e9b263 (
plain)
1
2
3
4
5
6
7
8
9
|
//GPL
#ifndef VF_SCALE_H
#define VF_SCALE_H
int get_sws_cpuflags(void);
struct SwsContext *sws_getContextFromCmdLine(int srcW, int srcH, int srcFormat, int dstW, int dstH, int dstFormat);
#endif /* VF_SCALE_H */
|