1. 07 Jun, 2016 1 commit
  2. 06 Jun, 2016 4 commits
  3. 05 Jun, 2016 1 commit
  4. 30 May, 2016 1 commit
  5. 29 May, 2016 3 commits
  6. 28 May, 2016 2 commits
  7. 27 May, 2016 5 commits
  8. 26 May, 2016 12 commits
  9. 25 May, 2016 4 commits
  10. 24 May, 2016 2 commits
  11. 23 May, 2016 5 commits
    • Anton Khirnov's avatar
      ac84e618
    • Anton Khirnov's avatar
      lavc: document that avcodec_close() should not be used · 2ef6dab0
      Anton Khirnov authored
      We cannot deprecate it until the new parser API is in place, because of
      the way libavformat works. But the majority of the users can already
      simply replace it with avcodec_free_context(), which will simplify the
      transition once it is finally deprecated.
      2ef6dab0
    • Anton Khirnov's avatar
      lavc: deprecate avcodec_get_context_defaults3() · 04fc8e24
      Anton Khirnov authored
      This function is supposed to "reset" a codec context to a clean state so
      that it can be opened again. The only reason it exists is to allow using
      AVStream.codec as a decoding context (after it was already
      opened/used/closed by avformat_find_stream_info()). Since that behaviour
      is now deprecated, there is no reason for this function to exist
      anymore.
      04fc8e24
    • Anton Khirnov's avatar
      lavc: deprecate avcodec_copy_context() · 5f30ac27
      Anton Khirnov authored
      Since AVCodecContext contains a lot of complex state, copying a codec
      context is not a well-defined operation. The purpose for which it is
      typically used (which is well-defined) is copying the stream parameters
      from one codec context to another. That is now possible with through the
      AVCodecParameters API. Therefore, there is no reason for
      avcodec_copy_context() to exist.
      5f30ac27
    • Anton Khirnov's avatar
      lavf: update muxing doxy · 14634429
      Anton Khirnov authored
      Describe the new AVCodecParameters API.
      14634429