1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
media / base / android / media_player_listener.h [blame]
// Copyright 2012 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef MEDIA_BASE_ANDROID_MEDIA_PLAYER_LISTENER_H_
#define MEDIA_BASE_ANDROID_MEDIA_PLAYER_LISTENER_H_
#include <jni.h>
#include "base/android/scoped_java_ref.h"
#include "base/memory/scoped_refptr.h"
#include "base/memory/weak_ptr.h"
namespace base {
class SingleThreadTaskRunner;
}
namespace media {
class MediaPlayerBridge;
// Acts as a thread proxy between java MediaPlayerListener object and
// MediaPlayerBridge so that callbacks are posted onto the UI thread.
class MediaPlayerListener {
public:
// Construct a native MediaPlayerListener object. Callbacks from the java
// side object will be forwarded to |media_player| by posting a task on the
// |task_runner|.
MediaPlayerListener(
const scoped_refptr<base::SingleThreadTaskRunner>& task_runner,
base::WeakPtr<MediaPlayerBridge> media_player);
MediaPlayerListener(const MediaPlayerListener&) = delete;
MediaPlayerListener& operator=(const MediaPlayerListener&) = delete;
virtual ~MediaPlayerListener();
// Called by the Java MediaPlayerListener and mirrored to corresponding
// callbacks.
void OnMediaError(JNIEnv* /* env */,
const base::android::JavaParamRef<jobject>& /* obj */,
jint error_type);
void OnVideoSizeChanged(JNIEnv* /* env */,
const base::android::JavaParamRef<jobject>& /* obj */,
jint width,
jint height);
void OnBufferingUpdate(JNIEnv* /* env */,
const base::android::JavaParamRef<jobject>& /* obj */,
jint percent);
void OnPlaybackComplete(
JNIEnv* /* env */,
const base::android::JavaParamRef<jobject>& /* obj */);
void OnMediaPrepared(JNIEnv* /* env */,
const base::android::JavaParamRef<jobject>& /* obj */);
// Create a Java MediaPlayerListener object and listens to all the media
// related events from system and |media_player|. If |media_player| is NULL,
// this class only listens to system events.
void CreateMediaPlayerListener(
const base::android::JavaRef<jobject>& media_player);
void ReleaseMediaPlayerListenerResources();
private:
// The message loop where |media_player_| lives.
scoped_refptr<base::SingleThreadTaskRunner> task_runner_;
// The MediaPlayerBridge object all the callbacks should be sent to.
base::WeakPtr<MediaPlayerBridge> media_player_;
base::android::ScopedJavaGlobalRef<jobject> j_media_player_listener_;
};
} // namespace media
#endif // MEDIA_BASE_ANDROID_MEDIA_PLAYER_LISTENER_H_