diff options
author | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2011-06-11 18:43:11 +0200 |
---|---|---|
committer | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2011-06-19 19:18:33 +0200 |
commit | 44f669e7bc4f7f064e3f81d3596637a0e043b501 (patch) | |
tree | 36210b9886f202f885867abee1455838168a6c51 /cmdutils.h | |
parent | e89ba76a59ce31320083b74f41e26bf4f64df8dd (diff) | |
download | ffmpeg-44f669e7bc4f7f064e3f81d3596637a0e043b501.tar.gz |
lavfi: add vsink_buffer, and use it in ff* tools
Also add the public interface libavfilter/vsink_buffer.h.
Diffstat (limited to 'cmdutils.h')
-rw-r--r-- | cmdutils.h | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/cmdutils.h b/cmdutils.h index c0c3ce07d9..e001ab9201 100644 --- a/cmdutils.h +++ b/cmdutils.h @@ -260,19 +260,4 @@ int read_file(const char *filename, char **bufptr, size_t *size); FILE *get_preset_file(char *filename, size_t filename_size, const char *preset_name, int is_path, const char *codec_name); -typedef struct { - enum PixelFormat pix_fmt; -} FFSinkContext; - -extern AVFilter ffsink; - -/** - * Extract a frame from sink. - * - * @return a negative error in case of failure, 1 if one frame has - * been extracted successfully. - */ -int get_filtered_video_frame(AVFilterContext *sink, AVFrame *frame, - AVFilterBufferRef **picref, AVRational *pts_tb); - #endif /* FFMPEG_CMDUTILS_H */ |