Merge remote-tracking branch 'libav/master'
[FFMpeg-mirror/mplayer-patches.git] / libavfilter / buffer.c
blob8eb3ce36d161ae47b85dd88c050ebffab982cc71
1 /*
2 * This file is part of Libav.
4 * Libav is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation; either
7 * version 2.1 of the License, or (at your option) any later version.
9 * Libav is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Lesser General Public License for more details.
14 * You should have received a copy of the GNU Lesser General Public
15 * License along with Libav; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
19 #include "libavutil/channel_layout.h"
20 #include "libavutil/common.h"
21 #include "libavcodec/avcodec.h"
23 #include "avfilter.h"
24 #include "internal.h"
26 /* TODO: buffer pool. see comment for avfilter_default_get_video_buffer() */
27 void ff_avfilter_default_free_buffer(AVFilterBuffer *ptr)
29 if (ptr->extended_data != ptr->data)
30 av_freep(&ptr->extended_data);
31 av_free(ptr->data[0]);
32 av_free(ptr);
35 AVFilterBufferRef *avfilter_ref_buffer(AVFilterBufferRef *ref, int pmask)
37 AVFilterBufferRef *ret = av_malloc(sizeof(AVFilterBufferRef));
38 if (!ret)
39 return NULL;
40 *ret = *ref;
41 if (ref->type == AVMEDIA_TYPE_VIDEO) {
42 ret->video = av_malloc(sizeof(AVFilterBufferRefVideoProps));
43 if (!ret->video) {
44 av_free(ret);
45 return NULL;
47 *ret->video = *ref->video;
48 ret->extended_data = ret->data;
49 } else if (ref->type == AVMEDIA_TYPE_AUDIO) {
50 ret->audio = av_malloc(sizeof(AVFilterBufferRefAudioProps));
51 if (!ret->audio) {
52 av_free(ret);
53 return NULL;
55 *ret->audio = *ref->audio;
57 if (ref->extended_data != ref->data) {
58 int nb_channels = av_get_channel_layout_nb_channels(ref->audio->channel_layout);
59 if (!(ret->extended_data = av_malloc(sizeof(*ret->extended_data) *
60 nb_channels))) {
61 av_freep(&ret->audio);
62 av_freep(&ret);
63 return NULL;
65 memcpy(ret->extended_data, ref->extended_data,
66 sizeof(*ret->extended_data) * nb_channels);
67 } else
68 ret->extended_data = ret->data;
70 ret->perms &= pmask;
71 ret->buf->refcount ++;
72 return ret;
75 void avfilter_unref_buffer(AVFilterBufferRef *ref)
77 if (!ref)
78 return;
79 if (!(--ref->buf->refcount))
80 ref->buf->free(ref->buf);
81 if (ref->extended_data != ref->data)
82 av_freep(&ref->extended_data);
83 av_free(ref->video);
84 av_free(ref->audio);
85 av_free(ref);
88 void avfilter_unref_bufferp(AVFilterBufferRef **ref)
90 avfilter_unref_buffer(*ref);
91 *ref = NULL;
94 int avfilter_copy_frame_props(AVFilterBufferRef *dst, const AVFrame *src)
96 dst->pts = src->pts;
97 dst->format = src->format;
99 switch (dst->type) {
100 case AVMEDIA_TYPE_VIDEO:
101 dst->video->w = src->width;
102 dst->video->h = src->height;
103 dst->video->pixel_aspect = src->sample_aspect_ratio;
104 dst->video->interlaced = src->interlaced_frame;
105 dst->video->top_field_first = src->top_field_first;
106 dst->video->key_frame = src->key_frame;
107 dst->video->pict_type = src->pict_type;
108 break;
109 case AVMEDIA_TYPE_AUDIO:
110 dst->audio->sample_rate = src->sample_rate;
111 dst->audio->channel_layout = src->channel_layout;
112 break;
113 default:
114 return AVERROR(EINVAL);
117 return 0;
120 int avfilter_copy_buf_props(AVFrame *dst, const AVFilterBufferRef *src)
122 int planes, nb_channels;
124 memcpy(dst->data, src->data, sizeof(dst->data));
125 memcpy(dst->linesize, src->linesize, sizeof(dst->linesize));
127 dst->pts = src->pts;
128 dst->format = src->format;
130 switch (src->type) {
131 case AVMEDIA_TYPE_VIDEO:
132 dst->width = src->video->w;
133 dst->height = src->video->h;
134 dst->sample_aspect_ratio = src->video->pixel_aspect;
135 dst->interlaced_frame = src->video->interlaced;
136 dst->top_field_first = src->video->top_field_first;
137 dst->key_frame = src->video->key_frame;
138 dst->pict_type = src->video->pict_type;
139 break;
140 case AVMEDIA_TYPE_AUDIO:
141 nb_channels = av_get_channel_layout_nb_channels(src->audio->channel_layout);
142 planes = av_sample_fmt_is_planar(src->format) ? nb_channels : 1;
144 if (planes > FF_ARRAY_ELEMS(dst->data)) {
145 dst->extended_data = av_mallocz(planes * sizeof(*dst->extended_data));
146 if (!dst->extended_data)
147 return AVERROR(ENOMEM);
148 memcpy(dst->extended_data, src->extended_data,
149 planes * sizeof(*dst->extended_data));
150 } else
151 dst->extended_data = dst->data;
153 dst->sample_rate = src->audio->sample_rate;
154 dst->channel_layout = src->audio->channel_layout;
155 dst->nb_samples = src->audio->nb_samples;
156 break;
157 default:
158 return AVERROR(EINVAL);
161 return 0;
164 void avfilter_copy_buffer_ref_props(AVFilterBufferRef *dst, AVFilterBufferRef *src)
166 // copy common properties
167 dst->pts = src->pts;
168 dst->pos = src->pos;
170 switch (src->type) {
171 case AVMEDIA_TYPE_VIDEO: *dst->video = *src->video; break;
172 case AVMEDIA_TYPE_AUDIO: *dst->audio = *src->audio; break;
173 default: break;