diff options
| author | ghost <andreas.monzner@multimedia-labs.de> | 2010-11-24 16:15:02 +0100 |
|---|---|---|
| committer | ghost <andreas.monzner@multimedia-labs.de> | 2010-11-24 16:15:02 +0100 |
| commit | 5c23ca59b7a3bb2d3a2bf3b7ffc78e1ffa170200 (patch) | |
| tree | 79462c6f5a741137e66772d69e6715b0d0a8709c /lib/base/filepush.cpp | |
| parent | 6a243eb89df7c0afd159a0820c897a8b5fcd8211 (diff) | |
| parent | 453fc1c6f82fa3b6ae983059eb55ad822860a5eb (diff) | |
| download | enigma2-5c23ca59b7a3bb2d3a2bf3b7ffc78e1ffa170200.tar.gz enigma2-5c23ca59b7a3bb2d3a2bf3b7ffc78e1ffa170200.zip | |
Merge branch 'bug_615_replace_rawfile' into m2ts_test
Diffstat (limited to 'lib/base/filepush.cpp')
| -rw-r--r-- | lib/base/filepush.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/base/filepush.cpp b/lib/base/filepush.cpp index af5a8bb6..e3e2a13a 100644 --- a/lib/base/filepush.cpp +++ b/lib/base/filepush.cpp @@ -227,7 +227,7 @@ void eFilePushThread::thread() void eFilePushThread::start(int fd, int fd_dest) { eRawFile *f = new eRawFile(); - ePtr<iDataSource> source = f; + ePtr<iTsSource> source = f; f->setfd(fd); start(source, fd_dest); } @@ -235,14 +235,14 @@ void eFilePushThread::start(int fd, int fd_dest) int eFilePushThread::start(const char *file, int fd_dest) { eRawFile *f = new eRawFile(); - ePtr<iDataSource> source = f; + ePtr<iTsSource> source = f; if (f->open(file) < 0) return -1; start(source, fd_dest); return 0; } -void eFilePushThread::start(ePtr<iDataSource> &source, int fd_dest) +void eFilePushThread::start(ePtr<iTsSource> &source, int fd_dest) { m_source = source; m_fd_dest = fd_dest; |
