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

Issue 10899021: Add CDM video decoder. (Closed)

Created:
8 years, 3 months ago by Tom Finegan
Modified:
8 years, 2 months ago
Visibility:
Public.

Description

Add CDM video decoder. Add FFmpeg CDM video decoder, and fix bugs with passing emtpy resources through DecryptAndDecode, DeliverFrame, and Deliversamples. TBR=brettw,viettrungluu BUG=141780 TEST=*ExternalClearKey* browser tests pass Committed: http://src.chromium.org/viewvc/chrome?view=rev&revision=163501

Patch Set 1 #

Total comments: 46

Patch Set 2 : Another checkpoint. Still does not compile. #

Patch Set 3 : Compiles, does nothing. #

Total comments: 10

Patch Set 4 : Rebased, and compiling again. Some comments addressed. #

Patch Set 5 : Add VideoFrame class, nearing the point where a frame could be decoded... #

Patch Set 6 : Needs to be hooked up in CdmWrapper #

Patch Set 7 : Forward declare FFmpeg structs. #

Patch Set 8 : Testing hackery... #

Patch Set 9 : FFmpegVideoDecoder::Initialize now works. #

Patch Set 10 : Could possibly work... #

Patch Set 11 : Remove include from wrapper, fix a comment. #

Patch Set 12 : Rebased. #

Patch Set 13 : Compiles again. #

Patch Set 14 : Rebased on PPAPI video decoder init CL. #

Patch Set 15 : Maybe sorta could work... #

Total comments: 45

Patch Set 16 : Rebased (because WFH, sorry!). Fix VideoFrame and address comments. #

Patch Set 17 : Renamings done. #

Patch Set 18 : Allocate PP_DCHECK, rename video buffer callbacks, stop leaking video frames when FFmpeg releases t… #

Total comments: 53

Patch Set 19 : Comments addressed, and added some DVLOGs in the decoder wrapper. #

Patch Set 20 : Address more comments. #

Total comments: 8

Patch Set 21 : Address more comments. #

Total comments: 40

Patch Set 22 : Invalidate source and copy missing values in TransferVideoFrame. #

Patch Set 23 : Address more comments. #

Total comments: 5

Patch Set 24 : I think I got them all this time... #

Patch Set 25 : Rebased #

Patch Set 26 : Remove use of FFmpeg's get_buffer and release_buffer. #

Patch Set 27 : Fix compile error, and handle cdm::kNeedMoreData in CdmWrapper::DeliverFrame(). #

Patch Set 28 : Removed FFmpegCdmVideoFrame and added copying of video frames in FFmpegCdmVideoDecoder. #

Patch Set 29 : Fix compile error. #

Total comments: 11

Patch Set 30 : Checks for odd dimensions, and remove unused include. #

Patch Set 31 : Fix ExternalClearKey browser tests. #

Patch Set 32 : Fix link error on linux_clang. #

Patch Set 33 : Fix tests on linux. #

Total comments: 6

Patch Set 34 : Fix disable seccomp sandbox flag usage. #

Patch Set 35 : Fix and enable the fake video decoder. #

Patch Set 36 : Fix resource leaks (thanks, brettw!). Enable real video decoder. #

Patch Set 37 : Rebased. #

Patch Set 38 : Add media library initialization. #

Total comments: 6

Patch Set 39 : Add AtExitManager member to ClearKeyCdm. #

Patch Set 40 : #

Patch Set 41 : Rebased. #

Total comments: 10

Patch Set 42 : Address comment and fix gyp file. #

Patch Set 43 : ffmpeg decoder ifdefs and more gyp changes. #

Total comments: 15

Patch Set 44 : Comments addressed. #

