avxsynth_c.h 26 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725
  1. // Avisynth C Interface Version 0.20
  2. // Copyright 2003 Kevin Atkinson
  3. // This program is free software; you can redistribute it and/or modify
  4. // it under the terms of the GNU General Public License as published by
  5. // the Free Software Foundation; either version 2 of the License, or
  6. // (at your option) any later version.
  7. //
  8. // This program is distributed in the hope that it will be useful,
  9. // but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  11. // GNU General Public License for more details.
  12. //
  13. // You should have received a copy of the GNU General Public License
  14. // along with this program; if not, write to the Free Software
  15. // Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA, or visit
  16. // http://www.gnu.org/copyleft/gpl.html .
  17. //
  18. // As a special exception, I give you permission to link to the
  19. // Avisynth C interface with independent modules that communicate with
  20. // the Avisynth C interface solely through the interfaces defined in
  21. // avisynth_c.h, regardless of the license terms of these independent
  22. // modules, and to copy and distribute the resulting combined work
  23. // under terms of your choice, provided that every copy of the
  24. // combined work is accompanied by a complete copy of the source code
  25. // of the Avisynth C interface and Avisynth itself (with the version
  26. // used to produce the combined work), being distributed under the
  27. // terms of the GNU General Public License plus this exception. An
  28. // independent module is a module which is not derived from or based
  29. // on Avisynth C Interface, such as 3rd-party filters, import and
  30. // export plugins, or graphical user interfaces.
  31. #ifndef __AVXSYNTH_C__
  32. #define __AVXSYNTH_C__
  33. #include <stdarg.h>
  34. #include <stdint.h>
  35. typedef int64_t INT64;
  36. #define __stdcall
  37. #define __declspec(x)
  38. #ifdef __cplusplus
  39. # define EXTERN_C extern "C"
  40. #else
  41. # define EXTERN_C
  42. #endif
  43. #define AVSC_USE_STDCALL 1
  44. #ifndef AVSC_USE_STDCALL
  45. # define AVSC_CC __cdecl
  46. #else
  47. # define AVSC_CC __stdcall
  48. #endif
  49. #define AVSC_INLINE static __inline
  50. #ifdef AVISYNTH_C_EXPORTS
  51. # define AVSC_EXPORT EXTERN_C
  52. # define AVSC_API(ret, name) EXTERN_C __declspec(dllexport) ret AVSC_CC name
  53. #else
  54. # define AVSC_EXPORT EXTERN_C __declspec(dllexport)
  55. # ifndef AVSC_NO_DECLSPEC
  56. # define AVSC_API(ret, name) EXTERN_C __declspec(dllimport) ret AVSC_CC name
  57. # else
  58. # define AVSC_API(ret, name) typedef ret (AVSC_CC *name##_func)
  59. # endif
  60. #endif
  61. /////////////////////////////////////////////////////////////////////
  62. //
  63. // Constants
  64. //
  65. #ifndef __AVXSYNTH_H__
  66. enum { AVISYNTH_INTERFACE_VERSION = 3 };
  67. #endif
  68. enum {AVS_SAMPLE_INT8 = 1<<0,
  69. AVS_SAMPLE_INT16 = 1<<1,
  70. AVS_SAMPLE_INT24 = 1<<2,
  71. AVS_SAMPLE_INT32 = 1<<3,
  72. AVS_SAMPLE_FLOAT = 1<<4};
  73. enum {AVS_PLANAR_Y=1<<0,
  74. AVS_PLANAR_U=1<<1,
  75. AVS_PLANAR_V=1<<2,
  76. AVS_PLANAR_ALIGNED=1<<3,
  77. AVS_PLANAR_Y_ALIGNED=AVS_PLANAR_Y|AVS_PLANAR_ALIGNED,
  78. AVS_PLANAR_U_ALIGNED=AVS_PLANAR_U|AVS_PLANAR_ALIGNED,
  79. AVS_PLANAR_V_ALIGNED=AVS_PLANAR_V|AVS_PLANAR_ALIGNED};
  80. // Colorspace properties.
  81. enum {AVS_CS_BGR = 1<<28,
  82. AVS_CS_YUV = 1<<29,
  83. AVS_CS_INTERLEAVED = 1<<30,
  84. AVS_CS_PLANAR = 1<<31};
  85. // Specific colorformats
  86. enum {
  87. AVS_CS_UNKNOWN = 0,
  88. AVS_CS_BGR24 = 1<<0 | AVS_CS_BGR | AVS_CS_INTERLEAVED,
  89. AVS_CS_BGR32 = 1<<1 | AVS_CS_BGR | AVS_CS_INTERLEAVED,
  90. AVS_CS_YUY2 = 1<<2 | AVS_CS_YUV | AVS_CS_INTERLEAVED,
  91. AVS_CS_YV12 = 1<<3 | AVS_CS_YUV | AVS_CS_PLANAR, // y-v-u, planar
  92. AVS_CS_I420 = 1<<4 | AVS_CS_YUV | AVS_CS_PLANAR, // y-u-v, planar
  93. AVS_CS_IYUV = 1<<4 | AVS_CS_YUV | AVS_CS_PLANAR // same as above
  94. };
  95. enum {
  96. AVS_IT_BFF = 1<<0,
  97. AVS_IT_TFF = 1<<1,
  98. AVS_IT_FIELDBASED = 1<<2};
  99. enum {
  100. AVS_FILTER_TYPE=1,
  101. AVS_FILTER_INPUT_COLORSPACE=2,
  102. AVS_FILTER_OUTPUT_TYPE=9,
  103. AVS_FILTER_NAME=4,
  104. AVS_FILTER_AUTHOR=5,
  105. AVS_FILTER_VERSION=6,
  106. AVS_FILTER_ARGS=7,
  107. AVS_FILTER_ARGS_INFO=8,
  108. AVS_FILTER_ARGS_DESCRIPTION=10,
  109. AVS_FILTER_DESCRIPTION=11};
  110. enum { //SUBTYPES
  111. AVS_FILTER_TYPE_AUDIO=1,
  112. AVS_FILTER_TYPE_VIDEO=2,
  113. AVS_FILTER_OUTPUT_TYPE_SAME=3,
  114. AVS_FILTER_OUTPUT_TYPE_DIFFERENT=4};
  115. enum {
  116. AVS_CACHE_NOTHING=0,
  117. AVS_CACHE_RANGE=1,
  118. AVS_CACHE_ALL=2,
  119. AVS_CACHE_AUDIO=3,
  120. AVS_CACHE_AUDIO_NONE=4,
  121. AVS_CACHE_AUDIO_AUTO=5
  122. };
  123. #define AVS_FRAME_ALIGN 16
  124. typedef struct AVS_Clip AVS_Clip;
  125. typedef struct AVS_ScriptEnvironment AVS_ScriptEnvironment;
  126. /////////////////////////////////////////////////////////////////////
  127. //
  128. // AVS_VideoInfo
  129. //
  130. // AVS_VideoInfo is layed out identicly to VideoInfo
  131. typedef struct AVS_VideoInfo {
  132. int width, height; // width=0 means no video
  133. unsigned fps_numerator, fps_denominator;
  134. int num_frames;
  135. int pixel_type;
  136. int audio_samples_per_second; // 0 means no audio
  137. int sample_type;
  138. INT64 num_audio_samples;
  139. int nchannels;
  140. // Imagetype properties
  141. int image_type;
  142. } AVS_VideoInfo;
  143. // useful functions of the above
  144. AVSC_INLINE int avs_has_video(const AVS_VideoInfo * p)
  145. { return (p->width!=0); }
  146. AVSC_INLINE int avs_has_audio(const AVS_VideoInfo * p)
  147. { return (p->audio_samples_per_second!=0); }
  148. AVSC_INLINE int avs_is_rgb(const AVS_VideoInfo * p)
  149. { return !!(p->pixel_type&AVS_CS_BGR); }
  150. AVSC_INLINE int avs_is_rgb24(const AVS_VideoInfo * p)
  151. { return (p->pixel_type&AVS_CS_BGR24)==AVS_CS_BGR24; } // Clear out additional properties
  152. AVSC_INLINE int avs_is_rgb32(const AVS_VideoInfo * p)
  153. { return (p->pixel_type & AVS_CS_BGR32) == AVS_CS_BGR32 ; }
  154. AVSC_INLINE int avs_is_yuv(const AVS_VideoInfo * p)
  155. { return !!(p->pixel_type&AVS_CS_YUV ); }
  156. AVSC_INLINE int avs_is_yuy2(const AVS_VideoInfo * p)
  157. { return (p->pixel_type & AVS_CS_YUY2) == AVS_CS_YUY2; }
  158. AVSC_INLINE int avs_is_yv12(const AVS_VideoInfo * p)
  159. { return ((p->pixel_type & AVS_CS_YV12) == AVS_CS_YV12)||((p->pixel_type & AVS_CS_I420) == AVS_CS_I420); }
  160. AVSC_INLINE int avs_is_color_space(const AVS_VideoInfo * p, int c_space)
  161. { return ((p->pixel_type & c_space) == c_space); }
  162. AVSC_INLINE int avs_is_property(const AVS_VideoInfo * p, int property)
  163. { return ((p->pixel_type & property)==property ); }
  164. AVSC_INLINE int avs_is_planar(const AVS_VideoInfo * p)
  165. { return !!(p->pixel_type & AVS_CS_PLANAR); }
  166. AVSC_INLINE int avs_is_field_based(const AVS_VideoInfo * p)
  167. { return !!(p->image_type & AVS_IT_FIELDBASED); }
  168. AVSC_INLINE int avs_is_parity_known(const AVS_VideoInfo * p)
  169. { return ((p->image_type & AVS_IT_FIELDBASED)&&(p->image_type & (AVS_IT_BFF | AVS_IT_TFF))); }
  170. AVSC_INLINE int avs_is_bff(const AVS_VideoInfo * p)
  171. { return !!(p->image_type & AVS_IT_BFF); }
  172. AVSC_INLINE int avs_is_tff(const AVS_VideoInfo * p)
  173. { return !!(p->image_type & AVS_IT_TFF); }
  174. AVSC_INLINE int avs_bits_per_pixel(const AVS_VideoInfo * p)
  175. {
  176. switch (p->pixel_type) {
  177. case AVS_CS_BGR24: return 24;
  178. case AVS_CS_BGR32: return 32;
  179. case AVS_CS_YUY2: return 16;
  180. case AVS_CS_YV12:
  181. case AVS_CS_I420: return 12;
  182. default: return 0;
  183. }
  184. }
  185. AVSC_INLINE int avs_bytes_from_pixels(const AVS_VideoInfo * p, int pixels)
  186. { return pixels * (avs_bits_per_pixel(p)>>3); } // Will work on planar images, but will return only luma planes
  187. AVSC_INLINE int avs_row_size(const AVS_VideoInfo * p)
  188. { return avs_bytes_from_pixels(p,p->width); } // Also only returns first plane on planar images
  189. AVSC_INLINE int avs_bmp_size(const AVS_VideoInfo * vi)
  190. { if (avs_is_planar(vi)) {int p = vi->height * ((avs_row_size(vi)+3) & ~3); p+=p>>1; return p; } return vi->height * ((avs_row_size(vi)+3) & ~3); }
  191. AVSC_INLINE int avs_samples_per_second(const AVS_VideoInfo * p)
  192. { return p->audio_samples_per_second; }
  193. AVSC_INLINE int avs_bytes_per_channel_sample(const AVS_VideoInfo * p)
  194. {
  195. switch (p->sample_type) {
  196. case AVS_SAMPLE_INT8: return sizeof(signed char);
  197. case AVS_SAMPLE_INT16: return sizeof(signed short);
  198. case AVS_SAMPLE_INT24: return 3;
  199. case AVS_SAMPLE_INT32: return sizeof(signed int);
  200. case AVS_SAMPLE_FLOAT: return sizeof(float);
  201. default: return 0;
  202. }
  203. }
  204. AVSC_INLINE int avs_bytes_per_audio_sample(const AVS_VideoInfo * p)
  205. { return p->nchannels*avs_bytes_per_channel_sample(p);}
  206. AVSC_INLINE INT64 avs_audio_samples_from_frames(const AVS_VideoInfo * p, INT64 frames)
  207. { return ((INT64)(frames) * p->audio_samples_per_second * p->fps_denominator / p->fps_numerator); }
  208. AVSC_INLINE int avs_frames_from_audio_samples(const AVS_VideoInfo * p, INT64 samples)
  209. { return (int)(samples * (INT64)p->fps_numerator / (INT64)p->fps_denominator / (INT64)p->audio_samples_per_second); }
  210. AVSC_INLINE INT64 avs_audio_samples_from_bytes(const AVS_VideoInfo * p, INT64 bytes)
  211. { return bytes / avs_bytes_per_audio_sample(p); }
  212. AVSC_INLINE INT64 avs_bytes_from_audio_samples(const AVS_VideoInfo * p, INT64 samples)
  213. { return samples * avs_bytes_per_audio_sample(p); }
  214. AVSC_INLINE int avs_audio_channels(const AVS_VideoInfo * p)
  215. { return p->nchannels; }
  216. AVSC_INLINE int avs_sample_type(const AVS_VideoInfo * p)
  217. { return p->sample_type;}
  218. // useful mutator
  219. AVSC_INLINE void avs_set_property(AVS_VideoInfo * p, int property)
  220. { p->image_type|=property; }
  221. AVSC_INLINE void avs_clear_property(AVS_VideoInfo * p, int property)
  222. { p->image_type&=~property; }
  223. AVSC_INLINE void avs_set_field_based(AVS_VideoInfo * p, int isfieldbased)
  224. { if (isfieldbased) p->image_type|=AVS_IT_FIELDBASED; else p->image_type&=~AVS_IT_FIELDBASED; }
  225. AVSC_INLINE void avs_set_fps(AVS_VideoInfo * p, unsigned numerator, unsigned denominator)
  226. {
  227. unsigned x=numerator, y=denominator;
  228. while (y) { // find gcd
  229. unsigned t = x%y; x = y; y = t;
  230. }
  231. p->fps_numerator = numerator/x;
  232. p->fps_denominator = denominator/x;
  233. }
  234. AVSC_INLINE int avs_is_same_colorspace(AVS_VideoInfo * x, AVS_VideoInfo * y)
  235. {
  236. return (x->pixel_type == y->pixel_type)
  237. || (avs_is_yv12(x) && avs_is_yv12(y));
  238. }
  239. /////////////////////////////////////////////////////////////////////
  240. //
  241. // AVS_VideoFrame
  242. //
  243. // VideoFrameBuffer holds information about a memory block which is used
  244. // for video data. For efficiency, instances of this class are not deleted
  245. // when the refcount reaches zero; instead they're stored in a linked list
  246. // to be reused. The instances are deleted when the corresponding AVS
  247. // file is closed.
  248. // AVS_VideoFrameBuffer is layed out identicly to VideoFrameBuffer
  249. // DO NOT USE THIS STRUCTURE DIRECTLY
  250. typedef struct AVS_VideoFrameBuffer {
  251. unsigned char * data;
  252. int data_size;
  253. // sequence_number is incremented every time the buffer is changed, so
  254. // that stale views can tell they're no longer valid.
  255. long sequence_number;
  256. long refcount;
  257. } AVS_VideoFrameBuffer;
  258. // VideoFrame holds a "window" into a VideoFrameBuffer.
  259. // AVS_VideoFrame is layed out identicly to IVideoFrame
  260. // DO NOT USE THIS STRUCTURE DIRECTLY
  261. typedef struct AVS_VideoFrame {
  262. int refcount;
  263. AVS_VideoFrameBuffer * vfb;
  264. int offset, pitch, row_size, height, offsetU, offsetV, pitchUV; // U&V offsets are from top of picture.
  265. } AVS_VideoFrame;
  266. // Access functions for AVS_VideoFrame
  267. AVSC_INLINE int avs_get_pitch(const AVS_VideoFrame * p) {
  268. return p->pitch;}
  269. AVSC_INLINE int avs_get_pitch_p(const AVS_VideoFrame * p, int plane) {
  270. switch (plane) {
  271. case AVS_PLANAR_U: case AVS_PLANAR_V: return p->pitchUV;}
  272. return p->pitch;}
  273. AVSC_INLINE int avs_get_row_size(const AVS_VideoFrame * p) {
  274. return p->row_size; }
  275. AVSC_INLINE int avs_get_row_size_p(const AVS_VideoFrame * p, int plane) {
  276. int r;
  277. switch (plane) {
  278. case AVS_PLANAR_U: case AVS_PLANAR_V:
  279. if (p->pitchUV) return p->row_size>>1;
  280. else return 0;
  281. case AVS_PLANAR_U_ALIGNED: case AVS_PLANAR_V_ALIGNED:
  282. if (p->pitchUV) {
  283. r = ((p->row_size+AVS_FRAME_ALIGN-1)&(~(AVS_FRAME_ALIGN-1)) )>>1; // Aligned rowsize
  284. if (r < p->pitchUV)
  285. return r;
  286. return p->row_size>>1;
  287. } else return 0;
  288. case AVS_PLANAR_Y_ALIGNED:
  289. r = (p->row_size+AVS_FRAME_ALIGN-1)&(~(AVS_FRAME_ALIGN-1)); // Aligned rowsize
  290. if (r <= p->pitch)
  291. return r;
  292. return p->row_size;
  293. }
  294. return p->row_size;
  295. }
  296. AVSC_INLINE int avs_get_height(const AVS_VideoFrame * p) {
  297. return p->height;}
  298. AVSC_INLINE int avs_get_height_p(const AVS_VideoFrame * p, int plane) {
  299. switch (plane) {
  300. case AVS_PLANAR_U: case AVS_PLANAR_V:
  301. if (p->pitchUV) return p->height>>1;
  302. return 0;
  303. }
  304. return p->height;}
  305. AVSC_INLINE const unsigned char* avs_get_read_ptr(const AVS_VideoFrame * p) {
  306. return p->vfb->data + p->offset;}
  307. AVSC_INLINE const unsigned char* avs_get_read_ptr_p(const AVS_VideoFrame * p, int plane)
  308. {
  309. switch (plane) {
  310. case AVS_PLANAR_U: return p->vfb->data + p->offsetU;
  311. case AVS_PLANAR_V: return p->vfb->data + p->offsetV;
  312. default: return p->vfb->data + p->offset;}
  313. }
  314. AVSC_INLINE int avs_is_writable(const AVS_VideoFrame * p) {
  315. return (p->refcount == 1 && p->vfb->refcount == 1);}
  316. AVSC_INLINE unsigned char* avs_get_write_ptr(const AVS_VideoFrame * p)
  317. {
  318. if (avs_is_writable(p)) {
  319. ++p->vfb->sequence_number;
  320. return p->vfb->data + p->offset;
  321. } else
  322. return 0;
  323. }
  324. AVSC_INLINE unsigned char* avs_get_write_ptr_p(const AVS_VideoFrame * p, int plane)
  325. {
  326. if (plane==AVS_PLANAR_Y && avs_is_writable(p)) {
  327. ++p->vfb->sequence_number;
  328. return p->vfb->data + p->offset;
  329. } else if (plane==AVS_PLANAR_Y) {
  330. return 0;
  331. } else {
  332. switch (plane) {
  333. case AVS_PLANAR_U: return p->vfb->data + p->offsetU;
  334. case AVS_PLANAR_V: return p->vfb->data + p->offsetV;
  335. default: return p->vfb->data + p->offset;
  336. }
  337. }
  338. }
  339. #if defined __cplusplus
  340. extern "C"
  341. {
  342. #endif // __cplusplus
  343. AVSC_API(void, avs_release_video_frame)(AVS_VideoFrame *);
  344. // makes a shallow copy of a video frame
  345. AVSC_API(AVS_VideoFrame *, avs_copy_video_frame)(AVS_VideoFrame *);
  346. #if defined __cplusplus
  347. }
  348. #endif // __cplusplus
  349. #ifndef AVSC_NO_DECLSPEC
  350. AVSC_INLINE void avs_release_frame(AVS_VideoFrame * f)
  351. {avs_release_video_frame(f);}
  352. AVSC_INLINE AVS_VideoFrame * avs_copy_frame(AVS_VideoFrame * f)
  353. {return avs_copy_video_frame(f);}
  354. #endif
  355. /////////////////////////////////////////////////////////////////////
  356. //
  357. // AVS_Value
  358. //
  359. // Treat AVS_Value as a fat pointer. That is use avs_copy_value
  360. // and avs_release_value appropiaty as you would if AVS_Value was
  361. // a pointer.
  362. // To maintain source code compatibility with future versions of the
  363. // avisynth_c API don't use the AVS_Value directly. Use the helper
  364. // functions below.
  365. // AVS_Value is layed out identicly to AVSValue
  366. typedef struct AVS_Value AVS_Value;
  367. struct AVS_Value {
  368. short type; // 'a'rray, 'c'lip, 'b'ool, 'i'nt, 'f'loat, 's'tring, 'v'oid, or 'l'ong
  369. // for some function e'rror
  370. short array_size;
  371. union {
  372. void * clip; // do not use directly, use avs_take_clip
  373. char boolean;
  374. int integer;
  375. INT64 integer64; // match addition of __int64 to avxplugin.h
  376. float floating_pt;
  377. const char * string;
  378. const AVS_Value * array;
  379. } d;
  380. };
  381. // AVS_Value should be initilized with avs_void.
  382. // Should also set to avs_void after the value is released
  383. // with avs_copy_value. Consider it the equalvent of setting
  384. // a pointer to NULL
  385. static const AVS_Value avs_void = {'v'};
  386. AVSC_API(void, avs_copy_value)(AVS_Value * dest, AVS_Value src);
  387. AVSC_API(void, avs_release_value)(AVS_Value);
  388. AVSC_INLINE int avs_defined(AVS_Value v) { return v.type != 'v'; }
  389. AVSC_INLINE int avs_is_clip(AVS_Value v) { return v.type == 'c'; }
  390. AVSC_INLINE int avs_is_bool(AVS_Value v) { return v.type == 'b'; }
  391. AVSC_INLINE int avs_is_int(AVS_Value v) { return v.type == 'i'; }
  392. AVSC_INLINE int avs_is_float(AVS_Value v) { return v.type == 'f' || v.type == 'i'; }
  393. AVSC_INLINE int avs_is_string(AVS_Value v) { return v.type == 's'; }
  394. AVSC_INLINE int avs_is_array(AVS_Value v) { return v.type == 'a'; }
  395. AVSC_INLINE int avs_is_error(AVS_Value v) { return v.type == 'e'; }
  396. #if defined __cplusplus
  397. extern "C"
  398. {
  399. #endif // __cplusplus
  400. AVSC_API(AVS_Clip *, avs_take_clip)(AVS_Value, AVS_ScriptEnvironment *);
  401. AVSC_API(void, avs_set_to_clip)(AVS_Value *, AVS_Clip *);
  402. #if defined __cplusplus
  403. }
  404. #endif // __cplusplus
  405. AVSC_INLINE int avs_as_bool(AVS_Value v)
  406. { return v.d.boolean; }
  407. AVSC_INLINE int avs_as_int(AVS_Value v)
  408. { return v.d.integer; }
  409. AVSC_INLINE const char * avs_as_string(AVS_Value v)
  410. { return avs_is_error(v) || avs_is_string(v) ? v.d.string : 0; }
  411. AVSC_INLINE double avs_as_float(AVS_Value v)
  412. { return avs_is_int(v) ? v.d.integer : v.d.floating_pt; }
  413. AVSC_INLINE const char * avs_as_error(AVS_Value v)
  414. { return avs_is_error(v) ? v.d.string : 0; }
  415. AVSC_INLINE const AVS_Value * avs_as_array(AVS_Value v)
  416. { return v.d.array; }
  417. AVSC_INLINE int avs_array_size(AVS_Value v)
  418. { return avs_is_array(v) ? v.array_size : 1; }
  419. AVSC_INLINE AVS_Value avs_array_elt(AVS_Value v, int index)
  420. { return avs_is_array(v) ? v.d.array[index] : v; }
  421. // only use these functions on am AVS_Value that does not already have
  422. // an active value. Remember, treat AVS_Value as a fat pointer.
  423. AVSC_INLINE AVS_Value avs_new_value_bool(int v0)
  424. { AVS_Value v; v.type = 'b'; v.d.boolean = v0 == 0 ? 0 : 1; return v; }
  425. AVSC_INLINE AVS_Value avs_new_value_int(int v0)
  426. { AVS_Value v; v.type = 'i'; v.d.integer = v0; return v; }
  427. AVSC_INLINE AVS_Value avs_new_value_string(const char * v0)
  428. { AVS_Value v; v.type = 's'; v.d.string = v0; return v; }
  429. AVSC_INLINE AVS_Value avs_new_value_float(float v0)
  430. { AVS_Value v; v.type = 'f'; v.d.floating_pt = v0; return v;}
  431. AVSC_INLINE AVS_Value avs_new_value_error(const char * v0)
  432. { AVS_Value v; v.type = 'e'; v.d.string = v0; return v; }
  433. #ifndef AVSC_NO_DECLSPEC
  434. AVSC_INLINE AVS_Value avs_new_value_clip(AVS_Clip * v0)
  435. { AVS_Value v; avs_set_to_clip(&v, v0); return v; }
  436. #endif
  437. AVSC_INLINE AVS_Value avs_new_value_array(AVS_Value * v0, int size)
  438. { AVS_Value v; v.type = 'a'; v.d.array = v0; v.array_size = size; return v; }
  439. /////////////////////////////////////////////////////////////////////
  440. //
  441. // AVS_Clip
  442. //
  443. #if defined __cplusplus
  444. extern "C"
  445. {
  446. #endif // __cplusplus
  447. AVSC_API(void, avs_release_clip)(AVS_Clip *);
  448. AVSC_API(AVS_Clip *, avs_copy_clip)(AVS_Clip *);
  449. AVSC_API(const char *, avs_clip_get_error)(AVS_Clip *); // return 0 if no error
  450. AVSC_API(const AVS_VideoInfo *, avs_get_video_info)(AVS_Clip *);
  451. AVSC_API(int, avs_get_version)(AVS_Clip *);
  452. AVSC_API(AVS_VideoFrame *, avs_get_frame)(AVS_Clip *, int n);
  453. // The returned video frame must be released with avs_release_video_frame
  454. AVSC_API(int, avs_get_parity)(AVS_Clip *, int n);
  455. // return field parity if field_based, else parity of first field in frame
  456. AVSC_API(int, avs_get_audio)(AVS_Clip *, void * buf,
  457. INT64 start, INT64 count);
  458. // start and count are in samples
  459. AVSC_API(int, avs_set_cache_hints)(AVS_Clip *,
  460. int cachehints, size_t frame_range);
  461. #if defined __cplusplus
  462. }
  463. #endif // __cplusplus
  464. // This is the callback type used by avs_add_function
  465. typedef AVS_Value (AVSC_CC * AVS_ApplyFunc)
  466. (AVS_ScriptEnvironment *, AVS_Value args, void * user_data);
  467. typedef struct AVS_FilterInfo AVS_FilterInfo;
  468. struct AVS_FilterInfo
  469. {
  470. // these members should not be modified outside of the AVS_ApplyFunc callback
  471. AVS_Clip * child;
  472. AVS_VideoInfo vi;
  473. AVS_ScriptEnvironment * env;
  474. AVS_VideoFrame * (AVSC_CC * get_frame)(AVS_FilterInfo *, int n);
  475. int (AVSC_CC * get_parity)(AVS_FilterInfo *, int n);
  476. int (AVSC_CC * get_audio)(AVS_FilterInfo *, void * buf,
  477. INT64 start, INT64 count);
  478. int (AVSC_CC * set_cache_hints)(AVS_FilterInfo *, int cachehints,
  479. int frame_range);
  480. void (AVSC_CC * free_filter)(AVS_FilterInfo *);
  481. // Should be set when ever there is an error to report.
  482. // It is cleared before any of the above methods are called
  483. const char * error;
  484. // this is to store whatever and may be modified at will
  485. void * user_data;
  486. };
  487. // Create a new filter
  488. // fi is set to point to the AVS_FilterInfo so that you can
  489. // modify it once it is initilized.
  490. // store_child should generally be set to true. If it is not
  491. // set than ALL methods (the function pointers) must be defined
  492. // If it is set than you do not need to worry about freeing the child
  493. // clip.
  494. #if defined __cplusplus
  495. extern "C"
  496. {
  497. #endif // __cplusplus
  498. AVSC_API(AVS_Clip *, avs_new_c_filter)(AVS_ScriptEnvironment * e,
  499. AVS_FilterInfo * * fi,
  500. AVS_Value child, int store_child);
  501. #if defined __cplusplus
  502. }
  503. #endif // __cplusplus
  504. /////////////////////////////////////////////////////////////////////
  505. //
  506. // AVS_ScriptEnvironment
  507. //
  508. // For GetCPUFlags. These are backwards-compatible with those in VirtualDub.
  509. enum {
  510. /* slowest CPU to support extension */
  511. AVS_CPU_FORCE = 0x01, // N/A
  512. AVS_CPU_FPU = 0x02, // 386/486DX
  513. AVS_CPU_MMX = 0x04, // P55C, K6, PII
  514. AVS_CPU_INTEGER_SSE = 0x08, // PIII, Athlon
  515. AVS_CPU_SSE = 0x10, // PIII, Athlon XP/MP
  516. AVS_CPU_SSE2 = 0x20, // PIV, Hammer
  517. AVS_CPU_3DNOW = 0x40, // K6-2
  518. AVS_CPU_3DNOW_EXT = 0x80, // Athlon
  519. AVS_CPU_X86_64 = 0xA0, // Hammer (note: equiv. to 3DNow + SSE2,
  520. // which only Hammer will have anyway)
  521. };
  522. #if defined __cplusplus
  523. extern "C"
  524. {
  525. #endif // __cplusplus
  526. AVSC_API(const char *, avs_get_error)(AVS_ScriptEnvironment *); // return 0 if no error
  527. AVSC_API(long, avs_get_cpu_flags)(AVS_ScriptEnvironment *);
  528. AVSC_API(int, avs_check_version)(AVS_ScriptEnvironment *, int version);
  529. AVSC_API(char *, avs_save_string)(AVS_ScriptEnvironment *, const char* s, int length);
  530. AVSC_API(char *, avs_sprintf)(AVS_ScriptEnvironment *, const char * fmt, ...);
  531. AVSC_API(char *, avs_vsprintf)(AVS_ScriptEnvironment *, const char * fmt, va_list val);
  532. // note: val is really a va_list; I hope everyone typedefs va_list to a pointer
  533. AVSC_API(int, avs_add_function)(AVS_ScriptEnvironment *,
  534. const char * name, const char * params,
  535. AVS_ApplyFunc apply, void * user_data);
  536. AVSC_API(int, avs_function_exists)(AVS_ScriptEnvironment *, const char * name);
  537. AVSC_API(AVS_Value, avs_invoke)(AVS_ScriptEnvironment *, const char * name,
  538. AVS_Value args, const char** arg_names);
  539. // The returned value must be be released with avs_release_value
  540. AVSC_API(AVS_Value, avs_get_var)(AVS_ScriptEnvironment *, const char* name);
  541. // The returned value must be be released with avs_release_value
  542. AVSC_API(int, avs_set_var)(AVS_ScriptEnvironment *, const char* name, AVS_Value val);
  543. AVSC_API(int, avs_set_global_var)(AVS_ScriptEnvironment *, const char* name, const AVS_Value val);
  544. //void avs_push_context(AVS_ScriptEnvironment *, int level=0);
  545. //void avs_pop_context(AVS_ScriptEnvironment *);
  546. AVSC_API(AVS_VideoFrame *, avs_new_video_frame_a)(AVS_ScriptEnvironment *,
  547. const AVS_VideoInfo * vi, int align);
  548. // align should be at least 16
  549. #if defined __cplusplus
  550. }
  551. #endif // __cplusplus
  552. #ifndef AVSC_NO_DECLSPEC
  553. AVSC_INLINE
  554. AVS_VideoFrame * avs_new_video_frame(AVS_ScriptEnvironment * env,
  555. const AVS_VideoInfo * vi)
  556. {return avs_new_video_frame_a(env,vi,AVS_FRAME_ALIGN);}
  557. AVSC_INLINE
  558. AVS_VideoFrame * avs_new_frame(AVS_ScriptEnvironment * env,
  559. const AVS_VideoInfo * vi)
  560. {return avs_new_video_frame_a(env,vi,AVS_FRAME_ALIGN);}
  561. #endif
  562. #if defined __cplusplus
  563. extern "C"
  564. {
  565. #endif // __cplusplus
  566. AVSC_API(int, avs_make_writable)(AVS_ScriptEnvironment *, AVS_VideoFrame * * pvf);
  567. AVSC_API(void, avs_bit_blt)(AVS_ScriptEnvironment *, unsigned char* dstp, int dst_pitch, const unsigned char* srcp, int src_pitch, int row_size, int height);
  568. typedef void (AVSC_CC *AVS_ShutdownFunc)(void* user_data, AVS_ScriptEnvironment * env);
  569. AVSC_API(void, avs_at_exit)(AVS_ScriptEnvironment *, AVS_ShutdownFunc function, void * user_data);
  570. AVSC_API(AVS_VideoFrame *, avs_subframe)(AVS_ScriptEnvironment *, AVS_VideoFrame * src, int rel_offset, int new_pitch, int new_row_size, int new_height);
  571. // The returned video frame must be be released
  572. AVSC_API(int, avs_set_memory_max)(AVS_ScriptEnvironment *, int mem);
  573. AVSC_API(int, avs_set_working_dir)(AVS_ScriptEnvironment *, const char * newdir);
  574. // avisynth.dll exports this; it's a way to use it as a library, without
  575. // writing an AVS script or without going through AVIFile.
  576. AVSC_API(AVS_ScriptEnvironment *, avs_create_script_environment)(int version);
  577. #if defined __cplusplus
  578. }
  579. #endif // __cplusplus
  580. // this symbol is the entry point for the plugin and must
  581. // be defined
  582. AVSC_EXPORT
  583. const char * AVSC_CC avisynth_c_plugin_init(AVS_ScriptEnvironment* env);
  584. #if defined __cplusplus
  585. extern "C"
  586. {
  587. #endif // __cplusplus
  588. AVSC_API(void, avs_delete_script_environment)(AVS_ScriptEnvironment *);
  589. AVSC_API(AVS_VideoFrame *, avs_subframe_planar)(AVS_ScriptEnvironment *, AVS_VideoFrame * src, int rel_offset, int new_pitch, int new_row_size, int new_height, int rel_offsetU, int rel_offsetV, int new_pitchUV);
  590. // The returned video frame must be be released
  591. #if defined __cplusplus
  592. }
  593. #endif // __cplusplus
  594. #endif //__AVXSYNTH_C__