[Ffmpeg-cvslog] CVS: ffmpeg/libavcodec avcodec.h,1.409,1.410
Michael Niedermayer CVS
michael
Tue Jul 19 16:25:26 CEST 2005
Update of /cvsroot/ffmpeg/ffmpeg/libavcodec
In directory mail:/var2/tmp/cvs-serv27828
Modified Files:
avcodec.h
Log Message:
portable IEEE float/double read/write functions
Index: avcodec.h
===================================================================
RCS file: /cvsroot/ffmpeg/ffmpeg/libavcodec/avcodec.h,v
retrieving revision 1.409
retrieving revision 1.410
diff -u -d -r1.409 -r1.410
--- avcodec.h 17 Jul 2005 00:28:11 -0000 1.409
+++ avcodec.h 19 Jul 2005 14:25:23 -0000 1.410
@@ -17,7 +17,7 @@
#define FFMPEG_VERSION_INT 0x000409
#define FFMPEG_VERSION "CVS"
-#define LIBAVCODEC_BUILD 4758
+#define LIBAVCODEC_BUILD 4759
#define LIBAVCODEC_VERSION_INT FFMPEG_VERSION_INT
@@ -2332,6 +2332,12 @@
*/
int64_t av_rescale_q(int64_t a, AVRational bq, AVRational cq);
+double av_int2dbl(int64_t v);
+float av_int2flt(int32_t v);
+int64_t av_dbl2int(double d);
+int32_t av_flt2int(float d);
+
+
/* frame parsing */
typedef struct AVCodecParserContext {
void *priv_data;
More information about the ffmpeg-cvslog
mailing list