mp_image.h 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159
  1. /*
  2. * This file is part of MPlayer.
  3. *
  4. * MPlayer is free software; you can redistribute it and/or modify
  5. * it under the terms of the GNU General Public License as published by
  6. * the Free Software Foundation; either version 2 of the License, or
  7. * (at your option) any later version.
  8. *
  9. * MPlayer is distributed in the hope that it will be useful,
  10. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. * GNU General Public License for more details.
  13. *
  14. * You should have received a copy of the GNU General Public License along
  15. * with MPlayer; if not, write to the Free Software Foundation, Inc.,
  16. * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
  17. */
  18. #ifndef MPLAYER_MP_IMAGE_H
  19. #define MPLAYER_MP_IMAGE_H
  20. #include <stdio.h>
  21. #include <stdlib.h>
  22. #include <string.h>
  23. #undef printf //FIXME
  24. #undef fprintf //FIXME
  25. #include "mp_msg.h"
  26. #include "libavutil/avutil.h"
  27. #include "libavutil/avassert.h"
  28. #undef realloc
  29. #undef malloc
  30. #undef free
  31. #undef rand
  32. #undef srand
  33. #undef printf
  34. #undef strncpy
  35. #define ASMALIGN(ZEROBITS) ".p2align " #ZEROBITS "\n\t"
  36. #define CODEC_FLAG2_MEMC_ONLY 0x00001000 ///< Only do ME/MC (I frames -> ref, P frame -> ME+MC).
  37. enum AVPixelFormat ff_mp2ff_pix_fmt(int mp);
  38. //--------- codec's requirements (filled by the codec/vf) ---------
  39. //--- buffer content restrictions:
  40. // set if buffer content shouldn't be modified:
  41. #define MP_IMGFLAG_PRESERVE 0x01
  42. // set if buffer content will be READ.
  43. // This can be e.g. for next frame's MC: (I/P mpeg frames) -
  44. // then in combination with MP_IMGFLAG_PRESERVE - or it
  45. // can be because a video filter or codec will read a significant
  46. // amount of data while processing that frame (e.g. blending something
  47. // onto the frame, MV based intra prediction).
  48. // A frame marked like this should not be placed in to uncachable
  49. // video RAM for example.
  50. #define MP_IMGFLAG_READABLE 0x02
  51. //--- buffer width/stride/plane restrictions: (used for direct rendering)
  52. // stride _have_to_ be aligned to MB boundary: [for DR restrictions]
  53. #define MP_IMGFLAG_ACCEPT_ALIGNED_STRIDE 0x4
  54. // stride should be aligned to MB boundary: [for buffer allocation]
  55. #define MP_IMGFLAG_PREFER_ALIGNED_STRIDE 0x8
  56. // codec accept any stride (>=width):
  57. #define MP_IMGFLAG_ACCEPT_STRIDE 0x10
  58. // codec accept any width (width*bpp=stride -> stride%bpp==0) (>=width):
  59. #define MP_IMGFLAG_ACCEPT_WIDTH 0x20
  60. //--- for planar formats only:
  61. // uses only stride[0], and stride[1]=stride[2]=stride[0]>>mpi->chroma_x_shift
  62. #define MP_IMGFLAG_COMMON_STRIDE 0x40
  63. // uses only planes[0], and calculates planes[1,2] from width,height,imgfmt
  64. #define MP_IMGFLAG_COMMON_PLANE 0x80
  65. #define MP_IMGFLAGMASK_RESTRICTIONS 0xFF
  66. //--------- color info (filled by ff_mp_image_setfmt() ) -----------
  67. // set if number of planes > 1
  68. #define MP_IMGFLAG_PLANAR 0x100
  69. // set if it's YUV colorspace
  70. #define MP_IMGFLAG_YUV 0x200
  71. // set if it's swapped (BGR or YVU) plane/byteorder
  72. #define MP_IMGFLAG_SWAPPED 0x400
  73. // set if you want memory for palette allocated and managed by ff_vf_get_image etc.
  74. #define MP_IMGFLAG_RGB_PALETTE 0x800
  75. #define MP_IMGFLAGMASK_COLORS 0xF00
  76. // codec uses drawing/rendering callbacks (draw_slice()-like thing, DR method 2)
  77. // [the codec will set this flag if it supports callbacks, and the vo _may_
  78. // clear it in get_image() if draw_slice() not implemented]
  79. #define MP_IMGFLAG_DRAW_CALLBACK 0x1000
  80. // set if it's in video buffer/memory: [set by vo/vf's get_image() !!!]
  81. #define MP_IMGFLAG_DIRECT 0x2000
  82. // set if buffer is allocated (used in destination images):
  83. #define MP_IMGFLAG_ALLOCATED 0x4000
  84. // buffer type was printed (do NOT set this flag - it's for INTERNAL USE!!!)
  85. #define MP_IMGFLAG_TYPE_DISPLAYED 0x8000
  86. // codec doesn't support any form of direct rendering - it has own buffer
  87. // allocation. so we just export its buffer pointers:
  88. #define MP_IMGTYPE_EXPORT 0
  89. // codec requires a static WO buffer, but it does only partial updates later:
  90. #define MP_IMGTYPE_STATIC 1
  91. // codec just needs some WO memory, where it writes/copies the whole frame to:
  92. #define MP_IMGTYPE_TEMP 2
  93. // I+P type, requires 2+ independent static R/W buffers
  94. #define MP_IMGTYPE_IP 3
  95. // I+P+B type, requires 2+ independent static R/W and 1+ temp WO buffers
  96. #define MP_IMGTYPE_IPB 4
  97. // Upper 16 bits give desired buffer number, -1 means get next available
  98. #define MP_IMGTYPE_NUMBERED 5
  99. // Doesn't need any buffer, incomplete image (probably a first field only)
  100. // we need this type to be able to differentiate between half frames and
  101. // all other cases
  102. #define MP_IMGTYPE_INCOMPLETE 6
  103. #define MP_MAX_PLANES 4
  104. #define MP_IMGFIELD_ORDERED 0x01
  105. #define MP_IMGFIELD_TOP_FIRST 0x02
  106. #define MP_IMGFIELD_REPEAT_FIRST 0x04
  107. #define MP_IMGFIELD_TOP 0x08
  108. #define MP_IMGFIELD_BOTTOM 0x10
  109. #define MP_IMGFIELD_INTERLACED 0x20
  110. typedef struct mp_image {
  111. unsigned int flags;
  112. unsigned char type;
  113. int number;
  114. unsigned char bpp; // bits/pixel. NOT depth! for RGB it will be n*8
  115. unsigned int imgfmt;
  116. int width,height; // stored dimensions
  117. int x,y,w,h; // visible dimensions
  118. unsigned char* planes[MP_MAX_PLANES];
  119. int stride[MP_MAX_PLANES];
  120. char * qscale;
  121. int qstride;
  122. int pict_type; // 0->unknown, 1->I, 2->P, 3->B
  123. int fields;
  124. int qscale_type; // 0->mpeg1/4/h263, 1->mpeg2
  125. int num_planes;
  126. /* these are only used by planar formats Y,U(Cb),V(Cr) */
  127. int chroma_width;
  128. int chroma_height;
  129. int chroma_x_shift; // horizontal
  130. int chroma_y_shift; // vertical
  131. int usage_count;
  132. /* for private use by filter or vo driver (to store buffer id or dmpi) */
  133. void* priv;
  134. } mp_image_t;
  135. void ff_mp_image_setfmt(mp_image_t* mpi,unsigned int out_fmt);
  136. mp_image_t* ff_new_mp_image(int w,int h);
  137. void ff_free_mp_image(mp_image_t* mpi);
  138. mp_image_t* ff_alloc_mpi(int w, int h, unsigned long int fmt);
  139. void ff_mp_image_alloc_planes(mp_image_t *mpi);
  140. void ff_copy_mpi(mp_image_t *dmpi, mp_image_t *mpi);
  141. #endif /* MPLAYER_MP_IMAGE_H */