On Wed, Oct 08, 2008 at 08:11:14PM +0200, vitor wrote: > > Log: > Create a buffer source filter instead of duplicating it in ffmpeg.c and > ffplay.c > > --- libavfilter/Makefile (original) > +++ libavfilter/Makefile Wed Oct 8 20:11:13 2008 > @@ -30,6 +30,7 @@ OBJS-$(CONFIG_TRANSPOSE_FILTER) += vf_t > > OBJS-$(CONFIG_MOVIE_FILTER) += vsrc_movie.o > +OBJS-$(CONFIG_BUFFER_FILTER) += vsrc_buffer.o
alphabetical order > --- libavfilter/allfilters.c (original) > +++ libavfilter/allfilters.c Wed Oct 8 20:11:13 2008 > @@ -52,4 +52,5 @@ void avfilter_register_all(void) > > REGISTER_FILTER(MOVIE,movie,vsrc); > + REGISTER_FILTER(BUFFER,buffer,vsrc); alphabetical order > --- (empty file) > +++ libavfilter/vsrc_buffer.h Wed Oct 8 20:11:13 2008 > @@ -0,0 +1,24 @@ > + * 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); multiple inclusion guards Diego _______________________________________________ FFmpeg-soc mailing list [email protected] https://lists.mplayerhq.hu/mailman/listinfo/ffmpeg-soc
