diff options
author | phintuka <phintuka> | 2009-06-24 20:45:40 +0000 |
---|---|---|
committer | phintuka <phintuka> | 2009-06-24 20:45:40 +0000 |
commit | 7abeac13e461c3d491174b724303fe1c357e2228 (patch) | |
tree | 8bd100ca4034f70768fa9205afa359e00b6da8e8 | |
parent | 58e21187f9c5c55fc62c600a1727b8228eca0fa9 (diff) | |
download | xineliboutput-7abeac13e461c3d491174b724303fe1c357e2228.tar.gz xineliboutput-7abeac13e461c3d491174b724303fe1c357e2228.tar.bz2 |
Killed warning
-rw-r--r-- | device.c | 5 |
1 files changed, 2 insertions, 3 deletions
@@ -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 |