ffmpeg / libavfilter / defaults.c @ bf4ce7a3
History | View | Annotate | Download (3.7 KB)
1 |
/*
|
---|---|
2 |
* Filter layer - default implementations
|
3 |
* copyright (c) 2007 Bobby Bingham
|
4 |
*
|
5 |
* This file is part of FFmpeg.
|
6 |
*
|
7 |
* FFmpeg 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 |
* FFmpeg 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 FFmpeg; if not, write to the Free Software
|
19 |
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
20 |
*/
|
21 |
|
22 |
#include "avfilter.h" |
23 |
|
24 |
/* TODO: buffer pool. see comment for avfilter_default_get_video_buffer() */
|
25 |
void avfilter_default_free_video_buffer(AVFilterPic *pic)
|
26 |
{ |
27 |
avpicture_free((AVPicture *) pic); |
28 |
av_free(pic); |
29 |
} |
30 |
|
31 |
/* TODO: set the buffer's priv member to a context structure for the whole
|
32 |
* filter chain. This will allow for a buffer pool instead of the constant
|
33 |
* alloc & free cycle currently implemented. */
|
34 |
AVFilterPicRef *avfilter_default_get_video_buffer(AVFilterLink *link, int perms)
|
35 |
{ |
36 |
AVFilterPic *pic = av_mallocz(sizeof(AVFilterPic));
|
37 |
AVFilterPicRef *ref = av_mallocz(sizeof(AVFilterPicRef));
|
38 |
|
39 |
ref->pic = pic; |
40 |
ref->w = link->w; |
41 |
ref->h = link->h; |
42 |
ref->perms = perms; |
43 |
|
44 |
pic->refcount = 1;
|
45 |
pic->format = link->format; |
46 |
pic->free = avfilter_default_free_video_buffer; |
47 |
avpicture_alloc((AVPicture *)pic, pic->format, ref->w, ref->h); |
48 |
|
49 |
memcpy(ref->data, pic->data, sizeof(pic->data));
|
50 |
memcpy(ref->linesize, pic->linesize, sizeof(pic->linesize));
|
51 |
|
52 |
return ref;
|
53 |
} |
54 |
|
55 |
void avfilter_default_start_frame(AVFilterLink *link, AVFilterPicRef *picref)
|
56 |
{ |
57 |
AVFilterLink *out = NULL;
|
58 |
|
59 |
if(link->dst->output_count)
|
60 |
out = link->dst->outputs[0];
|
61 |
|
62 |
link->cur_pic = picref; |
63 |
|
64 |
if(out) {
|
65 |
out->outpic = avfilter_get_video_buffer(out, AV_PERM_WRITE); |
66 |
out->outpic->pts = picref->pts; |
67 |
avfilter_start_frame(out, avfilter_ref_pic(out->outpic, ~0));
|
68 |
} |
69 |
} |
70 |
|
71 |
void avfilter_default_end_frame(AVFilterLink *link)
|
72 |
{ |
73 |
AVFilterLink *out = NULL;
|
74 |
|
75 |
if(link->dst->output_count)
|
76 |
out = link->dst->outputs[0];
|
77 |
|
78 |
avfilter_unref_pic(link->cur_pic); |
79 |
link->cur_pic = NULL;
|
80 |
|
81 |
if(out) {
|
82 |
avfilter_unref_pic(out->outpic); |
83 |
out->outpic = NULL;
|
84 |
avfilter_end_frame(out); |
85 |
} |
86 |
} |
87 |
|
88 |
/**
|
89 |
* default config_link() implementation for output video links to simplify
|
90 |
* the implementation of one input one output video filters */
|
91 |
int avfilter_default_config_output_link(AVFilterLink *link)
|
92 |
{ |
93 |
if(link->src->input_count && link->src->inputs[0]) { |
94 |
link->w = link->src->inputs[0]->w;
|
95 |
link->h = link->src->inputs[0]->h;
|
96 |
} else {
|
97 |
/* XXX: any non-simple filter which would cause this branch to be taken
|
98 |
* really should implement its own config_props() for this link. */
|
99 |
link->w = |
100 |
link->h = 0;
|
101 |
} |
102 |
|
103 |
return 0; |
104 |
} |
105 |
|
106 |
/**
|
107 |
* default query_formats() implementation for output video links to simplify
|
108 |
* the implementation of one input one output video filters */
|
109 |
int *avfilter_default_query_output_formats(AVFilterLink *link)
|
110 |
{ |
111 |
if(link->src->input_count && link->src->inputs[0]) |
112 |
return avfilter_make_format_list(1, link->src->inputs[0]->format); |
113 |
else
|
114 |
/* XXX: any non-simple filter which would cause this branch to be taken
|
115 |
* really should implement its own query_formats() for this link */
|
116 |
return avfilter_make_format_list(0); |
117 |
} |
118 |
|