mirror of
https://github.com/webmproject/libwebp.git
synced 2024-12-28 14:38:21 +01:00
Merge "cosmetics: fix indent"
This commit is contained in:
commit
aa2eb2d4a1
@ -51,7 +51,7 @@ static void DefaultDecoderOptions(WebPAnimDecoderOptions* const dec_options) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
int WebPAnimDecoderOptionsInitInternal(WebPAnimDecoderOptions* dec_options,
|
int WebPAnimDecoderOptionsInitInternal(WebPAnimDecoderOptions* dec_options,
|
||||||
int abi_version) {
|
int abi_version) {
|
||||||
if (dec_options == NULL ||
|
if (dec_options == NULL ||
|
||||||
WEBP_ABI_IS_INCOMPATIBLE(abi_version, WEBP_DEMUX_ABI_VERSION)) {
|
WEBP_ABI_IS_INCOMPATIBLE(abi_version, WEBP_DEMUX_ABI_VERSION)) {
|
||||||
return 0;
|
return 0;
|
||||||
|
@ -622,7 +622,7 @@ double VP8LHistogramEstimateBits(const VP8LHistogram* const p) {
|
|||||||
double VP8LHistogramEstimateBitsBulk(const VP8LHistogram* const p) {
|
double VP8LHistogramEstimateBitsBulk(const VP8LHistogram* const p) {
|
||||||
return
|
return
|
||||||
VP8LBitsEntropy(p->literal_, VP8LHistogramNumCodes(p->palette_code_bits_),
|
VP8LBitsEntropy(p->literal_, VP8LHistogramNumCodes(p->palette_code_bits_),
|
||||||
NULL)
|
NULL)
|
||||||
+ VP8LBitsEntropy(p->red_, NUM_LITERAL_CODES, NULL)
|
+ VP8LBitsEntropy(p->red_, NUM_LITERAL_CODES, NULL)
|
||||||
+ VP8LBitsEntropy(p->blue_, NUM_LITERAL_CODES, NULL)
|
+ VP8LBitsEntropy(p->blue_, NUM_LITERAL_CODES, NULL)
|
||||||
+ VP8LBitsEntropy(p->alpha_, NUM_LITERAL_CODES, NULL)
|
+ VP8LBitsEntropy(p->alpha_, NUM_LITERAL_CODES, NULL)
|
||||||
|
@ -462,7 +462,7 @@ WEBP_EXTERN(WebPAnimEncoder*) WebPAnimEncoderNewInternal(
|
|||||||
// Parameters:
|
// Parameters:
|
||||||
// width/height - (in) canvas width and height of the animation.
|
// width/height - (in) canvas width and height of the animation.
|
||||||
// enc_options - (in) encoding options; can be passed NULL to pick
|
// enc_options - (in) encoding options; can be passed NULL to pick
|
||||||
// reasonable defaults.
|
// reasonable defaults.
|
||||||
// Returns:
|
// Returns:
|
||||||
// A pointer to the newly created WebPAnimEncoder object.
|
// A pointer to the newly created WebPAnimEncoder object.
|
||||||
// Or NULL in case of memory error.
|
// Or NULL in case of memory error.
|
||||||
|
Loading…
Reference in New Issue
Block a user