Skip to content
Snippets Groups Projects
  1. Feb 13, 2015
  2. Feb 01, 2015
  3. Jan 27, 2015
  4. Jan 21, 2015
  5. Jan 14, 2015
    • Stefano Sabatini's avatar
      imgutils: create misc functions for dealing with buffers · e2ad0b66
      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()).
      
      A redundant check has been dropped from av_image_fill_arrays().
      
      Signed-off-by: default avatarVittorio Giovara <vittorio.giovara@gmail.com>
      e2ad0b66
  6. Jan 08, 2015
  7. Dec 25, 2014
  8. Dec 07, 2014
  9. Dec 03, 2014
  10. Nov 08, 2014
  11. Nov 07, 2014
  12. Nov 06, 2014
  13. Oct 29, 2014
  14. Oct 24, 2014
    • Anton Khirnov's avatar
      mp3enc: write full LAME frame · ef363ebd
      Anton Khirnov authored
      Most importantly, it contains the encoder delay and replaygain info.
      ef363ebd
    • Anton Khirnov's avatar
      doc: reword the mp3 muxer documentation · c63418e0
      Anton Khirnov authored
      Make it more structured.
      c63418e0
    • Martin Storsjö's avatar
      lavu: Add av_gettime_relative · 1bd0bdcd
      Martin Storsjö authored
      
      Since av_gettime() is used in a number of places where actual
      real time clock is required, the monotonic clock introduced in
      ebef9f5a would have consequences that are hard to handle. Instead
      split it into a separate function that can be used in the cases
      where only relative time is desired.
      
      On platform where no monotonic clock is available, the difference
      between the two av_gettime functions is not clear, and one could
      mistakenly use the relative clock where an absolute one is
      required. Therefore add an offset, to make it evident that the
      time returned from av_gettime_relative never is actual current
      real time, even though it is based on av_gettime.
      
      Based on a patch by Olivier Langlois.
      
      Signed-off-by: default avatarMartin Storsjö <martin@martin.st>
      1bd0bdcd
  15. Oct 15, 2014
  16. Oct 13, 2014
    • Anton Khirnov's avatar
      lavc: use a separate field for exporting audio encoder padding · 2df0c32e
      Anton Khirnov authored
      Currently, the amount of padding inserted at the beginning by some audio
      encoders, is exported through AVCodecContext.delay. However
      - the term 'delay' is heavily overloaded and can have multiple different
        meanings even in the case of audio encoding.
      - this field has entirely different meanings, depending on whether the
        codec context is used for encoding or decoding (and has yet another
        different meaning for video), preventing generic handling of the codec
        context.
      
      Therefore, add a new field -- AVCodecContext.initial_padding. It could
      conceivably be used for decoding as well at a later point.
      2df0c32e
  17. Oct 08, 2014
  18. Oct 06, 2014
    • Rémi Denis-Courmont's avatar
      vdpau: add av_vdpau_bind_context() · e3e158e8
      Rémi Denis-Courmont authored
      
      This function provides an explicit VDPAU device and VDPAU driver to
      libavcodec, so that the application is relieved from codec specifics
      and VdpDevice life cycle management.
      
      A stub flags parameter is added for future extension. For instance, it
      could be used to ignore codec level capabilities (if someone feels
      dangerous).
      
      Signed-off-by: default avatarAnton Khirnov <anton@khirnov.net>
      e3e158e8
  19. Oct 03, 2014
    • Joakim Roubert's avatar
      hlsenc: Add parameter -hls_allow_cache · 55f03d87
      Joakim Roubert authored
      
      The -hls_allow_cache parameter enables explicitly setting the
      EXT-X-ALLOW-CACHE tag in the manifest file. That tag indicates
      whether the client MAY or MUST NOT cache downloaded media
      segments for later replay.
      
      Valid values are 1 (=YES) or 0 (=NO) and the EXT-X-ALLOW-CACHE
      will not show in the manifest for other values (or if
      -hls_allow_cache is not used.
      
      Signed-off-by: default avatarMartin Storsjö <martin@martin.st>
      55f03d87
  20. Sep 10, 2014
  21. Sep 06, 2014
  22. Sep 04, 2014
  23. Sep 03, 2014
  24. Aug 28, 2014
  25. Aug 26, 2014
  26. Aug 25, 2014
  27. Aug 18, 2014
  28. Aug 13, 2014
Loading