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.

155 lines
5.4KB

  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. * @file
  22. * libavcodec/libavfilter gluing utilities
  23. */
  24. #include "avcodec.h"
  25. #include "libavutil/avassert.h"
  26. #include "libavutil/opt.h"
  27. AVFilterBufferRef *avfilter_get_video_buffer_ref_from_frame(const AVFrame *frame,
  28. int perms)
  29. {
  30. AVFilterBufferRef *picref =
  31. avfilter_get_video_buffer_ref_from_arrays(frame->data, frame->linesize, perms,
  32. frame->width, frame->height,
  33. frame->format);
  34. if (!picref)
  35. return NULL;
  36. if (avfilter_copy_frame_props(picref, frame) < 0) {
  37. picref->buf->data[0] = NULL;
  38. avfilter_unref_bufferp(&picref);
  39. }
  40. return picref;
  41. }
  42. AVFilterBufferRef *avfilter_get_audio_buffer_ref_from_frame(const AVFrame *frame,
  43. int perms)
  44. {
  45. AVFilterBufferRef *samplesref;
  46. int channels = av_frame_get_channels(frame);
  47. int64_t layout = av_frame_get_channel_layout(frame);
  48. if (layout && av_get_channel_layout_nb_channels(layout) != av_frame_get_channels(frame)) {
  49. av_log(0, AV_LOG_ERROR, "Layout indicates a different number of channels than actually present\n");
  50. return NULL;
  51. }
  52. samplesref = avfilter_get_audio_buffer_ref_from_arrays_channels(
  53. (uint8_t **)frame->extended_data, frame->linesize[0], perms,
  54. frame->nb_samples, frame->format, channels, layout);
  55. if (!samplesref)
  56. return NULL;
  57. if (avfilter_copy_frame_props(samplesref, frame) < 0) {
  58. samplesref->buf->data[0] = NULL;
  59. avfilter_unref_bufferp(&samplesref);
  60. }
  61. return samplesref;
  62. }
  63. AVFilterBufferRef *avfilter_get_buffer_ref_from_frame(enum AVMediaType type,
  64. const AVFrame *frame,
  65. int perms)
  66. {
  67. switch (type) {
  68. case AVMEDIA_TYPE_VIDEO:
  69. return avfilter_get_video_buffer_ref_from_frame(frame, perms);
  70. case AVMEDIA_TYPE_AUDIO:
  71. return avfilter_get_audio_buffer_ref_from_frame(frame, perms);
  72. default:
  73. return NULL;
  74. }
  75. }
  76. int avfilter_copy_buf_props(AVFrame *dst, const AVFilterBufferRef *src)
  77. {
  78. int planes, nb_channels;
  79. if (!dst)
  80. return AVERROR(EINVAL);
  81. /* abort in case the src is NULL and dst is not, avoid inconsistent state in dst */
  82. av_assert0(src);
  83. memcpy(dst->data, src->data, sizeof(dst->data));
  84. memcpy(dst->linesize, src->linesize, sizeof(dst->linesize));
  85. dst->pts = src->pts;
  86. dst->format = src->format;
  87. av_frame_set_pkt_pos(dst, src->pos);
  88. switch (src->type) {
  89. case AVMEDIA_TYPE_VIDEO:
  90. av_assert0(src->video);
  91. dst->width = src->video->w;
  92. dst->height = src->video->h;
  93. dst->sample_aspect_ratio = src->video->sample_aspect_ratio;
  94. dst->interlaced_frame = src->video->interlaced;
  95. dst->top_field_first = src->video->top_field_first;
  96. dst->key_frame = src->video->key_frame;
  97. dst->pict_type = src->video->pict_type;
  98. break;
  99. case AVMEDIA_TYPE_AUDIO:
  100. av_assert0(src->audio);
  101. nb_channels = av_get_channel_layout_nb_channels(src->audio->channel_layout);
  102. planes = av_sample_fmt_is_planar(src->format) ? nb_channels : 1;
  103. if (planes > FF_ARRAY_ELEMS(dst->data)) {
  104. dst->extended_data = av_mallocz(planes * sizeof(*dst->extended_data));
  105. if (!dst->extended_data)
  106. return AVERROR(ENOMEM);
  107. memcpy(dst->extended_data, src->extended_data,
  108. planes * sizeof(*dst->extended_data));
  109. } else
  110. dst->extended_data = dst->data;
  111. dst->nb_samples = src->audio->nb_samples;
  112. av_frame_set_sample_rate (dst, src->audio->sample_rate);
  113. av_frame_set_channel_layout(dst, src->audio->channel_layout);
  114. av_frame_set_channels (dst, src->audio->channels);
  115. break;
  116. default:
  117. return AVERROR(EINVAL);
  118. }
  119. return 0;
  120. }
  121. #ifdef FF_API_FILL_FRAME
  122. int avfilter_fill_frame_from_audio_buffer_ref(AVFrame *frame,
  123. const AVFilterBufferRef *samplesref)
  124. {
  125. return avfilter_copy_buf_props(frame, samplesref);
  126. }
  127. int avfilter_fill_frame_from_video_buffer_ref(AVFrame *frame,
  128. const AVFilterBufferRef *picref)
  129. {
  130. return avfilter_copy_buf_props(frame, picref);
  131. }
  132. int avfilter_fill_frame_from_buffer_ref(AVFrame *frame,
  133. const AVFilterBufferRef *ref)
  134. {
  135. return avfilter_copy_buf_props(frame, ref);
  136. }
  137. #endif