Merge "demux,IsValidExtendedFormat: remove unused variable" into main

This commit is contained in:
James Zern 2022-04-11 20:29:24 +00:00 committed by Gerrit Code Review
commit 90084d84f9

View File

@ -614,7 +614,6 @@ static int IsValidExtendedFormat(const WebPDemuxer* const dmux) {
while (f != NULL) { while (f != NULL) {
const int cur_frame_set = f->frame_num_; const int cur_frame_set = f->frame_num_;
int frame_count = 0;
// Check frame properties. // Check frame properties.
for (; f != NULL && f->frame_num_ == cur_frame_set; f = f->next_) { for (; f != NULL && f->frame_num_ == cur_frame_set; f = f->next_) {
@ -649,8 +648,6 @@ static int IsValidExtendedFormat(const WebPDemuxer* const dmux) {
dmux->canvas_width_, dmux->canvas_height_)) { dmux->canvas_width_, dmux->canvas_height_)) {
return 0; return 0;
} }
++frame_count;
} }
} }
return 1; return 1;