git.videolan.org Git - ffmpeg.git/rss log

FFmpeg git repo

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

Les articles publiés sur le site

  • lavu/log : do not skip overwritten lines.

    7 août 2013, par Nicolas George
    lavu/log: do not skip overwritten lines.
    
    If the line ends with \r, it will not flood the tty, and
    the "Last message repeated" line would overwrite it.
    Fix bug introduced by c25d1ba.
    
    • [DH] libavutil/log.c
  • avcodec/g2meet : fix src pointer checks in kempf_decode_tile()

    7 août 2013, par Michael Niedermayer
    avcodec/g2meet: fix src pointer checks in kempf_decode_tile()
    
    Fixes Ticket2842
    
    Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
    
    • [DH] libavcodec/g2meet.c
  • avcodec/jpeg2000dec : check sample sepration for validity

    7 août 2013, par Michael Niedermayer
    avcodec/jpeg2000dec: check sample sepration for validity
    
    Fixes division by 0
    Fixes Ticket2841
    
    Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
    
    • [DH] libavcodec/jpeg2000dec.c
  • ffmpeg : remove obsolete workaround in trim insertion.

    7 août 2013, par Nicolas George
    ffmpeg: remove obsolete workaround in trim insertion.
    
    The bug it was working seems to have been fixed.
    This change causes ffmpeg to use the trim filter to implement
    the -t option.
    FATE tests are updated due to the more accurate handling of
    the last packets.
    
    • [DH] ffmpeg_filter.c
    • [DH] tests/ref/fate/adpcm-ima-amv
    • [DH] tests/ref/fate/adpcm-ms-mono
    • [DH] tests/ref/fate/bethsoft-vid
    • [DH] tests/ref/fate/cyberia-c93
    • [DH] tests/ref/fate/msvideo1-8bit
    • [DH] tests/ref/lavf/aiff
    • [DH] tests/ref/lavf/alaw
    • [DH] tests/ref/lavf/asf
    • [DH] tests/ref/lavf/ast
    • [DH] tests/ref/lavf/au
    • [DH] tests/ref/lavf/avi
    • [DH] tests/ref/lavf/caf
    • [DH] tests/ref/lavf/dv_fmt
    • [DH] tests/ref/lavf/ffm
    • [DH] tests/ref/lavf/gxf
    • [DH] tests/ref/lavf/ircam
    • [DH] tests/ref/lavf/mkv
    • [DH] tests/ref/lavf/mmf
    • [DH] tests/ref/lavf/mov
    • [DH] tests/ref/lavf/mpg
    • [DH] tests/ref/lavf/mulaw
    • [DH] tests/ref/lavf/mxf
    • [DH] tests/ref/lavf/nut
    • [DH] tests/ref/lavf/ogg
    • [DH] tests/ref/lavf/rm
    • [DH] tests/ref/lavf/rso
    • [DH] tests/ref/lavf/smjpeg
    • [DH] tests/ref/lavf/sox
    • [DH] tests/ref/lavf/ts
    • [DH] tests/ref/lavf/voc
    • [DH] tests/ref/lavf/voc_s16
    • [DH] tests/ref/lavf/w64
    • [DH] tests/ref/lavf/wav
    • [DH] tests/ref/lavf/wtv
    • [DH] tests/ref/seek/lavf-alaw
    • [DH] tests/ref/seek/lavf-mov
    • [DH] tests/ref/seek/lavf-mulaw
  • cmdutils : Only do the windows-specific commandline parsing on _WIN32

    7 août 2013, par Diogo Franco
    cmdutils: Only do the windows-specific commandline parsing on _WIN32
    
    Fixes commandline parsing on Cygwin (on 64 bit, and on very recent
    32 bit), where the configure check does find the CommandLineToArgvW
    function (since it exists in the link libraries and in the headers),
    but whose GetCommandLineW() only returns the application's path.
    (This is due to a cygwin internal optimization, see
    http://cygwin.com/ml/cygwin/2013-07/msg00538.html for details.)
    Arguments are only given through main's argc/argv, and they're already
    UTF-8.
    
    Signed-off-by: Martin Storsjö <martin@martin.st>
    
    • [DH] cmdutils.c