1. 10 Dec, 2011 2 commits
  2. 05 Dec, 2011 1 commit
  3. 27 Nov, 2011 1 commit
  4. 31 Oct, 2011 1 commit
  5. 14 Oct, 2011 2 commits
  6. 12 Oct, 2011 1 commit
  7. 11 Oct, 2011 1 commit
  8. 26 Sep, 2011 1 commit
  9. 11 Sep, 2011 1 commit
  10. 05 Sep, 2011 1 commit
  11. 04 Sep, 2011 7 commits
  12. 12 Aug, 2011 1 commit
  13. 28 Jul, 2011 3 commits
  14. 13 Jul, 2011 3 commits
  15. 30 Jun, 2011 1 commit
  16. 19 Jun, 2011 1 commit
  17. 16 Jun, 2011 1 commit
    • Anton Khirnov's avatar
      cmdutils: add opt_default2(). · 9ba38229
      Anton Khirnov authored
      It stores options in a dictionary to be passed to new open calls.
      
      It will replace opt_default once all the pieces are in place.
      9ba38229
  18. 05 Jun, 2011 2 commits
  19. 03 Jun, 2011 1 commit
    • Carl Eugen Hoyos's avatar
      cmdutils: move "#undef main" from ffplay.c to cmdutils.h · 25c32d08
      Carl Eugen Hoyos authored
      On Windows/MinGW the SDL cflags re-define the main() function, which
      results in a linking error if the define is not undeffed.
      
      Since the addition of the SDL output device, SDL cflags are used also
      for compiling ffmpeg and ffprobe, so we need to move this trick from
      ffplay.c to a common header.
      
      Fix trac issue #256.
      25c32d08
  20. 28 May, 2011 2 commits
  21. 21 May, 2011 2 commits
  22. 19 May, 2011 1 commit
    • Diego Biurrun's avatar
      Clean up #includes in cmdutils.h. · ea91e771
      Diego Biurrun authored
      inttypes.h is not necessary, just stdint.h is enough.
      Unconditionally #include avfilter.h in cmdutils.h.  It is an installed
      header with no non-standard external dependencies, so it is safe.
      ea91e771
  23. 10 May, 2011 1 commit
    • Stefano Sabatini's avatar
      cmdutils: remove list_fmts(), simplify · 5d2c6f42
      Stefano Sabatini authored
      The function was only used in opt_sample_fmt() for listing the sample
      formats. Move list_fmts() functionality directly into
      opt_sample_fmt().
      
      Also fix the warning:
      ffmpeg.c: In function ‘opt_audio_sample_fmt’:
      ffmpeg.c:2877: warning: passing argument 1 of ‘list_fmts’ from incompatible pointer type
      cmdutils.h:163: note: expected ‘void (*)(char *, int,  int)’ but argument is of type ‘char * (*)(char *, int,  enum AVSampleFormat)’
      Signed-off-by: 's avatarAnton Khirnov <anton@khirnov.net>
      5d2c6f42
  24. 03 May, 2011 1 commit
  25. 26 Mar, 2011 1 commit
    • Stefano Sabatini's avatar
      cmdutils: remove list_fmts(), simplify · 0c55c6d3
      Stefano Sabatini authored
      The function was only used in opt_sample_fmt() for listing the sample
      formats. Move list_fmts() functionality directly into
      opt_sample_fmt().
      
      Als fix the warning:
      ffmpeg.c: In function ‘opt_audio_sample_fmt’:
      ffmpeg.c:2877: warning: passing argument 1 of ‘list_fmts’ from incompatible pointer type
      cmdutils.h:163: note: expected ‘void (*)(char *, int,  int)’ but argument is of type ‘char * (*)(char *, int,  enum AVSampleFormat)’
      0c55c6d3