# HG changeset patch # User nenolod # Date 1173831464 25200 # Node ID 924b2300b23225ee53da8af29ceeb1b569c89290 # Parent 2452835bbfcf1cb1e2a22d6ad91b715fca2192de [svn] - add missing file, utils.h diff -r 2452835bbfcf -r 924b2300b232 ChangeLog --- a/ChangeLog Tue Mar 13 09:37:27 2007 -0700 +++ b/ChangeLog Tue Mar 13 17:17:44 2007 -0700 @@ -1,3 +1,13 @@ +2007-03-13 16:37:27 +0000 Yoshiki Yazawa + revision [1796] + - make "stop after current song" work. + - now cuesheet plugin handles the end of file nicely. + - improve reliability. + + trunk/src/cue/cuesheet.c | 119 +++++++++++++++++++++++++++++++++++++++++------ + 1 file changed, 105 insertions(+), 14 deletions(-) + + 2007-03-13 13:17:24 +0000 William Pitcock revision [1794] - if (result >= 0) return the result of ftell, otherwise return -1. diff -r 2452835bbfcf -r 924b2300b232 src/ffmpeg/libavcodec/utils.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/src/ffmpeg/libavcodec/utils.h Tue Mar 13 17:17:44 2007 -0700 @@ -0,0 +1,8 @@ +#ifndef _UTILS_H +#define _UTILS_H + +void *av_mallocz(unsigned int size); +void *__av_mallocz_static(void** location, unsigned int size); + +#endif +