You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

171 lines
5.2KB

  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 "libavcodec/avcodec.h"
  27. #include "avfilter.h"
  28. #include "internal.h"
  29. #include "audio.h"
  30. #include "avcodec.h"
  31. #include "version.h"
  32. #if FF_API_AVFILTERBUFFER
  33. void ff_avfilter_default_free_buffer(AVFilterBuffer *ptr)
  34. {
  35. if (ptr->extended_data != ptr->data)
  36. av_freep(&ptr->extended_data);
  37. av_free(ptr->data[0]);
  38. av_free(ptr);
  39. }
  40. static void copy_video_props(AVFilterBufferRefVideoProps *dst, AVFilterBufferRefVideoProps *src) {
  41. *dst = *src;
  42. if (src->qp_table) {
  43. int qsize = src->qp_table_size;
  44. dst->qp_table = av_malloc(qsize);
  45. memcpy(dst->qp_table, src->qp_table, qsize);
  46. }
  47. }
  48. AVFilterBufferRef *avfilter_ref_buffer(AVFilterBufferRef *ref, int pmask)
  49. {
  50. AVFilterBufferRef *ret = av_malloc(sizeof(AVFilterBufferRef));
  51. if (!ret)
  52. return NULL;
  53. *ret = *ref;
  54. ret->metadata = NULL;
  55. av_dict_copy(&ret->metadata, ref->metadata, 0);
  56. if (ref->type == AVMEDIA_TYPE_VIDEO) {
  57. ret->video = av_malloc(sizeof(AVFilterBufferRefVideoProps));
  58. if (!ret->video) {
  59. av_free(ret);
  60. return NULL;
  61. }
  62. copy_video_props(ret->video, ref->video);
  63. ret->extended_data = ret->data;
  64. } else if (ref->type == AVMEDIA_TYPE_AUDIO) {
  65. ret->audio = av_malloc(sizeof(AVFilterBufferRefAudioProps));
  66. if (!ret->audio) {
  67. av_free(ret);
  68. return NULL;
  69. }
  70. *ret->audio = *ref->audio;
  71. if (ref->extended_data && ref->extended_data != ref->data) {
  72. int nb_channels = av_get_channel_layout_nb_channels(ref->audio->channel_layout);
  73. if (!(ret->extended_data = av_malloc(sizeof(*ret->extended_data) *
  74. nb_channels))) {
  75. av_freep(&ret->audio);
  76. av_freep(&ret);
  77. return NULL;
  78. }
  79. memcpy(ret->extended_data, ref->extended_data,
  80. sizeof(*ret->extended_data) * nb_channels);
  81. } else
  82. ret->extended_data = ret->data;
  83. }
  84. ret->perms &= pmask;
  85. ret->buf->refcount ++;
  86. return ret;
  87. }
  88. void avfilter_unref_buffer(AVFilterBufferRef *ref)
  89. {
  90. if (!ref)
  91. return;
  92. av_assert0(ref->buf->refcount > 0);
  93. if (!(--ref->buf->refcount))
  94. ref->buf->free(ref->buf);
  95. if (ref->extended_data != ref->data)
  96. av_freep(&ref->extended_data);
  97. if (ref->video)
  98. av_freep(&ref->video->qp_table);
  99. av_freep(&ref->video);
  100. av_freep(&ref->audio);
  101. av_dict_free(&ref->metadata);
  102. av_free(ref);
  103. }
  104. void avfilter_unref_bufferp(AVFilterBufferRef **ref)
  105. {
  106. avfilter_unref_buffer(*ref);
  107. *ref = NULL;
  108. }
  109. int avfilter_copy_frame_props(AVFilterBufferRef *dst, const AVFrame *src)
  110. {
  111. dst->pts = src->pts;
  112. dst->pos = av_frame_get_pkt_pos(src);
  113. dst->format = src->format;
  114. av_dict_free(&dst->metadata);
  115. av_dict_copy(&dst->metadata, av_frame_get_metadata(src), 0);
  116. switch (dst->type) {
  117. case AVMEDIA_TYPE_VIDEO:
  118. dst->video->w = src->width;
  119. dst->video->h = src->height;
  120. dst->video->sample_aspect_ratio = src->sample_aspect_ratio;
  121. dst->video->interlaced = src->interlaced_frame;
  122. dst->video->top_field_first = src->top_field_first;
  123. dst->video->key_frame = src->key_frame;
  124. dst->video->pict_type = src->pict_type;
  125. break;
  126. case AVMEDIA_TYPE_AUDIO:
  127. dst->audio->sample_rate = src->sample_rate;
  128. dst->audio->channel_layout = src->channel_layout;
  129. break;
  130. default:
  131. return AVERROR(EINVAL);
  132. }
  133. return 0;
  134. }
  135. void avfilter_copy_buffer_ref_props(AVFilterBufferRef *dst, AVFilterBufferRef *src)
  136. {
  137. // copy common properties
  138. dst->pts = src->pts;
  139. dst->pos = src->pos;
  140. switch (src->type) {
  141. case AVMEDIA_TYPE_VIDEO: {
  142. if (dst->video->qp_table)
  143. av_freep(&dst->video->qp_table);
  144. copy_video_props(dst->video, src->video);
  145. break;
  146. }
  147. case AVMEDIA_TYPE_AUDIO: *dst->audio = *src->audio; break;
  148. default: break;
  149. }
  150. av_dict_free(&dst->metadata);
  151. av_dict_copy(&dst->metadata, src->metadata, 0);
  152. }
  153. #endif /* FF_API_AVFILTERBUFFER */