diff options
author | Stefano Sabatini <stefasab@gmail.com> | 2011-12-27 15:12:29 +0100 |
---|---|---|
committer | Stefano Sabatini <stefasab@gmail.com> | 2011-12-31 11:37:01 +0100 |
commit | 549b53e8cbc45d20a52a90a181d40d86c751585d (patch) | |
tree | 0d1fc830723d3094d83fa747728f0171cb0da6ba /libavfilter/avfilter.h | |
parent | 91ab557b686920ee445dec2fb7f443f1acd3b87e (diff) | |
download | ffmpeg-549b53e8cbc45d20a52a90a181d40d86c751585d.tar.gz |
lavfi: remove redundant definition of avfilter_copy_frame_props() in avfilter.h
Rationale: avfilter_copy_frame_props() was already defined in
libavfilter/avcodec.h, and keeping the lavc/lavfi API glue localized in a
specific file should ease maintainance and help the ones which use
libavfilter without depending on libavcodec.
Diffstat (limited to 'libavfilter/avfilter.h')
-rw-r--r-- | libavfilter/avfilter.h | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/libavfilter/avfilter.h b/libavfilter/avfilter.h index ba8b9dcd48..fb2ce2bbcb 100644 --- a/libavfilter/avfilter.h +++ b/libavfilter/avfilter.h @@ -31,7 +31,7 @@ #define LIBAVFILTER_VERSION_MAJOR 2 #define LIBAVFILTER_VERSION_MINOR 55 -#define LIBAVFILTER_VERSION_MICRO 100 +#define LIBAVFILTER_VERSION_MICRO 101 #define LIBAVFILTER_VERSION_INT AV_VERSION_INT(LIBAVFILTER_VERSION_MAJOR, \ LIBAVFILTER_VERSION_MINOR, \ @@ -954,12 +954,4 @@ static inline void avfilter_insert_outpad(AVFilterContext *f, unsigned index, &f->output_pads, &f->outputs, p); } -/** - * Copy the frame properties of src to dst, without copying the actual - * image data. - * - * @return 0 on success, a negative number on error. - */ -int avfilter_copy_frame_props(AVFilterBufferRef *dst, const AVFrame *src); - #endif /* AVFILTER_AVFILTER_H */ |