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.

340 lines
11KB

  1. /*
  2. * copyright (c) 2008 vmrsss
  3. * copyright (c) 2009 Stefano Sabatini
  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. * video padding filter
  24. */
  25. #include "avfilter.h"
  26. #include "parseutils.h"
  27. #include "libavutil/pixdesc.h"
  28. #include "libavutil/colorspace.h"
  29. enum { RED = 0, GREEN, BLUE, ALPHA };
  30. static int fill_line_with_color(uint8_t *line[4], int line_step[4], int w, uint8_t color[4],
  31. enum PixelFormat pix_fmt, uint8_t rgba_color[4], int *is_packed_rgba)
  32. {
  33. uint8_t rgba_map[4] = {0};
  34. int i;
  35. const AVPixFmtDescriptor *pix_desc = &av_pix_fmt_descriptors[pix_fmt];
  36. int hsub = pix_desc->log2_chroma_w;
  37. *is_packed_rgba = 1;
  38. switch (pix_fmt) {
  39. case PIX_FMT_ARGB: rgba_map[ALPHA] = 0; rgba_map[RED ] = 1; rgba_map[GREEN] = 2; rgba_map[BLUE ] = 3; break;
  40. case PIX_FMT_ABGR: rgba_map[ALPHA] = 0; rgba_map[BLUE ] = 1; rgba_map[GREEN] = 2; rgba_map[RED ] = 3; break;
  41. case PIX_FMT_RGBA:
  42. case PIX_FMT_RGB24: rgba_map[RED ] = 0; rgba_map[GREEN] = 1; rgba_map[BLUE ] = 2; rgba_map[ALPHA] = 3; break;
  43. case PIX_FMT_BGRA:
  44. case PIX_FMT_BGR24: rgba_map[BLUE ] = 0; rgba_map[GREEN] = 1; rgba_map[RED ] = 2; rgba_map[ALPHA] = 3; break;
  45. default:
  46. *is_packed_rgba = 0;
  47. }
  48. if (*is_packed_rgba) {
  49. line_step[0] = (av_get_bits_per_pixel(pix_desc))>>3;
  50. for (i = 0; i < 4; i++)
  51. color[rgba_map[i]] = rgba_color[i];
  52. line[0] = av_malloc(w * line_step[0]);
  53. for (i = 0; i < w; i++)
  54. memcpy(line[0] + i * line_step[0], color, line_step[0]);
  55. } else {
  56. int plane;
  57. color[RED ] = RGB_TO_Y_CCIR(rgba_color[0], rgba_color[1], rgba_color[2]);
  58. color[GREEN] = RGB_TO_U_CCIR(rgba_color[0], rgba_color[1], rgba_color[2], 0);
  59. color[BLUE ] = RGB_TO_V_CCIR(rgba_color[0], rgba_color[1], rgba_color[2], 0);
  60. color[ALPHA] = rgba_color[3];
  61. for (plane = 0; plane < 4; plane++) {
  62. int line_size;
  63. int hsub1 = (plane == 1 || plane == 2) ? hsub : 0;
  64. line_step[plane] = 1;
  65. line_size = (w >> hsub1) * line_step[plane];
  66. line[plane] = av_malloc(line_size);
  67. memset(line[plane], color[plane], line_size);
  68. }
  69. }
  70. return 0;
  71. }
  72. static void draw_rectangle(AVFilterPicRef *outpic, uint8_t *line[4], int line_step[4],
  73. int hsub, int vsub, int x, int y, int w, int h)
  74. {
  75. int i, plane;
  76. uint8_t *p;
  77. for (plane = 0; plane < 4 && outpic->data[plane]; plane++) {
  78. int hsub1 = plane == 1 || plane == 2 ? hsub : 0;
  79. int vsub1 = plane == 1 || plane == 2 ? vsub : 0;
  80. p = outpic->data[plane] + (y >> vsub1) * outpic->linesize[plane];
  81. for (i = 0; i < (h >> vsub1); i++) {
  82. memcpy(p + (x >> hsub1) * line_step[plane], line[plane], (w >> hsub1) * line_step[plane]);
  83. p += outpic->linesize[plane];
  84. }
  85. }
  86. }
  87. static int query_formats(AVFilterContext *ctx)
  88. {
  89. static const enum PixelFormat pix_fmts[] = {
  90. PIX_FMT_ARGB, PIX_FMT_RGBA,
  91. PIX_FMT_ABGR, PIX_FMT_BGRA,
  92. PIX_FMT_RGB24, PIX_FMT_BGR24,
  93. PIX_FMT_YUV444P, PIX_FMT_YUV422P,
  94. PIX_FMT_YUV420P, PIX_FMT_YUV411P,
  95. PIX_FMT_YUV410P, PIX_FMT_YUV440P,
  96. PIX_FMT_YUVJ444P, PIX_FMT_YUVJ422P,
  97. PIX_FMT_YUVJ420P, PIX_FMT_YUVJ440P,
  98. PIX_FMT_YUVA420P,
  99. PIX_FMT_NONE
  100. };
  101. avfilter_set_common_formats(ctx, avfilter_make_format_list(pix_fmts));
  102. return 0;
  103. }
  104. #if CONFIG_PAD_FILTER
  105. typedef struct {
  106. int w, h; ///< output dimensions, a value of 0 will result in the input size
  107. int x, y; ///< offsets of the input area with respect to the padded area
  108. int in_w, in_h; ///< width and height for the padded input video, which has to be aligned to the chroma values in order to avoid chroma issues
  109. uint8_t color[4]; ///< color expressed either in YUVA or RGBA colorspace for the padding area
  110. uint8_t *line[4];
  111. int line_step[4];
  112. int hsub, vsub; ///< chroma subsampling values
  113. } PadContext;
  114. static av_cold int init(AVFilterContext *ctx, const char *args, void *opaque)
  115. {
  116. PadContext *pad = ctx->priv;
  117. char color_string[128] = "black";
  118. if (args)
  119. sscanf(args, "%d:%d:%d:%d:%s", &pad->w, &pad->h, &pad->x, &pad->y, color_string);
  120. if (av_parse_color(pad->color, color_string, ctx) < 0)
  121. return AVERROR(EINVAL);
  122. /* sanity check params */
  123. if (pad->w < 0 || pad->h < 0) {
  124. av_log(ctx, AV_LOG_ERROR, "Negative size values are not acceptable.\n");
  125. return AVERROR(EINVAL);
  126. }
  127. return 0;
  128. }
  129. static av_cold void uninit(AVFilterContext *ctx)
  130. {
  131. PadContext *pad = ctx->priv;
  132. int i;
  133. for (i = 0; i < 4; i++) {
  134. av_freep(&pad->line[i]);
  135. pad->line_step[i] = 0;
  136. }
  137. }
  138. static int config_input(AVFilterLink *inlink)
  139. {
  140. AVFilterContext *ctx = inlink->dst;
  141. PadContext *pad = ctx->priv;
  142. const AVPixFmtDescriptor *pix_desc = &av_pix_fmt_descriptors[inlink->format];
  143. uint8_t rgba_color[4];
  144. int is_packed_rgba;
  145. pad->hsub = pix_desc->log2_chroma_w;
  146. pad->vsub = pix_desc->log2_chroma_h;
  147. if (!pad->w)
  148. pad->w = inlink->w;
  149. if (!pad->h)
  150. pad->h = inlink->h;
  151. pad->w &= ~((1 << pad->hsub) - 1);
  152. pad->h &= ~((1 << pad->vsub) - 1);
  153. pad->x &= ~((1 << pad->hsub) - 1);
  154. pad->y &= ~((1 << pad->vsub) - 1);
  155. pad->in_w = inlink->w & ~((1 << pad->hsub) - 1);
  156. pad->in_h = inlink->h & ~((1 << pad->vsub) - 1);
  157. memcpy(rgba_color, pad->color, sizeof(rgba_color));
  158. fill_line_with_color(pad->line, pad->line_step, pad->w, pad->color,
  159. inlink->format, rgba_color, &is_packed_rgba);
  160. av_log(ctx, AV_LOG_INFO, "w:%d h:%d x:%d y:%d color:0x%02X%02X%02X%02X[%s]\n",
  161. pad->w, pad->h, pad->x, pad->y,
  162. pad->color[0], pad->color[1], pad->color[2], pad->color[3],
  163. is_packed_rgba ? "rgba" : "yuva");
  164. if (pad->x < 0 || pad->y < 0 ||
  165. pad->w <= 0 || pad->h <= 0 ||
  166. (unsigned)pad->x + (unsigned)inlink->w > pad->w ||
  167. (unsigned)pad->y + (unsigned)inlink->h > pad->h) {
  168. av_log(ctx, AV_LOG_ERROR,
  169. "Input area %d:%d:%d:%d not within the padded area 0:0:%d:%d or zero-sized\n",
  170. pad->x, pad->y, pad->x + inlink->w, pad->y + inlink->h, pad->w, pad->h);
  171. return AVERROR(EINVAL);
  172. }
  173. return 0;
  174. }
  175. static int config_output(AVFilterLink *outlink)
  176. {
  177. PadContext *pad = outlink->src->priv;
  178. outlink->w = pad->w;
  179. outlink->h = pad->h;
  180. return 0;
  181. }
  182. static AVFilterPicRef *get_video_buffer(AVFilterLink *inlink, int perms, int w, int h)
  183. {
  184. PadContext *pad = inlink->dst->priv;
  185. AVFilterPicRef *picref = avfilter_get_video_buffer(inlink->dst->outputs[0], perms,
  186. w + (pad->w - pad->in_w),
  187. h + (pad->h - pad->in_h));
  188. int plane;
  189. for (plane = 0; plane < 4 && picref->data[plane]; plane++) {
  190. int hsub = (plane == 1 || plane == 2) ? pad->hsub : 0;
  191. int vsub = (plane == 1 || plane == 2) ? pad->vsub : 0;
  192. picref->data[plane] += (pad->x >> hsub) * pad->line_step[plane] +
  193. (pad->y >> vsub) * picref->linesize[plane];
  194. }
  195. return picref;
  196. }
  197. static void start_frame(AVFilterLink *inlink, AVFilterPicRef *inpicref)
  198. {
  199. PadContext *pad = inlink->dst->priv;
  200. AVFilterPicRef *outpicref = avfilter_ref_pic(inpicref, ~0);
  201. int plane;
  202. inlink->dst->outputs[0]->outpic = outpicref;
  203. for (plane = 0; plane < 4 && outpicref->data[plane]; plane++) {
  204. int hsub = (plane == 1 || plane == 2) ? pad->hsub : 0;
  205. int vsub = (plane == 1 || plane == 2) ? pad->vsub : 0;
  206. outpicref->data[plane] -= (pad->x >> hsub) * pad->line_step[plane] +
  207. (pad->y >> vsub) * outpicref->linesize[plane];
  208. }
  209. avfilter_start_frame(inlink->dst->outputs[0], outpicref);
  210. }
  211. static void end_frame(AVFilterLink *link)
  212. {
  213. avfilter_end_frame(link->dst->outputs[0]);
  214. avfilter_unref_pic(link->cur_pic);
  215. }
  216. static void draw_send_bar_slice(AVFilterLink *link, int y, int h, int slice_dir, int before_slice)
  217. {
  218. PadContext *pad = link->dst->priv;
  219. int bar_y, bar_h = 0;
  220. if (slice_dir * before_slice == 1 && y == pad->y) {
  221. /* top bar */
  222. bar_y = 0;
  223. bar_h = pad->y;
  224. } else if (slice_dir * before_slice == -1 && (y + h) == (pad->y + pad->in_h)) {
  225. /* bottom bar */
  226. bar_y = pad->y + pad->in_h;
  227. bar_h = pad->h - pad->in_h - pad->y;
  228. }
  229. if (bar_h) {
  230. draw_rectangle(link->dst->outputs[0]->outpic,
  231. pad->line, pad->line_step, pad->hsub, pad->vsub,
  232. 0, bar_y, pad->w, bar_h);
  233. avfilter_draw_slice(link->dst->outputs[0], bar_y, bar_h, slice_dir);
  234. }
  235. }
  236. static void draw_slice(AVFilterLink *link, int y, int h, int slice_dir)
  237. {
  238. PadContext *pad = link->dst->priv;
  239. AVFilterPicRef *outpic = link->dst->outputs[0]->outpic;
  240. y += pad->y;
  241. y &= ~((1 << pad->vsub) - 1);
  242. h &= ~((1 << pad->vsub) - 1);
  243. if (!h)
  244. return;
  245. draw_send_bar_slice(link, y, h, slice_dir, 1);
  246. /* left border */
  247. draw_rectangle(outpic, pad->line, pad->line_step, pad->hsub, pad->vsub,
  248. 0, y, pad->x, h);
  249. /* right border */
  250. draw_rectangle(outpic, pad->line, pad->line_step, pad->hsub, pad->vsub,
  251. pad->x + pad->in_w, y, pad->w - pad->x - pad->in_w, h);
  252. avfilter_draw_slice(link->dst->outputs[0], y, h, slice_dir);
  253. draw_send_bar_slice(link, y, h, slice_dir, -1);
  254. }
  255. AVFilter avfilter_vf_pad = {
  256. .name = "pad",
  257. .description = NULL_IF_CONFIG_SMALL("Pad input image to width:height[:x:y[:color]] (default x and y: 0, default color: black)."),
  258. .priv_size = sizeof(PadContext),
  259. .init = init,
  260. .uninit = uninit,
  261. .query_formats = query_formats,
  262. .inputs = (AVFilterPad[]) {{ .name = "default",
  263. .type = AVMEDIA_TYPE_VIDEO,
  264. .config_props = config_input,
  265. .get_video_buffer = get_video_buffer,
  266. .start_frame = start_frame,
  267. .draw_slice = draw_slice,
  268. .end_frame = end_frame, },
  269. { .name = NULL}},
  270. .outputs = (AVFilterPad[]) {{ .name = "default",
  271. .type = AVMEDIA_TYPE_VIDEO,
  272. .config_props = config_output, },
  273. { .name = NULL}},
  274. };
  275. #endif /* CONFIG_PAD_FILTER */