aboutsummaryrefslogtreecommitdiffstats
path: root/src/inputs/Input.h
diff options
context:
space:
mode:
authorMatthias P. Braendli <matthias.braendli@mpb.li>2013-12-17 17:41:53 +0100
committerMatthias P. Braendli <matthias.braendli@mpb.li>2013-12-24 18:09:26 +0100
commitabec4838d2536812a4fe382334a1c9f500f7728b (patch)
tree42489c17d6fd8b8f5a1837a23ef18afa7256cded /src/inputs/Input.h
parentbf16c5a22de3d2bab7db290e8cd8b031df7b7eb8 (diff)
downloaddabmux-abec4838d2536812a4fe382334a1c9f500f7728b.tar.gz
dabmux-abec4838d2536812a4fe382334a1c9f500f7728b.tar.bz2
dabmux-abec4838d2536812a4fe382334a1c9f500f7728b.zip
updates in new file input
Diffstat (limited to 'src/inputs/Input.h')
-rw-r--r--src/inputs/Input.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/inputs/Input.h b/src/inputs/Input.h
index 943b498..42c2ef7 100644
--- a/src/inputs/Input.h
+++ b/src/inputs/Input.h
@@ -51,7 +51,6 @@ class InputBase {
virtual int Close();
virtual int Clean(); // TODO destructor
- virtual int Rewind();
};
/********************************************/
@@ -69,7 +68,6 @@ class InputTest : InputBase {
int SetBitrate(int bitrate);
int Close();
int Clean();
- int Rewind();
private:
unsigned long counter;
@@ -91,6 +89,7 @@ class InputFile : InputBase {
int Close();
int Rewind();
protected:
+ long ReadData(void* data, size_t size, unsigned int tries);
std::string filename;
int file; // the file descriptor
};
@@ -119,3 +118,5 @@ class InputDabplusFile : InputFile {
#endif
+#endif
+