Unified diffs Side-by-side diffs Delta from patch set Stats (+548 lines, -39 lines) Patch
M ppapi/proxy/ppb_instance_proxy.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 3 chunks +23 lines, -11 lines 0 comments Download
M ppapi/proxy/ppp_content_decryptor_private_proxy.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 2 chunks +10 lines, -5 lines 0 comments Download
M webkit/media/crypto/ppapi/cdm_wrapper.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 6 chunks +21 lines, -5 lines 0 comments Download
M webkit/media/crypto/ppapi/clear_key_cdm.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 3 chunks +11 lines, -0 lines 0 comments Download
M webkit/media/crypto/ppapi/clear_key_cdm.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 4 chunks +68 lines, -16 lines 0 comments Download
M webkit/media/crypto/ppapi/content_decryption_module.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 1 chunk +1 line, -1 line 0 comments Download
A webkit/media/crypto/ppapi/ffmpeg_cdm_video_decoder.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 1 chunk +59 lines, -0 lines 0 comments Download
A webkit/media/crypto/ppapi/ffmpeg_cdm_video_decoder.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 1 chunk +332 lines, -0 lines 0 comments Download
M webkit/media/webkit_media.gypi View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 2 chunks +23 lines, -1 line 0 comments Download

Messages

Total messages: 53 (0 generated)
Tom Finegan
Very early version of the FFmpeg decode wrapper. Do not invest significant time reviewing this-- ...
8 years, 3 months ago (2012-08-29 01:34:42 UTC) #1
Tom Finegan
http://codereview.chromium.org/10899021/diff/1/webkit/media/crypto/decoders/video_decoder.h File webkit/media/crypto/decoders/video_decoder.h (right): http://codereview.chromium.org/10899021/diff/1/webkit/media/crypto/decoders/video_decoder.h#newcode22 webkit/media/crypto/decoders/video_decoder.h:22: } This should not be here-- copy/paste error that ...
8 years, 3 months ago (2012-08-29 01:37:46 UTC) #2
ddorwin
Reviewed only the header files (plus one .cc file). CDM.h looks fine, but it'd be ...
8 years, 3 months ago (2012-08-29 17:33:49 UTC) #3
Tom Finegan
As the patch set title says: this now compiles. Not that I expect it to ...
8 years, 3 months ago (2012-08-30 17:09:23 UTC) #4
Tom Finegan
scherkus, Added you to this review because this builds on the DecryptAndDecode changes xhwang has ...
8 years, 3 months ago (2012-09-01 21:42:16 UTC) #5
Tom Finegan
On 2012/09/01 21:42:16, tomf wrote: > scherkus, > > Added you to this review because ...
8 years, 3 months ago (2012-09-01 21:42:57 UTC) #6
ddorwin
Reviewed the header files again. Need to reconcile with http://codereview.chromium.org/10900007/. http://codereview.chromium.org/10899021/diff/1/webkit/media/crypto/decoders/ffmpeg_util.h File webkit/media/crypto/decoders/ffmpeg_util.h (right): http://codereview.chromium.org/10899021/diff/1/webkit/media/crypto/decoders/ffmpeg_util.h#newcode1 ...
8 years, 3 months ago (2012-09-02 21:39:07 UTC) #7
xhwang
Only addresses comments on CDM interface. http://codereview.chromium.org/10899021/diff/9001/webkit/media/crypto/decoders/video_decoder.h File webkit/media/crypto/decoders/video_decoder.h (right): http://codereview.chromium.org/10899021/diff/9001/webkit/media/crypto/decoders/video_decoder.h#newcode13 webkit/media/crypto/decoders/video_decoder.h:13: class VideoDecoder { ...
8 years, 3 months ago (2012-09-04 14:50:20 UTC) #8
ddorwin
Ignore comments in CDM.h. These are now addressed in http://codereview.chromium.org/10900007/. Address comments in the other ...
8 years, 3 months ago (2012-09-05 09:43:36 UTC) #9
Tom Finegan
PTAL, I think any standing comments have been addressed. This is not finished yet, but ...
8 years, 2 months ago (2012-09-27 22:16:23 UTC) #10
Tom Finegan
Let the review beat down commence... PTAL. :) Thanks!
8 years, 2 months ago (2012-10-13 00:54:23 UTC) #11
ddorwin
The biggest issue is at ffmpeg_video_decoder.h:42. We need to figure out a solution there. I ...
8 years, 2 months ago (2012-10-13 03:54:42 UTC) #12
Tom Finegan
Now with a webkit_media::VideoFrame that actually has the potential of working. I wasn't sure about ...
8 years, 2 months ago (2012-10-13 23:47:26 UTC) #13
Tom Finegan
http://codereview.chromium.org/10899021/diff/47001/webkit/media/crypto/ppapi/ffmpeg_video_decoder.h File webkit/media/crypto/ppapi/ffmpeg_video_decoder.h (right): http://codereview.chromium.org/10899021/diff/47001/webkit/media/crypto/ppapi/ffmpeg_video_decoder.h#newcode42 webkit/media/crypto/ppapi/ffmpeg_video_decoder.h:42: cdm::VideoFrame* decoded_frame); On 2012/10/13 23:47:26, Tom Finegan wrote: > ...
8 years, 2 months ago (2012-10-14 00:41:11 UTC) #14
Tom Finegan
I'm not able to run the decrypt demo right now... trying to sort that out, ...
8 years, 2 months ago (2012-10-16 01:36:11 UTC) #15
Tom Finegan
On 2012/10/16 01:36:11, Tom Finegan wrote: > I'm not able to run the decrypt demo ...
8 years, 2 months ago (2012-10-16 04:41:42 UTC) #16
ddorwin
Initial review of the .h files with a quick pass over the new .cc files. ...
8 years, 2 months ago (2012-10-16 18:04:30 UTC) #17
Tom Finegan
Comments mostly addressed. Some comments seemed to warrant further discussion. Also added some DVLOGs for ...
8 years, 2 months ago (2012-10-16 21:44:43 UTC) #18
xhwang
http://codereview.chromium.org/10899021/diff/45009/webkit/media/crypto/ppapi/cdm_wrapper.cc File webkit/media/crypto/ppapi/cdm_wrapper.cc (right): http://codereview.chromium.org/10899021/diff/45009/webkit/media/crypto/ppapi/cdm_wrapper.cc#newcode621 webkit/media/crypto/ppapi/cdm_wrapper.cc:621: void CdmWrapper::DeinitializeDecoder(PP_DecryptorStreamType decoder_type, s/decoder_type/stream_type ? http://codereview.chromium.org/10899021/diff/45009/webkit/media/crypto/ppapi/clear_key_cdm.cc File webkit/media/crypto/ppapi/clear_key_cdm.cc (right): ...
8 years, 2 months ago (2012-10-16 21:59:53 UTC) #19
Tom Finegan
Some comments addressed, and some with follow up discussion. PTAL! Thanks. http://codereview.chromium.org/10899021/diff/45009/webkit/media/crypto/ppapi/cdm_wrapper.cc File webkit/media/crypto/ppapi/cdm_wrapper.cc (right): ...
8 years, 2 months ago (2012-10-17 02:39:10 UTC) #20
ddorwin
A few more comments. I'll defer to xhwang on the new .cc files. http://codereview.chromium.org/10899021/diff/45009/webkit/media/crypto/ppapi/ffmpeg_cdm_video_decoder.h File ...
8 years, 2 months ago (2012-10-17 03:18:20 UTC) #21
Tom Finegan
I think I've addressed everything now, PTAL. Thanks! http://codereview.chromium.org/10899021/diff/45009/webkit/media/crypto/ppapi/ffmpeg_cdm_video_decoder.cc File webkit/media/crypto/ppapi/ffmpeg_cdm_video_decoder.cc (right): http://codereview.chromium.org/10899021/diff/45009/webkit/media/crypto/ppapi/ffmpeg_cdm_video_decoder.cc#newcode98 webkit/media/crypto/ppapi/ffmpeg_cdm_video_decoder.cc:98: static ...
8 years, 2 months ago (2012-10-17 04:25:29 UTC) #22
ddorwin
LG, just some questions. Wait for xhwang's full review. http://codereview.chromium.org/10899021/diff/66013/webkit/media/crypto/ppapi/clear_key_cdm.cc File webkit/media/crypto/ppapi/clear_key_cdm.cc (right): http://codereview.chromium.org/10899021/diff/66013/webkit/media/crypto/ppapi/clear_key_cdm.cc#newcode239 webkit/media/crypto/ppapi/clear_key_cdm.cc:239: ...
8 years, 2 months ago (2012-10-17 06:10:19 UTC) #23
xhwang
http://codereview.chromium.org/10899021/diff/45009/webkit/media/crypto/ppapi/cdm_wrapper.cc File webkit/media/crypto/ppapi/cdm_wrapper.cc (right): http://codereview.chromium.org/10899021/diff/45009/webkit/media/crypto/ppapi/cdm_wrapper.cc#newcode621 webkit/media/crypto/ppapi/cdm_wrapper.cc:621: void CdmWrapper::DeinitializeDecoder(PP_DecryptorStreamType decoder_type, On 2012/10/17 02:39:10, Tom Finegan wrote: ...
8 years, 2 months ago (2012-10-17 18:43:00 UTC) #24
Tom Finegan
I think I got to everything. PTAL, thanks! http://codereview.chromium.org/10899021/diff/66013/webkit/media/crypto/ppapi/clear_key_cdm.cc File webkit/media/crypto/ppapi/clear_key_cdm.cc (right): http://codereview.chromium.org/10899021/diff/66013/webkit/media/crypto/ppapi/clear_key_cdm.cc#newcode239 webkit/media/crypto/ppapi/clear_key_cdm.cc:239: if ...
8 years, 2 months ago (2012-10-17 19:55:43 UTC) #25
xhwang
http://codereview.chromium.org/10899021/diff/66013/webkit/media/crypto/ppapi/ffmpeg_cdm_video_frame.cc File webkit/media/crypto/ppapi/ffmpeg_cdm_video_frame.cc (right): http://codereview.chromium.org/10899021/diff/66013/webkit/media/crypto/ppapi/ffmpeg_cdm_video_frame.cc#newcode87 webkit/media/crypto/ppapi/ffmpeg_cdm_video_frame.cc:87: bool FFmpegCdmVideoFrame::IsValidConfig(cdm::VideoFormat format, On 2012/10/17 19:55:44, Tom Finegan wrote: ...
8 years, 2 months ago (2012-10-17 20:23:09 UTC) #26
ddorwin
LG wrt my comments. I'll let xhwang wrap up the review.
8 years, 2 months ago (2012-10-17 21:30:49 UTC) #27
Tom Finegan
I think everything is resolved with the exception of FFmpegCdmVideoFrame::IsValidConfig(). PTAL at comment. Thanks! http://codereview.chromium.org/10899021/diff/66013/webkit/media/crypto/ppapi/ffmpeg_cdm_video_frame.cc ...
8 years, 2 months ago (2012-10-17 21:32:22 UTC) #28
xhwang
lgtm Thanks for the hard work! Did you test this patch? You can pull my ...
8 years, 2 months ago (2012-10-17 21:44:38 UTC) #29
Tom Finegan
Removed use of get_buffer and release_buffer from AVCodecContext, and changed the way output video buffers ...
8 years, 2 months ago (2012-10-18 04:55:44 UTC) #30
Tom Finegan
This is a good news/bad news update to the CL. Bad news: PTAL again, enough ...
8 years, 2 months ago (2012-10-18 09:36:56 UTC) #31
xhwang
One extra copy of decoded frame should be relatively cheap compared to decoding. Also our ...
8 years, 2 months ago (2012-10-18 16:30:25 UTC) #32
xhwang
BTW, YAY! for D&D working :)
8 years, 2 months ago (2012-10-18 16:48:27 UTC) #33
Tom Finegan
Addressed comments. Looking at the test failures now. http://codereview.chromium.org/10899021/diff/63034/webkit/media/crypto/ppapi/cdm_wrapper.cc File webkit/media/crypto/ppapi/cdm_wrapper.cc (right): http://codereview.chromium.org/10899021/diff/63034/webkit/media/crypto/ppapi/cdm_wrapper.cc#newcode829 webkit/media/crypto/ppapi/cdm_wrapper.cc:829: decrypted_frame_info.result ...
8 years, 2 months ago (2012-10-18 19:29:41 UTC) #34
xhwang
looks good now. please fix the tests. http://codereview.chromium.org/10899021/diff/63034/webkit/media/crypto/ppapi/ffmpeg_cdm_video_decoder.h File webkit/media/crypto/ppapi/ffmpeg_cdm_video_decoder.h (right): http://codereview.chromium.org/10899021/diff/63034/webkit/media/crypto/ppapi/ffmpeg_cdm_video_decoder.h#newcode28 webkit/media/crypto/ppapi/ffmpeg_cdm_video_decoder.h:28: static bool ...
8 years, 2 months ago (2012-10-18 19:35:16 UTC) #35
Tom Finegan
Reviewers, PTAL. This is now passing tests locally. Pepper owners are now TBR'd in the ...
8 years, 2 months ago (2012-10-19 03:35:45 UTC) #36
xhwang
(still lgtm) % discussion about using zero PP_Resource. http://codereview.chromium.org/10899021/diff/73040/ppapi/proxy/ppp_content_decryptor_private_proxy.cc File ppapi/proxy/ppp_content_decryptor_private_proxy.cc (right): http://codereview.chromium.org/10899021/diff/73040/ppapi/proxy/ppp_content_decryptor_private_proxy.cc#newcode488 ppapi/proxy/ppp_content_decryptor_private_proxy.cc:488: PP_Resource ...
8 years, 2 months ago (2012-10-19 07:12:40 UTC) #37
brettw
http://codereview.chromium.org/10899021/diff/73040/ppapi/proxy/ppp_content_decryptor_private_proxy.cc File ppapi/proxy/ppp_content_decryptor_private_proxy.cc (right): http://codereview.chromium.org/10899021/diff/73040/ppapi/proxy/ppp_content_decryptor_private_proxy.cc#newcode491 ppapi/proxy/ppp_content_decryptor_private_proxy.cc:491: PPB_Buffer_Proxy::AddProxyResource(encrypted_buffer.resource, If you don't hit this line I believe ...
8 years, 2 months ago (2012-10-19 23:03:54 UTC) #38
Tom Finegan
Fixed the leaks, and turned the video decoder back on... still fails on linux bots, ...
8 years, 2 months ago (2012-10-20 00:57:16 UTC) #39
ddorwin
If you want to refactor the initialization in a separate CL, that's fine, but we ...
8 years, 2 months ago (2012-10-21 22:10:53 UTC) #40
ddorwin
On 2012/10/21 22:10:53, ddorwin wrote: > If you want to refactor the initialization in a ...
8 years, 2 months ago (2012-10-21 22:13:49 UTC) #41
Tom Finegan
http://codereview.chromium.org/10899021/diff/100019/webkit/media/crypto/ppapi/clear_key_cdm.cc File webkit/media/crypto/ppapi/clear_key_cdm.cc (right): http://codereview.chromium.org/10899021/diff/100019/webkit/media/crypto/ppapi/clear_key_cdm.cc#newcode73 webkit/media/crypto/ppapi/clear_key_cdm.cc:73: DVLOG(1) << "CreateCdmInstance()"; On 2012/10/21 22:10:53, ddorwin wrote: > ...
8 years, 2 months ago (2012-10-22 02:34:58 UTC) #42
ddorwin
http://codereview.chromium.org/10899021/diff/100019/webkit/media/crypto/ppapi/clear_key_cdm.cc File webkit/media/crypto/ppapi/clear_key_cdm.cc (right): http://codereview.chromium.org/10899021/diff/100019/webkit/media/crypto/ppapi/clear_key_cdm.cc#newcode73 webkit/media/crypto/ppapi/clear_key_cdm.cc:73: DVLOG(1) << "CreateCdmInstance()"; On 2012/10/22 02:34:58, Tom Finegan wrote: ...
8 years, 2 months ago (2012-10-22 05:04:36 UTC) #43
Tom Finegan
Please take one last look... I would like to CQ this is it makes it ...
8 years, 2 months ago (2012-10-22 20:04:37 UTC) #44
xhwang
still lgtm % nits http://codereview.chromium.org/10899021/diff/100023/webkit/media/crypto/ppapi/ffmpeg_cdm_video_decoder.cc File webkit/media/crypto/ppapi/ffmpeg_cdm_video_decoder.cc (right): http://codereview.chromium.org/10899021/diff/100023/webkit/media/crypto/ppapi/ffmpeg_cdm_video_decoder.cc#newcode50 webkit/media/crypto/ppapi/ffmpeg_cdm_video_decoder.cc:50: if (video_codec == cdm::VideoDecoderConfig::kCodecVP8) nit: ...
8 years, 2 months ago (2012-10-22 23:03:10 UTC) #45
Tom Finegan
http://codereview.chromium.org/10899021/diff/100023/webkit/media/crypto/ppapi/ffmpeg_cdm_video_decoder.cc File webkit/media/crypto/ppapi/ffmpeg_cdm_video_decoder.cc (right): http://codereview.chromium.org/10899021/diff/100023/webkit/media/crypto/ppapi/ffmpeg_cdm_video_decoder.cc#newcode50 webkit/media/crypto/ppapi/ffmpeg_cdm_video_decoder.cc:50: if (video_codec == cdm::VideoDecoderConfig::kCodecVP8) On 2012/10/22 23:03:10, xhwang wrote: ...
8 years, 2 months ago (2012-10-22 23:26:02 UTC) #46
ddorwin
Mostly comments about non-FFmpeg platforms. I think we can remove a line now, though. http://codereview.chromium.org/10899021/diff/100023/webkit/media/crypto/ppapi/clear_key_cdm.cc ...
8 years, 2 months ago (2012-10-22 23:31:35 UTC) #47
Tom Finegan
http://codereview.chromium.org/10899021/diff/100023/webkit/media/crypto/ppapi/clear_key_cdm.cc File webkit/media/crypto/ppapi/clear_key_cdm.cc (right): http://codereview.chromium.org/10899021/diff/100023/webkit/media/crypto/ppapi/clear_key_cdm.cc#newcode86 webkit/media/crypto/ppapi/clear_key_cdm.cc:86: CHECK(g_cdm_module_initialized); On 2012/10/22 23:31:35, ddorwin wrote: > I don't ...
8 years, 2 months ago (2012-10-23 00:12:13 UTC) #48
ddorwin
http://codereview.chromium.org/10899021/diff/97011/webkit/media/crypto/ppapi/clear_key_cdm.cc File webkit/media/crypto/ppapi/clear_key_cdm.cc (right): http://codereview.chromium.org/10899021/diff/97011/webkit/media/crypto/ppapi/clear_key_cdm.cc#newcode19 webkit/media/crypto/ppapi/clear_key_cdm.cc:19: #include "webkit/media/crypto/ppapi/ffmpeg_cdm_video_decoder.h" I think 9, 10, 13, and 16 ...
8 years, 2 months ago (2012-10-23 00:32:30 UTC) #49
Tom Finegan
http://codereview.chromium.org/10899021/diff/97011/webkit/media/crypto/ppapi/clear_key_cdm.cc File webkit/media/crypto/ppapi/clear_key_cdm.cc (right): http://codereview.chromium.org/10899021/diff/97011/webkit/media/crypto/ppapi/clear_key_cdm.cc#newcode19 webkit/media/crypto/ppapi/clear_key_cdm.cc:19: #include "webkit/media/crypto/ppapi/ffmpeg_cdm_video_decoder.h" On 2012/10/23 00:32:30, ddorwin wrote: > I ...
8 years, 2 months ago (2012-10-23 00:54:41 UTC) #50
ddorwin
Build changes LG. Thanks! http://codereview.chromium.org/10899021/diff/97011/webkit/media/webkit_media.gypi File webkit/media/webkit_media.gypi (right): http://codereview.chromium.org/10899021/diff/97011/webkit/media/webkit_media.gypi#newcode108 webkit/media/webkit_media.gypi:108: 'use_ffmpeg%': 0, On 2012/10/23 00:54:41, ...
8 years, 2 months ago (2012-10-23 01:02:54 UTC) #51
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/tomfinegan@chromium.org/10899021/92049
8 years, 2 months ago (2012-10-23 01:06:44 UTC) #52
commit-bot: I haz the power
8 years, 2 months ago (2012-10-23 04:31:45 UTC) #53
Change committed as 163501

Powered by Google App Engine
This is Rietveld 408576698