diff options
author | Daniel Caujolle-Bert <f1rmb@users.sourceforge.net> | 2001-11-17 14:26:36 +0000 |
---|---|---|
committer | Daniel Caujolle-Bert <f1rmb@users.sourceforge.net> | 2001-11-17 14:26:36 +0000 |
commit | bacac99192b65faed1a0047a8be5b95abf15873d (patch) | |
tree | c1ca0949f9cb222c8ef6305d8150ca4d9e85b4a7 /src/xine-engine/lrb.c | |
parent | 75a1024fb27dbff9c4bfc948392910af94797683 (diff) | |
download | xine-lib-bacac99192b65faed1a0047a8be5b95abf15873d.tar.gz xine-lib-bacac99192b65faed1a0047a8be5b95abf15873d.tar.bz2 |
Add 'xine_' prefix to all of xine-utils functions (what about cpu
acceleration?). Merge xine-utils header files to a new one "xineutils.h".
Update xine-lib C/headers to reflect those changes.
dxr3 headers are no more installed ine $includdir, but $includdir/xine.
CVS patchset: 1054
CVS date: 2001/11/17 14:26:36
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 dd71ef298..a87252c9b 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.1 2001/10/18 18:50:53 guenter Exp $ + * $Id: lrb.c,v 1.2 2001/11/17 14:26:39 f1rmb Exp $ * */ @@ -27,14 +27,14 @@ #include <assert.h> #include "lrb.h" -#include "utils.h" +#include "xineutils.h" lrb_t *lrb_new (int max_num_entries, fifo_buffer_t *fifo) { lrb_t *this; - this = xmalloc (sizeof (lrb_t)); + this = xine_xmalloc (sizeof (lrb_t)); this->max_num_entries = max_num_entries; this->cur_num_entries = 0; |