diff options
Diffstat (limited to 'third_party/libwebp/vp8.c')
-rw-r--r-- | third_party/libwebp/vp8.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/third_party/libwebp/vp8.c b/third_party/libwebp/vp8.c index 76fc74e..234f361 100644 --- a/third_party/libwebp/vp8.c +++ b/third_party/libwebp/vp8.c @@ -223,7 +223,7 @@ int VP8GetHeaders(VP8Decoder* const dec, VP8Io* const io) { // Paragraph 9.1 { const uint32_t bits = buf[0] | (buf[1] << 8) | (buf[2] << 16); - frm_hdr = &dec->frm_hdr_; + frm_hdr = &dec->frm_hdr_; frm_hdr->key_frame_ = !(bits & 1); frm_hdr->profile_ = (bits >> 1) & 7; frm_hdr->show_ = (bits >> 4) & 1; |