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.

232 lines
7.2KB

  1. /*
  2. * Copyright (c) 2010 Stefano Sabatini
  3. * Copyright (c) 2008 Vitor Sessak
  4. *
  5. * This file is part of Libav.
  6. *
  7. * Libav 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. * Libav 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 Libav; 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. * transposition filter
  24. * Based on MPlayer libmpcodecs/vf_rotate.c.
  25. */
  26. #include <stdio.h>
  27. #include "libavutil/intreadwrite.h"
  28. #include "libavutil/pixdesc.h"
  29. #include "libavutil/imgutils.h"
  30. #include "libavutil/internal.h"
  31. #include "avfilter.h"
  32. #include "formats.h"
  33. #include "internal.h"
  34. #include "video.h"
  35. typedef struct {
  36. int hsub, vsub;
  37. int pixsteps[4];
  38. /* 0 Rotate by 90 degrees counterclockwise and vflip. */
  39. /* 1 Rotate by 90 degrees clockwise. */
  40. /* 2 Rotate by 90 degrees counterclockwise. */
  41. /* 3 Rotate by 90 degrees clockwise and vflip. */
  42. int dir;
  43. } TransContext;
  44. static av_cold int init(AVFilterContext *ctx, const char *args)
  45. {
  46. TransContext *trans = ctx->priv;
  47. trans->dir = 0;
  48. if (args)
  49. sscanf(args, "%d", &trans->dir);
  50. if (trans->dir < 0 || trans->dir > 3) {
  51. av_log(ctx, AV_LOG_ERROR, "Invalid value %d not between 0 and 3.\n",
  52. trans->dir);
  53. return AVERROR(EINVAL);
  54. }
  55. return 0;
  56. }
  57. static int query_formats(AVFilterContext *ctx)
  58. {
  59. enum AVPixelFormat pix_fmts[] = {
  60. AV_PIX_FMT_ARGB, AV_PIX_FMT_RGBA,
  61. AV_PIX_FMT_ABGR, AV_PIX_FMT_BGRA,
  62. AV_PIX_FMT_RGB24, AV_PIX_FMT_BGR24,
  63. AV_PIX_FMT_RGB565BE, AV_PIX_FMT_RGB565LE,
  64. AV_PIX_FMT_RGB555BE, AV_PIX_FMT_RGB555LE,
  65. AV_PIX_FMT_BGR565BE, AV_PIX_FMT_BGR565LE,
  66. AV_PIX_FMT_BGR555BE, AV_PIX_FMT_BGR555LE,
  67. AV_PIX_FMT_GRAY16BE, AV_PIX_FMT_GRAY16LE,
  68. AV_PIX_FMT_YUV420P16LE, AV_PIX_FMT_YUV420P16BE,
  69. AV_PIX_FMT_YUV422P16LE, AV_PIX_FMT_YUV422P16BE,
  70. AV_PIX_FMT_YUV444P16LE, AV_PIX_FMT_YUV444P16BE,
  71. AV_PIX_FMT_NV12, AV_PIX_FMT_NV21,
  72. AV_PIX_FMT_RGB8, AV_PIX_FMT_BGR8,
  73. AV_PIX_FMT_RGB4_BYTE, AV_PIX_FMT_BGR4_BYTE,
  74. AV_PIX_FMT_YUV444P, AV_PIX_FMT_YUV422P,
  75. AV_PIX_FMT_YUV420P, AV_PIX_FMT_YUVJ420P,
  76. AV_PIX_FMT_YUV411P, AV_PIX_FMT_YUV410P,
  77. AV_PIX_FMT_YUVJ444P, AV_PIX_FMT_YUVJ422P,
  78. AV_PIX_FMT_YUV440P, AV_PIX_FMT_YUVJ440P,
  79. AV_PIX_FMT_YUVA420P, AV_PIX_FMT_GRAY8,
  80. AV_PIX_FMT_NONE
  81. };
  82. ff_set_common_formats(ctx, ff_make_format_list(pix_fmts));
  83. return 0;
  84. }
  85. static int config_props_output(AVFilterLink *outlink)
  86. {
  87. AVFilterContext *ctx = outlink->src;
  88. TransContext *trans = ctx->priv;
  89. AVFilterLink *inlink = ctx->inputs[0];
  90. const AVPixFmtDescriptor *desc_out = av_pix_fmt_desc_get(outlink->format);
  91. const AVPixFmtDescriptor *desc_in = av_pix_fmt_desc_get(inlink->format);
  92. trans->hsub = desc_in->log2_chroma_w;
  93. trans->vsub = desc_in->log2_chroma_h;
  94. av_image_fill_max_pixsteps(trans->pixsteps, NULL, desc_out);
  95. outlink->w = inlink->h;
  96. outlink->h = inlink->w;
  97. if (inlink->sample_aspect_ratio.num){
  98. outlink->sample_aspect_ratio = av_div_q((AVRational){1,1}, inlink->sample_aspect_ratio);
  99. } else
  100. outlink->sample_aspect_ratio = inlink->sample_aspect_ratio;
  101. av_log(ctx, AV_LOG_VERBOSE, "w:%d h:%d dir:%d -> w:%d h:%d rotation:%s vflip:%d\n",
  102. inlink->w, inlink->h, trans->dir, outlink->w, outlink->h,
  103. trans->dir == 1 || trans->dir == 3 ? "clockwise" : "counterclockwise",
  104. trans->dir == 0 || trans->dir == 3);
  105. return 0;
  106. }
  107. static int filter_frame(AVFilterLink *inlink, AVFilterBufferRef *in)
  108. {
  109. AVFilterLink *outlink = inlink->dst->outputs[0];
  110. TransContext *trans = inlink->dst->priv;
  111. AVFilterBufferRef *out;
  112. int plane;
  113. out = ff_get_video_buffer(outlink, AV_PERM_WRITE, outlink->w, outlink->h);
  114. if (!out) {
  115. avfilter_unref_bufferp(&in);
  116. return AVERROR(ENOMEM);
  117. }
  118. out->pts = in->pts;
  119. if (in->video->pixel_aspect.num == 0) {
  120. out->video->pixel_aspect = in->video->pixel_aspect;
  121. } else {
  122. out->video->pixel_aspect.num = in->video->pixel_aspect.den;
  123. out->video->pixel_aspect.den = in->video->pixel_aspect.num;
  124. }
  125. for (plane = 0; out->data[plane]; plane++) {
  126. int hsub = plane == 1 || plane == 2 ? trans->hsub : 0;
  127. int vsub = plane == 1 || plane == 2 ? trans->vsub : 0;
  128. int pixstep = trans->pixsteps[plane];
  129. int inh = in->video->h>>vsub;
  130. int outw = out->video->w>>hsub;
  131. int outh = out->video->h>>vsub;
  132. uint8_t *dst, *src;
  133. int dstlinesize, srclinesize;
  134. int x, y;
  135. dst = out->data[plane];
  136. dstlinesize = out->linesize[plane];
  137. src = in->data[plane];
  138. srclinesize = in->linesize[plane];
  139. if (trans->dir&1) {
  140. src += in->linesize[plane] * (inh-1);
  141. srclinesize *= -1;
  142. }
  143. if (trans->dir&2) {
  144. dst += out->linesize[plane] * (outh-1);
  145. dstlinesize *= -1;
  146. }
  147. for (y = 0; y < outh; y++) {
  148. switch (pixstep) {
  149. case 1:
  150. for (x = 0; x < outw; x++)
  151. dst[x] = src[x*srclinesize + y];
  152. break;
  153. case 2:
  154. for (x = 0; x < outw; x++)
  155. *((uint16_t *)(dst + 2*x)) = *((uint16_t *)(src + x*srclinesize + y*2));
  156. break;
  157. case 3:
  158. for (x = 0; x < outw; x++) {
  159. int32_t v = AV_RB24(src + x*srclinesize + y*3);
  160. AV_WB24(dst + 3*x, v);
  161. }
  162. break;
  163. case 4:
  164. for (x = 0; x < outw; x++)
  165. *((uint32_t *)(dst + 4*x)) = *((uint32_t *)(src + x*srclinesize + y*4));
  166. break;
  167. }
  168. dst += dstlinesize;
  169. }
  170. }
  171. avfilter_unref_bufferp(&in);
  172. return ff_filter_frame(outlink, out);
  173. }
  174. static const AVFilterPad avfilter_vf_transpose_inputs[] = {
  175. {
  176. .name = "default",
  177. .type = AVMEDIA_TYPE_VIDEO,
  178. .filter_frame = filter_frame,
  179. .min_perms = AV_PERM_READ,
  180. },
  181. { NULL }
  182. };
  183. static const AVFilterPad avfilter_vf_transpose_outputs[] = {
  184. {
  185. .name = "default",
  186. .config_props = config_props_output,
  187. .type = AVMEDIA_TYPE_VIDEO,
  188. },
  189. { NULL }
  190. };
  191. AVFilter avfilter_vf_transpose = {
  192. .name = "transpose",
  193. .description = NULL_IF_CONFIG_SMALL("Transpose input video."),
  194. .init = init,
  195. .priv_size = sizeof(TransContext),
  196. .query_formats = query_formats,
  197. .inputs = avfilter_vf_transpose_inputs,
  198. .outputs = avfilter_vf_transpose_outputs,
  199. };