diff options
author | phintuka <phintuka> | 2009-05-03 20:10:35 +0000 |
---|---|---|
committer | phintuka <phintuka> | 2009-05-03 20:10:35 +0000 |
commit | eb72a8be8126855a77cb744325ec1fb20298491e (patch) | |
tree | b88d233279a194e4275372953a2643337753643b | |
parent | 6fef76106de6d04a8434165396a4a3d88476ee66 (diff) | |
download | xineliboutput-eb72a8be8126855a77cb744325ec1fb20298491e.tar.gz xineliboutput-eb72a8be8126855a77cb744325ec1fb20298491e.tar.bz2 |
Return 0 if input plugin queue was full
-rw-r--r-- | frontend_local.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/frontend_local.c b/frontend_local.c index 9d36acf5..ead73f46 100644 --- a/frontend_local.c +++ b/frontend_local.c @@ -4,7 +4,7 @@ * See the main source file 'xineliboutput.c' for copyright information and * how to reach the author. * - * $Id: frontend_local.c,v 1.37 2009-02-21 11:55:37 phintuka Exp $ + * $Id: frontend_local.c,v 1.38 2009-05-03 20:10:35 phintuka Exp $ * */ @@ -132,8 +132,8 @@ int cXinelibLocal::Play_PES(const uchar *data, int len) Lock(); m_StreamPos += done; Unlock(); - return done; } + return done; } } |