buffer.c 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173
  1. /*
  2. * Copyright Stefano Sabatini <stefasab gmail com>
  3. * Copyright Anton Khirnov <anton khirnov net>
  4. * Copyright Michael Niedermayer <michaelni gmx at>
  5. *
  6. * This file is part of FFmpeg.
  7. *
  8. * FFmpeg is free software; you can redistribute it and/or
  9. * modify it under the terms of the GNU Lesser General Public
  10. * License as published by the Free Software Foundation; either
  11. * version 2.1 of the License, or (at your option) any later version.
  12. *
  13. * FFmpeg is distributed in the hope that it will be useful,
  14. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  16. * Lesser General Public License for more details.
  17. *
  18. * You should have received a copy of the GNU Lesser General Public
  19. * License along with FFmpeg; if not, write to the Free Software
  20. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  21. */
  22. #include "libavutil/channel_layout.h"
  23. #include "libavutil/avassert.h"
  24. #include "libavutil/common.h"
  25. #include "libavutil/imgutils.h"
  26. #include "libavutil/internal.h"
  27. #include "libavcodec/avcodec.h"
  28. #include "avfilter.h"
  29. #include "internal.h"
  30. #include "audio.h"
  31. #include "avcodec.h"
  32. #include "version.h"
  33. #if FF_API_AVFILTERBUFFER
  34. void ff_avfilter_default_free_buffer(AVFilterBuffer *ptr)
  35. {
  36. if (ptr->extended_data != ptr->data)
  37. av_freep(&ptr->extended_data);
  38. av_free(ptr->data[0]);
  39. av_free(ptr);
  40. }
  41. static void copy_video_props(AVFilterBufferRefVideoProps *dst, AVFilterBufferRefVideoProps *src) {
  42. *dst = *src;
  43. if (src->qp_table) {
  44. int qsize = src->qp_table_size;
  45. dst->qp_table = av_malloc(qsize);
  46. memcpy(dst->qp_table, src->qp_table, qsize);
  47. }
  48. }
  49. AVFilterBufferRef *avfilter_ref_buffer(AVFilterBufferRef *ref, int pmask)
  50. {
  51. AVFilterBufferRef *ret = av_malloc(sizeof(AVFilterBufferRef));
  52. if (!ret)
  53. return NULL;
  54. *ret = *ref;
  55. ret->metadata = NULL;
  56. av_dict_copy(&ret->metadata, ref->metadata, 0);
  57. if (ref->type == AVMEDIA_TYPE_VIDEO) {
  58. ret->video = av_malloc(sizeof(AVFilterBufferRefVideoProps));
  59. if (!ret->video) {
  60. av_free(ret);
  61. return NULL;
  62. }
  63. copy_video_props(ret->video, ref->video);
  64. ret->extended_data = ret->data;
  65. } else if (ref->type == AVMEDIA_TYPE_AUDIO) {
  66. ret->audio = av_malloc(sizeof(AVFilterBufferRefAudioProps));
  67. if (!ret->audio) {
  68. av_free(ret);
  69. return NULL;
  70. }
  71. *ret->audio = *ref->audio;
  72. if (ref->extended_data && ref->extended_data != ref->data) {
  73. int nb_channels = av_get_channel_layout_nb_channels(ref->audio->channel_layout);
  74. if (!(ret->extended_data = av_malloc_array(sizeof(*ret->extended_data),
  75. nb_channels))) {
  76. av_freep(&ret->audio);
  77. av_freep(&ret);
  78. return NULL;
  79. }
  80. memcpy(ret->extended_data, ref->extended_data,
  81. sizeof(*ret->extended_data) * nb_channels);
  82. } else
  83. ret->extended_data = ret->data;
  84. }
  85. ret->perms &= pmask;
  86. ret->buf->refcount ++;
  87. return ret;
  88. }
  89. void avfilter_unref_buffer(AVFilterBufferRef *ref)
  90. {
  91. if (!ref)
  92. return;
  93. av_assert0(ref->buf->refcount > 0);
  94. if (!(--ref->buf->refcount))
  95. ref->buf->free(ref->buf);
  96. if (ref->extended_data != ref->data)
  97. av_freep(&ref->extended_data);
  98. if (ref->video)
  99. av_freep(&ref->video->qp_table);
  100. av_freep(&ref->video);
  101. av_freep(&ref->audio);
  102. av_dict_free(&ref->metadata);
  103. av_free(ref);
  104. }
  105. void avfilter_unref_bufferp(AVFilterBufferRef **ref)
  106. {
  107. FF_DISABLE_DEPRECATION_WARNINGS
  108. avfilter_unref_buffer(*ref);
  109. FF_ENABLE_DEPRECATION_WARNINGS
  110. *ref = NULL;
  111. }
  112. int avfilter_copy_frame_props(AVFilterBufferRef *dst, const AVFrame *src)
  113. {
  114. dst->pts = src->pts;
  115. dst->pos = av_frame_get_pkt_pos(src);
  116. dst->format = src->format;
  117. av_dict_free(&dst->metadata);
  118. av_dict_copy(&dst->metadata, av_frame_get_metadata(src), 0);
  119. switch (dst->type) {
  120. case AVMEDIA_TYPE_VIDEO:
  121. dst->video->w = src->width;
  122. dst->video->h = src->height;
  123. dst->video->sample_aspect_ratio = src->sample_aspect_ratio;
  124. dst->video->interlaced = src->interlaced_frame;
  125. dst->video->top_field_first = src->top_field_first;
  126. dst->video->key_frame = src->key_frame;
  127. dst->video->pict_type = src->pict_type;
  128. break;
  129. case AVMEDIA_TYPE_AUDIO:
  130. dst->audio->sample_rate = src->sample_rate;
  131. dst->audio->channel_layout = src->channel_layout;
  132. break;
  133. default:
  134. return AVERROR(EINVAL);
  135. }
  136. return 0;
  137. }
  138. void avfilter_copy_buffer_ref_props(AVFilterBufferRef *dst, const AVFilterBufferRef *src)
  139. {
  140. // copy common properties
  141. dst->pts = src->pts;
  142. dst->pos = src->pos;
  143. switch (src->type) {
  144. case AVMEDIA_TYPE_VIDEO: {
  145. if (dst->video->qp_table)
  146. av_freep(&dst->video->qp_table);
  147. copy_video_props(dst->video, src->video);
  148. break;
  149. }
  150. case AVMEDIA_TYPE_AUDIO: *dst->audio = *src->audio; break;
  151. default: break;
  152. }
  153. av_dict_free(&dst->metadata);
  154. av_dict_copy(&dst->metadata, src->metadata, 0);
  155. }
  156. #endif /* FF_API_AVFILTERBUFFER */