- 26 May, 2014 1 commit
-
-
Anton Khirnov authored
Thatt hardcodes the number of formats into lavfi and will break when a shared lavu is updated, adding new formats.
-
- 17 May, 2013 1 commit
-
-
Anton Khirnov authored
This is more consistent with naming in the rest of Libav.
-
- 15 May, 2013 1 commit
-
-
Anton Khirnov authored
-
- 12 Oct, 2012 1 commit
-
-
Anton Khirnov authored
-
- 08 Oct, 2012 1 commit
-
-
Anton Khirnov authored
-
- 15 Aug, 2012 1 commit
-
-
Martin Storsjö authored
Signed-off-by:
Martin Storsjö <martin@martin.st>
-
- 26 Jun, 2012 1 commit
-
-
Anton Khirnov authored
-
- 13 Jun, 2012 1 commit
-
-
Anton Khirnov authored
This is more consistent with naming in the rest of Libav.
-
- 12 Jun, 2012 1 commit
-
-
Anton Khirnov authored
-
- 05 Jun, 2012 1 commit
-
-
Anton Khirnov authored
It is only useful inside filters and we don't allow user filters for now.
-
- 22 May, 2012 1 commit
-
-
Anton Khirnov authored
Those functions are only useful inside filters. It is better to not support user filters until the API is more stable.
-
- 15 May, 2012 1 commit
-
-
Anton Khirnov authored
It's more convenient to have them all in one file.
-
- 14 May, 2012 1 commit
-
-
Anton Khirnov authored
-
- 07 May, 2012 1 commit
-
-
Mina Nagy Zaki authored
This fixes a double-free crash if lists are the same due to the two merge_ref() calls at the end of the (useless) merging that happens. Signed-off-by:
Anton Khirnov <anton@khirnov.net>
-
- 06 May, 2012 1 commit
-
-
Anton Khirnov authored
-
- 28 Jan, 2012 1 commit
-
-
Alex Converse authored
-
- 05 Nov, 2011 2 commits
-
-
Ronald S. Bultje authored
-
Ronald S. Bultje authored
-
- 17 Oct, 2011 1 commit
-
-
Stefano Sabatini authored
Signed-off-by:
Anton Khirnov <anton@khirnov.net>
-
- 28 Sep, 2011 1 commit
-
-
Stefano Sabatini authored
Replace sizeof((*avff)->formats) with sizeof(*(*avff)->formats) as the size of the array element is given by the pointed element rather than by its pointer. In particular fix computation with the pending patch when sizeof(int64_t) != sizeof(int64_t *). Signed-off-by:
Anton Khirnov <anton@khirnov.net>
-
- 19 Mar, 2011 1 commit
-
-
Mans Rullgard authored
Signed-off-by:
Mans Rullgard <mans@mansr.com>
-
- 28 Nov, 2010 1 commit
-
-
Stefano Sabatini authored
headers. Originally committed as revision 25838 to svn://svn.ffmpeg.org/ffmpeg/trunk
-
- 12 Nov, 2010 1 commit
-
-
Stefano Sabatini authored
SampleFormat with AVSampleFormat. Originally committed as revision 25730 to svn://svn.ffmpeg.org/ffmpeg/trunk
-
- 17 Aug, 2010 1 commit
-
-
S.N. Hemanth Meenakshisundaram authored
Patch by S.N. Hemanth Meenakshisundaram * smeenaks * ucsd * edu *. Originally committed as revision 24811 to svn://svn.ffmpeg.org/ffmpeg/trunk
-
- 22 Jul, 2010 1 commit
-
-
S.N. Hemanth Meenakshisundaram authored
This is needed to make the libavfilter framework work with audio filters. In particular add a type field to AVFilterLink, change the field types: enum PixelFormat format -> int format in AVFilterBuffer enum PixelFormat *formats -> int *formats in AVFilterFormats enum PixelFormat *format -> int format in AVFilterLink and change the function signatures: AVFilterFormats *avfilter_make_format_list(const enum PixelFormat *pix_fmts); -> AVFilterFormats *avfilter_make_format_list(const int *fmts); int avfilter_add_colorspace(AVFilterFormats **avff, enum PixelFormat pix_fmt); -> int avfilter_add_format(AVFilterFormats **avff, int fmt); AVFilterFormats *avfilter_all_colorspaces(void); -> AVFilterFormats *avfilter_all_formats(enum AVMediaType type); This change breaks libavfilter API/ABI. Patch by S.N. Hemanth Meenakshisundaram |smeenaks|ucsd|edu|. Originally committed as revision 24424 to svn://svn.ffmpeg.org/ffmpeg/trunk
-
- 08 Jan, 2010 1 commit
-
-
Stefano Sabatini authored
which was due to declaring variable after code. Originally committed as revision 21086 to svn://svn.ffmpeg.org/ffmpeg/trunk
-
- 07 Jan, 2010 1 commit
-
-
Stefano Sabatini authored
when *ref is NULL. Originally committed as revision 21077 to svn://svn.ffmpeg.org/ffmpeg/trunk
-
- 06 Jan, 2010 1 commit
-
-
Stefano Sabatini authored
*avff, so that an AVFilterFormats struct is created and returned by the function if *avff is NULL. Make the function use more convenient. Originally committed as revision 21035 to svn://svn.ffmpeg.org/ffmpeg/trunk
-
- 04 Jan, 2010 1 commit
-
-
Stefano Sabatini authored
formats only the non-HW-accelerated formats, for which there is no sense in filtering. Originally committed as revision 21009 to svn://svn.ffmpeg.org/ffmpeg/trunk
-
- 03 Jan, 2010 1 commit
-
-
Stefano Sabatini authored
Originally committed as revision 21007 to svn://svn.ffmpeg.org/ffmpeg/trunk
-
- 21 Oct, 2009 2 commits
-
-
Stefano Sabatini authored
argument of avfilter_make_format_list(), as the argument represents a list of elements. Originally committed as revision 20341 to svn://svn.ffmpeg.org/ffmpeg/trunk
-
Stefano Sabatini authored
Originally committed as revision 20340 to svn://svn.ffmpeg.org/ffmpeg/trunk
-
- 18 Oct, 2009 3 commits
-
-
Stefano Sabatini authored
Originally committed as revision 20302 to svn://svn.ffmpeg.org/ffmpeg/trunk
-
Stefano Sabatini authored
avfilter_make_format_list2(). Originally committed as revision 20301 to svn://svn.ffmpeg.org/ffmpeg/trunk
-
Stefano Sabatini authored
avfilter_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
-
- 21 Feb, 2008 1 commit
-
-
Michael Niedermayer authored
Originally committed as revision 12173 to svn://svn.ffmpeg.org/ffmpeg/trunk
-
- 10 Feb, 2008 4 commits
-
-
Vitor Sessak authored
Originally committed as revision 11901 to svn://svn.ffmpeg.org/ffmpeg/trunk
-
Vitor Sessak authored
Originally committed as revision 11900 to svn://svn.ffmpeg.org/ffmpeg/trunk
-
Vitor Sessak authored
Originally committed as revision 11899 to svn://svn.ffmpeg.org/ffmpeg/trunk
-
Vitor Sessak authored
Originally committed as revision 11898 to svn://svn.ffmpeg.org/ffmpeg/trunk
-