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.

106 lines
3.2KB

  1. /*
  2. * Copyright 2007 Bobby Bingham
  3. * Copyright Stefano Sabatini <stefasab gmail com>
  4. * Copyright Vitor Sessak <vitor1001 gmail com>
  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 <string.h>
  23. #include <stdio.h>
  24. #include "libavutil/avassert.h"
  25. #include "libavutil/buffer.h"
  26. #include "libavutil/hwcontext.h"
  27. #include "libavutil/imgutils.h"
  28. #include "libavutil/mem.h"
  29. #include "avfilter.h"
  30. #include "internal.h"
  31. #include "video.h"
  32. #define BUFFER_ALIGN 32
  33. AVFrame *ff_null_get_video_buffer(AVFilterLink *link, int w, int h)
  34. {
  35. return ff_get_video_buffer(link->dst->outputs[0], w, h);
  36. }
  37. AVFrame *ff_default_get_video_buffer(AVFilterLink *link, int w, int h)
  38. {
  39. int pool_width = 0;
  40. int pool_height = 0;
  41. int pool_align = 0;
  42. enum AVPixelFormat pool_format = AV_PIX_FMT_NONE;
  43. if (link->hw_frames_ctx &&
  44. ((AVHWFramesContext*)link->hw_frames_ctx->data)->format == link->format) {
  45. int ret;
  46. AVFrame *frame = av_frame_alloc();
  47. if (!frame)
  48. return NULL;
  49. ret = av_hwframe_get_buffer(link->hw_frames_ctx, frame, 0);
  50. if (ret < 0)
  51. av_frame_free(&frame);
  52. return frame;
  53. }
  54. if (!link->frame_pool) {
  55. link->frame_pool = ff_frame_pool_video_init(av_buffer_allocz, w, h,
  56. link->format, BUFFER_ALIGN);
  57. if (!link->frame_pool)
  58. return NULL;
  59. } else {
  60. if (ff_frame_pool_get_video_config(link->frame_pool,
  61. &pool_width, &pool_height,
  62. &pool_format, &pool_align) < 0) {
  63. return NULL;
  64. }
  65. if (pool_width != w || pool_height != h ||
  66. pool_format != link->format || pool_align != BUFFER_ALIGN) {
  67. ff_frame_pool_uninit((FFFramePool **)&link->frame_pool);
  68. link->frame_pool = ff_frame_pool_video_init(av_buffer_allocz, w, h,
  69. link->format, BUFFER_ALIGN);
  70. if (!link->frame_pool)
  71. return NULL;
  72. }
  73. }
  74. return ff_frame_pool_get(link->frame_pool);
  75. }
  76. AVFrame *ff_get_video_buffer(AVFilterLink *link, int w, int h)
  77. {
  78. AVFrame *ret = NULL;
  79. FF_TPRINTF_START(NULL, get_video_buffer); ff_tlog_link(NULL, link, 0);
  80. if (link->dstpad->get_video_buffer)
  81. ret = link->dstpad->get_video_buffer(link, w, h);
  82. if (!ret)
  83. ret = ff_default_get_video_buffer(link, w, h);
  84. return ret;
  85. }