1. 20 Nov, 2017 23 commits
  2. 19 Nov, 2017 12 commits
  3. 18 Nov, 2017 5 commits
    • James Almer's avatar
      936a4c04
    • Carl Eugen Hoyos's avatar
      lavf/tcp: Fix the type of the optlen argument to getsockopt(). · c3b5ea75
      Carl Eugen Hoyos authored
      Fixes a warning on aix:
      libavformat/tcp.c:283:58: warning: passing argument 5 of 'getsockopt' from incompatible pointer type
      c3b5ea75
    • Philip Langdale's avatar
      avcodec: Implement mpeg2 nvdec hwaccel · 7c9f739d
      Philip Langdale authored
      This is mostly straight-forward. The weird part is that it should
      just work for mpeg1, but I see corruption in my test cases, so I'm
      going to try and fix that separately.
      7c9f739d
    • Philip Langdale's avatar
      avcodec: Fix reference data type for nvdec vc1 hwaccel · 5a0f6b09
      Philip Langdale authored
      I took the reference lookup code from the vp9 hwaccel where the
      type is unsigned char, but for vc1, the type is signed int.
      
      This is particularly important because the value used when there's
      no reference is different (255 vs -1).
      
      It didn't seem to break anything, but for mpeg1/2/4, this mistake
      caused decode errors.
      5a0f6b09
    • Jim DeLaHunt's avatar
      Ignore libavcodec/tests/mpeg12framerate, a test program · fb791d28
      Jim DeLaHunt authored
      Add to libavcodec/tests/.gitignore an entry for test
      program libavcodec/tests/mpeg12framerate . Other
      similar test programs, e.g. jpeg2000dwt and dct, are
      ignored in a similar way.
      
      On initially checking out master, and doing "./configure"
      and "make clean", "git status" reports no untracked
      files. After running "make fate", "git status" reports
      untracked file "libavcodec/tests/mpeg12framerate".
      
      mpeg12framerate is a unit test program. It was apparently
      introduced in commit
      278c308c, on
      Tue Sep 12 22:11:56 2017 +0100. It added a new function
      ff_mpeg12_find_best_frame_rate() to
      libavcodec/mpeg12framerate.c , and the code in
      libavcodec/tests/mpeg12framerate.c to exercise that
      function. This commit also added the new program to
      the FATE suite, but it omitted a .gitignore entry.
      Signed-off-by: 's avatarMichael Niedermayer <michael@niedermayer.cc>
      fb791d28