git.videolan.org Git - x264.git/summary
x264 git repository
Les articles publiés sur le site
-
Remove compatibility workarounds
6 juin 2017, par Anton Mitrofanov -
Fix 8x8dct in lossless encoding
5 juin 2017, par Anton MitrofanovFix 8x8dct in lossless encoding Change V and H intra prediction in lossless (TransformBypassModeFlag == 1) macroblocks to correctly adhere to the specification. Affects lossless encoding with 8x8dct or mix of lossless with normal macroblocks. 8x8dct has already been disabled in lossless mode for some time due to being out-of-spec but this will allow us to re-enable it again.
-
x86 : AVX-512 add8x8_idct
1er juin 2017, par Henrik Gramner -
Fix CABAC+8x8dct in 4:4:4
30 mai 2017, par Anton Mitrofanov -
aarch64 : Update the var2 functions to the new signature
29 mai 2017, par Martin Storsjöaarch64: Update the var2 functions to the new signature The existing functions could easily be used by just calling them twice - this would give the following cycle numbers from checkasm: var2_8x8_c: 4110 var2_8x8_neon: 1505 var2_8x16_c: 8019 var2_8x16_neon: 2545 However, by merging both passes into the same function, we get the following speedup: var2_8x8_neon: 1205 var2_8x16_neon: 2327