-
Notifications
You must be signed in to change notification settings - Fork 200
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(mediaplayer): add dummy externalPlayer impl for jni and apple
Signed-off-by: pingkai <[email protected]>
- Loading branch information
Showing
5 changed files
with
51 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
// | ||
// Created by moqi on 2020/7/20. | ||
// | ||
|
||
#include "AppleAVPlayer.h" | ||
using namespace Cicada; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
// | ||
// Created by moqi on 2020/7/20. | ||
// | ||
|
||
#ifndef CICADAMEDIA_APPLE_AVPLAYER_H | ||
#define CICADAMEDIA_APPLE_AVPLAYER_H | ||
|
||
#include "../CicadaPlayerPrototype.h" | ||
namespace Cicada { | ||
class AppleAVPlayer : public ICicadaPlayer, private CicadaPlayerPrototype { | ||
}; | ||
}// namespace Cicada | ||
|
||
|
||
#endif//CICADAMEDIA_APPLE_AVPLAYER_H |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
// | ||
// Created by moqi on 2020/7/20. | ||
// | ||
|
||
#include "JNIPlayer.h" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
// | ||
// Created by moqi on 2020/7/20. | ||
// | ||
|
||
#ifndef CICADAMEDIA_JNIPLAYER_H | ||
#define CICADAMEDIA_JNIPLAYER_H | ||
|
||
#include "../CicadaPlayerPrototype.h" | ||
class JNIPlayer : public ICicadaPlayer, private CicadaPlayerPrototype { | ||
}; | ||
|
||
|
||
#endif//CICADAMEDIA_JNIPLAYER_H |