summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorphintuka <phintuka>2009-06-24 20:45:40 +0000
committerphintuka <phintuka>2009-06-24 20:45:40 +0000
commit7abeac13e461c3d491174b724303fe1c357e2228 (patch)
tree8bd100ca4034f70768fa9205afa359e00b6da8e8
parent58e21187f9c5c55fc62c600a1727b8228eca0fa9 (diff)
downloadxineliboutput-7abeac13e461c3d491174b724303fe1c357e2228.tar.gz
xineliboutput-7abeac13e461c3d491174b724303fe1c357e2228.tar.bz2
Killed warning
-rw-r--r--device.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/device.c b/device.c
index 0b048b89..0d797f92 100644
--- a/device.c
+++ b/device.c
@@ -4,7 +4,7 @@
* See the main source file 'xineliboutput.c' for copyright information and
* how to reach the author.
*
- * $Id: device.c,v 1.83 2009-06-24 20:43:45 phintuka Exp $
+ * $Id: device.c,v 1.84 2009-06-24 20:45:40 phintuka Exp $
*
*/
@@ -1144,7 +1144,7 @@ int cXinelibDevice::TsBufferFlush(void)
{
if (m_TsBufSize) {
int n;
- if ((n = PlayAny(m_TsBuf, m_TsBufSize)) == m_TsBufSize) {
+ if ((n = PlayAny(m_TsBuf, m_TsBufSize)) == (int)m_TsBufSize) {
m_TsBufSize = 0;
return n;
}
@@ -1193,7 +1193,6 @@ int cXinelibDevice::PlayTsAudio(const uchar *Data, int Length)
int cXinelibDevice::PlayTsVideo(const uchar *Data, int Length)
{
-#warning PlayVideo: get_size, trickspeed stuff, ... !!!
return PlayTsAny(Data, Length);
}
#endif // VDRVERSNUM >= 10701