Browse Source

vsrc_buffer: remove overwrite support.

the overwrite flag became unused when merging support for buffering
multiple frames.

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
tags/n0.11
Michael Niedermayer 14 years ago
parent
commit
25eae29ea1
1 changed files with 0 additions and 5 deletions
  1. +0
    -5
      libavfilter/vsrc_buffer.c

+ 0
- 5
libavfilter/vsrc_buffer.c View File

@@ -55,11 +55,6 @@ int av_vsrc_buffer_add_video_buffer_ref(AVFilterContext *buffer_filter,
AVFilterBufferRef *buf;
int ret;

if (av_fifo_size(c->fifo)) {
if (flags & AV_VSRC_BUF_FLAG_OVERWRITE) {
//FIXME not implemented
}
}
if (!av_fifo_space(c->fifo) &&
(ret = av_fifo_realloc2(c->fifo, av_fifo_size(c->fifo) +
sizeof(buf))) < 0)


Loading…
Cancel
Save