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.

77 lines
2.2KB

  1. /*
  2. * This file is part of Libav.
  3. *
  4. * Libav is free software; you can redistribute it and/or
  5. * modify it under the terms of the GNU Lesser General Public
  6. * License as published by the Free Software Foundation; either
  7. * version 2.1 of the License, or (at your option) any later version.
  8. *
  9. * Libav is distributed in the hope that it will be useful,
  10. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  12. * Lesser General Public License for more details.
  13. *
  14. * You should have received a copy of the GNU Lesser General Public
  15. * License along with Libav; if not, write to the Free Software
  16. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  17. */
  18. #include <string.h>
  19. #include <stdio.h>
  20. #include "libavutil/buffer.h"
  21. #include "libavutil/hwcontext.h"
  22. #include "libavutil/imgutils.h"
  23. #include "libavutil/mem.h"
  24. #include "avfilter.h"
  25. #include "internal.h"
  26. #include "video.h"
  27. AVFrame *ff_null_get_video_buffer(AVFilterLink *link, int w, int h)
  28. {
  29. return ff_get_video_buffer(link->dst->outputs[0], w, h);
  30. }
  31. /* TODO: set the buffer's priv member to a context structure for the whole
  32. * filter chain. This will allow for a buffer pool instead of the constant
  33. * alloc & free cycle currently implemented. */
  34. AVFrame *ff_default_get_video_buffer(AVFilterLink *link, int w, int h)
  35. {
  36. AVFrame *frame = av_frame_alloc();
  37. int ret;
  38. if (!frame)
  39. return NULL;
  40. if (link->hw_frames_ctx &&
  41. ((AVHWFramesContext*)link->hw_frames_ctx->data)->format == link->format) {
  42. ret = av_hwframe_get_buffer(link->hw_frames_ctx, frame, 0);
  43. } else {
  44. frame->width = w;
  45. frame->height = h;
  46. frame->format = link->format;
  47. ret = av_frame_get_buffer(frame, 32);
  48. }
  49. if (ret < 0)
  50. av_frame_free(&frame);
  51. return frame;
  52. }
  53. AVFrame *ff_get_video_buffer(AVFilterLink *link, int w, int h)
  54. {
  55. AVFrame *ret = NULL;
  56. FF_DPRINTF_START(NULL, get_video_buffer); ff_dlog_link(NULL, link, 0);
  57. if (link->dstpad->get_video_buffer)
  58. ret = link->dstpad->get_video_buffer(link, w, h);
  59. if (!ret)
  60. ret = ff_default_get_video_buffer(link, w, h);
  61. return ret;
  62. }