diff options
Diffstat (limited to 'src/inputs/InputMpegFile.cpp')
-rw-r--r-- | src/inputs/InputMpegFile.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/inputs/InputMpegFile.cpp b/src/inputs/InputMpegFile.cpp index 480a251..f61c410 100644 --- a/src/inputs/InputMpegFile.cpp +++ b/src/inputs/InputMpegFile.cpp @@ -53,11 +53,6 @@ extern TcpLog etiLog; #define MPEG_ORIGINAL -5 #define MPEG_EMPHASIS -6 -const char* InputMpegFile::GetName() -{ - return m_name.c_str(); -} - int checkDabMpegFrame(void* data) { mpegHeader* header = (mpegHeader*)data; @@ -184,6 +179,11 @@ MUTE_SUBCHANNEL: return result; } +int InputMpegFile::ReadFrame(void* buffer, int size) +{ + return ReadFrameFromBuffer(buffer, size); +} + #endif #endif |