git.videolan.org Git - ffmpeg.git/rss log
FFmpeg git repo
Les articles publiés sur le site
-
avcodec/simple_idct_template : Move function to its declaration
24 février, par Andreas Rheinhardt -
avcodec/proresdsp : Make put_pixels truely ptrdiff_t compatible
24 février, par Andreas Rheinhardtavcodec/proresdsp: Make put_pixels truely ptrdiff_t compatible It currently uses an intermediate int which wouldn't work if linesize exceeded the range of int and inhibits compiler optimizations. Also switch to pointer arithmetic and use smaller scope. Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
-
avcodec/proresdec : Disable HWAccel at compile-time when possible
24 février, par Andreas Rheinhardt -
avcodec/prores{dec,dsp} : Remove always-false checks
24 février, par Andreas Rheinhardtavcodec/prores{dec,dsp}: Remove always-false checks avctx->bits_per_raw_sample is always 10 or 12 here; the checks have been added in preparation for making bits_per_raw_sample user-settable via an AVOption, but this never happened. While just at it, also set unpack_alpha earlier (where bits_per_raw_sample is set). Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
-
fftools/ffmpeg_dec : don't try to copy side data from the decoder if it already exists...
24 février, par James Almerfftools/ffmpeg_dec: don't try to copy side data from the decoder if it already exists in the output frame We can't use AV_FRAME_SIDE_DATA_FLAG_REPLACE here because the side data already in the frame should have priority over the global one, so just ensure we don't copy any if it already exists. Fixes ticket #11468. Signed-off-by: James Almer <jamrial@gmail.com>