1. 20 8月, 2010 2 次提交
  2. 19 8月, 2010 2 次提交
  3. 18 8月, 2010 1 次提交
  4. 17 8月, 2010 1 次提交
  5. 12 8月, 2010 1 次提交
  6. 11 8月, 2010 3 次提交
  7. 07 8月, 2010 6 次提交
  8. 22 7月, 2010 1 次提交
    • S
      Generalize pixel format enum fields to int formats. · bdab614b
      S.N. Hemanth Meenakshisundaram 提交于
      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
      bdab614b
  9. 19 7月, 2010 1 次提交
  10. 11 7月, 2010 1 次提交
  11. 07 5月, 2010 1 次提交
  12. 29 4月, 2010 1 次提交
  13. 03 4月, 2010 1 次提交
  14. 13 3月, 2010 1 次提交
  15. 07 3月, 2010 1 次提交
  16. 01 2月, 2010 1 次提交
  17. 13 1月, 2010 1 次提交
  18. 10 1月, 2010 1 次提交
  19. 03 1月, 2010 1 次提交
  20. 05 12月, 2009 1 次提交
  21. 25 11月, 2009 2 次提交
  22. 19 11月, 2009 1 次提交
  23. 04 11月, 2009 1 次提交
    • S
      Make avfilter_get_video_buffer() use · da23d424
      Stefano Sabatini 提交于
      avfilter_default_get_video_buffer() if the get_video_buffer() callback
      is not defined in a filter.
      
      Libavfilter filters author have to explicitely define the
      get_video_buffer() callback if they want the buffer to be requested to
      the filter following in the filterchain.
      
      See the thread:
      "[FFmpeg-devel] [PATCH] Make avfilter_get_video_buffer() use
      default_get_video_buffer if callback not defined".
      
      Originally committed as revision 20444 to svn://svn.ffmpeg.org/ffmpeg/trunk
      da23d424
  24. 28 10月, 2009 1 次提交
  25. 26 10月, 2009 1 次提交
  26. 19 10月, 2009 1 次提交
  27. 18 10月, 2009 1 次提交
    • S
      Make avfilter_get_video_buffer() recursive. · 0eb4ff9e
      Stefano Sabatini 提交于
      When called on a link with a filter whose destination pad has not a
      get_video_buffer callback defined, it will call
      avfilter_get_video_buffer() on the first output link of the
      destination filer, rather than use avfilter_default_get_buffer(), so
      the video buffer can be allocated forward in the filterchain.
      
      Also add the w and h parameters to avfilter_get_video_buffer(), as the
      minimum width and height requested by each filter in the filterchain
      may change, this allows for example a memcpy-less pad filter.
      
      This change breaks API / ABI backward compatibility.
      
      See the thread:
      "[PATCH] Implement recusive avfilter_get_video_buffer()".
      
      Originally committed as revision 20272 to svn://svn.ffmpeg.org/ffmpeg/trunk
      0eb4ff9e
  28. 07 10月, 2009 1 次提交
  29. 14 4月, 2009 1 次提交
  30. 27 3月, 2009 1 次提交