summaryrefslogtreecommitdiff
path: root/libavfilter/vsrc_buffer.h
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2010-05-07 01:25:00 +0000
committerMichael Niedermayer <michaelni@gmx.at>2010-05-07 01:25:00 +0000
commitcf13f204ccea9c4ce8a0e9d27e2e507dc0cb8842 (patch)
treef1d8efca7a7e28d0fea08e4e1bef9cf848660c0e /libavfilter/vsrc_buffer.h
parente8c7fca90c7474e2352efcbf4d71e19a85abc238 (diff)
Add "Memory buffer source filter" from SOC.
This is needed by the current SOC-ffmpeg.c code. Originally committed as revision 23039 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavfilter/vsrc_buffer.h')
-rw-r--r--libavfilter/vsrc_buffer.h24
1 files changed, 24 insertions, 0 deletions
diff --git a/libavfilter/vsrc_buffer.h b/libavfilter/vsrc_buffer.h
new file mode 100644
index 0000000000..071403c773
--- /dev/null
+++ b/libavfilter/vsrc_buffer.h
@@ -0,0 +1,24 @@
+/*
+ * Memory buffer source filter
+ * Copyright (c) 2008 Vitor Sessak
+ *
+ * This file is part of FFmpeg.
+ *
+ * FFmpeg is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 2.1 of the License, or (at your option) any later version.
+ *
+ * FFmpeg is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with FFmpeg; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+ */
+
+int av_vsrc_buffer_add_frame(AVFilterContext *buffer_filter, AVFrame *frame,
+ int64_t pts, AVRational pixel_aspect);
+