[release] version bump to 13.0 beta1
[vuplus_xbmc] / xbmc / cores / dvdplayer / DVDInputStreams / DVDInputStreamFFmpeg.cpp
1 /*
2  *      Copyright (C) 2005-2013 Team XBMC
3  *      http://xbmc.org
4  *
5  *  This Program is free software; you can redistribute it and/or modify
6  *  it under the terms of the GNU General Public License as published by
7  *  the Free Software Foundation; either version 2, or (at your option)
8  *  any later version.
9  *
10  *  This Program is distributed in the hope that it will be useful,
11  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
12  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13  *  GNU General Public License for more details.
14  *
15  *  You should have received a copy of the GNU General Public License
16  *  along with XBMC; see the file COPYING.  If not, see
17  *  <http://www.gnu.org/licenses/>.
18  *
19  */
20
21 #include "DVDInputStreamFFmpeg.h"
22
23 using namespace XFILE;
24
25 CDVDInputStreamFFmpeg::CDVDInputStreamFFmpeg()
26   : CDVDInputStream(DVDSTREAM_TYPE_FFMPEG)
27   , m_can_pause(false)
28   , m_can_seek(false)
29   , m_aborted(false)
30 {
31
32 }
33
34 CDVDInputStreamFFmpeg::~CDVDInputStreamFFmpeg()
35 {
36   Close();
37 }
38
39 bool CDVDInputStreamFFmpeg::IsEOF()
40 {
41   if(m_aborted)
42     return true;
43   else
44     return false;
45 }
46
47 bool CDVDInputStreamFFmpeg::Open(const char* strFile, const std::string& content)
48 {
49   if (!CDVDInputStream::Open(strFile, content))
50     return false;
51
52   m_can_pause = true;
53   m_can_seek  = true;
54   m_aborted   = false;
55
56   if(strnicmp(strFile, "udp://", 6) == 0
57   || strnicmp(strFile, "rtp://", 6) == 0)
58   {
59     m_can_pause = false;
60     m_can_seek  = false;
61   }
62
63   if(strnicmp(strFile, "tcp://", 6) == 0)
64   {
65     m_can_pause = true;
66     m_can_seek  = false;
67   }
68   return true;
69 }
70
71 // close file and reset everyting
72 void CDVDInputStreamFFmpeg::Close()
73 {
74   CDVDInputStream::Close();
75 }
76
77 int CDVDInputStreamFFmpeg::Read(uint8_t* buf, int buf_size)
78 {
79   return -1;
80 }
81
82 int64_t CDVDInputStreamFFmpeg::GetLength()
83 {
84   return 0;
85 }
86
87 int64_t CDVDInputStreamFFmpeg::Seek(int64_t offset, int whence)
88 {
89   return -1;
90 }
91