mirror of
https://github.com/webmproject/libwebp.git
synced 2024-12-27 06:08:21 +01:00
minor style fixes
Change-Id: I78a6fa19a799c41d6536631f547279692b658c4d
This commit is contained in:
parent
b38dfccf8d
commit
50679acf25
@ -717,14 +717,14 @@ static void StoreSideInfo(const VP8EncIterator* const it) {
|
||||
const VP8MBInfo* const mb = it->mb_;
|
||||
WebPPicture* const pic = enc->pic_;
|
||||
|
||||
if (pic->stats) {
|
||||
if (pic->stats != NULL) {
|
||||
StoreSSE(it);
|
||||
enc->block_count_[0] += (mb->type_ == 0);
|
||||
enc->block_count_[1] += (mb->type_ == 1);
|
||||
enc->block_count_[2] += (mb->skip_ != 0);
|
||||
}
|
||||
|
||||
if (pic->extra_info) {
|
||||
if (pic->extra_info != NULL) {
|
||||
uint8_t* const info = &pic->extra_info[it->x_ + it->y_ * enc->mb_w_];
|
||||
switch (pic->extra_info_type) {
|
||||
case 1: *info = mb->type_; break;
|
||||
|
@ -49,7 +49,7 @@ int WebPPictureInitInternal(WebPPicture* const picture, int version) {
|
||||
if (version != WEBP_ENCODER_ABI_VERSION) {
|
||||
return 0; // caller/system version mismatch!
|
||||
}
|
||||
if (picture) {
|
||||
if (picture != NULL) {
|
||||
memset(picture, 0, sizeof(*picture));
|
||||
picture->writer = DummyWriter;
|
||||
WebPEncodingSetError(picture, VP8_ENC_OK);
|
||||
@ -260,7 +260,7 @@ static VP8Encoder* InitEncoder(const WebPConfig* const config,
|
||||
}
|
||||
|
||||
static void DeleteEncoder(VP8Encoder* enc) {
|
||||
if (enc) {
|
||||
if (enc != NULL) {
|
||||
VP8EncDeleteAlpha(enc);
|
||||
#ifdef WEBP_EXPERIMENTAL_FEATURES
|
||||
VP8EncDeleteLayer(enc);
|
||||
@ -287,7 +287,7 @@ static void FinalizePSNR(const VP8Encoder* const enc) {
|
||||
|
||||
static void StoreStats(VP8Encoder* const enc) {
|
||||
WebPAuxStats* const stats = enc->pic_->stats;
|
||||
if (stats) {
|
||||
if (stats != NULL) {
|
||||
int i, s;
|
||||
for (i = 0; i < NUM_MB_SEGMENTS; ++i) {
|
||||
stats->segment_level[i] = enc->dqm_[i].fstrength_;
|
||||
|
Loading…
Reference in New Issue
Block a user