1. 25 9月, 2010 2 次提交
  2. 24 9月, 2010 1 次提交
  3. 23 9月, 2010 1 次提交
  4. 14 9月, 2010 1 次提交
  5. 08 9月, 2010 2 次提交
  6. 24 8月, 2010 2 次提交
  7. 21 8月, 2010 2 次提交
  8. 20 8月, 2010 1 次提交
  9. 18 8月, 2010 1 次提交
  10. 17 8月, 2010 1 次提交
  11. 13 8月, 2010 1 次提交
  12. 12 8月, 2010 2 次提交
  13. 11 8月, 2010 3 次提交
  14. 07 8月, 2010 4 次提交
  15. 06 8月, 2010 1 次提交
  16. 03 8月, 2010 1 次提交
  17. 30 7月, 2010 2 次提交
  18. 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
  19. 19 7月, 2010 1 次提交
  20. 18 7月, 2010 3 次提交
  21. 17 7月, 2010 2 次提交
  22. 08 7月, 2010 2 次提交
  23. 02 7月, 2010 1 次提交
  24. 30 6月, 2010 1 次提交
  25. 28 6月, 2010 1 次提交