]> git.sesse.net Git - ffmpeg/blob - libavfilter/avcodec.c
lavfi/avcodec: deprecate avfilter_fill_frame_from_*_buffer_ref API
[ffmpeg] / libavfilter / avcodec.c
1 /*
2  * Copyright 2011 Stefano Sabatini | stefasab at gmail.com
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  * libavcodec/libavfilter gluing utilities
24  */
25
26 #include "avcodec.h"
27 #include "libavutil/avassert.h"
28 #include "libavutil/opt.h"
29
30 int avfilter_copy_frame_props(AVFilterBufferRef *dst, const AVFrame *src)
31 {
32     dst->pts    = src->pts;
33     dst->pos    = av_frame_get_pkt_pos(src);
34     dst->format = src->format;
35
36     switch (dst->type) {
37     case AVMEDIA_TYPE_VIDEO:
38         dst->video->w                   = src->width;
39         dst->video->h                   = src->height;
40         dst->video->sample_aspect_ratio = src->sample_aspect_ratio;
41         dst->video->interlaced          = src->interlaced_frame;
42         dst->video->top_field_first     = src->top_field_first;
43         dst->video->key_frame           = src->key_frame;
44         dst->video->pict_type           = src->pict_type;
45         break;
46     case AVMEDIA_TYPE_AUDIO:
47         dst->audio->sample_rate         = src->sample_rate;
48         dst->audio->channel_layout      = src->channel_layout;
49         break;
50     default:
51         return AVERROR(EINVAL);
52     }
53
54     return 0;
55 }
56
57 AVFilterBufferRef *avfilter_get_video_buffer_ref_from_frame(const AVFrame *frame,
58                                                             int perms)
59 {
60     AVFilterBufferRef *picref =
61         avfilter_get_video_buffer_ref_from_arrays(frame->data, frame->linesize, perms,
62                                                   frame->width, frame->height,
63                                                   frame->format);
64     if (!picref)
65         return NULL;
66     avfilter_copy_frame_props(picref, frame);
67     return picref;
68 }
69
70 AVFilterBufferRef *avfilter_get_audio_buffer_ref_from_frame(const AVFrame *frame,
71                                                             int perms)
72 {
73     AVFilterBufferRef *picref =
74         avfilter_get_audio_buffer_ref_from_arrays((uint8_t **)frame->data, frame->linesize[0], perms,
75                                                   frame->nb_samples, frame->format,
76                                                   av_frame_get_channel_layout(frame));
77     if (!picref)
78         return NULL;
79     avfilter_copy_frame_props(picref, frame);
80     return picref;
81 }
82
83 int avfilter_copy_buf_props(AVFrame *dst, const AVFilterBufferRef *src)
84 {
85     int planes, nb_channels;
86
87     if (!dst)
88         return AVERROR(EINVAL);
89     /* abort in case the src is NULL and dst is not, avoid inconsistent state in dst */
90     av_assert0(src);
91
92     memcpy(dst->data, src->data, sizeof(dst->data));
93     memcpy(dst->linesize, src->linesize, sizeof(dst->linesize));
94
95     dst->pts     = src->pts;
96     dst->format  = src->format;
97     av_frame_set_pkt_pos(dst, src->pos);
98
99     switch (src->type) {
100     case AVMEDIA_TYPE_VIDEO:
101         av_assert0(src->video);
102         dst->width               = src->video->w;
103         dst->height              = src->video->h;
104         dst->sample_aspect_ratio = src->video->sample_aspect_ratio;
105         dst->interlaced_frame    = src->video->interlaced;
106         dst->top_field_first     = src->video->top_field_first;
107         dst->key_frame           = src->video->key_frame;
108         dst->pict_type           = src->video->pict_type;
109         break;
110     case AVMEDIA_TYPE_AUDIO:
111         av_assert0(src->audio);
112         nb_channels = av_get_channel_layout_nb_channels(src->audio->channel_layout);
113         planes      = av_sample_fmt_is_planar(src->format) ? nb_channels : 1;
114
115         if (planes > FF_ARRAY_ELEMS(dst->data)) {
116             dst->extended_data = av_mallocz(planes * sizeof(*dst->extended_data));
117             if (!dst->extended_data)
118                 return AVERROR(ENOMEM);
119             memcpy(dst->extended_data, src->extended_data,
120                    planes * sizeof(dst->extended_data));
121         } else
122             dst->extended_data = dst->data;
123         dst->nb_samples          = src->audio->nb_samples;
124         av_frame_set_sample_rate   (dst, src->audio->sample_rate);
125         av_frame_set_channel_layout(dst, src->audio->channel_layout);
126         break;
127     default:
128         return AVERROR(EINVAL);
129     }
130
131     return 0;
132 }
133
134 #ifdef FF_API_FILL_FRAME
135 int avfilter_fill_frame_from_audio_buffer_ref(AVFrame *frame,
136                                               const AVFilterBufferRef *samplesref)
137 {
138     return avfilter_copy_buf_props(frame, samplesref);
139 }
140
141 int avfilter_fill_frame_from_video_buffer_ref(AVFrame *frame,
142                                               const AVFilterBufferRef *picref)
143 {
144     return avfilter_copy_buf_props(frame, picref);
145 }
146
147 int avfilter_fill_frame_from_buffer_ref(AVFrame *frame,
148                                         const AVFilterBufferRef *ref)
149 {
150     return avfilter_copy_buf_props(frame, ref);
151 }
152 #endif