spark: remove unused cPlayback() stuff

Origin commit data
------------------
Branch: master
Commit: 54cc8ddc80
Author: Stefan Seyfried <seife@tuxbox-git.slipkontur.de>
Date: 2012-02-15 (Wed, 15 Feb 2012)


------------------
No further description and justification available within origin commit message!

------------------
This commit was generated by Migit
This commit is contained in:
Stefan Seyfried
2012-02-15 00:43:09 +01:00
parent 6a1bc6c605
commit b5f2ae108e
2 changed files with 15 additions and 91 deletions

View File

@@ -13,41 +13,13 @@ extern ManagerHandler_t ManagerHandler;
#include "playback_libeplayer3.h"
static Context_t * player;
static Context_t *player;
extern cAudio *audioDecoder;
extern cVideo *videoDecoder;
static const char * FILENAME = "playback_libeplayer3.cpp";
//
void cPlayback::Attach(void)
{
printf("%s:%s\n", FILENAME, __FUNCTION__);
}
void cPlayback::Detach(void)
{
printf("%s:%s\n", FILENAME, __FUNCTION__);
}
bool cPlayback::SetAVDemuxChannel(bool On, bool Video, bool Audio)
{
printf("%s:%s\n", FILENAME, __FUNCTION__);
return 0;
}
void cPlayback::PlaybackNotify (int Event, void *pData, void *pTag)
{
printf("%s:%s\n", FILENAME, __FUNCTION__);
}
void cPlayback::DMNotify(int Event, void *pTsBuf, void *Tag)
{
printf("%s:%s\n", FILENAME, __FUNCTION__);
}
//Used by Fileplay
bool cPlayback::Open(playmode_t PlayMode)
{
@@ -342,12 +314,6 @@ bool cPlayback::GetPosition(int &position, int &duration)
return true;
}
bool cPlayback::GetOffset(off64_t &offset)
{
printf("%s:%s\n", FILENAME, __FUNCTION__);
return true;
}
bool cPlayback::SetPosition(int position, bool absolute)
{
printf("%s:%s %d\n", FILENAME, __FUNCTION__,position);
@@ -358,18 +324,6 @@ bool cPlayback::SetPosition(int position, bool absolute)
return true;
}
void * cPlayback::GetHandle(void)
{
printf("%s:%s\n", FILENAME, __FUNCTION__);
return NULL;
}
void * cPlayback::GetDmHandle(void)
{
printf("%s:%s\n", FILENAME, __FUNCTION__);
return NULL;
}
void cPlayback::FindAllPids(uint16_t *apids, unsigned short *ac3flags, uint16_t *numpida, std::string *language)
{
printf("%s:%s\n", FILENAME, __FUNCTION__);
@@ -421,6 +375,7 @@ cPlayback::~cPlayback()
printf("%s:%s\n", FILENAME, __FUNCTION__);
}
#if 0
bool cPlayback::IsPlaying(void) const
{
printf("%s:%s\n", FILENAME, __FUNCTION__);
@@ -437,15 +392,4 @@ bool cPlayback::IsPlaying(void) const
return playing;
}
bool cPlayback::IsEnabled(void) const
{
printf("%s:%s\n", FILENAME, __FUNCTION__);
return enabled;
}
int cPlayback::GetCurrPlaybackSpeed(void) const
{
printf("%s:%s\n", FILENAME, __FUNCTION__);
return nPlaybackSpeed;
}
#endif