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.

139 lines
4.4KB

  1. /*
  2. * Filter layer - default implementations
  3. * copyright (c) 2007 Bobby Bingham
  4. *
  5. * This file is part of FFmpeg.
  6. *
  7. * FFmpeg is free software; you can redistribute it and/or
  8. * modify it under the terms of the GNU Lesser General Public
  9. * License as published by the Free Software Foundation; either
  10. * version 2.1 of the License, or (at your option) any later version.
  11. *
  12. * FFmpeg is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  15. * Lesser General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU Lesser General Public
  18. * License along with FFmpeg; if not, write to the Free Software
  19. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  20. */
  21. #include "avfilter.h"
  22. /* TODO: buffer pool. see comment for avfilter_default_get_video_buffer() */
  23. void avfilter_default_free_video_buffer(AVFilterPic *pic)
  24. {
  25. avpicture_free((AVPicture *) pic);
  26. av_free(pic);
  27. }
  28. AVFilterPicRef *avfilter_next_get_video_buffer(AVFilterLink *link, int perms)
  29. {
  30. if(!link->dst->outputs[0])
  31. return NULL;
  32. return avfilter_get_video_buffer(link->dst->outputs[0], perms);
  33. }
  34. /* TODO: set the buffer's priv member to a context structure for the whole
  35. * filter chain. This will allow for a buffer pool instead of the constant
  36. * alloc & free cycle currently implemented. */
  37. AVFilterPicRef *avfilter_default_get_video_buffer(AVFilterLink *link, int perms)
  38. {
  39. AVFilterPic *pic = av_mallocz(sizeof(AVFilterPic));
  40. AVFilterPicRef *ref = av_mallocz(sizeof(AVFilterPicRef));
  41. ref->pic = pic;
  42. ref->w = link->w;
  43. ref->h = link->h;
  44. ref->perms = perms;
  45. /* we always give the destination filter read access by default */
  46. avfilter_add_pic_perms(ref, link->dst, AV_PERM_READ);
  47. pic->refcount = 1;
  48. pic->format = link->format;
  49. pic->free = avfilter_default_free_video_buffer;
  50. avpicture_alloc((AVPicture *)pic, pic->format, ref->w, ref->h);
  51. memcpy(ref->data, pic->data, sizeof(pic->data));
  52. memcpy(ref->linesize, pic->linesize, sizeof(pic->linesize));
  53. return ref;
  54. }
  55. void avfilter_default_start_frame(AVFilterLink *link, AVFilterPicRef *picref)
  56. {
  57. AVFilterLink *out = NULL;
  58. if(link->dst->output_count)
  59. out = link->dst->outputs[0];
  60. if(out) {
  61. out->outpic = avfilter_get_video_buffer(out, AV_PERM_WRITE);
  62. out->outpic->pts = picref->pts;
  63. avfilter_start_frame(out, avfilter_ref_pic(out->outpic, out->dst, ~0));
  64. }
  65. }
  66. void avfilter_default_end_frame(AVFilterLink *link)
  67. {
  68. AVFilterLink *out = NULL;
  69. if(link->dst->output_count)
  70. out = link->dst->outputs[0];
  71. avfilter_unref_pic(link->cur_pic);
  72. link->cur_pic = NULL;
  73. if(out) {
  74. if(out->outpic) {
  75. avfilter_unref_pic(out->outpic);
  76. out->outpic = NULL;
  77. }
  78. avfilter_end_frame(out);
  79. }
  80. }
  81. /**
  82. * default config_link() implementation for output video links to simplify
  83. * the implementation of one input one output video filters */
  84. int avfilter_default_config_output_link(AVFilterLink *link)
  85. {
  86. if(link->src->input_count && link->src->inputs[0]) {
  87. link->w = link->src->inputs[0]->w;
  88. link->h = link->src->inputs[0]->h;
  89. } else {
  90. /* XXX: any non-simple filter which would cause this branch to be taken
  91. * really should implement its own config_props() for this link. */
  92. link->w =
  93. link->h = 0;
  94. }
  95. return 0;
  96. }
  97. /**
  98. * default config_link() implementation for input video links to simplify
  99. * the implementation of one input one output video filters */
  100. int avfilter_default_config_input_link(AVFilterLink *link)
  101. {
  102. if(!link->dst->output_count)
  103. return 0;
  104. return avfilter_config_link(link->dst->outputs[0]);
  105. }
  106. /**
  107. * default query_formats() implementation for output video links to simplify
  108. * the implementation of one input one output video filters */
  109. int *avfilter_default_query_output_formats(AVFilterLink *link)
  110. {
  111. if(link->src->input_count && link->src->inputs[0])
  112. return avfilter_make_format_list(1, link->src->inputs[0]->format);
  113. else
  114. /* XXX: any non-simple filter which would cause this branch to be taken
  115. * really should implement its own query_formats() for this link */
  116. return avfilter_make_format_list(0);
  117. }