Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2011-06-13libavfilter: implement avfilter_fill_frame_from_video_buffer_ref()Stefano Sabatini
2011-06-06vsrc_buffer: add flags param to av_vsrc_buffer_add_video_buffer_refStefano Sabatini
The new flags parameter allows to specify if the video ref to add should overwrite the cache, if the flag is not set vsrc_buffer will complain and abort; otherwise it will clean the already cached video ref before to overwrite it, thus avoiding a leak.
2011-05-20vsrc_buffer: add av_vsrc_buffer_add_frame()Stefano Sabatini
The new function is a wrapper around av_vsrc_buffer_add_video_buffer_ref(), and allows to simplify the act of pushing AVFrame data to the source buffer.
2011-05-20lavfi: add avfilter_get_video_buffer_ref_from_frame to avcodec.hStefano Sabatini
Simplify passing AVFrame data to av_vsrc_buffer_add_video_buffer_ref().
2011-05-07lavfi: add libavfilter/avcodec.h and avfilter_copy_frame_props()Stefano Sabatini
avfilter_copy_frame_props() avoids code duplication and increases robustness. The added files libavfilter/avcodec.[ch] are used for containing utilities useful for gluing togheter libavfilter and libavcodec.