Searched defs:Visualizer (Results 1 - 3 of 3) sorted by relevance

/frameworks/av/media/libmedia/
H A DVisualizer.cpp20 #define LOG_TAG "Visualizer"
29 #include <media/Visualizer.h>
36 Visualizer::Visualizer (int32_t priority, function in class:android::Visualizer
51 Visualizer::~Visualizer()
55 status_t Visualizer::setEnabled(bool enabled)
64 ALOGE("Visualizer::enable() called from thread");
77 t->run("Visualizer");
91 status_t Visualizer
[all...]
/frameworks/av/include/media/
H A DVisualizer.h25 * The Visualizer class enables application to retrieve part of the currently playing audio for
46 * Before capturing data, the Visualizer must be enabled by calling the setEnabled() method.
47 * When data capture is not needed any more, the Visualizer should be disabled.
55 class Visualizer: public AudioEffect { class in namespace:android
68 Visualizer(int32_t priority = 0,
73 ~Visualizer();
140 CaptureThread(Visualizer& receiver, uint32_t captureRate, bool bCanCallJava = false);
143 friend class Visualizer;
147 Visualizer& mReceiver;
/frameworks/base/media/java/android/media/audiofx/
H A DVisualizer.java27 * The Visualizer class enables application to retrieve part of the currently playing audio for
53 * <p>Before capturing data, the Visualizer must be enabled by calling the
55 * When data capture is not needed any more, the Visualizer should be disabled.
56 * <p>It is good practice to call the {@link #release()} method when the Visualizer is not used
57 * anymore to free up native resources associated to the Visualizer instance.
58 * <p>Creating a Visualizer on the output mix (audio session 0) requires permission
62 public class Visualizer { class
69 private final static String TAG = "Visualizer-JAVA";
72 * State of a Visualizer object that was not successfully initialized upon creation
76 * State of a Visualizer objec
185 public Visualizer(int audioSession) method in class:Visualizer
[all...]

Completed in 91 milliseconds