git.libav.org Git - libav.git/rss log

Libav master git repository

http://git.libav.org/?p=libav.git;a=summary

Les articles publiés sur le site

  • movenc : fix adpcm mono muxing.

    28 février 2011, par Alex Converse
    movenc: fix adpcm mono muxing.
  • mpegts : do not output known sized packet if an unbounded packet is already queued.

    28 février 2011, par Baptiste Coudurier
    mpegts: do not output known sized packet if an unbounded packet is already queued.
  • matroskadec : set timestamps for RealAudio packets.

    26 février 2011, par Reimar Döffinger
    matroskadec: set timestamps for RealAudio packets.
  • mpegvideo : make FF_DEBUG_DCT_COEFF output coeffs via av_log() instead of just via...

    23 février 2011, par Michael Niedermayer
    mpegvideo: make FF_DEBUG_DCT_COEFF output coeffs via av_log() instead of just via...
  • tls : Add options for verifying the peer certificate

    22 février 2011, par Martin Storsjö
    tls: Add options for verifying the peer certificate
    
    A file containing the trusted CA certificates needs to be
    supplied via the ca_file AVOption, unless the TLS library
    has got a system default file/database set up.
    
    This doesn't check the hostname of the peer certificate with
    openssl, which requires a non-trivial piece of code for
    manually matching the desired hostname to the string provided
    by the certificate, not provided as a library function.
    
    That is, with openssl, this only validates that the received
    certificate is signed with the right CA, but not that it is
    the actual server we think we're talking to.
    
    Verification is still disabled by default since we can't count
    on a proper CA database existing at all times.
    
    Signed-off-by: Martin Storsjö <martin@martin.st>
    
    • [DBH] doc/protocols.texi
    • [DBH] libavformat/tls.c
    • [DBH] libavformat/version.h