|
[ffdshow-cvs] SF.net SVN: ffdshow: [2498] trunk/src/codecs/libmpeg2/include
From: <milan_cutka@us...> - 2006-04-04 13:37
|
Revision: 2498 Author: milan_cutka Date: 2006-04-04 06:36:50 -0700 (Tue, 04 Apr 2006) ViewCVS: http://svn.sourceforge.net/ffdshow/?rev=2498&view=rev Log Message: ----------- updated libmpeg2 to 0.5.0 Modified Paths: -------------- trunk/src/codecs/libmpeg2/include/config.h trunk/src/codecs/libmpeg2/libmpeg2/idct.c Modified: trunk/src/codecs/libmpeg2/include/config.h =================================================================== --- trunk/src/codecs/libmpeg2/include/config.h 2006-04-04 13:19:42 UTC (rev 2497) +++ trunk/src/codecs/libmpeg2/include/config.h 2006-04-04 13:36:50 UTC (rev 2498) @@ -126,7 +126,7 @@ /* #undef TIME_WITH_SYS_TIME */ /* Version number of package */ -#define VERSION "0.4.1-cvs" +#define VERSION "0.5.0" /* Define to 1 if your processor stores words with the most significant byte first (like Motorola and SPARC, unlike Intel and VAX). */ Modified: trunk/src/codecs/libmpeg2/libmpeg2/idct.c =================================================================== --- trunk/src/codecs/libmpeg2/libmpeg2/idct.c 2006-04-04 13:19:42 UTC (rev 2497) +++ trunk/src/codecs/libmpeg2/libmpeg2/idct.c 2006-04-04 13:36:50 UTC (rev 2498) @@ -67,7 +67,7 @@ } while (0) #endif -static void inline idct_row (int16_t * const block) +static inline void idct_row (int16_t * const block) { int d0, d1, d2, d3; int a0, a1, a2, a3, b0, b1, b2, b3; @@ -120,7 +120,7 @@ block[7] = (a0 - b0) >> 12; } -static void inline idct_col (int16_t * const block) +static inline void idct_col (int16_t * const block) { int d0, d1, d2, d3; int a0, a1, a2, a3, b0, b1, b2, b3; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
| Thread | Author | Date |
|---|---|---|
| [ffdshow-cvs] SF.net SVN: ffdshow: [2498] trunk/src/codecs/libmpeg2/include | <milan_cutka@us...> |