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.

76 lines
2.1KB

  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/imgutils.h"
  27. #include "libavutil/mem.h"
  28. #include "avfilter.h"
  29. #include "internal.h"
  30. #include "video.h"
  31. AVFrame *ff_null_get_video_buffer(AVFilterLink *link, int w, int h)
  32. {
  33. return ff_get_video_buffer(link->dst->outputs[0], w, h);
  34. }
  35. /* TODO: set the buffer's priv member to a context structure for the whole
  36. * filter chain. This will allow for a buffer pool instead of the constant
  37. * alloc & free cycle currently implemented. */
  38. AVFrame *ff_default_get_video_buffer(AVFilterLink *link, int w, int h)
  39. {
  40. AVFrame *frame = av_frame_alloc();
  41. int ret;
  42. if (!frame)
  43. return NULL;
  44. frame->width = w;
  45. frame->height = h;
  46. frame->format = link->format;
  47. ret = av_frame_get_buffer(frame, 32);
  48. if (ret < 0)
  49. av_frame_free(&frame);
  50. return frame;
  51. }
  52. AVFrame *ff_get_video_buffer(AVFilterLink *link, int w, int h)
  53. {
  54. AVFrame *ret = NULL;
  55. FF_TPRINTF_START(NULL, get_video_buffer); ff_tlog_link(NULL, link, 0);
  56. if (link->dstpad->get_video_buffer)
  57. ret = link->dstpad->get_video_buffer(link, w, h);
  58. if (!ret)
  59. ret = ff_default_get_video_buffer(link, w, h);
  60. return ret;
  61. }