git.videolan.org Git - ffmpeg.git/rss log
FFmpeg git repo
Les articles publiés sur le site
-
avcodec/lcevcdec : Use proper include
25 février, par Andreas Rheinhardt -
Don't attempt to parse ADTS from USAC packets.
25 février, par Dale CurtisDon'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>
-
avcodec/mpegvideo : Move bitstream_buffer to mpeg4videodec
24 février, par Andreas Rheinhardtavcodec/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>
-
avcodec/h263dec : Don't call ff_thread_finish_setup() unnecessarily
24 février, par Andreas Rheinhardtavcodec/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>
-
libswscale/arm/swscale_unscaled : Fix function prototype
24 février, par Adam Lackorzynskilibswscale/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>