blob: 851f4af6d5fdeaa5f8a05e215d79bb217bf59aa9 (
plain)
1
2
3
4
5
6
7
8
9
|
//GPL
#ifndef MPLAYER_VF_SCALE_H
#define MPLAYER_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 /* MPLAYER_VF_SCALE_H */
|