avisynth_c_25.h 2.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. // Copyright (c) 2011 FFmpegSource Project
  2. //
  3. // Permission is hereby granted, free of charge, to any person obtaining a copy
  4. // of this software and associated documentation files (the "Software"), to deal
  5. // in the Software without restriction, including without limitation the rights
  6. // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  7. // copies of the Software, and to permit persons to whom the Software is
  8. // furnished to do so, subject to the following conditions:
  9. //
  10. // The above copyright notice and this permission notice shall be included in
  11. // all copies or substantial portions of the Software.
  12. //
  13. // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  14. // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  15. // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  16. // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  17. // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  18. // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  19. // THE SOFTWARE.
  20. /* these are defines/functions that are used and were changed in the switch to 2.6
  21. * and are needed to maintain full compatility with 2.5 */
  22. enum {
  23. AVS_CS_YV12_25 = 1<<3 | AVS_CS_YUV | AVS_CS_PLANAR, // y-v-u, planar
  24. AVS_CS_I420_25 = 1<<4 | AVS_CS_YUV | AVS_CS_PLANAR, // y-u-v, planar
  25. };
  26. AVSC_INLINE int avs_get_height_p_25(const AVS_VideoFrame * p, int plane) {
  27. switch (plane)
  28. {
  29. case AVS_PLANAR_U: case AVS_PLANAR_V:
  30. if (p->pitchUV)
  31. return p->height>>1;
  32. return 0;
  33. }
  34. return p->height;}
  35. AVSC_INLINE int avs_get_row_size_p_25(const AVS_VideoFrame * p, int plane) {
  36. int r;
  37. switch (plane)
  38. {
  39. case AVS_PLANAR_U: case AVS_PLANAR_V:
  40. if (p->pitchUV)
  41. return p->row_size>>1;
  42. else
  43. return 0;
  44. case AVS_PLANAR_U_ALIGNED: case AVS_PLANAR_V_ALIGNED:
  45. if (p->pitchUV)
  46. {
  47. r = ((p->row_size+AVS_FRAME_ALIGN-1)&(~(AVS_FRAME_ALIGN-1)) )>>1; // Aligned rowsize
  48. if (r < p->pitchUV)
  49. return r;
  50. return p->row_size>>1;
  51. }
  52. else
  53. return 0;
  54. case AVS_PLANAR_Y_ALIGNED:
  55. r = (p->row_size+AVS_FRAME_ALIGN-1)&(~(AVS_FRAME_ALIGN-1)); // Aligned rowsize
  56. if (r <= p->pitch)
  57. return r;
  58. return p->row_size;
  59. }
  60. return p->row_size;
  61. }
  62. AVSC_INLINE int avs_is_yv12_25(const AVS_VideoInfo * p)
  63. { return ((p->pixel_type & AVS_CS_YV12_25) == AVS_CS_YV12_25)||((p->pixel_type & AVS_CS_I420_25) == AVS_CS_I420_25); }