Author: vitor Date: Sun Feb 10 21:30:50 2008 New Revision: 1888 Log: Group avfilter_poll_frame() with related funcions and add doxygen comment
Modified: libavfilter/avfilter.h Modified: libavfilter/avfilter.h ============================================================================== --- libavfilter/avfilter.h (original) +++ libavfilter/avfilter.h Sun Feb 10 21:30:50 2008 @@ -184,8 +184,6 @@ void avfilter_formats_ref(AVFilterFormat */ void avfilter_formats_unref(AVFilterFormats **ref); -int avfilter_poll_frame(AVFilterLink *link); - /** * A filter pad used for either input or output. */ @@ -460,6 +458,13 @@ AVFilterPicRef *avfilter_get_video_buffe int avfilter_request_frame(AVFilterLink *link); /** + * Poll a frame from the filter chain. + * @param link the input link + * @return the number of imediately available frames + */ +int avfilter_poll_frame(AVFilterLink *link); + +/** * Notify the next filter of the start of a frame. * @param link the output link the frame will be sent over * @param picref A reference to the frame about to be sent. The data for this _______________________________________________ FFmpeg-soc mailing list [email protected] https://lists.mplayerhq.hu/mailman/listinfo/ffmpeg-soc
