2012-10-17 09:51:01 +00:00
|
|
|
/*
|
|
|
|
* This file is part of Libav.
|
|
|
|
*
|
|
|
|
* Libav 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.
|
|
|
|
*
|
|
|
|
* Libav 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 Libav; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
*/
|
|
|
|
|
2013-03-07 07:16:07 +00:00
|
|
|
#include "channel_layout.h"
|
2012-10-17 09:51:01 +00:00
|
|
|
#include "buffer.h"
|
|
|
|
#include "common.h"
|
2012-12-25 21:11:36 +00:00
|
|
|
#include "dict.h"
|
2012-10-17 09:51:01 +00:00
|
|
|
#include "frame.h"
|
|
|
|
#include "imgutils.h"
|
|
|
|
#include "mem.h"
|
|
|
|
#include "samplefmt.h"
|
|
|
|
|
|
|
|
static void get_frame_defaults(AVFrame *frame)
|
|
|
|
{
|
|
|
|
if (frame->extended_data != frame->data)
|
|
|
|
av_freep(&frame->extended_data);
|
|
|
|
|
|
|
|
memset(frame, 0, sizeof(*frame));
|
|
|
|
|
|
|
|
frame->pts = AV_NOPTS_VALUE;
|
|
|
|
frame->key_frame = 1;
|
|
|
|
frame->sample_aspect_ratio = (AVRational){ 0, 1 };
|
|
|
|
frame->format = -1; /* unknown */
|
|
|
|
frame->extended_data = frame->data;
|
2014-05-30 20:14:21 +00:00
|
|
|
frame->color_primaries = AVCOL_PRI_UNSPECIFIED;
|
|
|
|
frame->color_trc = AVCOL_TRC_UNSPECIFIED;
|
|
|
|
frame->colorspace = AVCOL_SPC_UNSPECIFIED;
|
|
|
|
frame->color_range = AVCOL_RANGE_UNSPECIFIED;
|
|
|
|
frame->chroma_location = AVCHROMA_LOC_UNSPECIFIED;
|
2012-10-17 09:51:01 +00:00
|
|
|
}
|
|
|
|
|
2014-06-18 06:11:05 +00:00
|
|
|
static void free_side_data(AVFrameSideData **ptr_sd)
|
|
|
|
{
|
|
|
|
AVFrameSideData *sd = *ptr_sd;
|
|
|
|
|
|
|
|
av_freep(&sd->data);
|
|
|
|
av_dict_free(&sd->metadata);
|
|
|
|
av_freep(ptr_sd);
|
|
|
|
}
|
|
|
|
|
2014-12-15 19:38:00 +00:00
|
|
|
static void wipe_side_data(AVFrame *frame)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
|
|
|
for (i = 0; i < frame->nb_side_data; i++) {
|
|
|
|
free_side_data(&frame->side_data[i]);
|
|
|
|
}
|
|
|
|
frame->nb_side_data = 0;
|
|
|
|
|
|
|
|
av_freep(&frame->side_data);
|
|
|
|
}
|
|
|
|
|
2012-10-17 09:51:01 +00:00
|
|
|
AVFrame *av_frame_alloc(void)
|
|
|
|
{
|
|
|
|
AVFrame *frame = av_mallocz(sizeof(*frame));
|
|
|
|
|
|
|
|
if (!frame)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
get_frame_defaults(frame);
|
|
|
|
|
|
|
|
return frame;
|
|
|
|
}
|
|
|
|
|
|
|
|
void av_frame_free(AVFrame **frame)
|
|
|
|
{
|
|
|
|
if (!frame || !*frame)
|
|
|
|
return;
|
|
|
|
|
|
|
|
av_frame_unref(*frame);
|
|
|
|
av_freep(frame);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int get_video_buffer(AVFrame *frame, int align)
|
|
|
|
{
|
|
|
|
const AVPixFmtDescriptor *desc = av_pix_fmt_desc_get(frame->format);
|
|
|
|
int ret, i;
|
|
|
|
|
|
|
|
if (!desc)
|
|
|
|
return AVERROR(EINVAL);
|
|
|
|
|
|
|
|
if ((ret = av_image_check_size(frame->width, frame->height, 0, NULL)) < 0)
|
|
|
|
return ret;
|
|
|
|
|
|
|
|
if (!frame->linesize[0]) {
|
|
|
|
ret = av_image_fill_linesizes(frame->linesize, frame->format,
|
|
|
|
frame->width);
|
|
|
|
if (ret < 0)
|
|
|
|
return ret;
|
|
|
|
|
|
|
|
for (i = 0; i < 4 && frame->linesize[i]; i++)
|
|
|
|
frame->linesize[i] = FFALIGN(frame->linesize[i], align);
|
|
|
|
}
|
|
|
|
|
|
|
|
for (i = 0; i < 4 && frame->linesize[i]; i++) {
|
|
|
|
int h = frame->height;
|
|
|
|
if (i == 1 || i == 2)
|
2016-01-08 15:16:10 +00:00
|
|
|
h = AV_CEIL_RSHIFT(h, desc->log2_chroma_h);
|
2012-10-17 09:51:01 +00:00
|
|
|
|
|
|
|
frame->buf[i] = av_buffer_alloc(frame->linesize[i] * h);
|
|
|
|
if (!frame->buf[i])
|
|
|
|
goto fail;
|
|
|
|
|
|
|
|
frame->data[i] = frame->buf[i]->data;
|
|
|
|
}
|
2013-05-12 13:41:49 +00:00
|
|
|
if (desc->flags & AV_PIX_FMT_FLAG_PAL || desc->flags & AV_PIX_FMT_FLAG_PSEUDOPAL) {
|
2012-10-17 09:51:01 +00:00
|
|
|
av_buffer_unref(&frame->buf[1]);
|
|
|
|
frame->buf[1] = av_buffer_alloc(1024);
|
|
|
|
if (!frame->buf[1])
|
|
|
|
goto fail;
|
|
|
|
frame->data[1] = frame->buf[1]->data;
|
|
|
|
}
|
|
|
|
|
|
|
|
frame->extended_data = frame->data;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
fail:
|
|
|
|
av_frame_unref(frame);
|
|
|
|
return AVERROR(ENOMEM);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int get_audio_buffer(AVFrame *frame, int align)
|
|
|
|
{
|
|
|
|
int channels = av_get_channel_layout_nb_channels(frame->channel_layout);
|
|
|
|
int planar = av_sample_fmt_is_planar(frame->format);
|
|
|
|
int planes = planar ? channels : 1;
|
|
|
|
int ret, i;
|
|
|
|
|
|
|
|
if (!frame->linesize[0]) {
|
|
|
|
ret = av_samples_get_buffer_size(&frame->linesize[0], channels,
|
|
|
|
frame->nb_samples, frame->format,
|
|
|
|
align);
|
|
|
|
if (ret < 0)
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (planes > AV_NUM_DATA_POINTERS) {
|
|
|
|
frame->extended_data = av_mallocz(planes *
|
|
|
|
sizeof(*frame->extended_data));
|
|
|
|
frame->extended_buf = av_mallocz((planes - AV_NUM_DATA_POINTERS) *
|
|
|
|
sizeof(*frame->extended_buf));
|
|
|
|
if (!frame->extended_data || !frame->extended_buf) {
|
|
|
|
av_freep(&frame->extended_data);
|
|
|
|
av_freep(&frame->extended_buf);
|
|
|
|
return AVERROR(ENOMEM);
|
|
|
|
}
|
|
|
|
frame->nb_extended_buf = planes - AV_NUM_DATA_POINTERS;
|
|
|
|
} else
|
|
|
|
frame->extended_data = frame->data;
|
|
|
|
|
|
|
|
for (i = 0; i < FFMIN(planes, AV_NUM_DATA_POINTERS); i++) {
|
|
|
|
frame->buf[i] = av_buffer_alloc(frame->linesize[0]);
|
|
|
|
if (!frame->buf[i]) {
|
|
|
|
av_frame_unref(frame);
|
|
|
|
return AVERROR(ENOMEM);
|
|
|
|
}
|
|
|
|
frame->extended_data[i] = frame->data[i] = frame->buf[i]->data;
|
|
|
|
}
|
|
|
|
for (i = 0; i < planes - AV_NUM_DATA_POINTERS; i++) {
|
|
|
|
frame->extended_buf[i] = av_buffer_alloc(frame->linesize[0]);
|
|
|
|
if (!frame->extended_buf[i]) {
|
|
|
|
av_frame_unref(frame);
|
|
|
|
return AVERROR(ENOMEM);
|
|
|
|
}
|
|
|
|
frame->extended_data[i + AV_NUM_DATA_POINTERS] = frame->extended_buf[i]->data;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
int av_frame_get_buffer(AVFrame *frame, int align)
|
|
|
|
{
|
|
|
|
if (frame->format < 0)
|
|
|
|
return AVERROR(EINVAL);
|
|
|
|
|
|
|
|
if (frame->width > 0 && frame->height > 0)
|
|
|
|
return get_video_buffer(frame, align);
|
|
|
|
else if (frame->nb_samples > 0 && frame->channel_layout)
|
|
|
|
return get_audio_buffer(frame, align);
|
|
|
|
|
|
|
|
return AVERROR(EINVAL);
|
|
|
|
}
|
|
|
|
|
2013-10-26 14:43:07 +00:00
|
|
|
int av_frame_ref(AVFrame *dst, const AVFrame *src)
|
2012-10-17 09:51:01 +00:00
|
|
|
{
|
|
|
|
int i, ret = 0;
|
|
|
|
|
|
|
|
dst->format = src->format;
|
|
|
|
dst->width = src->width;
|
|
|
|
dst->height = src->height;
|
|
|
|
dst->channel_layout = src->channel_layout;
|
|
|
|
dst->nb_samples = src->nb_samples;
|
|
|
|
|
|
|
|
ret = av_frame_copy_props(dst, src);
|
|
|
|
if (ret < 0)
|
|
|
|
return ret;
|
|
|
|
|
|
|
|
/* duplicate the frame data if it's not refcounted */
|
|
|
|
if (!src->buf[0]) {
|
|
|
|
ret = av_frame_get_buffer(dst, 32);
|
|
|
|
if (ret < 0)
|
|
|
|
return ret;
|
|
|
|
|
2014-02-11 13:15:20 +00:00
|
|
|
ret = av_frame_copy(dst, src);
|
|
|
|
if (ret < 0)
|
|
|
|
av_frame_unref(dst);
|
|
|
|
|
|
|
|
return ret;
|
2012-10-17 09:51:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* ref the buffers */
|
|
|
|
for (i = 0; i < FF_ARRAY_ELEMS(src->buf) && src->buf[i]; i++) {
|
|
|
|
dst->buf[i] = av_buffer_ref(src->buf[i]);
|
|
|
|
if (!dst->buf[i]) {
|
|
|
|
ret = AVERROR(ENOMEM);
|
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (src->extended_buf) {
|
|
|
|
dst->extended_buf = av_mallocz(sizeof(*dst->extended_buf) *
|
|
|
|
src->nb_extended_buf);
|
|
|
|
if (!dst->extended_buf) {
|
|
|
|
ret = AVERROR(ENOMEM);
|
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
dst->nb_extended_buf = src->nb_extended_buf;
|
|
|
|
|
|
|
|
for (i = 0; i < src->nb_extended_buf; i++) {
|
|
|
|
dst->extended_buf[i] = av_buffer_ref(src->extended_buf[i]);
|
|
|
|
if (!dst->extended_buf[i]) {
|
|
|
|
ret = AVERROR(ENOMEM);
|
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-11-20 18:47:29 +00:00
|
|
|
if (src->hw_frames_ctx) {
|
|
|
|
dst->hw_frames_ctx = av_buffer_ref(src->hw_frames_ctx);
|
|
|
|
if (!dst->hw_frames_ctx) {
|
|
|
|
ret = AVERROR(ENOMEM);
|
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-10-17 09:51:01 +00:00
|
|
|
/* duplicate extended data */
|
|
|
|
if (src->extended_data != src->data) {
|
|
|
|
int ch = av_get_channel_layout_nb_channels(src->channel_layout);
|
|
|
|
|
|
|
|
if (!ch) {
|
|
|
|
ret = AVERROR(EINVAL);
|
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
|
|
|
|
dst->extended_data = av_malloc(sizeof(*dst->extended_data) * ch);
|
|
|
|
if (!dst->extended_data) {
|
|
|
|
ret = AVERROR(ENOMEM);
|
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
memcpy(dst->extended_data, src->extended_data, sizeof(*src->extended_data) * ch);
|
|
|
|
} else
|
|
|
|
dst->extended_data = dst->data;
|
|
|
|
|
|
|
|
memcpy(dst->data, src->data, sizeof(src->data));
|
|
|
|
memcpy(dst->linesize, src->linesize, sizeof(src->linesize));
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
fail:
|
|
|
|
av_frame_unref(dst);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2013-10-26 14:43:07 +00:00
|
|
|
AVFrame *av_frame_clone(const AVFrame *src)
|
2012-10-17 09:51:01 +00:00
|
|
|
{
|
|
|
|
AVFrame *ret = av_frame_alloc();
|
|
|
|
|
|
|
|
if (!ret)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
if (av_frame_ref(ret, src) < 0)
|
|
|
|
av_frame_free(&ret);
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
void av_frame_unref(AVFrame *frame)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
2014-12-15 19:38:00 +00:00
|
|
|
wipe_side_data(frame);
|
2012-12-25 21:11:36 +00:00
|
|
|
|
2012-10-17 09:51:01 +00:00
|
|
|
for (i = 0; i < FF_ARRAY_ELEMS(frame->buf); i++)
|
|
|
|
av_buffer_unref(&frame->buf[i]);
|
|
|
|
for (i = 0; i < frame->nb_extended_buf; i++)
|
|
|
|
av_buffer_unref(&frame->extended_buf[i]);
|
|
|
|
av_freep(&frame->extended_buf);
|
2015-11-20 18:47:29 +00:00
|
|
|
|
|
|
|
av_buffer_unref(&frame->hw_frames_ctx);
|
|
|
|
|
2012-10-17 09:51:01 +00:00
|
|
|
get_frame_defaults(frame);
|
|
|
|
}
|
|
|
|
|
|
|
|
void av_frame_move_ref(AVFrame *dst, AVFrame *src)
|
|
|
|
{
|
|
|
|
*dst = *src;
|
|
|
|
if (src->extended_data == src->data)
|
|
|
|
dst->extended_data = dst->data;
|
|
|
|
memset(src, 0, sizeof(*src));
|
|
|
|
get_frame_defaults(src);
|
|
|
|
}
|
|
|
|
|
|
|
|
int av_frame_is_writable(AVFrame *frame)
|
|
|
|
{
|
|
|
|
int i, ret = 1;
|
|
|
|
|
|
|
|
/* assume non-refcounted frames are not writable */
|
|
|
|
if (!frame->buf[0])
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
for (i = 0; i < FF_ARRAY_ELEMS(frame->buf) && frame->buf[i]; i++)
|
|
|
|
ret &= !!av_buffer_is_writable(frame->buf[i]);
|
|
|
|
for (i = 0; i < frame->nb_extended_buf; i++)
|
|
|
|
ret &= !!av_buffer_is_writable(frame->extended_buf[i]);
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
int av_frame_make_writable(AVFrame *frame)
|
|
|
|
{
|
|
|
|
AVFrame tmp;
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
if (!frame->buf[0])
|
|
|
|
return AVERROR(EINVAL);
|
|
|
|
|
|
|
|
if (av_frame_is_writable(frame))
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
memset(&tmp, 0, sizeof(tmp));
|
|
|
|
tmp.format = frame->format;
|
|
|
|
tmp.width = frame->width;
|
|
|
|
tmp.height = frame->height;
|
|
|
|
tmp.channel_layout = frame->channel_layout;
|
|
|
|
tmp.nb_samples = frame->nb_samples;
|
|
|
|
ret = av_frame_get_buffer(&tmp, 32);
|
|
|
|
if (ret < 0)
|
|
|
|
return ret;
|
|
|
|
|
2014-02-11 13:15:20 +00:00
|
|
|
ret = av_frame_copy(&tmp, frame);
|
|
|
|
if (ret < 0) {
|
|
|
|
av_frame_unref(&tmp);
|
|
|
|
return ret;
|
2012-10-17 09:51:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
ret = av_frame_copy_props(&tmp, frame);
|
|
|
|
if (ret < 0) {
|
|
|
|
av_frame_unref(&tmp);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
av_frame_unref(frame);
|
|
|
|
|
|
|
|
*frame = tmp;
|
|
|
|
if (tmp.data == tmp.extended_data)
|
|
|
|
frame->extended_data = frame->data;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int av_frame_copy_props(AVFrame *dst, const AVFrame *src)
|
|
|
|
{
|
2012-12-25 21:11:36 +00:00
|
|
|
int i;
|
|
|
|
|
2013-11-29 19:41:35 +00:00
|
|
|
dst->key_frame = src->key_frame;
|
|
|
|
dst->pict_type = src->pict_type;
|
|
|
|
dst->sample_aspect_ratio = src->sample_aspect_ratio;
|
|
|
|
dst->pts = src->pts;
|
|
|
|
dst->repeat_pict = src->repeat_pict;
|
|
|
|
dst->interlaced_frame = src->interlaced_frame;
|
|
|
|
dst->top_field_first = src->top_field_first;
|
|
|
|
dst->palette_has_changed = src->palette_has_changed;
|
|
|
|
dst->sample_rate = src->sample_rate;
|
|
|
|
dst->opaque = src->opaque;
|
2016-03-19 20:45:24 +00:00
|
|
|
#if FF_API_PKT_PTS
|
|
|
|
FF_DISABLE_DEPRECATION_WARNINGS
|
2013-11-29 19:41:35 +00:00
|
|
|
dst->pkt_pts = src->pkt_pts;
|
2016-03-19 20:45:24 +00:00
|
|
|
FF_ENABLE_DEPRECATION_WARNINGS
|
|
|
|
#endif
|
2013-11-29 19:41:35 +00:00
|
|
|
dst->pkt_dts = src->pkt_dts;
|
|
|
|
dst->reordered_opaque = src->reordered_opaque;
|
|
|
|
dst->quality = src->quality;
|
|
|
|
dst->coded_picture_number = src->coded_picture_number;
|
2012-10-17 09:51:01 +00:00
|
|
|
dst->display_picture_number = src->display_picture_number;
|
2013-11-29 19:40:34 +00:00
|
|
|
dst->flags = src->flags;
|
2014-05-30 20:14:21 +00:00
|
|
|
dst->color_primaries = src->color_primaries;
|
|
|
|
dst->color_trc = src->color_trc;
|
|
|
|
dst->colorspace = src->colorspace;
|
|
|
|
dst->color_range = src->color_range;
|
|
|
|
dst->chroma_location = src->chroma_location;
|
2012-10-17 09:51:01 +00:00
|
|
|
|
2015-09-28 09:40:09 +00:00
|
|
|
#if FF_API_ERROR_FRAME
|
|
|
|
FF_DISABLE_DEPRECATION_WARNINGS
|
2013-03-22 14:13:42 +00:00
|
|
|
memcpy(dst->error, src->error, sizeof(dst->error));
|
2015-09-28 09:40:09 +00:00
|
|
|
FF_ENABLE_DEPRECATION_WARNINGS
|
|
|
|
#endif
|
2013-03-22 14:13:42 +00:00
|
|
|
|
2012-12-25 21:11:36 +00:00
|
|
|
for (i = 0; i < src->nb_side_data; i++) {
|
|
|
|
const AVFrameSideData *sd_src = src->side_data[i];
|
|
|
|
AVFrameSideData *sd_dst = av_frame_new_side_data(dst, sd_src->type,
|
|
|
|
sd_src->size);
|
|
|
|
if (!sd_dst) {
|
2014-12-15 19:38:00 +00:00
|
|
|
wipe_side_data(dst);
|
2012-12-25 21:11:36 +00:00
|
|
|
return AVERROR(ENOMEM);
|
|
|
|
}
|
|
|
|
memcpy(sd_dst->data, sd_src->data, sd_src->size);
|
|
|
|
av_dict_copy(&sd_dst->metadata, sd_src->metadata, 0);
|
|
|
|
}
|
|
|
|
|
2012-10-17 09:51:01 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
AVBufferRef *av_frame_get_plane_buffer(AVFrame *frame, int plane)
|
|
|
|
{
|
|
|
|
uint8_t *data;
|
|
|
|
int planes, i;
|
|
|
|
|
|
|
|
if (frame->nb_samples) {
|
|
|
|
int channels = av_get_channel_layout_nb_channels(frame->channel_layout);
|
|
|
|
if (!channels)
|
|
|
|
return NULL;
|
|
|
|
planes = av_sample_fmt_is_planar(frame->format) ? channels : 1;
|
|
|
|
} else
|
|
|
|
planes = 4;
|
|
|
|
|
|
|
|
if (plane < 0 || plane >= planes || !frame->extended_data[plane])
|
|
|
|
return NULL;
|
|
|
|
data = frame->extended_data[plane];
|
|
|
|
|
|
|
|
for (i = 0; i < FF_ARRAY_ELEMS(frame->buf) && frame->buf[i]; i++) {
|
|
|
|
AVBufferRef *buf = frame->buf[i];
|
|
|
|
if (data >= buf->data && data < buf->data + buf->size)
|
|
|
|
return buf;
|
|
|
|
}
|
|
|
|
for (i = 0; i < frame->nb_extended_buf; i++) {
|
|
|
|
AVBufferRef *buf = frame->extended_buf[i];
|
|
|
|
if (data >= buf->data && data < buf->data + buf->size)
|
|
|
|
return buf;
|
|
|
|
}
|
|
|
|
return NULL;
|
|
|
|
}
|
2012-12-25 21:11:36 +00:00
|
|
|
|
|
|
|
AVFrameSideData *av_frame_new_side_data(AVFrame *frame,
|
|
|
|
enum AVFrameSideDataType type,
|
|
|
|
int size)
|
|
|
|
{
|
|
|
|
AVFrameSideData *ret, **tmp;
|
|
|
|
|
|
|
|
if (frame->nb_side_data > INT_MAX / sizeof(*frame->side_data) - 1)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
tmp = av_realloc(frame->side_data,
|
|
|
|
(frame->nb_side_data + 1) * sizeof(*frame->side_data));
|
|
|
|
if (!tmp)
|
|
|
|
return NULL;
|
|
|
|
frame->side_data = tmp;
|
|
|
|
|
|
|
|
ret = av_mallocz(sizeof(*ret));
|
|
|
|
if (!ret)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
ret->data = av_malloc(size);
|
|
|
|
if (!ret->data) {
|
|
|
|
av_freep(&ret);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
ret->size = size;
|
|
|
|
ret->type = type;
|
|
|
|
|
|
|
|
frame->side_data[frame->nb_side_data++] = ret;
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2013-07-30 15:39:07 +00:00
|
|
|
AVFrameSideData *av_frame_get_side_data(const AVFrame *frame,
|
2012-12-25 21:11:36 +00:00
|
|
|
enum AVFrameSideDataType type)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
|
|
|
for (i = 0; i < frame->nb_side_data; i++) {
|
|
|
|
if (frame->side_data[i]->type == type)
|
|
|
|
return frame->side_data[i];
|
|
|
|
}
|
|
|
|
return NULL;
|
|
|
|
}
|
2014-02-11 13:15:20 +00:00
|
|
|
|
|
|
|
static int frame_copy_video(AVFrame *dst, const AVFrame *src)
|
|
|
|
{
|
|
|
|
const uint8_t *src_data[4];
|
|
|
|
int i, planes;
|
|
|
|
|
|
|
|
if (dst->width != src->width ||
|
|
|
|
dst->height != src->height)
|
|
|
|
return AVERROR(EINVAL);
|
|
|
|
|
|
|
|
planes = av_pix_fmt_count_planes(dst->format);
|
|
|
|
for (i = 0; i < planes; i++)
|
|
|
|
if (!dst->data[i] || !src->data[i])
|
|
|
|
return AVERROR(EINVAL);
|
|
|
|
|
|
|
|
memcpy(src_data, src->data, sizeof(src_data));
|
|
|
|
av_image_copy(dst->data, dst->linesize,
|
|
|
|
src_data, src->linesize,
|
|
|
|
dst->format, dst->width, dst->height);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int frame_copy_audio(AVFrame *dst, const AVFrame *src)
|
|
|
|
{
|
|
|
|
int planar = av_sample_fmt_is_planar(dst->format);
|
|
|
|
int channels = av_get_channel_layout_nb_channels(dst->channel_layout);
|
|
|
|
int planes = planar ? channels : 1;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
if (dst->nb_samples != src->nb_samples ||
|
|
|
|
dst->channel_layout != src->channel_layout)
|
|
|
|
return AVERROR(EINVAL);
|
|
|
|
|
|
|
|
for (i = 0; i < planes; i++)
|
|
|
|
if (!dst->extended_data[i] || !src->extended_data[i])
|
|
|
|
return AVERROR(EINVAL);
|
|
|
|
|
|
|
|
av_samples_copy(dst->extended_data, src->extended_data, 0, 0,
|
|
|
|
dst->nb_samples, channels, dst->format);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int av_frame_copy(AVFrame *dst, const AVFrame *src)
|
|
|
|
{
|
|
|
|
if (dst->format != src->format || dst->format < 0)
|
|
|
|
return AVERROR(EINVAL);
|
|
|
|
|
|
|
|
if (dst->width > 0 && dst->height > 0)
|
|
|
|
return frame_copy_video(dst, src);
|
|
|
|
else if (dst->nb_samples > 0 && dst->channel_layout)
|
|
|
|
return frame_copy_audio(dst, src);
|
|
|
|
|
|
|
|
return AVERROR(EINVAL);
|
|
|
|
}
|
2014-02-19 19:11:21 +00:00
|
|
|
|
|
|
|
void av_frame_remove_side_data(AVFrame *frame, enum AVFrameSideDataType type)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
|
|
|
for (i = 0; i < frame->nb_side_data; i++) {
|
|
|
|
AVFrameSideData *sd = frame->side_data[i];
|
|
|
|
if (sd->type == type) {
|
2014-06-18 06:11:05 +00:00
|
|
|
free_side_data(&frame->side_data[i]);
|
2014-02-19 19:11:21 +00:00
|
|
|
frame->side_data[i] = frame->side_data[frame->nb_side_data - 1];
|
|
|
|
frame->nb_side_data--;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|