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.

395 lines
12KB

  1. /*
  2. * Copyright (C) 2015 Pedro Arthur <bygrandao@gmail.com>
  3. *
  4. * This file is part of FFmpeg.
  5. *
  6. * FFmpeg is free software; you can redistribute it and/or
  7. * modify it under the terms of the GNU Lesser General Public
  8. * License as published by the Free Software Foundation; either
  9. * version 2.1 of the License, or (at your option) any later version.
  10. *
  11. * FFmpeg is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  14. * Lesser General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU Lesser General Public
  17. * License along with FFmpeg; if not, write to the Free Software
  18. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  19. */
  20. #include "swscale_internal.h"
  21. static void free_lines(SwsSlice *s)
  22. {
  23. int i;
  24. for (i = 0; i < 2; ++i) {
  25. int n = s->plane[i].available_lines;
  26. int j;
  27. for (j = 0; j < n; ++j) {
  28. av_freep(&s->plane[i].line[j]);
  29. if (s->is_ring)
  30. s->plane[i].line[j+n] = NULL;
  31. }
  32. }
  33. for (i = 0; i < 4; ++i)
  34. memset(s->plane[i].line, 0, sizeof(uint8_t*) * s->plane[i].available_lines * (s->is_ring ? 3 : 1));
  35. s->should_free_lines = 0;
  36. }
  37. /*
  38. slice lines contains extra bytes for vectorial code thus @size
  39. is the allocated memory size and @width is the number of pixels
  40. */
  41. static int alloc_lines(SwsSlice *s, int size, int width)
  42. {
  43. int i;
  44. int idx[2] = {3, 2};
  45. s->should_free_lines = 1;
  46. s->width = width;
  47. for (i = 0; i < 2; ++i) {
  48. int n = s->plane[i].available_lines;
  49. int j;
  50. int ii = idx[i];
  51. av_assert0(n == s->plane[ii].available_lines);
  52. for (j = 0; j < n; ++j) {
  53. // chroma plane line U and V are expected to be contiguous in memory
  54. // by mmx vertical scaler code
  55. s->plane[i].line[j] = av_malloc(size * 2 + 32);
  56. if (!s->plane[i].line[j]) {
  57. free_lines(s);
  58. return AVERROR(ENOMEM);
  59. }
  60. s->plane[ii].line[j] = s->plane[i].line[j] + size + 16;
  61. if (s->is_ring) {
  62. s->plane[i].line[j+n] = s->plane[i].line[j];
  63. s->plane[ii].line[j+n] = s->plane[ii].line[j];
  64. }
  65. }
  66. }
  67. return 0;
  68. }
  69. static int alloc_slice(SwsSlice *s, enum AVPixelFormat fmt, int lumLines, int chrLines, int h_sub_sample, int v_sub_sample, int ring)
  70. {
  71. int i;
  72. int size[4] = { lumLines,
  73. chrLines,
  74. chrLines,
  75. lumLines };
  76. s->h_chr_sub_sample = h_sub_sample;
  77. s->v_chr_sub_sample = v_sub_sample;
  78. s->fmt = fmt;
  79. s->is_ring = ring;
  80. s->should_free_lines = 0;
  81. for (i = 0; i < 4; ++i) {
  82. int n = size[i] * ( ring == 0 ? 1 : 3);
  83. s->plane[i].line = av_mallocz_array(sizeof(uint8_t*), n);
  84. if (!s->plane[i].line)
  85. return AVERROR(ENOMEM);
  86. s->plane[i].tmp = ring ? s->plane[i].line + size[i] * 2 : NULL;
  87. s->plane[i].available_lines = size[i];
  88. s->plane[i].sliceY = 0;
  89. s->plane[i].sliceH = 0;
  90. }
  91. return 0;
  92. }
  93. static void free_slice(SwsSlice *s)
  94. {
  95. int i;
  96. if (s) {
  97. if (s->should_free_lines)
  98. free_lines(s);
  99. for (i = 0; i < 4; ++i) {
  100. av_freep(&s->plane[i].line);
  101. s->plane[i].tmp = NULL;
  102. }
  103. }
  104. }
  105. int ff_rotate_slice(SwsSlice *s, int lum, int chr)
  106. {
  107. int i;
  108. if (lum) {
  109. for (i = 0; i < 4; i+=3) {
  110. int n = s->plane[i].available_lines;
  111. int l = lum - s->plane[i].sliceY;
  112. if (l >= n * 2) {
  113. s->plane[i].sliceY += n;
  114. s->plane[i].sliceH -= n;
  115. }
  116. }
  117. }
  118. if (chr) {
  119. for (i = 1; i < 3; ++i) {
  120. int n = s->plane[i].available_lines;
  121. int l = chr - s->plane[i].sliceY;
  122. if (l >= n * 2) {
  123. s->plane[i].sliceY += n;
  124. s->plane[i].sliceH -= n;
  125. }
  126. }
  127. }
  128. return 0;
  129. }
  130. int ff_init_slice_from_src(SwsSlice * s, uint8_t *src[4], int stride[4], int srcW, int lumY, int lumH, int chrY, int chrH, int relative)
  131. {
  132. int i = 0;
  133. const int start[4] = {lumY,
  134. chrY,
  135. chrY,
  136. lumY};
  137. const int end[4] = {lumY +lumH,
  138. chrY + chrH,
  139. chrY + chrH,
  140. lumY + lumH};
  141. s->width = srcW;
  142. for (i = 0; i < 4 && src[i] != NULL; ++i) {
  143. uint8_t *const src_i = src[i] + (relative ? 0 : start[i]) * stride[i];
  144. int j;
  145. int first = s->plane[i].sliceY;
  146. int n = s->plane[i].available_lines;
  147. int lines = end[i] - start[i];
  148. int tot_lines = end[i] - first;
  149. if (start[i] >= first && n >= tot_lines) {
  150. s->plane[i].sliceH = FFMAX(tot_lines, s->plane[i].sliceH);
  151. for (j = 0; j < lines; j+= 1)
  152. s->plane[i].line[start[i] - first + j] = src_i + j * stride[i];
  153. } else {
  154. s->plane[i].sliceY = start[i];
  155. lines = lines > n ? n : lines;
  156. s->plane[i].sliceH = lines;
  157. for (j = 0; j < lines; j+= 1)
  158. s->plane[i].line[j] = src_i + j * stride[i];
  159. }
  160. }
  161. return 0;
  162. }
  163. static void fill_ones(SwsSlice *s, int n, int bpc)
  164. {
  165. int i, j, k, size, end;
  166. for (i = 0; i < 4; ++i) {
  167. size = s->plane[i].available_lines;
  168. for (j = 0; j < size; ++j) {
  169. if (bpc == 16) {
  170. end = (n>>1) + 1;
  171. for (k = 0; k < end; ++k)
  172. ((int32_t*)(s->plane[i].line[j]))[k] = 1<<18;
  173. } else if (bpc == 32) {
  174. end = (n>>2) + 1;
  175. for (k = 0; k < end; ++k)
  176. ((int64_t*)(s->plane[i].line[j]))[k] = 1LL<<34;
  177. } else {
  178. end = n + 1;
  179. for (k = 0; k < end; ++k)
  180. ((int16_t*)(s->plane[i].line[j]))[k] = 1<<14;
  181. }
  182. }
  183. }
  184. }
  185. /*
  186. Calculates the minimum ring buffer size, it should be able to store vFilterSize
  187. more n lines where n is the max difference between each adjacent slice which
  188. outputs a line.
  189. The n lines are needed only when there is not enough src lines to output a single
  190. dst line, then we should buffer these lines to process them on the next call to scale.
  191. */
  192. static void get_min_buffer_size(SwsContext *c, int *out_lum_size, int *out_chr_size)
  193. {
  194. int lumY;
  195. int dstH = c->dstH;
  196. int chrDstH = c->chrDstH;
  197. int *lumFilterPos = c->vLumFilterPos;
  198. int *chrFilterPos = c->vChrFilterPos;
  199. int lumFilterSize = c->vLumFilterSize;
  200. int chrFilterSize = c->vChrFilterSize;
  201. int chrSubSample = c->chrSrcVSubSample;
  202. *out_lum_size = lumFilterSize;
  203. *out_chr_size = chrFilterSize;
  204. for (lumY = 0; lumY < dstH; lumY++) {
  205. int chrY = (int64_t)lumY * chrDstH / dstH;
  206. int nextSlice = FFMAX(lumFilterPos[lumY] + lumFilterSize - 1,
  207. ((chrFilterPos[chrY] + chrFilterSize - 1)
  208. << chrSubSample));
  209. nextSlice >>= chrSubSample;
  210. nextSlice <<= chrSubSample;
  211. (*out_lum_size) = FFMAX((*out_lum_size), nextSlice - lumFilterPos[lumY]);
  212. (*out_chr_size) = FFMAX((*out_chr_size), (nextSlice >> chrSubSample) - chrFilterPos[chrY]);
  213. }
  214. }
  215. int ff_init_filters(SwsContext * c)
  216. {
  217. int i;
  218. int index;
  219. int num_ydesc;
  220. int num_cdesc;
  221. int num_vdesc = isPlanarYUV(c->dstFormat) && !isGray(c->dstFormat) ? 2 : 1;
  222. int need_lum_conv = c->lumToYV12 || c->readLumPlanar || c->alpToYV12 || c->readAlpPlanar;
  223. int need_chr_conv = c->chrToYV12 || c->readChrPlanar;
  224. int need_gamma = c->is_internal_gamma;
  225. int srcIdx, dstIdx;
  226. int dst_stride = FFALIGN(c->dstW * sizeof(int16_t) + 66, 16);
  227. uint32_t * pal = usePal(c->srcFormat) ? c->pal_yuv : (uint32_t*)c->input_rgb2yuv_table;
  228. int res = 0;
  229. int lumBufSize;
  230. int chrBufSize;
  231. get_min_buffer_size(c, &lumBufSize, &chrBufSize);
  232. lumBufSize = FFMAX(lumBufSize, c->vLumFilterSize + MAX_LINES_AHEAD);
  233. chrBufSize = FFMAX(chrBufSize, c->vChrFilterSize + MAX_LINES_AHEAD);
  234. if (c->dstBpc == 16)
  235. dst_stride <<= 1;
  236. if (c->dstBpc == 32)
  237. dst_stride <<= 2;
  238. num_ydesc = need_lum_conv ? 2 : 1;
  239. num_cdesc = need_chr_conv ? 2 : 1;
  240. c->numSlice = FFMAX(num_ydesc, num_cdesc) + 2;
  241. c->numDesc = num_ydesc + num_cdesc + num_vdesc + (need_gamma ? 2 : 0);
  242. c->descIndex[0] = num_ydesc + (need_gamma ? 1 : 0);
  243. c->descIndex[1] = num_ydesc + num_cdesc + (need_gamma ? 1 : 0);
  244. c->desc = av_mallocz_array(sizeof(SwsFilterDescriptor), c->numDesc);
  245. if (!c->desc)
  246. return AVERROR(ENOMEM);
  247. c->slice = av_mallocz_array(sizeof(SwsSlice), c->numSlice);
  248. res = alloc_slice(&c->slice[0], c->srcFormat, c->srcH, c->chrSrcH, c->chrSrcHSubSample, c->chrSrcVSubSample, 0);
  249. if (res < 0) goto cleanup;
  250. for (i = 1; i < c->numSlice-2; ++i) {
  251. res = alloc_slice(&c->slice[i], c->srcFormat, lumBufSize, chrBufSize, c->chrSrcHSubSample, c->chrSrcVSubSample, 0);
  252. if (res < 0) goto cleanup;
  253. res = alloc_lines(&c->slice[i], FFALIGN(c->srcW*2+78, 16), c->srcW);
  254. if (res < 0) goto cleanup;
  255. }
  256. // horizontal scaler output
  257. res = alloc_slice(&c->slice[i], c->srcFormat, lumBufSize, chrBufSize, c->chrDstHSubSample, c->chrDstVSubSample, 1);
  258. if (res < 0) goto cleanup;
  259. res = alloc_lines(&c->slice[i], dst_stride, c->dstW);
  260. if (res < 0) goto cleanup;
  261. fill_ones(&c->slice[i], dst_stride>>1, c->dstBpc);
  262. // vertical scaler output
  263. ++i;
  264. res = alloc_slice(&c->slice[i], c->dstFormat, c->dstH, c->chrDstH, c->chrDstHSubSample, c->chrDstVSubSample, 0);
  265. if (res < 0) goto cleanup;
  266. index = 0;
  267. srcIdx = 0;
  268. dstIdx = 1;
  269. if (need_gamma) {
  270. res = ff_init_gamma_convert(c->desc + index, c->slice + srcIdx, c->inv_gamma);
  271. if (res < 0) goto cleanup;
  272. ++index;
  273. }
  274. if (need_lum_conv) {
  275. res = ff_init_desc_fmt_convert(&c->desc[index], &c->slice[srcIdx], &c->slice[dstIdx], pal);
  276. if (res < 0) goto cleanup;
  277. c->desc[index].alpha = c->needAlpha;
  278. ++index;
  279. srcIdx = dstIdx;
  280. }
  281. dstIdx = FFMAX(num_ydesc, num_cdesc);
  282. res = ff_init_desc_hscale(&c->desc[index], &c->slice[srcIdx], &c->slice[dstIdx], c->hLumFilter, c->hLumFilterPos, c->hLumFilterSize, c->lumXInc);
  283. if (res < 0) goto cleanup;
  284. c->desc[index].alpha = c->needAlpha;
  285. ++index;
  286. {
  287. srcIdx = 0;
  288. dstIdx = 1;
  289. if (need_chr_conv) {
  290. res = ff_init_desc_cfmt_convert(&c->desc[index], &c->slice[srcIdx], &c->slice[dstIdx], pal);
  291. if (res < 0) goto cleanup;
  292. ++index;
  293. srcIdx = dstIdx;
  294. }
  295. dstIdx = FFMAX(num_ydesc, num_cdesc);
  296. if (c->needs_hcscale)
  297. res = ff_init_desc_chscale(&c->desc[index], &c->slice[srcIdx], &c->slice[dstIdx], c->hChrFilter, c->hChrFilterPos, c->hChrFilterSize, c->chrXInc);
  298. else
  299. res = ff_init_desc_no_chr(&c->desc[index], &c->slice[srcIdx], &c->slice[dstIdx]);
  300. if (res < 0) goto cleanup;
  301. }
  302. ++index;
  303. {
  304. srcIdx = c->numSlice - 2;
  305. dstIdx = c->numSlice - 1;
  306. res = ff_init_vscale(c, c->desc + index, c->slice + srcIdx, c->slice + dstIdx);
  307. if (res < 0) goto cleanup;
  308. }
  309. ++index;
  310. if (need_gamma) {
  311. res = ff_init_gamma_convert(c->desc + index, c->slice + dstIdx, c->gamma);
  312. if (res < 0) goto cleanup;
  313. }
  314. return 0;
  315. cleanup:
  316. ff_free_filters(c);
  317. return res;
  318. }
  319. int ff_free_filters(SwsContext *c)
  320. {
  321. int i;
  322. if (c->desc) {
  323. for (i = 0; i < c->numDesc; ++i)
  324. av_freep(&c->desc[i].instance);
  325. av_freep(&c->desc);
  326. }
  327. if (c->slice) {
  328. for (i = 0; i < c->numSlice; ++i)
  329. free_slice(&c->slice[i]);
  330. av_freep(&c->slice);
  331. }
  332. return 0;
  333. }