mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-01-08 08:10:12 +00:00
Allow swscale emulation header to be included by C++ programs
Originally committed as revision 6027 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
9aee40d967
commit
a37e9e8606
@ -1,5 +1,10 @@
|
|||||||
#ifndef SWSCALE_EMU_H
|
#ifndef SWSCALE_EMU_H
|
||||||
#define SWSCALE_EMU_H
|
#define SWSCALE_EMU_H
|
||||||
|
|
||||||
|
#ifdef __cplusplus
|
||||||
|
extern "C" {
|
||||||
|
#endif
|
||||||
|
|
||||||
/* Dummy, only useful for compilation! */
|
/* Dummy, only useful for compilation! */
|
||||||
#define SWS_FAST_BILINEAR 1
|
#define SWS_FAST_BILINEAR 1
|
||||||
#define SWS_BILINEAR 2
|
#define SWS_BILINEAR 2
|
||||||
@ -29,4 +34,8 @@ int sws_scale(struct SwsContext *ctx, uint8_t* src[], int srcStride[],
|
|||||||
|
|
||||||
void sws_freeContext(struct SwsContext *swsContext);
|
void sws_freeContext(struct SwsContext *swsContext);
|
||||||
|
|
||||||
|
#ifdef __cplusplus
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
#endif /* SWSCALE_EMU_H */
|
#endif /* SWSCALE_EMU_H */
|
||||||
|
Loading…
Reference in New Issue
Block a user