OSDN Git Service

libspeex encoder wraper
[coroid/ffmpeg_saccubus.git] / libavfilter / vf_vflip.c
1 /*
2  * Copyright (c) 2007 Bobby Bingham
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 /**
22  * @file
23  * video vertical flip filter
24  */
25
26 #include "libavutil/pixdesc.h"
27 #include "avfilter.h"
28
29 typedef struct {
30     int vsub;   ///< vertical chroma subsampling
31 } FlipContext;
32
33 static int config_input(AVFilterLink *link)
34 {
35     FlipContext *flip = link->dst->priv;
36
37     flip->vsub = av_pix_fmt_descriptors[link->format].log2_chroma_h;
38
39     return 0;
40 }
41
42 static AVFilterBufferRef *get_video_buffer(AVFilterLink *link, int perms,
43                                         int w, int h)
44 {
45     FlipContext *flip = link->dst->priv;
46     AVFilterBufferRef *picref;
47     int i;
48
49     if (!(perms & AV_PERM_NEG_LINESIZES))
50         return avfilter_default_get_video_buffer(link, perms, w, h);
51
52     picref = avfilter_get_video_buffer(link->dst->outputs[0], perms, w, h);
53     for (i = 0; i < 4; i ++) {
54         int vsub = i == 1 || i == 2 ? flip->vsub : 0;
55
56         if (picref->data[i]) {
57             picref->data[i] += ((h >> vsub)-1) * picref->linesize[i];
58             picref->linesize[i] = -picref->linesize[i];
59         }
60     }
61
62     return picref;
63 }
64
65 static void start_frame(AVFilterLink *link, AVFilterBufferRef *inpicref)
66 {
67     FlipContext *flip = link->dst->priv;
68     AVFilterBufferRef *outpicref = avfilter_ref_buffer(inpicref, ~0);
69     int i;
70
71     for (i = 0; i < 4; i ++) {
72         int vsub = i == 1 || i == 2 ? flip->vsub : 0;
73
74         if (outpicref->data[i]) {
75             outpicref->data[i] += ((link->h >> vsub)-1) * outpicref->linesize[i];
76             outpicref->linesize[i] = -outpicref->linesize[i];
77         }
78     }
79
80     avfilter_start_frame(link->dst->outputs[0], outpicref);
81 }
82
83 static void draw_slice(AVFilterLink *link, int y, int h, int slice_dir)
84 {
85     AVFilterContext *ctx = link->dst;
86
87     avfilter_draw_slice(ctx->outputs[0], link->h - (y+h), h, -1 * slice_dir);
88 }
89
90 AVFilter avfilter_vf_vflip = {
91     .name      = "vflip",
92     .description = NULL_IF_CONFIG_SMALL("Flip the input video vertically."),
93
94     .priv_size = sizeof(FlipContext),
95
96     .inputs    = (AVFilterPad[]) {{ .name             = "default",
97                                     .type             = AVMEDIA_TYPE_VIDEO,
98                                     .get_video_buffer = get_video_buffer,
99                                     .start_frame      = start_frame,
100                                     .draw_slice       = draw_slice,
101                                     .config_props     = config_input, },
102                                   { .name = NULL}},
103     .outputs   = (AVFilterPad[]) {{ .name             = "default",
104                                     .type             = AVMEDIA_TYPE_VIDEO, },
105                                   { .name = NULL}},
106 };