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

Issue 1151973003: ppapi: implement PPB_AudioEncoder (Closed)

Created:
5 years, 7 months ago by llandwerlin-old
Modified:
5 years, 1 month ago
Reviewers:
CC:
chromium-reviews, mlamouri+watch-content_chromium.org, yusukes+watch_chromium.org, tzik, binji+watch_chromium.org, jam, raymes+watch_chromium.org, teravest+watch_chromium.org, darin-cc_chromium.org, asvitkine+watch_chromium.org, bradnelson+warch_chromium.org, mkwst+moarreviews-renderer_chromium.org, piman+watch_chromium.org, Sam Clegg, ihf+watch_chromium.org
Base URL:
https://chromium.googlesource.com/chromium/src.git@master
Target Ref:
refs/pending/heads/master
Project:
chromium
Visibility:
Public.

Description

ppapi: implement PPB_AudioEncoder BUG=461222 NOT FOR REVIEW

Patch Set 1 #

Patch Set 2 : Fix speex mode field in ogg bitstream header #

Patch Set 3 : Rebase on ToT #

Patch Set 4 : Fix missing override #

Patch Set 5 : Fix gyp build issue #

Patch Set 6 : Fix PP_Bool to bool conversion error on Windows #

Patch Set 7 : More Windows fixes in proxy code #

Unified diffs Side-by-side diffs Delta from patch set Stats (+3732 lines, -5 lines) Patch
M chrome/common/ppapi_utils.cc View 1 1 chunk +1 line, -0 lines 0 comments Download
M content/content_renderer.gypi View 1 2 3 4 3 chunks +6 lines, -0 lines 0 comments Download
M content/renderer/BUILD.gn View 1 2 1 chunk +2 lines, -0 lines 0 comments Download
M content/renderer/pepper/DEPS View 1 chunk +2 lines, -0 lines 0 comments Download
A content/renderer/pepper/audio_encoder_shim.h View 1 2 1 chunk +84 lines, -0 lines 0 comments Download
A content/renderer/pepper/audio_encoder_shim.cc View 1 1 chunk +351 lines, -0 lines 0 comments Download
M content/renderer/pepper/content_renderer_pepper_host_factory.cc View 2 chunks +4 lines, -0 lines 0 comments Download
A content/renderer/pepper/pepper_audio_encoder_host.h View 1 chunk +111 lines, -0 lines 0 comments Download
A content/renderer/pepper/pepper_audio_encoder_host.cc View 1 2 3 4 5 1 chunk +510 lines, -0 lines 0 comments Download
M content/renderer/pepper/plugin_module.cc View 1 1 chunk +1 line, -0 lines 0 comments Download
M content/renderer/pepper/resource_creation_impl.h View 1 1 chunk +1 line, -0 lines 0 comments Download
M content/renderer/pepper/resource_creation_impl.cc View 1 1 chunk +4 lines, -0 lines 0 comments Download
M native_client_sdk/src/libraries/ppapi/library.dsc View 1 1 chunk +1 line, -0 lines 0 comments Download
M native_client_sdk/src/libraries/ppapi_cpp/library.dsc View 1 2 chunks +2 lines, -0 lines 0 comments Download
M ppapi/api/pp_codecs.idl View 3 chunks +55 lines, -0 lines 0 comments Download
A ppapi/api/ppb_audio_encoder.idl View 1 chunk +211 lines, -0 lines 0 comments Download
M ppapi/c/pp_codecs.h View 4 chunks +51 lines, -1 line 0 comments Download
A ppapi/c/ppb_audio_encoder.h View 1 chunk +224 lines, -0 lines 0 comments Download
A ppapi/cpp/audio_encoder.h View 1 chunk +162 lines, -0 lines 0 comments Download
A ppapi/cpp/audio_encoder.cc View 1 chunk +118 lines, -0 lines 0 comments Download
M ppapi/examples/BUILD.gn View 1 chunk +1 line, -0 lines 0 comments Download
A + ppapi/examples/audio_encode/BUILD.gn View 1 chunk +3 lines, -3 lines 0 comments Download
A ppapi/examples/audio_encode/audio_encode.cc View 1 1 chunk +435 lines, -0 lines 0 comments Download
A ppapi/examples/audio_encode/audio_encode.html View 1 1 chunk +430 lines, -0 lines 0 comments Download
M ppapi/native_client/src/untrusted/pnacl_irt_shim/pnacl_shim.c View 1 6 chunks +82 lines, -0 lines 0 comments Download
M ppapi/ppapi_proxy.gypi View 1 chunk +2 lines, -0 lines 0 comments Download
M ppapi/ppapi_shared.gypi View 1 1 chunk +2 lines, -0 lines 0 comments Download
M ppapi/ppapi_sources.gypi View 1 3 chunks +4 lines, -0 lines 0 comments Download
M ppapi/ppapi_tests.gypi View 1 1 chunk +10 lines, -0 lines 0 comments Download
M ppapi/proxy/BUILD.gn View 1 chunk +2 lines, -0 lines 0 comments Download
A ppapi/proxy/audio_encoder_resource.h View 1 chunk +130 lines, -0 lines 0 comments Download
A ppapi/proxy/audio_encoder_resource.cc View 1 2 3 4 5 6 1 chunk +460 lines, -0 lines 0 comments Download
M ppapi/proxy/interface_list.cc View 1 1 chunk +1 line, -0 lines 0 comments Download
M ppapi/proxy/ppapi_messages.h View 1 4 chunks +47 lines, -0 lines 0 comments Download
M ppapi/proxy/resource_creation_proxy.h View 1 1 chunk +1 line, -0 lines 0 comments Download
M ppapi/proxy/resource_creation_proxy.cc View 1 2 chunks +5 lines, -0 lines 0 comments Download
M ppapi/proxy/serialized_structs.h View 1 2 2 chunks +10 lines, -0 lines 0 comments Download
M ppapi/shared_impl/resource.h View 1 chunk +1 line, -0 lines 0 comments Download
M ppapi/thunk/BUILD.gn View 1 1 chunk +2 lines, -0 lines 0 comments Download
M ppapi/thunk/interfaces_ppb_public_dev_channel.h View 1 chunk +1 line, -0 lines 0 comments Download
M ppapi/thunk/ppb_audio_buffer_thunk.cc View 1 1 chunk +1 line, -1 line 0 comments Download
A ppapi/thunk/ppb_audio_encoder_api.h View 1 chunk +46 lines, -0 lines 0 comments Download
A ppapi/thunk/ppb_audio_encoder_thunk.cc View 1 1 chunk +153 lines, -0 lines 0 comments Download
M ppapi/thunk/resource_creation_api.h View 1 1 chunk +1 line, -0 lines 0 comments Download
M tools/metrics/histograms/histograms.xml View 1 2 1 chunk +1 line, -0 lines 0 comments Download

Powered by Google App Engine
This is Rietveld 408576698