diff options
author | Michael Roitzsch <mroi@users.sourceforge.net> | 2003-12-06 18:11:53 +0000 |
---|---|---|
committer | Michael Roitzsch <mroi@users.sourceforge.net> | 2003-12-06 18:11:53 +0000 |
commit | e984f917fbbc37874f55c6aff3239831cb43d1ec (patch) | |
tree | 79c7832e99ed11496e9b7a175bf810019213bc68 /src/xine-engine/lrb.c | |
parent | 1a94ed9db8e28082d9286df2d6c59c7dffb69c1e (diff) | |
download | xine-lib-e984f917fbbc37874f55c6aff3239831cb43d1ec.tar.gz xine-lib-e984f917fbbc37874f55c6aff3239831cb43d1ec.tar.bz2 |
reading through Daniel's huge patch was quite tiresome, but it was not worthless:
* fixing some lprintf's
* fixing one printf -> xprintf
* adding patch to diff_to_ffmpeg_cvs
* small addition to xineutils.h (some gcc magic for future optimizations)
CVS patchset: 5853
CVS date: 2003/12/06 18:11:53
Diffstat (limited to 'src/xine-engine/lrb.c')
-rw-r--r-- | src/xine-engine/lrb.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/xine-engine/lrb.c b/src/xine-engine/lrb.c index c13a4dee1..3f7189fad 100644 --- a/src/xine-engine/lrb.c +++ b/src/xine-engine/lrb.c @@ -17,7 +17,7 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA * - * $Id: lrb.c,v 1.5 2003/12/05 15:55:04 f1rmb Exp $ + * $Id: lrb.c,v 1.6 2003/12/06 18:11:56 mroi Exp $ * */ @@ -79,7 +79,7 @@ void lrb_add (lrb_t *this, buf_element_t *buf) { this->cur_num_entries++; } - lprintf ("lrb: %d elements in buffer\n", this->cur_num_entries); + lprintf ("%d elements in buffer\n", this->cur_num_entries); } @@ -106,7 +106,7 @@ void lrb_feedback (lrb_t *this, fifo_buffer_t *fifo) { this->cur_num_entries--; - lprintf ("lrb: feedback\n"); + lprintf ("feedback\n"); } |