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

Unified Diff: content/renderer/pepper/pepper_plugin_instance_impl.cc

Issue 26956002: Plumb support for audio sample formats. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix cast. Created 7 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « content/renderer/pepper/pepper_plugin_instance_impl.h ('k') | media/cdm/ppapi/cdm_adapter.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/renderer/pepper/pepper_plugin_instance_impl.cc
diff --git a/content/renderer/pepper/pepper_plugin_instance_impl.cc b/content/renderer/pepper/pepper_plugin_instance_impl.cc
index 3973bb8bb451f2e7207343d067106418ac07eebd..9282fcb1b67fc51f476ebc57a4e69509512de267 100644
--- a/content/renderer/pepper/pepper_plugin_instance_impl.cc
+++ b/content/renderer/pepper/pepper_plugin_instance_impl.cc
@@ -2276,8 +2276,8 @@ void PepperPluginInstanceImpl::DeliverFrame(
void PepperPluginInstanceImpl::DeliverSamples(
PP_Instance instance,
PP_Resource audio_frames,
- const PP_DecryptedBlockInfo* block_info) {
- content_decryptor_delegate_->DeliverSamples(audio_frames, block_info);
+ const PP_DecryptedSampleInfo* sample_info) {
+ content_decryptor_delegate_->DeliverSamples(audio_frames, sample_info);
}
void PepperPluginInstanceImpl::NumberOfFindResultsChanged(
« no previous file with comments | « content/renderer/pepper/pepper_plugin_instance_impl.h ('k') | media/cdm/ppapi/cdm_adapter.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698