Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(195)

Issue 12942006: libwebp: update snapshot to v0.3.0-rc6 (Closed)

Created:
7 years, 9 months ago by jzern
Modified:
7 years, 9 months ago
CC:
chromium-reviews, urvang (Google), brettw, Johann
Visibility:
Public.

Description

libwebp: update snapshot to v0.3.0-rc6 adds metadata (XMP/EXIF), ICC profile and animation support to the format. BUG=https://bugs.webkit.org/show_bug.cgi?id=112761 TEST=build,webkit layout TBR=cpu Committed: https://src.chromium.org/viewvc/chrome?view=rev&revision=190302

Patch Set 1 #

Patch Set 2 : local webkit layout expectations #

Total comments: 25

Patch Set 3 : rebase #

Unified diffs Side-by-side diffs Delta from patch set Stats (+5876 lines, -1761 lines) Patch
M third_party/libwebp/README.chromium View 2 chunks +2 lines, -11 lines 0 comments Download
M third_party/libwebp/dec/alpha.c View 3 chunks +5 lines, -16 lines 0 comments Download
M third_party/libwebp/dec/frame.c View 7 chunks +57 lines, -44 lines 0 comments Download
M third_party/libwebp/dec/idec.c View 3 chunks +35 lines, -6 lines 0 comments Download
M third_party/libwebp/dec/io.c View 9 chunks +73 lines, -51 lines 0 comments Download
M third_party/libwebp/dec/vp8.c View 6 chunks +52 lines, -57 lines 0 comments Download
M third_party/libwebp/dec/vp8i.h View 4 chunks +5 lines, -7 lines 0 comments Download
M third_party/libwebp/dec/vp8l.c View 8 chunks +22 lines, -46 lines 0 comments Download
M third_party/libwebp/dec/webp.c View 7 chunks +21 lines, -15 lines 0 comments Download
A third_party/libwebp/demux/demux.c View 1 chunk +952 lines, -0 lines 0 comments Download
M third_party/libwebp/dsp/dec.c View 4 chunks +10 lines, -5 lines 0 comments Download
M third_party/libwebp/dsp/dec_neon.c View 3 chunks +82 lines, -6 lines 0 comments Download
M third_party/libwebp/dsp/dec_sse2.c View 6 chunks +21 lines, -16 lines 0 comments Download
M third_party/libwebp/dsp/dsp.h View 5 chunks +10 lines, -7 lines 0 comments Download
M third_party/libwebp/dsp/enc.c View 8 chunks +51 lines, -66 lines 0 comments Download
A third_party/libwebp/dsp/enc_neon.c View 1 chunk +661 lines, -0 lines 0 comments Download
M third_party/libwebp/dsp/enc_sse2.c View 18 chunks +208 lines, -113 lines 0 comments Download
M third_party/libwebp/dsp/lossless.h View 1 chunk +13 lines, -3 lines 0 comments Download
M third_party/libwebp/dsp/lossless.c View 16 chunks +289 lines, -81 lines 0 comments Download
M third_party/libwebp/dsp/upsampling.c View 4 chunks +20 lines, -8 lines 0 comments Download
A third_party/libwebp/dsp/upsampling_neon.c View 1 chunk +292 lines, -0 lines 0 comments Download
M third_party/libwebp/dsp/upsampling_sse2.c View 6 chunks +22 lines, -16 lines 0 comments Download
M third_party/libwebp/dsp/yuv.h View 7 chunks +184 lines, -35 lines 0 comments Download
M third_party/libwebp/dsp/yuv.c View 3 chunks +22 lines, -1 line 0 comments Download
M third_party/libwebp/enc/alpha.c View 3 chunks +65 lines, -28 lines 0 comments Download
M third_party/libwebp/enc/analysis.c View 11 chunks +149 lines, -94 lines 0 comments Download
M third_party/libwebp/enc/backward_references.h View 4 chunks +21 lines, -16 lines 0 comments Download
M third_party/libwebp/enc/backward_references.c View 23 chunks +100 lines, -82 lines 0 comments Download
M third_party/libwebp/enc/config.c View 3 chunks +11 lines, -2 lines 0 comments Download
M third_party/libwebp/enc/cost.h View 1 chunk +1 line, -7 lines 0 comments Download
M third_party/libwebp/enc/cost.c View 2 chunks +4 lines, -0 lines 0 comments Download
M third_party/libwebp/enc/frame.c View 22 chunks +362 lines, -306 lines 0 comments Download
M third_party/libwebp/enc/histogram.h View 1 chunk +0 lines, -16 lines 0 comments Download
M third_party/libwebp/enc/histogram.c View 13 chunks +172 lines, -66 lines 0 comments Download
M third_party/libwebp/enc/picture.c View 4 chunks +113 lines, -40 lines 0 comments Download
M third_party/libwebp/enc/quant.c View 8 chunks +150 lines, -30 lines 0 comments Download
M third_party/libwebp/enc/syntax.c View 4 chunks +7 lines, -15 lines 0 comments Download
A third_party/libwebp/enc/token.c View 1 chunk +254 lines, -0 lines 0 comments Download
M third_party/libwebp/enc/tree.c View 1 chunk +4 lines, -1 line 0 comments Download
M third_party/libwebp/enc/vp8enci.h View 14 chunks +71 lines, -47 lines 0 comments Download
M third_party/libwebp/enc/vp8l.c View 20 chunks +92 lines, -74 lines 0 comments Download
M third_party/libwebp/enc/webpenc.c View 4 chunks +62 lines, -32 lines 0 comments Download
M third_party/libwebp/libwebp.gyp View 5 chunks +14 lines, -1 line 0 comments Download
M third_party/libwebp/utils/bit_reader.h View 7 chunks +181 lines, -50 lines 0 comments Download
M third_party/libwebp/utils/bit_reader.c View 7 chunks +45 lines, -62 lines 0 comments Download
M third_party/libwebp/utils/filters.h View 1 chunk +5 lines, -4 lines 0 comments Download
M third_party/libwebp/utils/filters.c View 7 chunks +33 lines, -34 lines 0 comments Download
M third_party/libwebp/utils/huffman_encode.c View 3 chunks +7 lines, -8 lines 0 comments Download
M third_party/libwebp/utils/quant_levels.h View 1 chunk +0 lines, -5 lines 0 comments Download
M third_party/libwebp/utils/quant_levels.c View 1 chunk +0 lines, -9 lines 0 comments Download
A + third_party/libwebp/utils/quant_levels_dec.h View 3 chunks +5 lines, -14 lines 0 comments Download
A + third_party/libwebp/utils/quant_levels_dec.c View 1 chunk +8 lines, -15 lines 0 comments Download
M third_party/libwebp/utils/thread.h View 2 chunks +8 lines, -4 lines 0 comments Download
M third_party/libwebp/utils/thread.c View 1 chunk +0 lines, -4 lines 0 comments Download
M third_party/libwebp/utils/utils.h View 2 chunks +38 lines, -1 line 0 comments Download
M third_party/libwebp/utils/utils.c View 2 chunks +6 lines, -3 lines 0 comments Download
M third_party/libwebp/webp/decode.h View 15 chunks +74 lines, -46 lines 0 comments Download
A third_party/libwebp/webp/demux.h View 1 chunk +212 lines, -0 lines 0 comments Download
M third_party/libwebp/webp/encode.h View 10 chunks +42 lines, -24 lines 0 comments Download
M third_party/libwebp/webp/format_constants.h View 2 chunks +7 lines, -11 lines 0 comments Download
A third_party/libwebp/webp/mux.h View 1 chunk +355 lines, -0 lines 0 comments Download
A third_party/libwebp/webp/mux_types.h View 1 chunk +87 lines, -0 lines 0 comments Download
M webkit/tools/layout_tests/test_expectations.txt View 1 2 1 chunk +2 lines, -0 lines 0 comments Download

