OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:SimplePlayer
(Results
1 - 8
of
8
) sorted by null
/frameworks/av/cmds/stagefright/
SimplePlayer.h
32
struct
SimplePlayer
: public AHandler {
33
SimplePlayer
();
43
virtual ~
SimplePlayer
();
107
DISALLOW_EVIL_CONSTRUCTORS(
SimplePlayer
);
SimplePlayer.cpp
18
#define LOG_TAG "
SimplePlayer
"
21
#include "
SimplePlayer
.h"
38
SimplePlayer
::
SimplePlayer
()
44
SimplePlayer
::~
SimplePlayer
() {
62
status_t
SimplePlayer
::setDataSource(const char *path) {
69
status_t
SimplePlayer
::setSurface(const sp<IGraphicBufferProducer> &bufferProducer) {
83
status_t
SimplePlayer
::prepare() {
89
status_t
SimplePlayer
::start()
[
all
...]
Android.mk
134
SimplePlayer
.cpp \
codec.cpp
22
#include "
SimplePlayer
.h"
445
sp<
SimplePlayer
> player = new
SimplePlayer
;
/external/v4l2_codec2/cmds/
codec2.cpp
71
class
SimplePlayer
{
73
SimplePlayer
();
74
~
SimplePlayer
();
115
explicit Listener(
SimplePlayer
* thiz) : mThis(thiz) {}
134
SimplePlayer
* const mThis;
137
SimplePlayer
::
SimplePlayer
()
161
SimplePlayer
::~
SimplePlayer
() {
165
void
SimplePlayer
::onWorkDone(std::weak_ptr<C2Component> component
[
all
...]
/frameworks/av/media/codec2/components/cmds/
codec2.cpp
75
class
SimplePlayer
{
77
SimplePlayer
();
78
~
SimplePlayer
();
116
explicit Listener(
SimplePlayer
*thiz) : mThis(thiz) {}
135
SimplePlayer
* const mThis;
139
SimplePlayer
::
SimplePlayer
()
170
SimplePlayer
::~
SimplePlayer
() {
174
void
SimplePlayer
::onWorkDone
[
all
...]
/cts/tests/tests/media/src/android/media/cts/
DecodeAccuracyTest.java
142
private
SimplePlayer
player;
243
this.player = new
SimplePlayer
(getHelper().getContext());
244
final
SimplePlayer
.PlayerResult playerResult = player.decodeVideoFrames(
DecodeAccuracyTestBase.java
135
static class
SimplePlayer
{
143
private static final String TAG =
SimplePlayer
.class.getSimpleName();
156
public
SimplePlayer
(Context context) {
160
public
SimplePlayer
(Context context, String codecName) {
258
if (outputResult ==
SimplePlayer
.END_OF_STREAM) {
261
if (outputResult ==
SimplePlayer
.DEQUEUE_SUCCESS) {
524
* Stores the result from
SimplePlayer
.
[
all
...]
Completed in 692 milliseconds