1. 30 Sep, 2012 2 commits
  2. 28 Sep, 2012 1 commit
  3. 24 Sep, 2012 1 commit
  4. 12 Sep, 2012 1 commit
  5. 05 Sep, 2012 1 commit
    • Stefano Sabatini's avatar
      lavu/parseutils: add av_small_strptime() · 29e972f6
      Stefano Sabatini authored
      Make internal small_strptime() function public, and use it in place of
      strptime().
      This allows to avoid a dependency on strptime() on systems which do not
      support it.
      
      In particular, fix trac ticket #992.
      29e972f6
  6. 04 Sep, 2012 1 commit
  7. 30 Aug, 2012 1 commit
  8. 23 Aug, 2012 1 commit
  9. 15 Aug, 2012 1 commit
  10. 12 Aug, 2012 2 commits
  11. 10 Aug, 2012 2 commits
  12. 07 Aug, 2012 1 commit
  13. 03 Aug, 2012 1 commit
    • Diego Biurrun's avatar
      x86: build: replace mmx2 by mmxext · 239fdf1b
      Diego Biurrun authored
      Refactoring mmx2/mmxext YASM code with cpuflags will force renames.
      So switching to a consistent naming scheme beforehand is sensible.
      The name "mmxext" is more official and widespread and also the name
      of the CPU flag, as reported e.g. by the Linux kernel.
      239fdf1b
  14. 31 Jul, 2012 1 commit
  15. 30 Jul, 2012 1 commit
  16. 29 Jul, 2012 1 commit
    • Luca Barbato's avatar
      avf: introduce nobuffer option · 681ed000
      Luca Barbato authored
      Useful in cases where a significant analyzeduration is
      still needed, while minimizing buffering before output.
      
      An example is processing low-latency streams where all
      media types won't necessarily come in if the
      analyzeduration is small.
      
      Additional changes by Josh Allmann <joshua.allmann@gmail.com>
      Signed-off-by: 's avatarAnton Khirnov <anton@khirnov.net>
      681ed000
  17. 21 Jul, 2012 1 commit
  18. 20 Jul, 2012 2 commits
  19. 14 Jul, 2012 3 commits
  20. 10 Jul, 2012 1 commit
  21. 09 Jul, 2012 1 commit
    • Stefano Sabatini's avatar
      lavfi: add init_opaque callback · 21d56098
      Stefano Sabatini authored
      This will be used by filters which require an opaque field to be passed
      in input. Should be required only for filters which imply a programmatic
      use.
      
      This is possibly a temporary solution, to be removed when we'll have a
      clearer and better agreememnt of how/if to pass binary data for
      initializing a filter.
      
      See thread:
      Subject: [FFmpeg-devel][PATCH] lavfi: add init2 callback
      Date: Fri,  6 Jul 2012 01:22:17 +0200
      21d56098
  22. 26 Jun, 2012 1 commit
    • Stefano Sabatini's avatar
      lavu/imgutils: create misc functions for dealing with buffers · e6674e46
      Stefano Sabatini authored
      Move the lavc/imgconvert functions and rename them as follows:
      avpicture_get_size -> av_image_get_buffer_size()
      avpicture_fill     -> av_image_fill_arrays()
      avpicture_layout   -> av_image_copy_to_buffer()
      
      The new functions have an align parameter, which allows to define the
      linesize alignment assumed in the buffer (which is set or read).
      
      The names of the functions are consistent with the lavu/samples API
      (av_samples_get_buffer_size(), av_samples_fill_arrays()).
      e6674e46
  23. 24 Jun, 2012 1 commit
  24. 22 Jun, 2012 2 commits
  25. 21 Jun, 2012 1 commit
  26. 18 Jun, 2012 1 commit
  27. 13 Jun, 2012 2 commits
  28. 11 Jun, 2012 1 commit
  29. 10 Jun, 2012 1 commit
  30. 06 Jun, 2012 1 commit
  31. 05 Jun, 2012 1 commit
  32. 03 Jun, 2012 1 commit
    • Stefano Sabatini's avatar
      lavfi: add avfilter_default_filter_name() · 4d6a8a2b
      Stefano Sabatini authored
      The function is modelled after av_default_item_name(), and will print the
      name of the instance filter if defined, otherwise the name of the filter.
      
      This allows to show the instance name in the log, which is useful when
      debugging complex filter graphs.
      4d6a8a2b