Messages

Total messages: 32 (0 generated)
jzern
Note this change requires at least r189219 (WebKit r146288) for toDataURL-webp to pass (fragile encode ...
7 years, 9 months ago (2013-03-21 06:56:08 UTC) #1
skal
LGTM patch locally tested OK on x86_64. I'll let the bots do the rest...
7 years, 9 months ago (2013-03-21 08:35:40 UTC) #2
jzern
On 2013/03/21 06:56:08, jzern wrote: > Note this change requires at least r189219 (WebKit r146288) ...
7 years, 9 months ago (2013-03-21 18:30:07 UTC) #3
jzern
On 2013/03/21 06:56:08, jzern wrote: > Note this change requires at least r189219 (WebKit r146288) ...
7 years, 9 months ago (2013-03-21 18:31:56 UTC) #4
fbarchard
try bots show layout failures?
7 years, 9 months ago (2013-03-21 20:32:55 UTC) #5
jzern
On 2013/03/21 18:31:56, jzern wrote: > On 2013/03/21 06:56:08, jzern wrote: > > Note this ...
7 years, 9 months ago (2013-03-21 20:36:06 UTC) #6
jzern
On 2013/03/21 20:36:06, jzern wrote: > I can add this to webkit/tools/layout_tests/test_expectations.txt while that's > ...
7 years, 9 months ago (2013-03-22 03:05:32 UTC) #7
jzern
On 2013/03/22 03:05:32, jzern wrote: > On 2013/03/21 20:36:06, jzern wrote: > > I can ...
7 years, 9 months ago (2013-03-22 07:38:04 UTC) #8
fbarchard
This is a very large CL... prefer more frequent, small CLs. Some feedback on first ...
7 years, 9 months ago (2013-03-22 18:56:44 UTC) #9
fbarchard
https://codereview.chromium.org/12942006/diff/13001/third_party/libwebp/demux/demux.c File third_party/libwebp/demux/demux.c (right): https://codereview.chromium.org/12942006/diff/13001/third_party/libwebp/demux/demux.c#newcode42 third_party/libwebp/demux/demux.c:42: size_t size_; size_t is 64 bit on -m64. Are ...
7 years, 9 months ago (2013-03-22 19:08:27 UTC) #10
jzern
Good points all, I've collected them, but these kind of changes belong upstream not in ...
7 years, 9 months ago (2013-03-22 19:10:36 UTC) #11
jzern
https://codereview.chromium.org/12942006/diff/13001/third_party/libwebp/demux/demux.c File third_party/libwebp/demux/demux.c (right): https://codereview.chromium.org/12942006/diff/13001/third_party/libwebp/demux/demux.c#newcode42 third_party/libwebp/demux/demux.c:42: size_t size_; On 2013/03/22 19:08:27, fbarchard wrote: > size_t ...
7 years, 9 months ago (2013-03-22 19:18:24 UTC) #12
Johann
https://codereview.chromium.org/12942006/diff/13001/third_party/libwebp/dsp/dec_neon.c File third_party/libwebp/dsp/dec_neon.c (right): https://codereview.chromium.org/12942006/diff/13001/third_party/libwebp/dsp/dec_neon.c#newcode344 third_party/libwebp/dsp/dec_neon.c:344: "vadd.s32 q0, q0, q4 \n" // dc = tmp[0] ...
7 years, 9 months ago (2013-03-22 19:19:15 UTC) #13
jzern
On 2013/03/22 18:56:44, fbarchard wrote: > This is a very large CL... prefer more frequent, ...
7 years, 9 months ago (2013-03-22 19:29:48 UTC) #14
fbarchard
LGTM Please ensure layout and builds pass and be ready to rollback.
7 years, 9 months ago (2013-03-22 20:57:29 UTC) #15
jzern
On 2013/03/22 20:57:29, fbarchard wrote: > LGTM > Please ensure layout and builds pass and ...
7 years, 9 months ago (2013-03-22 21:10:35 UTC) #16
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/jzern@chromium.org/12942006/25001
7 years, 9 months ago (2013-03-22 21:31:44 UTC) #17
commit-bot: I haz the power
Presubmit check for 12942006-25001 failed and returned exit status 1. INFO:root:Found 63 file(s). Running presubmit ...
7 years, 9 months ago (2013-03-22 21:32:23 UTC) #18
jzern
> Presubmit check for 12942006-25001 failed and returned exit status 1. > > INFO:root:Found 63 ...
7 years, 9 months ago (2013-03-22 21:43:39 UTC) #19
jzern
Seems brettw@, might be away. cpu@ any chance I can land this?
7 years, 9 months ago (2013-03-22 22:45:41 UTC) #20
cpu_(ooo_6.6-7.5)
you don't need owners approval for updating code in third_party. Only new third party libraries ...
7 years, 9 months ago (2013-03-22 22:55:38 UTC) #21
jzern
On 2013/03/22 22:55:38, cpu wrote: > you don't need owners approval for updating code in ...
7 years, 9 months ago (2013-03-22 23:01:49 UTC) #22
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/jzern@chromium.org/12942006/25001
7 years, 9 months ago (2013-03-22 23:25:47 UTC) #23
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/jzern@chromium.org/12942006/25001
7 years, 9 months ago (2013-03-23 15:54:38 UTC) #24
brettw
Is there somebody/people you can add to a new owners file for this for future ...
7 years, 9 months ago (2013-03-24 05:33:58 UTC) #25
commit-bot: I haz the power
List of reviewers changed. brettw@chromium.org did a drive-by without LGTM'ing!
7 years, 9 months ago (2013-03-24 09:29:26 UTC) #26
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/jzern@chromium.org/12942006/25001
7 years, 9 months ago (2013-03-24 20:03:12 UTC) #27
commit-bot: I haz the power
Step "update" is always a major failure. Look at the try server FAQ for more ...
7 years, 9 months ago (2013-03-24 20:12:12 UTC) #28
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/jzern@chromium.org/12942006/25001
7 years, 9 months ago (2013-03-24 20:16:06 UTC) #29
commit-bot: I haz the power
Step "update" is always a major failure. Look at the try server FAQ for more ...
7 years, 9 months ago (2013-03-24 21:38:40 UTC) #30
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/jzern@chromium.org/12942006/25001
7 years, 9 months ago (2013-03-24 21:51:46 UTC) #31
commit-bot: I haz the power
7 years, 9 months ago (2013-03-24 23:13:33 UTC) #32
Message was sent while issue was closed.
Change committed as 190302

Powered by Google App Engine
This is Rietveld 408576698