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

  • avcodec/lcevcdec : Use proper include

    25 février, par Andreas Rheinhardt
    avcodec/lcevcdec: Use proper include
    
    External libraries are not components and so their CONFIG_ define
    is in config.h.
    
    Reviewed-by: James Almer <jamrial@gmail.com>
    Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
    
    • [DH] libavcodec/lcevcdec.h
  • Don't attempt to parse ADTS from USAC packets.

    25 février, par Dale Curtis
    Don't attempt to parse ADTS from USAC packets.
    
    It's not possible to put USAC into ADTS due to exceeding the
    field size (4 bits) for ADTS profile. As such cases where
    the frame starts with 0xfff shouldn't be checked.
    
    This ensures the sample at https://crbug.com/396190942 is
    properly detected as USAC content.
    
    Signed-off-by: Dale Curtis <dalecurtis@chromium.org>
    
    • [DH] libavcodec/aac/aacdec.c
  • avcodec/mpegvideo : Move bitstream_buffer to mpeg4videodec

    24 février, par Andreas Rheinhardt
    avcodec/mpegvideo: Move bitstream_buffer to mpeg4videodec
    
    This is possible by moving the code using it to open a GetBitContext
    from h263dec.c to mpeg4videodec.c.
    
    Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
    
    • [DH] libavcodec/h263dec.c
    • [DH] libavcodec/mpeg4video_parser.c
    • [DH] libavcodec/mpeg4videodec.c
    • [DH] libavcodec/mpeg4videodec.h
    • [DH] libavcodec/mpegvideo.c
    • [DH] libavcodec/mpegvideo.h
    • [DH] libavcodec/mpegvideo_dec.c
  • avcodec/h263dec : Don't call ff_thread_finish_setup() unnecessarily

    24 février, par Andreas Rheinhardt
    avcodec/h263dec: Don't call ff_thread_finish_setup() unnecessarily
    
    All hwaccels for MPEG-4/H.263 are run serially even when frame-threading
    is in use. Therefore there is no gain in calling
    ff_thread_finish_setup() in this case right before outputting
    the frame.
    
    Removing this call also allows to revert commit
    39a5c0ac0651113750d01f3ee6bcf3819de3d7ee.
    
    Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
    
    • [DH] libavcodec/h263dec.c
  • libswscale/arm/swscale_unscaled : Fix function prototype

    24 février, par Adam Lackorzynski
    libswscale/arm/swscale_unscaled: Fix function prototype
    
    Constify dstStrice argument of rgbx_to_nv12_neon_16_wrapper to be
    compatible with other functions as used in function assignment.
    
    Signed-off-by: Adam Lackorzynski <adam@l4re.org>
    Signed-off-by: Martin Storsjö <martin@martin.st>
    
    • [DH] libswscale/arm/swscale_unscaled.c