libavfilter/vf_swapuv.c
fa35d880
 /*
  * Copyright (c) 2002 Michael Niedermayer <michaelni@gmx.at>
  *
  * This file is part of FFmpeg.
  *
  * FFmpeg is free software; you can redistribute it and/or
  * modify it under the terms of the GNU Lesser General Public
  * License as published by the Free Software Foundation; either
  * version 2.1 of the License, or (at your option) any later version.
  *
  * FFmpeg is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  * Lesser General Public License for more details.
  *
  * You should have received a copy of the GNU Lesser General Public
  * License along with FFmpeg; if not, write to the Free Software
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  */
 
 /**
  * @file
  * swap UV filter
  */
 
88bcdf10
 #include "libavutil/opt.h"
a793a587
 #include "libavutil/pixdesc.h"
5fa5e73e
 #include "libavutil/version.h"
fa35d880
 #include "avfilter.h"
c9e183b4
 #include "formats.h"
3eae531d
 #include "internal.h"
c9e183b4
 #include "video.h"
fa35d880
 
88bcdf10
 typedef struct SwapUVContext {
     const AVClass *class;
 } SwapUVContext;
 
 static const AVOption swapuv_options[] = {
     { NULL }
 };
 
 AVFILTER_DEFINE_CLASS(swapuv);
 
a05a44e2
 static void do_swap(AVFrame *frame)
fa35d880
 {
a05a44e2
     FFSWAP(uint8_t*,     frame->data[1],     frame->data[2]);
     FFSWAP(int,          frame->linesize[1], frame->linesize[2]);
     FFSWAP(AVBufferRef*, frame->buf[1],      frame->buf[2]);
5fa5e73e
 
 #if FF_API_ERROR_FRAME
 FF_DISABLE_DEPRECATION_WARNINGS
     FFSWAP(uint64_t,     frame->error[1],    frame->error[2]);
 FF_ENABLE_DEPRECATION_WARNINGS
 #endif
a05a44e2
 }
fa35d880
 
a05a44e2
 static AVFrame *get_video_buffer(AVFilterLink *link, int w, int h)
 {
     AVFrame *picref = ff_default_get_video_buffer(link, w, h);
     do_swap(picref);
fa35d880
     return picref;
 }
 
a05a44e2
 static int filter_frame(AVFilterLink *link, AVFrame *inpicref)
fa35d880
 {
a05a44e2
     do_swap(inpicref);
3eae531d
     return ff_filter_frame(link->dst->outputs[0], inpicref);
fa35d880
 }
 
a793a587
 static int is_planar_yuv(const AVPixFmtDescriptor *desc)
 {
     int i;
 
c7c71f95
     if (desc->flags & ~(AV_PIX_FMT_FLAG_BE | AV_PIX_FMT_FLAG_PLANAR | AV_PIX_FMT_FLAG_ALPHA) ||
a793a587
         desc->nb_components < 3 ||
5d8e836d
         (desc->comp[1].depth != desc->comp[2].depth))
a793a587
         return 0;
     for (i = 0; i < desc->nb_components; i++) {
5d8e836d
         if (desc->comp[i].offset != 0 ||
a793a587
             desc->comp[i].shift != 0 ||
             desc->comp[i].plane != i)
             return 0;
     }
 
     return 1;
 }
 
fa35d880
 static int query_formats(AVFilterContext *ctx)
 {
a793a587
     AVFilterFormats *formats = NULL;
6aaac24d
     int fmt, ret;
a793a587
 
e10ac3a1
     for (fmt = 0; av_pix_fmt_desc_get(fmt); fmt++) {
a793a587
         const AVPixFmtDescriptor *desc = av_pix_fmt_desc_get(fmt);
6aaac24d
         if (is_planar_yuv(desc) && (ret = ff_add_format(&formats, fmt)) < 0)
             return ret;
a793a587
     }
 
a0854c08
     return ff_set_common_formats(ctx, formats);
fa35d880
 }
 
2d9d4440
 static const AVFilterPad swapuv_inputs[] = {
     {
         .name             = "default",
         .type             = AVMEDIA_TYPE_VIDEO,
         .get_video_buffer = get_video_buffer,
3eae531d
         .filter_frame     = filter_frame,
2d9d4440
     },
     { NULL }
 };
 
 static const AVFilterPad swapuv_outputs[] = {
     {
         .name = "default",
         .type = AVMEDIA_TYPE_VIDEO,
     },
     { NULL }
 };
 
325f6e0a
 AVFilter ff_vf_swapuv = {
b211607b
     .name          = "swapuv",
     .description   = NULL_IF_CONFIG_SMALL("Swap U and V components."),
fa35d880
     .query_formats = query_formats,
88bcdf10
     .priv_size     = sizeof(SwapUVContext),
     .priv_class    = &swapuv_class,
2d9d4440
     .inputs        = swapuv_inputs,
     .outputs       = swapuv_outputs,
88bcdf10
     .flags         = AVFILTER_FLAG_SUPPORT_TIMELINE_GENERIC,
fa35d880
 };