mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-11-21 10:55:51 +02:00
88beb2df98
* qatar/master: FATE: fix the asyncts test build: Drop gcc-specific warning flag from header compilation rule FATE: add a test for the asyncts audio filter. matroskadec: return more correct error code on read error. buffersrc: check ff_get_audio_buffer() for errors. lavfi: check all ff_get_video_buffer() calls for errors. lavfi: check all avfilter_ref_buffer() calls for errors. vf_select: avoid an unnecessary avfilter_ref_buffer(). buffersrc: avoid creating unnecessary buffer reference lavfi: use avfilter_unref_bufferp() where appropriate. vf_fps: add more error checks. vf_fps: fix a memleak on malloc failure. lavfi: check all ff_start_frame/draw_slice/end_frame calls for errors lavfi: add error handling to end_frame(). lavfi: add error handling to draw_slice(). lavfi: add error handling to start_frame(). Conflicts: Makefile ffplay.c libavfilter/buffersrc.c libavfilter/vf_boxblur.c libavfilter/vf_drawtext.c libavfilter/vf_fade.c libavfilter/vf_frei0r.c libavfilter/vf_hflip.c libavfilter/vf_overlay.c libavfilter/vf_pad.c libavfilter/vf_scale.c libavfilter/video.c libavfilter/vsrc_color.c Merged-by: Michael Niedermayer <michaelni@gmx.at>
96 lines
2.8 KiB
C
96 lines
2.8 KiB
C
/*
|
|
* 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
|
|
*/
|
|
|
|
#include "avfilter.h"
|
|
#include "formats.h"
|
|
#include "video.h"
|
|
|
|
static AVFilterBufferRef *get_video_buffer(AVFilterLink *link, int perms,
|
|
int w, int h)
|
|
{
|
|
AVFilterBufferRef *picref =
|
|
ff_default_get_video_buffer(link, perms, w, h);
|
|
uint8_t *tmp;
|
|
int tmp2;
|
|
|
|
tmp = picref->data[2];
|
|
picref->data[2] = picref->data[1];
|
|
picref->data[1] = tmp;
|
|
|
|
tmp2 = picref->linesize[2];
|
|
picref->linesize[2] = picref->linesize[1];
|
|
picref->linesize[1] = tmp2;
|
|
|
|
return picref;
|
|
}
|
|
|
|
static int start_frame(AVFilterLink *link, AVFilterBufferRef *inpicref)
|
|
{
|
|
AVFilterBufferRef *outpicref = avfilter_ref_buffer(inpicref, ~0);
|
|
|
|
outpicref->data[1] = inpicref->data[2];
|
|
outpicref->data[2] = inpicref->data[1];
|
|
|
|
outpicref->linesize[1] = inpicref->linesize[2];
|
|
outpicref->linesize[2] = inpicref->linesize[1];
|
|
|
|
return ff_start_frame(link->dst->outputs[0], outpicref);
|
|
}
|
|
|
|
static int query_formats(AVFilterContext *ctx)
|
|
{
|
|
static const enum PixelFormat pix_fmts[] = {
|
|
PIX_FMT_YUV420P, PIX_FMT_YUVJ420P, PIX_FMT_YUVA420P,
|
|
PIX_FMT_YUV444P, PIX_FMT_YUVJ444P, PIX_FMT_YUVA444P,
|
|
PIX_FMT_YUV440P, PIX_FMT_YUVJ440P,
|
|
PIX_FMT_YUV422P, PIX_FMT_YUVJ422P,
|
|
PIX_FMT_YUV411P,
|
|
PIX_FMT_NONE,
|
|
};
|
|
|
|
ff_set_common_formats(ctx, ff_make_format_list(pix_fmts));
|
|
return 0;
|
|
}
|
|
|
|
AVFilter avfilter_vf_swapuv = {
|
|
.name = "swapuv",
|
|
.description = NULL_IF_CONFIG_SMALL("Swap U and V components."),
|
|
.priv_size = 0,
|
|
.query_formats = query_formats,
|
|
|
|
.inputs = (const AVFilterPad[]) {
|
|
{ .name = "default",
|
|
.type = AVMEDIA_TYPE_VIDEO,
|
|
.get_video_buffer = get_video_buffer,
|
|
.start_frame = start_frame, },
|
|
{ .name = NULL }
|
|
},
|
|
.outputs = (const AVFilterPad[]) {
|
|
{ .name = "default",
|
|
.type = AVMEDIA_TYPE_VIDEO, },
|
|
{ .name = NULL }
|
|
},
|
|
};
|