libavfilter/buffer.c
4a1ac8c4
 /*
81c23fec
  * Copyright Stefano Sabatini <stefasab gmail com>
  * Copyright Anton Khirnov <anton khirnov net>
  * Copyright Michael Niedermayer <michaelni gmx at>
  *
1cbf7fb4
  * This file is part of FFmpeg.
4a1ac8c4
  *
1cbf7fb4
  * FFmpeg is free software; you can redistribute it and/or
4a1ac8c4
  * 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.
  *
1cbf7fb4
  * FFmpeg is distributed in the hope that it will be useful,
4a1ac8c4
  * 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
1cbf7fb4
  * License along with FFmpeg; if not, write to the Free Software
4a1ac8c4
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  */
 
a903f8f0
 #include "libavutil/channel_layout.h"
1cbf7fb4
 #include "libavutil/avassert.h"
1d9c2dc8
 #include "libavutil/common.h"
97f86680
 #include "libavutil/imgutils.h"
4a1ac8c4
 #include "libavcodec/avcodec.h"
 
 #include "avfilter.h"
 #include "internal.h"
97f86680
 #include "audio.h"
1cbf7fb4
 #include "avcodec.h"
4a1ac8c4
 
 void ff_avfilter_default_free_buffer(AVFilterBuffer *ptr)
 {
     if (ptr->extended_data != ptr->data)
         av_freep(&ptr->extended_data);
     av_free(ptr->data[0]);
     av_free(ptr);
 }
 
a33b4bc7
 static void copy_video_props(AVFilterBufferRefVideoProps *dst, AVFilterBufferRefVideoProps *src) {
     *dst = *src;
     if (src->qp_table) {
91141f2a
         int qsize = src->qp_table_size;
a33b4bc7
         dst->qp_table = av_malloc(qsize);
         memcpy(dst->qp_table, src->qp_table, qsize);
     }
 }
 
4a1ac8c4
 AVFilterBufferRef *avfilter_ref_buffer(AVFilterBufferRef *ref, int pmask)
 {
     AVFilterBufferRef *ret = av_malloc(sizeof(AVFilterBufferRef));
     if (!ret)
         return NULL;
     *ret = *ref;
6fb2fd89
 
     ret->metadata = NULL;
     av_dict_copy(&ret->metadata, ref->metadata, 0);
 
4a1ac8c4
     if (ref->type == AVMEDIA_TYPE_VIDEO) {
         ret->video = av_malloc(sizeof(AVFilterBufferRefVideoProps));
         if (!ret->video) {
             av_free(ret);
             return NULL;
         }
a33b4bc7
         copy_video_props(ret->video, ref->video);
4a1ac8c4
         ret->extended_data = ret->data;
     } else if (ref->type == AVMEDIA_TYPE_AUDIO) {
         ret->audio = av_malloc(sizeof(AVFilterBufferRefAudioProps));
         if (!ret->audio) {
             av_free(ret);
             return NULL;
         }
         *ret->audio = *ref->audio;
 
1cbf7fb4
         if (ref->extended_data && ref->extended_data != ref->data) {
4a1ac8c4
             int nb_channels = av_get_channel_layout_nb_channels(ref->audio->channel_layout);
             if (!(ret->extended_data = av_malloc(sizeof(*ret->extended_data) *
                                                  nb_channels))) {
                 av_freep(&ret->audio);
                 av_freep(&ret);
                 return NULL;
             }
             memcpy(ret->extended_data, ref->extended_data,
                    sizeof(*ret->extended_data) * nb_channels);
         } else
             ret->extended_data = ret->data;
     }
     ret->perms &= pmask;
     ret->buf->refcount ++;
     return ret;
 }
 
 void avfilter_unref_buffer(AVFilterBufferRef *ref)
 {
     if (!ref)
         return;
1cbf7fb4
     av_assert0(ref->buf->refcount > 0);
4a1ac8c4
     if (!(--ref->buf->refcount))
         ref->buf->free(ref->buf);
     if (ref->extended_data != ref->data)
         av_freep(&ref->extended_data);
c9a0f9bf
     if (ref->video)
         av_freep(&ref->video->qp_table);
1cbf7fb4
     av_freep(&ref->video);
     av_freep(&ref->audio);
6fb2fd89
     av_dict_free(&ref->metadata);
4a1ac8c4
     av_free(ref);
 }
 
1cbf7fb4
 void avfilter_unref_bufferp(AVFilterBufferRef **ref)
 {
     avfilter_unref_buffer(*ref);
     *ref = NULL;
 }
 
4a1ac8c4
 int avfilter_copy_frame_props(AVFilterBufferRef *dst, const AVFrame *src)
 {
     dst->pts    = src->pts;
a05a44e2
     dst->pos    = av_frame_get_pkt_pos(src);
4a1ac8c4
     dst->format = src->format;
 
a05a44e2
     av_dict_free(&dst->metadata);
     av_dict_copy(&dst->metadata, av_frame_get_metadata(src), 0);
 
4a1ac8c4
     switch (dst->type) {
     case AVMEDIA_TYPE_VIDEO:
         dst->video->w                   = src->width;
         dst->video->h                   = src->height;
a05a44e2
         dst->video->sample_aspect_ratio = src->sample_aspect_ratio;
4a1ac8c4
         dst->video->interlaced          = src->interlaced_frame;
         dst->video->top_field_first     = src->top_field_first;
         dst->video->key_frame           = src->key_frame;
         dst->video->pict_type           = src->pict_type;
         break;
     case AVMEDIA_TYPE_AUDIO:
         dst->audio->sample_rate         = src->sample_rate;
         dst->audio->channel_layout      = src->channel_layout;
         break;
     default:
         return AVERROR(EINVAL);
     }
 
     return 0;
 }
 
 void avfilter_copy_buffer_ref_props(AVFilterBufferRef *dst, AVFilterBufferRef *src)
 {
     // copy common properties
     dst->pts             = src->pts;
     dst->pos             = src->pos;
 
     switch (src->type) {
c9a0f9bf
     case AVMEDIA_TYPE_VIDEO: {
         if (dst->video->qp_table)
             av_freep(&dst->video->qp_table);
a33b4bc7
         copy_video_props(dst->video, src->video);
c9a0f9bf
         break;
     }
4a1ac8c4
     case AVMEDIA_TYPE_AUDIO: *dst->audio = *src->audio; break;
     default: break;
     }
6fb2fd89
 
     av_dict_free(&dst->metadata);
     av_dict_copy(&dst->metadata, src->metadata, 0);
4a1ac8c4
 }