From b0c9d8af3248a7c7ac32fcfb7bd8d0085cfca501 Mon Sep 17 00:00:00 2001 From: Pascal Massimino Date: Fri, 2 Oct 2015 21:35:23 +0000 Subject: [PATCH] label rename: NO_CHANGE -> NoChange Change-Id: I5b2beb93169d7c2bc95e6cdeb57770fc44b4963f --- src/mux/anim_encode.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/mux/anim_encode.c b/src/mux/anim_encode.c index b314741c..ff34b204 100644 --- a/src/mux/anim_encode.c +++ b/src/mux/anim_encode.c @@ -356,7 +356,7 @@ static void MinimizeChangeRectangle(const WebPPicture* const src, break; } } - if (rect->width_ == 0) goto NO_CHANGE; + if (rect->width_ == 0) goto NoChange; // Right boundary. for (i = rect->x_offset_ + rect->width_ - 1; i >= rect->x_offset_; --i) { @@ -371,7 +371,7 @@ static void MinimizeChangeRectangle(const WebPPicture* const src, break; } } - if (rect->width_ == 0) goto NO_CHANGE; + if (rect->width_ == 0) goto NoChange; // Top boundary. for (j = rect->y_offset_; j < rect->y_offset_ + rect->height_; ++j) { @@ -386,7 +386,7 @@ static void MinimizeChangeRectangle(const WebPPicture* const src, break; } } - if (rect->height_ == 0) goto NO_CHANGE; + if (rect->height_ == 0) goto NoChange; // Bottom boundary. for (j = rect->y_offset_ + rect->height_ - 1; j >= rect->y_offset_; --j) { @@ -400,10 +400,10 @@ static void MinimizeChangeRectangle(const WebPPicture* const src, break; } } - if (rect->height_ == 0) goto NO_CHANGE; + if (rect->height_ == 0) goto NoChange; if (IsEmptyRect(rect)) { - NO_CHANGE: + NoChange: rect->x_offset_ = 0; rect->y_offset_ = 0; rect->width_ = 0;