fixup! [MM] Webaudio with CAPI port.
authorKarthick M <karthick.m1@samsung.com>
Wed, 30 Mar 2016 12:37:37 +0000 (18:07 +0530)
committerYoungsoo Choi <kenshin.choi@samsung.com>
Tue, 10 Jul 2018 07:55:23 +0000 (07:55 +0000)
Chromium upstream removed audio_decoder_android.h [1], which is however
needed in audio_decoder_efl.h. This CL addresses build issue due to the
missing header file.

[1] https://codereview.chromium.org/1565623002

Bug: http://suprem.sec.samsung.net/jira/browse/TWF-610

Reviewed by: k2.nagaraju, msu.koo, sm.venugopal, sns.park

Change-Id: I916e7589f1dccec08b0590a9ff12b70c7c209dae
Signed-off-by: Karthick M <karthick.m1@samsung.com>
tizen_src/chromium_impl/content/renderer/media/efl/audio_decoder_efl.h

index e51a5bc..c21305f 100644 (file)
@@ -5,6 +5,18 @@
 #ifndef CONTENT_RENDERER_MEDIA_EFL_AUDIO_DECODER_EFL_H_
 #define CONTENT_RENDERER_MEDIA_EFL_AUDIO_DECODER_EFL_H_
 
-#include "content/renderer/media/android/audio_decoder_android.h"
+#include "content/child/thread_safe_sender.h"
 
+namespace blink {
+class WebAudioBus;
+}
+
+namespace content {
+
+bool DecodeAudioFileData(blink::WebAudioBus* destination_bus,
+                         const char* data,
+                         size_t data_size,
+                         scoped_refptr<ThreadSafeSender> sender);
+
+}  // namespace content
 #endif  // CONTENT_RENDERER_MEDIA_EFL_AUDIO_DECODER_EFL_H_