vf_swapuv.c 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  1. /*
  2. * Copyright (c) 2002 Michael Niedermayer <michaelni@gmx.at>
  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. /**
  21. * @file
  22. * swap UV filter
  23. */
  24. #include "avfilter.h"
  25. static AVFilterBufferRef *get_video_buffer(AVFilterLink *link, int perms,
  26. int w, int h)
  27. {
  28. AVFilterBufferRef *picref =
  29. avfilter_default_get_video_buffer(link, perms, w, h);
  30. uint8_t *tmp;
  31. int tmp2;
  32. tmp = picref->data[2];
  33. picref->data[2] = picref->data[1];
  34. picref->data[1] = tmp;
  35. tmp2 = picref->linesize[2];
  36. picref->linesize[2] = picref->linesize[1];
  37. picref->linesize[1] = tmp2;
  38. return picref;
  39. }
  40. static void start_frame(AVFilterLink *link, AVFilterBufferRef *inpicref)
  41. {
  42. AVFilterBufferRef *outpicref = avfilter_ref_buffer(inpicref, ~0);
  43. outpicref->data[1] = inpicref->data[2];
  44. outpicref->data[2] = inpicref->data[1];
  45. outpicref->linesize[1] = inpicref->linesize[2];
  46. outpicref->linesize[2] = inpicref->linesize[1];
  47. avfilter_start_frame(link->dst->outputs[0], outpicref);
  48. }
  49. static int query_formats(AVFilterContext *ctx)
  50. {
  51. static const enum PixelFormat pix_fmts[] = {
  52. PIX_FMT_YUV420P, PIX_FMT_YUVJ420P, PIX_FMT_YUVA420P,
  53. PIX_FMT_YUV444P, PIX_FMT_YUVJ444P, PIX_FMT_YUVA444P,
  54. PIX_FMT_YUV440P, PIX_FMT_YUVJ440P,
  55. PIX_FMT_YUV422P, PIX_FMT_YUVJ422P,
  56. PIX_FMT_YUV411P,
  57. PIX_FMT_NONE,
  58. };
  59. avfilter_set_common_pixel_formats(ctx, avfilter_make_format_list(pix_fmts));
  60. return 0;
  61. }
  62. AVFilter avfilter_vf_swapuv = {
  63. .name = "swapuv",
  64. .description = NULL_IF_CONFIG_SMALL("Swap U and V components."),
  65. .priv_size = 0,
  66. .query_formats = query_formats,
  67. .inputs = (const AVFilterPad[]) {
  68. { .name = "default",
  69. .type = AVMEDIA_TYPE_VIDEO,
  70. .get_video_buffer = get_video_buffer,
  71. .start_frame = start_frame, },
  72. { .name = NULL }
  73. },
  74. .outputs = (const AVFilterPad[]) {
  75. { .name = "default",
  76. .type = AVMEDIA_TYPE_VIDEO, },
  77. { .name = NULL }
  78. },
  79. };