You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

900 lines
26KB

  1. /*
  2. * Misc image conversion routines
  3. * Copyright (c) 2001, 2002, 2003 Fabrice Bellard
  4. *
  5. * This file is part of FFmpeg.
  6. *
  7. * FFmpeg is free software; you can redistribute it and/or
  8. * modify it under the terms of the GNU Lesser General Public
  9. * License as published by the Free Software Foundation; either
  10. * version 2.1 of the License, or (at your option) any later version.
  11. *
  12. * FFmpeg is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  15. * Lesser General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU Lesser General Public
  18. * License along with FFmpeg; if not, write to the Free Software
  19. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  20. */
  21. /**
  22. * @file
  23. * misc image conversion routines
  24. */
  25. /* TODO:
  26. * - write 'ffimg' program to test all the image related stuff
  27. * - move all api to slice based system
  28. * - integrate deinterlacing, postprocessing and scaling in the conversion process
  29. */
  30. #include "avcodec.h"
  31. #include "dsputil.h"
  32. #include "internal.h"
  33. #include "imgconvert.h"
  34. #include "libavutil/colorspace.h"
  35. #include "libavutil/pixdesc.h"
  36. #include "libavutil/imgutils.h"
  37. #if HAVE_MMX && HAVE_YASM
  38. #include "x86/dsputil_mmx.h"
  39. #endif
  40. #define FF_COLOR_RGB 0 /**< RGB color space */
  41. #define FF_COLOR_GRAY 1 /**< gray color space */
  42. #define FF_COLOR_YUV 2 /**< YUV color space. 16 <= Y <= 235, 16 <= U, V <= 240 */
  43. #define FF_COLOR_YUV_JPEG 3 /**< YUV color space. 0 <= Y <= 255, 0 <= U, V <= 255 */
  44. #if HAVE_MMX && HAVE_YASM
  45. #define deinterlace_line_inplace ff_deinterlace_line_inplace_mmx
  46. #define deinterlace_line ff_deinterlace_line_mmx
  47. #else
  48. #define deinterlace_line_inplace deinterlace_line_inplace_c
  49. #define deinterlace_line deinterlace_line_c
  50. #endif
  51. #define pixdesc_has_alpha(pixdesc) \
  52. ((pixdesc)->nb_components == 2 || (pixdesc)->nb_components == 4 || (pixdesc)->flags & PIX_FMT_PAL)
  53. typedef struct PixFmtInfo {
  54. uint8_t color_type; /**< color type (see FF_COLOR_xxx constants) */
  55. uint8_t padded_size; /**< padded size in bits if different from the non-padded size */
  56. } PixFmtInfo;
  57. /* this table gives more information about formats */
  58. static const PixFmtInfo pix_fmt_info[PIX_FMT_NB] = {
  59. /* YUV formats */
  60. [PIX_FMT_YUV420P] = {
  61. .color_type = FF_COLOR_YUV,
  62. },
  63. [PIX_FMT_YUV422P] = {
  64. .color_type = FF_COLOR_YUV,
  65. },
  66. [PIX_FMT_YUV444P] = {
  67. .color_type = FF_COLOR_YUV,
  68. },
  69. [PIX_FMT_YUYV422] = {
  70. .color_type = FF_COLOR_YUV,
  71. },
  72. [PIX_FMT_UYVY422] = {
  73. .color_type = FF_COLOR_YUV,
  74. },
  75. [PIX_FMT_YUV410P] = {
  76. .color_type = FF_COLOR_YUV,
  77. },
  78. [PIX_FMT_YUV411P] = {
  79. .color_type = FF_COLOR_YUV,
  80. },
  81. [PIX_FMT_YUV440P] = {
  82. .color_type = FF_COLOR_YUV,
  83. },
  84. [PIX_FMT_YUV420P16LE] = {
  85. .color_type = FF_COLOR_YUV,
  86. },
  87. [PIX_FMT_YUV422P16LE] = {
  88. .color_type = FF_COLOR_YUV,
  89. },
  90. [PIX_FMT_YUV444P16LE] = {
  91. .color_type = FF_COLOR_YUV,
  92. },
  93. [PIX_FMT_YUV420P16BE] = {
  94. .color_type = FF_COLOR_YUV,
  95. },
  96. [PIX_FMT_YUV422P16BE] = {
  97. .color_type = FF_COLOR_YUV,
  98. },
  99. [PIX_FMT_YUV444P16BE] = {
  100. .color_type = FF_COLOR_YUV,
  101. },
  102. /* YUV formats with alpha plane */
  103. [PIX_FMT_YUVA420P] = {
  104. .color_type = FF_COLOR_YUV,
  105. },
  106. [PIX_FMT_YUVA444P] = {
  107. .color_type = FF_COLOR_YUV,
  108. },
  109. /* JPEG YUV */
  110. [PIX_FMT_YUVJ420P] = {
  111. .color_type = FF_COLOR_YUV_JPEG,
  112. },
  113. [PIX_FMT_YUVJ422P] = {
  114. .color_type = FF_COLOR_YUV_JPEG,
  115. },
  116. [PIX_FMT_YUVJ444P] = {
  117. .color_type = FF_COLOR_YUV_JPEG,
  118. },
  119. [PIX_FMT_YUVJ440P] = {
  120. .color_type = FF_COLOR_YUV_JPEG,
  121. },
  122. /* RGB formats */
  123. [PIX_FMT_RGB24] = {
  124. .color_type = FF_COLOR_RGB,
  125. },
  126. [PIX_FMT_BGR24] = {
  127. .color_type = FF_COLOR_RGB,
  128. },
  129. [PIX_FMT_ARGB] = {
  130. .color_type = FF_COLOR_RGB,
  131. },
  132. [PIX_FMT_RGB48BE] = {
  133. .color_type = FF_COLOR_RGB,
  134. },
  135. [PIX_FMT_RGB48LE] = {
  136. .color_type = FF_COLOR_RGB,
  137. },
  138. [PIX_FMT_RGBA64BE] = {
  139. .color_type = FF_COLOR_RGB,
  140. },
  141. [PIX_FMT_RGBA64LE] = {
  142. .color_type = FF_COLOR_RGB,
  143. },
  144. [PIX_FMT_RGB565BE] = {
  145. .color_type = FF_COLOR_RGB,
  146. },
  147. [PIX_FMT_RGB565LE] = {
  148. .color_type = FF_COLOR_RGB,
  149. },
  150. [PIX_FMT_RGB555BE] = {
  151. .color_type = FF_COLOR_RGB,
  152. .padded_size = 16,
  153. },
  154. [PIX_FMT_RGB555LE] = {
  155. .color_type = FF_COLOR_RGB,
  156. .padded_size = 16,
  157. },
  158. [PIX_FMT_RGB444BE] = {
  159. .color_type = FF_COLOR_RGB,
  160. .padded_size = 16,
  161. },
  162. [PIX_FMT_RGB444LE] = {
  163. .color_type = FF_COLOR_RGB,
  164. .padded_size = 16,
  165. },
  166. /* gray / mono formats */
  167. [PIX_FMT_GRAY16BE] = {
  168. .color_type = FF_COLOR_GRAY,
  169. },
  170. [PIX_FMT_GRAY16LE] = {
  171. .color_type = FF_COLOR_GRAY,
  172. },
  173. [PIX_FMT_GRAY8] = {
  174. .color_type = FF_COLOR_GRAY,
  175. },
  176. [PIX_FMT_GRAY8A] = {
  177. .color_type = FF_COLOR_GRAY,
  178. },
  179. [PIX_FMT_MONOWHITE] = {
  180. .color_type = FF_COLOR_GRAY,
  181. },
  182. [PIX_FMT_MONOBLACK] = {
  183. .color_type = FF_COLOR_GRAY,
  184. },
  185. /* paletted formats */
  186. [PIX_FMT_PAL8] = {
  187. .color_type = FF_COLOR_RGB,
  188. },
  189. [PIX_FMT_UYYVYY411] = {
  190. .color_type = FF_COLOR_YUV,
  191. },
  192. [PIX_FMT_ABGR] = {
  193. .color_type = FF_COLOR_RGB,
  194. },
  195. [PIX_FMT_BGR48BE] = {
  196. .color_type = FF_COLOR_RGB,
  197. },
  198. [PIX_FMT_BGR48LE] = {
  199. .color_type = FF_COLOR_RGB,
  200. },
  201. [PIX_FMT_BGRA64BE] = {
  202. .color_type = FF_COLOR_RGB,
  203. },
  204. [PIX_FMT_BGRA64LE] = {
  205. .color_type = FF_COLOR_RGB,
  206. },
  207. [PIX_FMT_BGR565BE] = {
  208. .color_type = FF_COLOR_RGB,
  209. .padded_size = 16,
  210. },
  211. [PIX_FMT_BGR565LE] = {
  212. .color_type = FF_COLOR_RGB,
  213. .padded_size = 16,
  214. },
  215. [PIX_FMT_BGR555BE] = {
  216. .color_type = FF_COLOR_RGB,
  217. .padded_size = 16,
  218. },
  219. [PIX_FMT_BGR555LE] = {
  220. .color_type = FF_COLOR_RGB,
  221. .padded_size = 16,
  222. },
  223. [PIX_FMT_BGR444BE] = {
  224. .color_type = FF_COLOR_RGB,
  225. .padded_size = 16,
  226. },
  227. [PIX_FMT_BGR444LE] = {
  228. .color_type = FF_COLOR_RGB,
  229. .padded_size = 16,
  230. },
  231. [PIX_FMT_RGB8] = {
  232. .color_type = FF_COLOR_RGB,
  233. },
  234. [PIX_FMT_RGB4] = {
  235. .color_type = FF_COLOR_RGB,
  236. },
  237. [PIX_FMT_RGB4_BYTE] = {
  238. .color_type = FF_COLOR_RGB,
  239. .padded_size = 8,
  240. },
  241. [PIX_FMT_BGR8] = {
  242. .color_type = FF_COLOR_RGB,
  243. },
  244. [PIX_FMT_BGR4] = {
  245. .color_type = FF_COLOR_RGB,
  246. },
  247. [PIX_FMT_BGR4_BYTE] = {
  248. .color_type = FF_COLOR_RGB,
  249. .padded_size = 8,
  250. },
  251. [PIX_FMT_NV12] = {
  252. .color_type = FF_COLOR_YUV,
  253. },
  254. [PIX_FMT_NV21] = {
  255. .color_type = FF_COLOR_YUV,
  256. },
  257. [PIX_FMT_BGRA] = {
  258. .color_type = FF_COLOR_RGB,
  259. },
  260. [PIX_FMT_RGBA] = {
  261. .color_type = FF_COLOR_RGB,
  262. },
  263. };
  264. void avcodec_get_chroma_sub_sample(enum PixelFormat pix_fmt, int *h_shift, int *v_shift)
  265. {
  266. *h_shift = av_pix_fmt_descriptors[pix_fmt].log2_chroma_w;
  267. *v_shift = av_pix_fmt_descriptors[pix_fmt].log2_chroma_h;
  268. }
  269. int ff_is_hwaccel_pix_fmt(enum PixelFormat pix_fmt)
  270. {
  271. return av_pix_fmt_descriptors[pix_fmt].flags & PIX_FMT_HWACCEL;
  272. }
  273. int avpicture_fill(AVPicture *picture, uint8_t *ptr,
  274. enum PixelFormat pix_fmt, int width, int height)
  275. {
  276. int ret;
  277. if ((ret = av_image_check_size(width, height, 0, NULL)) < 0)
  278. return ret;
  279. if ((ret = av_image_fill_linesizes(picture->linesize, pix_fmt, width)) < 0)
  280. return ret;
  281. return av_image_fill_pointers(picture->data, pix_fmt, height, ptr, picture->linesize);
  282. }
  283. int avpicture_layout(const AVPicture* src, enum PixelFormat pix_fmt, int width, int height,
  284. unsigned char *dest, int dest_size)
  285. {
  286. int i, j, nb_planes = 0, linesizes[4];
  287. const AVPixFmtDescriptor *desc = &av_pix_fmt_descriptors[pix_fmt];
  288. int size = avpicture_get_size(pix_fmt, width, height);
  289. if (size > dest_size || size < 0)
  290. return AVERROR(EINVAL);
  291. for (i = 0; i < desc->nb_components; i++)
  292. nb_planes = FFMAX(desc->comp[i].plane, nb_planes);
  293. nb_planes++;
  294. av_image_fill_linesizes(linesizes, pix_fmt, width);
  295. for (i = 0; i < nb_planes; i++) {
  296. int h, shift = (i == 1 || i == 2) ? desc->log2_chroma_h : 0;
  297. const unsigned char *s = src->data[i];
  298. h = (height + (1 << shift) - 1) >> shift;
  299. for (j = 0; j < h; j++) {
  300. memcpy(dest, s, linesizes[i]);
  301. dest += linesizes[i];
  302. s += src->linesize[i];
  303. }
  304. }
  305. switch (pix_fmt) {
  306. case PIX_FMT_RGB8:
  307. case PIX_FMT_BGR8:
  308. case PIX_FMT_RGB4_BYTE:
  309. case PIX_FMT_BGR4_BYTE:
  310. case PIX_FMT_GRAY8:
  311. // do not include palette for these pseudo-paletted formats
  312. return size;
  313. }
  314. if (desc->flags & PIX_FMT_PAL) {
  315. uint32_t *d32 = (unsigned char *)(((size_t)dest + 3) & ~3);
  316. for (i = 0; i<256; i++)
  317. AV_WL32(d32 + i, AV_RN32(src->data[1] + 4*i));
  318. }
  319. return size;
  320. }
  321. int avpicture_get_size(enum PixelFormat pix_fmt, int width, int height)
  322. {
  323. AVPicture dummy_pict;
  324. if(av_image_check_size(width, height, 0, NULL))
  325. return -1;
  326. if (av_pix_fmt_descriptors[pix_fmt].flags & PIX_FMT_PSEUDOPAL)
  327. // do not include palette for these pseudo-paletted formats
  328. return width * height;
  329. return avpicture_fill(&dummy_pict, NULL, pix_fmt, width, height);
  330. }
  331. static int get_pix_fmt_depth(int *min, int *max, enum PixelFormat pix_fmt)
  332. {
  333. const AVPixFmtDescriptor *desc = &av_pix_fmt_descriptors[pix_fmt];
  334. int i;
  335. if (!desc->nb_components) {
  336. *min = *max = 0;
  337. return AVERROR(EINVAL);
  338. }
  339. *min = INT_MAX, *max = -INT_MAX;
  340. for (i = 0; i < desc->nb_components; i++) {
  341. *min = FFMIN(desc->comp[i].depth_minus1+1, *min);
  342. *max = FFMAX(desc->comp[i].depth_minus1+1, *max);
  343. }
  344. return 0;
  345. }
  346. int avcodec_get_pix_fmt_loss(enum PixelFormat dst_pix_fmt, enum PixelFormat src_pix_fmt,
  347. int has_alpha)
  348. {
  349. const PixFmtInfo *pf, *ps;
  350. const AVPixFmtDescriptor *src_desc;
  351. const AVPixFmtDescriptor *dst_desc;
  352. int src_min_depth, src_max_depth, dst_min_depth, dst_max_depth;
  353. int ret, loss;
  354. if (dst_pix_fmt >= PIX_FMT_NB || dst_pix_fmt <= PIX_FMT_NONE)
  355. return ~0;
  356. src_desc = &av_pix_fmt_descriptors[src_pix_fmt];
  357. dst_desc = &av_pix_fmt_descriptors[dst_pix_fmt];
  358. ps = &pix_fmt_info[src_pix_fmt];
  359. /* compute loss */
  360. loss = 0;
  361. if ((ret = get_pix_fmt_depth(&src_min_depth, &src_max_depth, src_pix_fmt)) < 0)
  362. return ret;
  363. if ((ret = get_pix_fmt_depth(&dst_min_depth, &dst_max_depth, dst_pix_fmt)) < 0)
  364. return ret;
  365. if (dst_min_depth < src_min_depth ||
  366. dst_max_depth < src_max_depth)
  367. loss |= FF_LOSS_DEPTH;
  368. if (dst_desc->log2_chroma_w > src_desc->log2_chroma_w ||
  369. dst_desc->log2_chroma_h > src_desc->log2_chroma_h)
  370. loss |= FF_LOSS_RESOLUTION;
  371. pf = &pix_fmt_info[dst_pix_fmt];
  372. switch(pf->color_type) {
  373. case FF_COLOR_RGB:
  374. if (ps->color_type != FF_COLOR_RGB &&
  375. ps->color_type != FF_COLOR_GRAY)
  376. loss |= FF_LOSS_COLORSPACE;
  377. break;
  378. case FF_COLOR_GRAY:
  379. if (ps->color_type != FF_COLOR_GRAY)
  380. loss |= FF_LOSS_COLORSPACE;
  381. break;
  382. case FF_COLOR_YUV:
  383. if (ps->color_type != FF_COLOR_YUV)
  384. loss |= FF_LOSS_COLORSPACE;
  385. break;
  386. case FF_COLOR_YUV_JPEG:
  387. if (ps->color_type != FF_COLOR_YUV_JPEG &&
  388. ps->color_type != FF_COLOR_YUV &&
  389. ps->color_type != FF_COLOR_GRAY)
  390. loss |= FF_LOSS_COLORSPACE;
  391. break;
  392. default:
  393. /* fail safe test */
  394. if (ps->color_type != pf->color_type)
  395. loss |= FF_LOSS_COLORSPACE;
  396. break;
  397. }
  398. if (pf->color_type == FF_COLOR_GRAY &&
  399. ps->color_type != FF_COLOR_GRAY)
  400. loss |= FF_LOSS_CHROMA;
  401. if (!pixdesc_has_alpha(dst_desc) && (pixdesc_has_alpha(src_desc) && has_alpha))
  402. loss |= FF_LOSS_ALPHA;
  403. if (dst_pix_fmt == PIX_FMT_PAL8 &&
  404. (src_pix_fmt != PIX_FMT_PAL8 && (ps->color_type != FF_COLOR_GRAY || (pixdesc_has_alpha(src_desc) && has_alpha))))
  405. loss |= FF_LOSS_COLORQUANT;
  406. return loss;
  407. }
  408. static int avg_bits_per_pixel(enum PixelFormat pix_fmt)
  409. {
  410. const PixFmtInfo *info = &pix_fmt_info[pix_fmt];
  411. const AVPixFmtDescriptor *desc = &av_pix_fmt_descriptors[pix_fmt];
  412. return info->padded_size ?
  413. info->padded_size : av_get_bits_per_pixel(desc);
  414. }
  415. enum PixelFormat avcodec_find_best_pix_fmt(int64_t pix_fmt_mask, enum PixelFormat src_pix_fmt,
  416. int has_alpha, int *loss_ptr)
  417. {
  418. enum PixelFormat dst_pix_fmt;
  419. int i;
  420. if (loss_ptr) /* all losses count (for backward compatibility) */
  421. *loss_ptr = 0;
  422. dst_pix_fmt = PIX_FMT_NONE; /* so first iteration doesn't have to be treated special */
  423. for(i = 0; i< FFMIN(PIX_FMT_NB, 64); i++){
  424. if (pix_fmt_mask & (1ULL << i))
  425. dst_pix_fmt = avcodec_find_best_pix_fmt2(dst_pix_fmt, i, src_pix_fmt, has_alpha, loss_ptr);
  426. }
  427. return dst_pix_fmt;
  428. }
  429. enum PixelFormat avcodec_find_best_pix_fmt2(enum PixelFormat dst_pix_fmt1, enum PixelFormat dst_pix_fmt2,
  430. enum PixelFormat src_pix_fmt, int has_alpha, int *loss_ptr)
  431. {
  432. enum PixelFormat dst_pix_fmt;
  433. int loss1, loss2, loss_order1, loss_order2, i, loss_mask;
  434. static const int loss_mask_order[] = {
  435. ~0, /* no loss first */
  436. ~FF_LOSS_ALPHA,
  437. ~FF_LOSS_RESOLUTION,
  438. ~(FF_LOSS_COLORSPACE | FF_LOSS_RESOLUTION),
  439. ~FF_LOSS_COLORQUANT,
  440. ~FF_LOSS_DEPTH,
  441. ~(FF_LOSS_DEPTH|FF_LOSS_COLORSPACE),
  442. ~(FF_LOSS_RESOLUTION | FF_LOSS_DEPTH | FF_LOSS_COLORSPACE | FF_LOSS_ALPHA |
  443. FF_LOSS_COLORQUANT | FF_LOSS_CHROMA),
  444. 0x80000, //non zero entry that combines all loss variants including future additions
  445. 0,
  446. };
  447. loss_mask= loss_ptr?~*loss_ptr:~0; /* use loss mask if provided */
  448. dst_pix_fmt = PIX_FMT_NONE;
  449. loss1 = avcodec_get_pix_fmt_loss(dst_pix_fmt1, src_pix_fmt, has_alpha) & loss_mask;
  450. loss2 = avcodec_get_pix_fmt_loss(dst_pix_fmt2, src_pix_fmt, has_alpha) & loss_mask;
  451. /* try with successive loss */
  452. for(i = 0;loss_mask_order[i] != 0 && dst_pix_fmt == PIX_FMT_NONE;i++) {
  453. loss_order1 = loss1 & loss_mask_order[i];
  454. loss_order2 = loss2 & loss_mask_order[i];
  455. if (loss_order1 == 0 && loss_order2 == 0){ /* use format with smallest depth */
  456. dst_pix_fmt = avg_bits_per_pixel(dst_pix_fmt2) < avg_bits_per_pixel(dst_pix_fmt1) ? dst_pix_fmt2 : dst_pix_fmt1;
  457. } else if (loss_order1 == 0 || loss_order2 == 0) { /* use format with no loss */
  458. dst_pix_fmt = loss_order2 ? dst_pix_fmt1 : dst_pix_fmt2;
  459. }
  460. }
  461. if (loss_ptr)
  462. *loss_ptr = avcodec_get_pix_fmt_loss(dst_pix_fmt, src_pix_fmt, has_alpha);
  463. return dst_pix_fmt;
  464. }
  465. void av_picture_copy(AVPicture *dst, const AVPicture *src,
  466. enum PixelFormat pix_fmt, int width, int height)
  467. {
  468. av_image_copy(dst->data, dst->linesize, src->data,
  469. src->linesize, pix_fmt, width, height);
  470. }
  471. /* 2x2 -> 1x1 */
  472. void ff_shrink22(uint8_t *dst, int dst_wrap,
  473. const uint8_t *src, int src_wrap,
  474. int width, int height)
  475. {
  476. int w;
  477. const uint8_t *s1, *s2;
  478. uint8_t *d;
  479. for(;height > 0; height--) {
  480. s1 = src;
  481. s2 = s1 + src_wrap;
  482. d = dst;
  483. for(w = width;w >= 4; w-=4) {
  484. d[0] = (s1[0] + s1[1] + s2[0] + s2[1] + 2) >> 2;
  485. d[1] = (s1[2] + s1[3] + s2[2] + s2[3] + 2) >> 2;
  486. d[2] = (s1[4] + s1[5] + s2[4] + s2[5] + 2) >> 2;
  487. d[3] = (s1[6] + s1[7] + s2[6] + s2[7] + 2) >> 2;
  488. s1 += 8;
  489. s2 += 8;
  490. d += 4;
  491. }
  492. for(;w > 0; w--) {
  493. d[0] = (s1[0] + s1[1] + s2[0] + s2[1] + 2) >> 2;
  494. s1 += 2;
  495. s2 += 2;
  496. d++;
  497. }
  498. src += 2 * src_wrap;
  499. dst += dst_wrap;
  500. }
  501. }
  502. /* 4x4 -> 1x1 */
  503. void ff_shrink44(uint8_t *dst, int dst_wrap,
  504. const uint8_t *src, int src_wrap,
  505. int width, int height)
  506. {
  507. int w;
  508. const uint8_t *s1, *s2, *s3, *s4;
  509. uint8_t *d;
  510. for(;height > 0; height--) {
  511. s1 = src;
  512. s2 = s1 + src_wrap;
  513. s3 = s2 + src_wrap;
  514. s4 = s3 + src_wrap;
  515. d = dst;
  516. for(w = width;w > 0; w--) {
  517. d[0] = (s1[0] + s1[1] + s1[2] + s1[3] +
  518. s2[0] + s2[1] + s2[2] + s2[3] +
  519. s3[0] + s3[1] + s3[2] + s3[3] +
  520. s4[0] + s4[1] + s4[2] + s4[3] + 8) >> 4;
  521. s1 += 4;
  522. s2 += 4;
  523. s3 += 4;
  524. s4 += 4;
  525. d++;
  526. }
  527. src += 4 * src_wrap;
  528. dst += dst_wrap;
  529. }
  530. }
  531. /* 8x8 -> 1x1 */
  532. void ff_shrink88(uint8_t *dst, int dst_wrap,
  533. const uint8_t *src, int src_wrap,
  534. int width, int height)
  535. {
  536. int w, i;
  537. for(;height > 0; height--) {
  538. for(w = width;w > 0; w--) {
  539. int tmp=0;
  540. for(i=0; i<8; i++){
  541. tmp += src[0] + src[1] + src[2] + src[3] + src[4] + src[5] + src[6] + src[7];
  542. src += src_wrap;
  543. }
  544. *(dst++) = (tmp + 32)>>6;
  545. src += 8 - 8*src_wrap;
  546. }
  547. src += 8*src_wrap - 8*width;
  548. dst += dst_wrap - width;
  549. }
  550. }
  551. int avpicture_alloc(AVPicture *picture,
  552. enum PixelFormat pix_fmt, int width, int height)
  553. {
  554. int ret;
  555. if ((ret = av_image_alloc(picture->data, picture->linesize, width, height, pix_fmt, 1)) < 0) {
  556. memset(picture, 0, sizeof(AVPicture));
  557. return ret;
  558. }
  559. return 0;
  560. }
  561. void avpicture_free(AVPicture *picture)
  562. {
  563. av_free(picture->data[0]);
  564. }
  565. /* return true if yuv planar */
  566. static inline int is_yuv_planar(enum PixelFormat fmt)
  567. {
  568. const PixFmtInfo *info = &pix_fmt_info[fmt];
  569. const AVPixFmtDescriptor *desc = &av_pix_fmt_descriptors[fmt];
  570. int i;
  571. int planes[4] = { 0 };
  572. if (info->color_type != FF_COLOR_YUV &&
  573. info->color_type != FF_COLOR_YUV_JPEG)
  574. return 0;
  575. /* set the used planes */
  576. for (i = 0; i < desc->nb_components; i++)
  577. planes[desc->comp[i].plane] = 1;
  578. /* if there is an unused plane, the format is not planar */
  579. for (i = 0; i < desc->nb_components; i++)
  580. if (!planes[i])
  581. return 0;
  582. return 1;
  583. }
  584. int av_picture_crop(AVPicture *dst, const AVPicture *src,
  585. enum PixelFormat pix_fmt, int top_band, int left_band)
  586. {
  587. int y_shift;
  588. int x_shift;
  589. if (pix_fmt < 0 || pix_fmt >= PIX_FMT_NB)
  590. return -1;
  591. y_shift = av_pix_fmt_descriptors[pix_fmt].log2_chroma_h;
  592. x_shift = av_pix_fmt_descriptors[pix_fmt].log2_chroma_w;
  593. if (is_yuv_planar(pix_fmt)) {
  594. dst->data[0] = src->data[0] + (top_band * src->linesize[0]) + left_band;
  595. dst->data[1] = src->data[1] + ((top_band >> y_shift) * src->linesize[1]) + (left_band >> x_shift);
  596. dst->data[2] = src->data[2] + ((top_band >> y_shift) * src->linesize[2]) + (left_band >> x_shift);
  597. } else{
  598. if(top_band % (1<<y_shift) || left_band % (1<<x_shift))
  599. return -1;
  600. if(left_band) //FIXME add support for this too
  601. return -1;
  602. dst->data[0] = src->data[0] + (top_band * src->linesize[0]) + left_band;
  603. }
  604. dst->linesize[0] = src->linesize[0];
  605. dst->linesize[1] = src->linesize[1];
  606. dst->linesize[2] = src->linesize[2];
  607. return 0;
  608. }
  609. int av_picture_pad(AVPicture *dst, const AVPicture *src, int height, int width,
  610. enum PixelFormat pix_fmt, int padtop, int padbottom, int padleft, int padright,
  611. int *color)
  612. {
  613. uint8_t *optr;
  614. int y_shift;
  615. int x_shift;
  616. int yheight;
  617. int i, y;
  618. if (pix_fmt < 0 || pix_fmt >= PIX_FMT_NB ||
  619. !is_yuv_planar(pix_fmt)) return -1;
  620. for (i = 0; i < 3; i++) {
  621. x_shift = i ? av_pix_fmt_descriptors[pix_fmt].log2_chroma_w : 0;
  622. y_shift = i ? av_pix_fmt_descriptors[pix_fmt].log2_chroma_h : 0;
  623. if (padtop || padleft) {
  624. memset(dst->data[i], color[i],
  625. dst->linesize[i] * (padtop >> y_shift) + (padleft >> x_shift));
  626. }
  627. if (padleft || padright) {
  628. optr = dst->data[i] + dst->linesize[i] * (padtop >> y_shift) +
  629. (dst->linesize[i] - (padright >> x_shift));
  630. yheight = (height - 1 - (padtop + padbottom)) >> y_shift;
  631. for (y = 0; y < yheight; y++) {
  632. memset(optr, color[i], (padleft + padright) >> x_shift);
  633. optr += dst->linesize[i];
  634. }
  635. }
  636. if (src) { /* first line */
  637. uint8_t *iptr = src->data[i];
  638. optr = dst->data[i] + dst->linesize[i] * (padtop >> y_shift) +
  639. (padleft >> x_shift);
  640. memcpy(optr, iptr, (width - padleft - padright) >> x_shift);
  641. iptr += src->linesize[i];
  642. optr = dst->data[i] + dst->linesize[i] * (padtop >> y_shift) +
  643. (dst->linesize[i] - (padright >> x_shift));
  644. yheight = (height - 1 - (padtop + padbottom)) >> y_shift;
  645. for (y = 0; y < yheight; y++) {
  646. memset(optr, color[i], (padleft + padright) >> x_shift);
  647. memcpy(optr + ((padleft + padright) >> x_shift), iptr,
  648. (width - padleft - padright) >> x_shift);
  649. iptr += src->linesize[i];
  650. optr += dst->linesize[i];
  651. }
  652. }
  653. if (padbottom || padright) {
  654. optr = dst->data[i] + dst->linesize[i] *
  655. ((height - padbottom) >> y_shift) - (padright >> x_shift);
  656. memset(optr, color[i],dst->linesize[i] *
  657. (padbottom >> y_shift) + (padright >> x_shift));
  658. }
  659. }
  660. return 0;
  661. }
  662. #if !(HAVE_MMX && HAVE_YASM)
  663. /* filter parameters: [-1 4 2 4 -1] // 8 */
  664. static void deinterlace_line_c(uint8_t *dst,
  665. const uint8_t *lum_m4, const uint8_t *lum_m3,
  666. const uint8_t *lum_m2, const uint8_t *lum_m1,
  667. const uint8_t *lum,
  668. int size)
  669. {
  670. uint8_t *cm = ff_cropTbl + MAX_NEG_CROP;
  671. int sum;
  672. for(;size > 0;size--) {
  673. sum = -lum_m4[0];
  674. sum += lum_m3[0] << 2;
  675. sum += lum_m2[0] << 1;
  676. sum += lum_m1[0] << 2;
  677. sum += -lum[0];
  678. dst[0] = cm[(sum + 4) >> 3];
  679. lum_m4++;
  680. lum_m3++;
  681. lum_m2++;
  682. lum_m1++;
  683. lum++;
  684. dst++;
  685. }
  686. }
  687. static void deinterlace_line_inplace_c(uint8_t *lum_m4, uint8_t *lum_m3,
  688. uint8_t *lum_m2, uint8_t *lum_m1,
  689. uint8_t *lum, int size)
  690. {
  691. uint8_t *cm = ff_cropTbl + MAX_NEG_CROP;
  692. int sum;
  693. for(;size > 0;size--) {
  694. sum = -lum_m4[0];
  695. sum += lum_m3[0] << 2;
  696. sum += lum_m2[0] << 1;
  697. lum_m4[0]=lum_m2[0];
  698. sum += lum_m1[0] << 2;
  699. sum += -lum[0];
  700. lum_m2[0] = cm[(sum + 4) >> 3];
  701. lum_m4++;
  702. lum_m3++;
  703. lum_m2++;
  704. lum_m1++;
  705. lum++;
  706. }
  707. }
  708. #endif
  709. /* deinterlacing : 2 temporal taps, 3 spatial taps linear filter. The
  710. top field is copied as is, but the bottom field is deinterlaced
  711. against the top field. */
  712. static void deinterlace_bottom_field(uint8_t *dst, int dst_wrap,
  713. const uint8_t *src1, int src_wrap,
  714. int width, int height)
  715. {
  716. const uint8_t *src_m2, *src_m1, *src_0, *src_p1, *src_p2;
  717. int y;
  718. src_m2 = src1;
  719. src_m1 = src1;
  720. src_0=&src_m1[src_wrap];
  721. src_p1=&src_0[src_wrap];
  722. src_p2=&src_p1[src_wrap];
  723. for(y=0;y<(height-2);y+=2) {
  724. memcpy(dst,src_m1,width);
  725. dst += dst_wrap;
  726. deinterlace_line(dst,src_m2,src_m1,src_0,src_p1,src_p2,width);
  727. src_m2 = src_0;
  728. src_m1 = src_p1;
  729. src_0 = src_p2;
  730. src_p1 += 2*src_wrap;
  731. src_p2 += 2*src_wrap;
  732. dst += dst_wrap;
  733. }
  734. memcpy(dst,src_m1,width);
  735. dst += dst_wrap;
  736. /* do last line */
  737. deinterlace_line(dst,src_m2,src_m1,src_0,src_0,src_0,width);
  738. }
  739. static void deinterlace_bottom_field_inplace(uint8_t *src1, int src_wrap,
  740. int width, int height)
  741. {
  742. uint8_t *src_m1, *src_0, *src_p1, *src_p2;
  743. int y;
  744. uint8_t *buf;
  745. buf = av_malloc(width);
  746. src_m1 = src1;
  747. memcpy(buf,src_m1,width);
  748. src_0=&src_m1[src_wrap];
  749. src_p1=&src_0[src_wrap];
  750. src_p2=&src_p1[src_wrap];
  751. for(y=0;y<(height-2);y+=2) {
  752. deinterlace_line_inplace(buf,src_m1,src_0,src_p1,src_p2,width);
  753. src_m1 = src_p1;
  754. src_0 = src_p2;
  755. src_p1 += 2*src_wrap;
  756. src_p2 += 2*src_wrap;
  757. }
  758. /* do last line */
  759. deinterlace_line_inplace(buf,src_m1,src_0,src_0,src_0,width);
  760. av_free(buf);
  761. }
  762. int avpicture_deinterlace(AVPicture *dst, const AVPicture *src,
  763. enum PixelFormat pix_fmt, int width, int height)
  764. {
  765. int i;
  766. if (pix_fmt != PIX_FMT_YUV420P &&
  767. pix_fmt != PIX_FMT_YUVJ420P &&
  768. pix_fmt != PIX_FMT_YUV422P &&
  769. pix_fmt != PIX_FMT_YUVJ422P &&
  770. pix_fmt != PIX_FMT_YUV444P &&
  771. pix_fmt != PIX_FMT_YUV411P &&
  772. pix_fmt != PIX_FMT_GRAY8)
  773. return -1;
  774. if ((width & 3) != 0 || (height & 3) != 0)
  775. return -1;
  776. for(i=0;i<3;i++) {
  777. if (i == 1) {
  778. switch(pix_fmt) {
  779. case PIX_FMT_YUVJ420P:
  780. case PIX_FMT_YUV420P:
  781. width >>= 1;
  782. height >>= 1;
  783. break;
  784. case PIX_FMT_YUV422P:
  785. case PIX_FMT_YUVJ422P:
  786. width >>= 1;
  787. break;
  788. case PIX_FMT_YUV411P:
  789. width >>= 2;
  790. break;
  791. default:
  792. break;
  793. }
  794. if (pix_fmt == PIX_FMT_GRAY8) {
  795. break;
  796. }
  797. }
  798. if (src == dst) {
  799. deinterlace_bottom_field_inplace(dst->data[i], dst->linesize[i],
  800. width, height);
  801. } else {
  802. deinterlace_bottom_field(dst->data[i],dst->linesize[i],
  803. src->data[i], src->linesize[i],
  804. width, height);
  805. }
  806. }
  807. emms_c();
  808. return 0;
  809. }