changeset 849:924b2300b232 trunk

[svn] - add missing file, utils.h
author nenolod
date Tue, 13 Mar 2007 17:17:44 -0700
parents 2452835bbfcf
children e9d2de5aa638
files ChangeLog src/ffmpeg/libavcodec/utils.h
diffstat 2 files changed, 18 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- 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 <yaz@cc.rim.or.jp>
+  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 <nenolod@sacredspiral.co.uk>
   revision [1794]
   - if (result >= 0) return the result of ftell, otherwise return -1.
--- /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
+