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.

119 lines
3.4KB

  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/imgutils.h"
  22. #include "libavutil/mem.h"
  23. #include "avfilter.h"
  24. #include "internal.h"
  25. #include "video.h"
  26. AVFrame *ff_null_get_video_buffer(AVFilterLink *link, int w, int h)
  27. {
  28. return ff_get_video_buffer(link->dst->outputs[0], w, h);
  29. }
  30. /* TODO: set the buffer's priv member to a context structure for the whole
  31. * filter chain. This will allow for a buffer pool instead of the constant
  32. * alloc & free cycle currently implemented. */
  33. AVFrame *ff_default_get_video_buffer(AVFilterLink *link, int w, int h)
  34. {
  35. AVFrame *frame = av_frame_alloc();
  36. int ret;
  37. if (!frame)
  38. return NULL;
  39. frame->width = w;
  40. frame->height = h;
  41. frame->format = link->format;
  42. ret = av_frame_get_buffer(frame, 32);
  43. if (ret < 0)
  44. av_frame_free(&frame);
  45. return frame;
  46. }
  47. #if FF_API_AVFILTERBUFFER
  48. AVFilterBufferRef *
  49. avfilter_get_video_buffer_ref_from_arrays(uint8_t *data[4], int linesize[4], int perms,
  50. int w, int h, enum AVPixelFormat format)
  51. {
  52. AVFilterBuffer *pic = av_mallocz(sizeof(AVFilterBuffer));
  53. AVFilterBufferRef *picref = av_mallocz(sizeof(AVFilterBufferRef));
  54. if (!pic || !picref)
  55. goto fail;
  56. picref->buf = pic;
  57. picref->buf->free = ff_avfilter_default_free_buffer;
  58. if (!(picref->video = av_mallocz(sizeof(AVFilterBufferRefVideoProps))))
  59. goto fail;
  60. pic->w = picref->video->w = w;
  61. pic->h = picref->video->h = h;
  62. /* make sure the buffer gets read permission or it's useless for output */
  63. picref->perms = perms | AV_PERM_READ;
  64. pic->refcount = 1;
  65. picref->type = AVMEDIA_TYPE_VIDEO;
  66. pic->format = picref->format = format;
  67. memcpy(pic->data, data, 4*sizeof(data[0]));
  68. memcpy(pic->linesize, linesize, 4*sizeof(linesize[0]));
  69. memcpy(picref->data, pic->data, sizeof(picref->data));
  70. memcpy(picref->linesize, pic->linesize, sizeof(picref->linesize));
  71. pic-> extended_data = pic->data;
  72. picref->extended_data = picref->data;
  73. picref->pts = AV_NOPTS_VALUE;
  74. return picref;
  75. fail:
  76. if (picref && picref->video)
  77. av_free(picref->video);
  78. av_free(picref);
  79. av_free(pic);
  80. return NULL;
  81. }
  82. #endif
  83. AVFrame *ff_get_video_buffer(AVFilterLink *link, int w, int h)
  84. {
  85. AVFrame *ret = NULL;
  86. av_unused char buf[16];
  87. FF_DPRINTF_START(NULL, get_video_buffer); ff_dlog_link(NULL, link, 0);
  88. if (link->dstpad->get_video_buffer)
  89. ret = link->dstpad->get_video_buffer(link, w, h);
  90. if (!ret)
  91. ret = ff_default_get_video_buffer(link, w, h);
  92. return ret;
  93. }