History | View | Annotate | Download (4.47 KB)
Implement libavfilter audio framework.
Patch by S.N. Hemanth Meenakshisundaram * smeenaks * ucsd * edu *.
Originally committed as revision 24811 to svn://svn.ffmpeg.org/ffmpeg/trunk
Generalize pixel format enum fields to int formats.
This is needed to make the libavfilter framework work with audiofilters.
In particular add a type field to AVFilterLink, change the field types:enum PixelFormat format -> int format in AVFilterBuffer...
Fix compilation on gcc 2.95.3 (still supported) broken by r21077,which was due to declaring variable after code.
Originally committed as revision 21086 to svn://svn.ffmpeg.org/ffmpeg/trunk
Make avfilter_formats_unref(AVFilterFormats **ref) handle the casewhen *ref is NULL.
Originally committed as revision 21077 to svn://svn.ffmpeg.org/ffmpeg/trunk
Change avfilter_add_colorspace() to make it accept **avff rather than*avff, so that an AVFilterFormats struct is created and returned bythe function if *avff is NULL.
Make the function use more convenient.
Originally committed as revision 21035 to svn://svn.ffmpeg.org/ffmpeg/trunk
Make avfilter_all_colorspaces() add to the returned list of pixelformats only the non-HW-accelerated formats, for which there is nosense in filtering.
Originally committed as revision 21009 to svn://svn.ffmpeg.org/ffmpeg/trunk
Implement avfilter_add_colorspace().
Originally committed as revision 21007 to svn://svn.ffmpeg.org/ffmpeg/trunk
Cosmetics: prefer "pix_fmts" over "pix_fmt" for the name of theargument of avfilter_make_format_list(), as the argument represents alist of elements.
Originally committed as revision 20341 to svn://svn.ffmpeg.org/ffmpeg/trunk
Make avfilter_make_format_list() take in input a const argument.
Originally committed as revision 20340 to svn://svn.ffmpeg.org/ffmpeg/trunk
Rename avfilter_make_format_list2() to avfilter_make_format_list().
Originally committed as revision 20302 to svn://svn.ffmpeg.org/ffmpeg/trunk
Remove avfilter_make_format_list(), it has been replaced byavfilter_make_format_list2().
Originally committed as revision 20301 to svn://svn.ffmpeg.org/ffmpeg/trunk
Implement avfilter_make_format_list2(), which is going to replaceavfilter_make_format_list().
See the thread:"[PATCH] Implement avfilter_make_format_list2(enum PixelFormat pix_fmt, ...)".
Originally committed as revision 20299 to svn://svn.ffmpeg.org/ffmpeg/trunk
Better description for merge_ref().
Originally committed as revision 12173 to svn://svn.ffmpeg.org/ffmpeg/trunk
Coding style changes
Originally committed as revision 11901 to svn://svn.ffmpeg.org/ffmpeg/trunk
More code factorization
Originally committed as revision 11900 to svn://svn.ffmpeg.org/ffmpeg/trunk
Factor duplicated loop
Originally committed as revision 11899 to svn://svn.ffmpeg.org/ffmpeg/trunk
Do not hardcode the list of pixel formats and use PIX_FMT_NB instead.
Originally committed as revision 11898 to svn://svn.ffmpeg.org/ffmpeg/trunk
Do not hardcode the type of AVFilterFormats.formats in allocation
Originally committed as revision 11897 to svn://svn.ffmpeg.org/ffmpeg/trunk
Oops, my last commit broke compilation...
Originally committed as revision 11896 to svn://svn.ffmpeg.org/ffmpeg/trunk
Make regression tests to pass with libavfilter.
Originally committed as revision 11895 to svn://svn.ffmpeg.org/ffmpeg/trunk
Need to be careful when dealing with references.
Commited in SoC by Bobby Bingham
Originally committed as revision 11894 to svn://svn.ffmpeg.org/ffmpeg/trunk
10l. parameter was unused and redundant.
Originally committed as revision 11893 to svn://svn.ffmpeg.org/ffmpeg/trunk
avfilter_formats_unref() should remove the given reference, not the lastreference.
Originally committed as revision 11892 to svn://svn.ffmpeg.org/ffmpeg/trunk
First libavfilter commit.
Original log message:Forgot to add in the big colorspace commit
Originally committed as revision 11891 to svn://svn.ffmpeg.org/ffmpeg/trunk