Changeset 163bf2de4d1fd2f02b82fac5179c1c2f93d268d5
- Timestamp:
- 27/11/05 18:51:56
(3 years ago)
- Author:
- Gildas Bazin <gbazin@videolan.org>
- git-committer:
- Gildas Bazin <gbazin@videolan.org> 1133113916 +0000
- git-parent:
[405e081154a7575e13155e6096d250266ba6581b]
- git-author:
- Gildas Bazin <gbazin@videolan.org> 1133113916 +0000
- Message:
* extras/contrib: wince ffmpeg fixes + faad support.
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r6034bfd |
r163bf2d |
|
| 117 | 117 | echo "HAVE_WINCE = 1" >> config.mak |
|---|
| 118 | 118 | echo "PKG_CONFIG_PATH = \$(PREFIX)/lib/pkgconfig" >> config.mak |
|---|
| | 119 | EXTRA_CPPFLAGS=" -D_WIN32_WCE" |
|---|
| 119 | 120 | ;; |
|---|
| 120 | 121 | *) |
|---|
| rc645b38 |
r163bf2d |
|
| 87 | 87 | ifdef HAVE_WIN32 |
|---|
| 88 | 88 | HOSTCONF+= --without-pic --disable-shared --enable-msw --with-included-opencdk --with-included-libtasn1 --disable-depedency-tracking |
|---|
| 89 | | FFMPEGCONF+= --enable-mingw32 --enable-memalign-hack --cpu=x86 |
|---|
| | 89 | FFMPEGCONF+= --enable-mingw32 --enable-memalign-hack --cpu=x86 --disable-debug |
|---|
| 90 | 90 | endif |
|---|
| 91 | 91 | |
|---|
| 92 | 92 | ifdef HAVE_WINCE |
|---|
| 93 | 93 | HOSTCONF+= --without-pic --disable-shared |
|---|
| 94 | | FFMPEGCONF+= --enable-mingwce --cpu=armv4l --disable-debug --disable-encoders --disable-muxers --disable-mpegaudio-hp --disable-codec=snow --disable-protocols |
|---|
| | 94 | FFMPEGCONF+= --enable-mingwce --cpu=armv4l --disable-debug --disable-encoders --disable-muxers --disable-mpegaudio-hp --disable-codec=snow --disable-codec=vc9 --disable-codec=wmv3 --disable-codec=vorbis --disable-codec=vorbis --disable-codec=dvdsub --disable-codec=dvbsub --disable-protocols |
|---|
| 95 | 95 | else |
|---|
| 96 | 96 | FFMPEGCONF+= --enable-mp3lame --enable-faac |
|---|
| … | … | |
| 146 | 146 | ifdef HAVE_WINCE |
|---|
| 147 | 147 | |
|---|
| 148 | | all: .dvbpsi .zlib .ffmpeg .ogg .tremor |
|---|
| | 148 | all: .dvbpsi .zlib .ffmpeg .ogg .tremor .faad |
|---|
| 149 | 149 | else |
|---|
| 150 | 150 | |
|---|
| … | … | |
| 720 | 720 | faad2: faad2-$(FAAD2_VERSION).tar.bz2 |
|---|
| 721 | 721 | $(EXTRACT_BZ2) |
|---|
| 722 | | ifdef HAVE_WIN32 |
|---|
| 723 | | (cd faad2;patch -p 0 < ../Patches/faad2-20050513-win32.patch && ./bootstrap) |
|---|
| 724 | | endif |
|---|
| | 722 | (cd faad2; patch -p 0 < ../Patches/faad2.patch && ./bootstrap) |
|---|
| | 723 | |
|---|
| 725 | 724 | .faad: faad2 |
|---|
| 726 | 725 | (cd $< && $(HOSTCC) ./configure $(HOSTCONF) --prefix=$(PREFIX) CFLAGS="-O3" && make -C libfaad && make -C libfaad install) |
|---|
| … | … | |
| 847 | 846 | ifdef HAVE_WIN32 |
|---|
| 848 | 847 | patch -p 0 < Patches/ffmpeg-cvs-win32.patch |
|---|
| | 848 | patch -p 1 < Patches/ffmpeg-cvs-wince.patch |
|---|
| 849 | 849 | endif |
|---|
| 850 | 850 | ifdef HAVE_WINCE |
|---|
| rc37f123 |
r163bf2d |
|
| 1 | | diff -ru faad2.old/common/mp4v2/mp4.h faad2/common/mp4v2/mp4.h |
|---|
| 2 | | --- faad2.old/common/mp4v2/mp4.h Sun Feb 22 14:04:55 2004 |
|---|
| 3 | | +++ faad2/common/mp4v2/mp4.h Sun Feb 22 14:18:41 2004 |
|---|
| 4 | | @@ -27,6 +27,8 @@ |
|---|
| 5 | | #include <mpeg4ip.h> |
|---|
| | 1 | --- libfaad/bits.h 2005-11-22 23:41:28.000000000 +0000 |
|---|
| | 2 | +++ libfaad/bits.h 2005-11-22 23:40:15.000000000 +0000 |
|---|
| | 3 | @@ -58,7 +58,7 @@ |
|---|
| 6 | 4 | |
|---|
| 7 | | #include <math.h> /* to define float HUGE_VAL and/or NAN */ |
|---|
| 8 | | +/* Meuuh power */ |
|---|
| 9 | | +#undef NAN |
|---|
| 10 | | #ifndef NAN |
|---|
| 11 | | #define NAN HUGE_VAL |
|---|
| 12 | | #endif |
|---|
| | 5 | #if defined (_WIN32) && !defined(_WIN32_WCE) && !defined(__MINGW32__) |
|---|
| | 6 | #define BSWAP(a) __asm mov eax,a __asm bswap eax __asm mov a, eax |
|---|
| | 7 | -#elif defined(LINUX) || defined(DJGPP) || defined(__MINGW32__) |
|---|
| | 8 | +#elif defined(LINUX) || defined(DJGPP) || (defined(__MINGW32__) && !defined(__MINGWCE__)) |
|---|
| | 9 | #define BSWAP(a) __asm__ ( "bswapl %0\n" : "=r" (a) : "0" (a) ) |
|---|
| | 10 | #else |
|---|
| | 11 | #define BSWAP(a) \ |
|---|
| | 12 | Index: libfaad/common.h |
|---|
| | 13 | =================================================================== |
|---|
| | 14 | RCS file: /cvsroot/faac/faad2/libfaad/common.h,v |
|---|
| | 15 | retrieving revision 1.66 |
|---|
| | 16 | diff -u -r1.66 common.h |
|---|
| | 17 | --- libfaad/common.h 1 Feb 2005 13:23:35 -0000 1.66 |
|---|
| | 18 | +++ libfaad/common.h 22 Nov 2005 22:46:50 -0000 |
|---|
| | 19 | @@ -162,7 +162,7 @@ |
|---|
| | 20 | |
|---|
| | 21 | /* END COMPILE TIME DEFINITIONS */ |
|---|
| | 22 | |
|---|
| | 23 | -#if defined(_WIN32) && !defined(__MINGW32__) |
|---|
| | 24 | +#if defined(_WIN32) && !defined(__MINGW32__) && !defined(__MINGWCE__) |
|---|
| | 25 | |
|---|
| | 26 | #include <stdlib.h> |
|---|
| | 27 | |
|---|
| | 28 | @@ -309,8 +309,11 @@ |
|---|
| | 29 | } |
|---|
| | 30 | |
|---|
| | 31 | |
|---|
| | 32 | - #if defined(_WIN32) && !defined(__MINGW32__) |
|---|
| | 33 | + #if defined(__MINGWCE__) |
|---|
| | 34 | + #elif defined(__MINGW32__) |
|---|
| | 35 | #define HAS_LRINTF |
|---|
| | 36 | + #elif defined(_WIN32) |
|---|
| | 37 | + #define HAS_LRINTF |
|---|
| | 38 | static INLINE int lrintf(float f) |
|---|
| | 39 | { |
|---|
| | 40 | int i; |
|---|
| r32f841d |
r163bf2d |
|
| 5 | 5 | diff -u -r1.215 configure |
|---|
| 6 | 6 | --- ../ffmpeg/configure 22 Oct 2005 19:17:39 -0000 1.215 |
|---|
| 7 | | +++ ../ffmpeg/configure 21 Nov 2005 23:01:53 -0000 |
|---|
| | 7 | +++ ../ffmpeg/configure 27 Nov 2005 16:54:09 -0000 |
|---|
| 8 | 8 | @@ -26,6 +26,7 @@ |
|---|
| 9 | 9 | echo " --enable-xvid enable XviD support via xvidcore [default=no]" |
|---|
| … | … | |
| 110 | 110 | diff -u -r1.15 4xm.c |
|---|
| 111 | 111 | --- ../ffmpeg/libavcodec/4xm.c 24 Apr 2005 17:21:07 -0000 1.15 |
|---|
| 112 | | +++ ../ffmpeg/libavcodec/4xm.c 21 Nov 2005 23:01:53 -0000 |
|---|
| | 112 | +++ ../ffmpeg/libavcodec/4xm.c 27 Nov 2005 16:54:10 -0000 |
|---|
| 113 | 113 | @@ -26,9 +26,6 @@ |
|---|
| 114 | 114 | #include "dsputil.h" |
|---|
| … | … | |
| 127 | 127 | diff -u -r1.18 asv1.c |
|---|
| 128 | 128 | --- ../ffmpeg/libavcodec/asv1.c 7 May 2005 19:24:07 -0000 1.18 |
|---|
| 129 | | +++ ../ffmpeg/libavcodec/asv1.c 21 Nov 2005 23:01:53 -0000 |
|---|
| | 129 | +++ ../ffmpeg/libavcodec/asv1.c 27 Nov 2005 16:54:10 -0000 |
|---|
| 130 | 130 | @@ -26,9 +26,6 @@ |
|---|
| 131 | 131 | #include "dsputil.h" |
|---|
| … | … | |
| 144 | 144 | diff -u -r1.11 cabac.h |
|---|
| 145 | 145 | --- ../ffmpeg/libavcodec/cabac.h 29 May 2005 18:18:13 -0000 1.11 |
|---|
| 146 | | +++ ../ffmpeg/libavcodec/cabac.h 21 Nov 2005 23:01:54 -0000 |
|---|
| | 146 | +++ ../ffmpeg/libavcodec/cabac.h 27 Nov 2005 16:54:10 -0000 |
|---|
| 147 | 147 | @@ -24,9 +24,6 @@ |
|---|
| 148 | 148 | */ |
|---|
| … | … | |
| 161 | 161 | diff -u -r1.65 dv.c |
|---|
| 162 | 162 | --- ../ffmpeg/libavcodec/dv.c 2 Sep 2005 08:30:26 -0000 1.65 |
|---|
| 163 | | +++ ../ffmpeg/libavcodec/dv.c 21 Nov 2005 23:01:54 -0000 |
|---|
| | 163 | +++ ../ffmpeg/libavcodec/dv.c 27 Nov 2005 16:54:11 -0000 |
|---|
| 164 | 164 | @@ -34,9 +34,6 @@ |
|---|
| 165 | 165 | #include "simple_idct.h" |
|---|
| … | … | |
| 178 | 178 | diff -u -r1.1 dvdsubenc.c |
|---|
| 179 | 179 | --- ../ffmpeg/libavcodec/dvdsubenc.c 14 Nov 2005 22:17:29 -0000 1.1 |
|---|
| 180 | | +++ ../ffmpeg/libavcodec/dvdsubenc.c 21 Nov 2005 23:01:54 -0000 |
|---|
| | 180 | +++ ../ffmpeg/libavcodec/dvdsubenc.c 27 Nov 2005 16:54:11 -0000 |
|---|
| 181 | 181 | @@ -18,9 +18,6 @@ |
|---|
| 182 | 182 | */ |
|---|
| … | … | |
| 195 | 195 | diff -u -r1.19 flac.c |
|---|
| 196 | 196 | --- ../ffmpeg/libavcodec/flac.c 5 Sep 2005 09:28:46 -0000 1.19 |
|---|
| 197 | | +++ ../ffmpeg/libavcodec/flac.c 21 Nov 2005 23:01:54 -0000 |
|---|
| | 197 | +++ ../ffmpeg/libavcodec/flac.c 27 Nov 2005 16:54:12 -0000 |
|---|
| 198 | 198 | @@ -37,9 +37,6 @@ |
|---|
| 199 | 199 | #include "bitstream.h" |
|---|
| … | … | |
| 212 | 212 | diff -u -r1.291 h263.c |
|---|
| 213 | 213 | --- ../ffmpeg/libavcodec/h263.c 19 Sep 2005 12:03:51 -0000 1.291 |
|---|
| 214 | | +++ ../ffmpeg/libavcodec/h263.c 21 Nov 2005 23:01:56 -0000 |
|---|
| | 214 | +++ ../ffmpeg/libavcodec/h263.c 27 Nov 2005 16:54:15 -0000 |
|---|
| 215 | 215 | @@ -39,9 +39,6 @@ |
|---|
| 216 | 216 | #include "h263data.h" |
|---|
| … | … | |
| 229 | 229 | diff -u -r1.166 h264.c |
|---|
| 230 | 230 | --- ../ffmpeg/libavcodec/h264.c 10 Nov 2005 04:40:49 -0000 1.166 |
|---|
| 231 | | +++ ../ffmpeg/libavcodec/h264.c 21 Nov 2005 23:01:59 -0000 |
|---|
| | 231 | +++ ../ffmpeg/libavcodec/h264.c 27 Nov 2005 16:54:20 -0000 |
|---|
| 232 | 232 | @@ -33,9 +33,6 @@ |
|---|
| 233 | 233 | |
|---|
| … | … | |
| 246 | 246 | diff -u -r1.15 mdec.c |
|---|
| 247 | 247 | --- ../ffmpeg/libavcodec/mdec.c 13 Aug 2005 21:34:24 -0000 1.15 |
|---|
| 248 | | +++ ../ffmpeg/libavcodec/mdec.c 21 Nov 2005 23:01:59 -0000 |
|---|
| | 248 | +++ ../ffmpeg/libavcodec/mdec.c 27 Nov 2005 16:54:21 -0000 |
|---|
| 249 | 249 | @@ -29,9 +29,6 @@ |
|---|
| 250 | 250 | #include "dsputil.h" |
|---|
| … | … | |
| 263 | 263 | diff -u -r1.114 mjpeg.c |
|---|
| 264 | 264 | --- ../ffmpeg/libavcodec/mjpeg.c 18 Sep 2005 21:21:01 -0000 1.114 |
|---|
| 265 | | +++ ../ffmpeg/libavcodec/mjpeg.c 21 Nov 2005 23:02:00 -0000 |
|---|
| | 265 | +++ ../ffmpeg/libavcodec/mjpeg.c 27 Nov 2005 16:54:22 -0000 |
|---|
| 266 | 266 | @@ -28,9 +28,6 @@ |
|---|
| 267 | 267 | * MJPEG encoder and decoder. |
|---|
| … | … | |
| 280 | 280 | diff -u -r1.110 motion_est.c |
|---|
| 281 | 281 | --- ../ffmpeg/libavcodec/motion_est.c 26 Aug 2005 19:05:44 -0000 1.110 |
|---|
| 282 | | +++ ../ffmpeg/libavcodec/motion_est.c 21 Nov 2005 23:02:01 -0000 |
|---|
| | 282 | +++ ../ffmpeg/libavcodec/motion_est.c 27 Nov 2005 16:54:23 -0000 |
|---|
| 283 | 283 | @@ -33,9 +33,6 @@ |
|---|
| 284 | 284 | #include "dsputil.h" |
|---|
| … | … | |
| 297 | 297 | diff -u -r1.243 mpeg12.c |
|---|
| 298 | 298 | --- ../ffmpeg/libavcodec/mpeg12.c 20 Nov 2005 23:09:05 -0000 1.243 |
|---|
| 299 | | +++ ../ffmpeg/libavcodec/mpeg12.c 21 Nov 2005 23:02:02 -0000 |
|---|
| | 299 | +++ ../ffmpeg/libavcodec/mpeg12.c 27 Nov 2005 16:54:25 -0000 |
|---|
| 300 | 300 | @@ -30,9 +30,6 @@ |
|---|
| 301 | 301 | |
|---|
| … | … | |
| 314 | 314 | diff -u -r1.489 mpegvideo.c |
|---|
| 315 | 315 | --- ../ffmpeg/libavcodec/mpegvideo.c 5 Nov 2005 00:16:03 -0000 1.489 |
|---|
| 316 | | +++ ../ffmpeg/libavcodec/mpegvideo.c 21 Nov 2005 23:02:04 -0000 |
|---|
| | 316 | +++ ../ffmpeg/libavcodec/mpegvideo.c 27 Nov 2005 16:54:29 -0000 |
|---|
| 317 | 317 | @@ -35,9 +35,6 @@ |
|---|
| 318 | 318 | #include "fastmemcpy.h" |
|---|
| … | … | |
| 331 | 331 | diff -u -r1.24 oggvorbis.c |
|---|
| 332 | 332 | --- ../ffmpeg/libavcodec/oggvorbis.c 21 Sep 2005 23:09:16 -0000 1.24 |
|---|
| 333 | | +++ ../ffmpeg/libavcodec/oggvorbis.c 21 Nov 2005 23:02:04 -0000 |
|---|
| | 333 | +++ ../ffmpeg/libavcodec/oggvorbis.c 27 Nov 2005 16:54:29 -0000 |
|---|
| 334 | 334 | @@ -8,9 +8,6 @@ |
|---|
| 335 | 335 | |
|---|
| … | … | |
| 348 | 348 | diff -u -r1.2 qdm2.c |
|---|
| 349 | 349 | --- ../ffmpeg/libavcodec/qdm2.c 19 Oct 2005 22:27:34 -0000 1.2 |
|---|
| 350 | | +++ ../ffmpeg/libavcodec/qdm2.c 21 Nov 2005 23:02:05 -0000 |
|---|
| | 350 | +++ ../ffmpeg/libavcodec/qdm2.c 27 Nov 2005 16:54:31 -0000 |
|---|
| 351 | 351 | @@ -46,9 +46,6 @@ |
|---|
| 352 | 352 | |
|---|
| … | … | |
| 365 | 365 | diff -u -r1.49 ratecontrol.c |
|---|
| 366 | 366 | --- ../ffmpeg/libavcodec/ratecontrol.c 30 Apr 2005 21:43:57 -0000 1.49 |
|---|
| 367 | | +++ ../ffmpeg/libavcodec/ratecontrol.c 21 Nov 2005 23:02:05 -0000 |
|---|
| | 367 | +++ ../ffmpeg/libavcodec/ratecontrol.c 27 Nov 2005 16:54:32 -0000 |
|---|
| 368 | 368 | @@ -27,9 +27,6 @@ |
|---|
| 369 | 369 | #include "dsputil.h" |
|---|
| … | … | |
| 376 | 376 | #define M_E 2.718281828 |
|---|
| 377 | 377 | #endif |
|---|
| | 378 | Index: ../ffmpeg/libavcodec/shorten.c |
|---|
| | 379 | =================================================================== |
|---|
| | 380 | RCS file: /cvsroot/ffmpeg/ffmpeg/libavcodec/shorten.c,v |
|---|
| | 381 | retrieving revision 1.1 |
|---|
| | 382 | diff -u -r1.1 shorten.c |
|---|
| | 383 | --- ../ffmpeg/libavcodec/shorten.c 26 Feb 2005 03:36:03 -0000 1.1 |
|---|
| | 384 | +++ ../ffmpeg/libavcodec/shorten.c 27 Nov 2005 16:54:32 -0000 |
|---|
| | 385 | @@ -24,7 +24,6 @@ |
|---|
| | 386 | * |
|---|
| | 387 | */ |
|---|
| | 388 | |
|---|
| | 389 | -#define DEBUG |
|---|
| | 390 | #include <limits.h> |
|---|
| | 391 | #include "avcodec.h" |
|---|
| | 392 | #include "bitstream.h" |
|---|
| | 393 | @@ -153,7 +152,7 @@ |
|---|
| | 394 | break; |
|---|
| | 395 | default: |
|---|
| | 396 | av_log(s->avctx, AV_LOG_ERROR, "unknown audio type"); |
|---|
| | 397 | - abort(); |
|---|
| | 398 | + av_abort(); |
|---|
| | 399 | } |
|---|
| | 400 | |
|---|
| | 401 | for (chan = 0; chan < s->channels; chan++) |
|---|
| 378 | 402 | Index: ../ffmpeg/libavcodec/snow.c |
|---|
| 379 | 403 | =================================================================== |
|---|
| … | … | |
| 382 | 406 | diff -u -r1.63 snow.c |
|---|
| 383 | 407 | --- ../ffmpeg/libavcodec/snow.c 21 Sep 2005 23:09:16 -0000 1.63 |
|---|
| 384 | | +++ ../ffmpeg/libavcodec/snow.c 21 Nov 2005 23:02:06 -0000 |
|---|
| | 408 | +++ ../ffmpeg/libavcodec/snow.c 27 Nov 2005 16:54:38 -0000 |
|---|
| 385 | 409 | @@ -25,9 +25,6 @@ |
|---|
| 386 | 410 | |
|---|
| … | … | |
| 399 | 423 | diff -u -r1.58 svq1.c |
|---|
| 400 | 424 | --- ../ffmpeg/libavcodec/svq1.c 5 Sep 2005 10:26:10 -0000 1.58 |
|---|
| 401 | | +++ ../ffmpeg/libavcodec/svq1.c 21 Nov 2005 23:02:07 -0000 |
|---|
| | 425 | +++ ../ffmpeg/libavcodec/svq1.c 27 Nov 2005 16:54:38 -0000 |
|---|
| 402 | 426 | @@ -45,9 +45,6 @@ |
|---|
| 403 | 427 | #include "mpegvideo.h" |
|---|
| … | … | |
| 416 | 440 | diff -u -r1.24 vc9.c |
|---|
| 417 | 441 | --- ../ffmpeg/libavcodec/vc9.c 21 Sep 2005 23:09:16 -0000 1.24 |
|---|
| 418 | | +++ ../ffmpeg/libavcodec/vc9.c 21 Nov 2005 23:02:08 -0000 |
|---|
| | 442 | +++ ../ffmpeg/libavcodec/vc9.c 27 Nov 2005 16:54:38 -0000 |
|---|
| 419 | 443 | @@ -33,9 +33,6 @@ |
|---|
| 420 | 444 | #include "mpegvideo.h" |
|---|
| … | … | |
| 433 | 457 | diff -u -r1.8 vcr1.c |
|---|
| 434 | 458 | --- ../ffmpeg/libavcodec/vcr1.c 24 Feb 2005 19:08:50 -0000 1.8 |
|---|
| 435 | | +++ ../ffmpeg/libavcodec/vcr1.c 21 Nov 2005 23:02:08 -0000 |
|---|
| | 459 | +++ ../ffmpeg/libavcodec/vcr1.c 27 Nov 2005 16:54:38 -0000 |
|---|
| 436 | 460 | @@ -25,9 +25,6 @@ |
|---|
| 437 | 461 | #include "avcodec.h" |
|---|
| … | … | |
| 450 | 474 | diff -u -r1.11 vorbis.c |
|---|
| 451 | 475 | --- ../ffmpeg/libavcodec/vorbis.c 30 May 2005 22:02:00 -0000 1.11 |
|---|
| 452 | | +++ ../ffmpeg/libavcodec/vorbis.c 21 Nov 2005 23:02:08 -0000 |
|---|
| | 476 | +++ ../ffmpeg/libavcodec/vorbis.c 27 Nov 2005 16:54:44 -0000 |
|---|
| 453 | 477 | @@ -38,9 +38,6 @@ |
|---|
| 454 | 478 | #define AV_DEBUG(...) |
|---|
| … | … | |
| 467 | 491 | diff -u -r1.11 xvmcvideo.c |
|---|
| 468 | 492 | --- ../ffmpeg/libavcodec/xvmcvideo.c 24 Apr 2005 17:21:10 -0000 1.11 |
|---|
| 469 | | +++ ../ffmpeg/libavcodec/xvmcvideo.c 21 Nov 2005 23:02:08 -0000 |
|---|
| | 493 | +++ ../ffmpeg/libavcodec/xvmcvideo.c 27 Nov 2005 16:54:44 -0000 |
|---|
| 470 | 494 | @@ -24,9 +24,6 @@ |
|---|
| 471 | 495 | #include "dsputil.h" |
|---|
| … | … | |
| 484 | 508 | diff -u -r1.102 Makefile |
|---|
| 485 | 509 | --- ../ffmpeg/libavformat/Makefile 7 Nov 2005 01:32:29 -0000 1.102 |
|---|
| 486 | | +++ ../ffmpeg/libavformat/Makefile 21 Nov 2005 23:02:09 -0000 |
|---|
| | 510 | +++ ../ffmpeg/libavformat/Makefile 27 Nov 2005 16:54:47 -0000 |
|---|
| 487 | 511 | @@ -11,13 +11,20 @@ |
|---|
| 488 | 512 | OBJS= utils.o cutils.o os_support.o allformats.o |
|---|
| … | … | |
| 550 | 574 | diff -u -r1.50 allformats.c |
|---|
| 551 | 575 | --- ../ffmpeg/libavformat/allformats.c 23 Sep 2005 00:25:41 -0000 1.50 |
|---|
| 552 | | +++ ../ffmpeg/libavformat/allformats.c 21 Nov 2005 23:02:09 -0000 |
|---|
| | 576 | +++ ../ffmpeg/libavformat/allformats.c 27 Nov 2005 16:54:47 -0000 |
|---|
| 553 | 577 | @@ -88,7 +88,10 @@ |
|---|
| 554 | 578 | libogg_init(); |
|---|
| … | … | |
| 582 | 606 | diff -u -r1.73 asf-enc.c |
|---|
| 583 | 607 | --- ../ffmpeg/libavformat/asf-enc.c 23 Sep 2005 00:25:41 -0000 1.73 |
|---|
| 584 | | +++ ../ffmpeg/libavformat/asf-enc.c 21 Nov 2005 23:02:09 -0000 |
|---|
| | 608 | +++ ../ffmpeg/libavformat/asf-enc.c 27 Nov 2005 16:54:47 -0000 |
|---|
| 585 | 609 | @@ -20,9 +20,6 @@ |
|---|
| 586 | 610 | #include "avi.h" |
|---|
| … | … | |
| 599 | 623 | diff -u -r1.86 asf.c |
|---|
| 600 | 624 | --- ../ffmpeg/libavformat/asf.c 26 Oct 2005 12:15:09 -0000 1.86 |
|---|
| 601 | | +++ ../ffmpeg/libavformat/asf.c 21 Nov 2005 23:02:09 -0000 |
|---|
| | 625 | +++ ../ffmpeg/libavformat/asf.c 27 Nov 2005 16:54:50 -0000 |
|---|
| 602 | 626 | @@ -21,9 +21,6 @@ |
|---|
| 603 | 627 | #include "mpegaudio.h" |
|---|
| … | … | |
| 616 | 640 | diff -u -r1.76 avidec.c |
|---|
| 617 | 641 | --- ../ffmpeg/libavformat/avidec.c 6 Sep 2005 21:25:35 -0000 1.76 |
|---|
| 618 | | +++ ../ffmpeg/libavformat/avidec.c 21 Nov 2005 23:02:09 -0000 |
|---|
| | 642 | +++ ../ffmpeg/libavformat/avidec.c 27 Nov 2005 16:54:50 -0000 |
|---|
| 619 | 643 | @@ -20,9 +20,6 @@ |
|---|
| 620 | 644 | #include "avi.h" |
|---|
| … | … | |
| 633 | 657 | diff -u -r1.19 flvenc.c |
|---|
| 634 | 658 | --- ../ffmpeg/libavformat/flvenc.c 12 Nov 2005 20:01:23 -0000 1.19 |
|---|
| 635 | | +++ ../ffmpeg/libavformat/flvenc.c 21 Nov 2005 23:02:09 -0000 |
|---|
| | 659 | +++ ../ffmpeg/libavformat/flvenc.c 27 Nov 2005 16:54:50 -0000 |
|---|
| 636 | 660 | @@ -18,9 +18,6 @@ |
|---|
| 637 | 661 | */ |
|---|
| … | … | |
| 650 | 674 | diff -u -r1.44 movenc.c |
|---|
| 651 | 675 | --- ../ffmpeg/libavformat/movenc.c 6 Sep 2005 21:25:35 -0000 1.44 |
|---|
| 652 | | +++ ../ffmpeg/libavformat/movenc.c 21 Nov 2005 23:02:10 -0000 |
|---|
| | 676 | +++ ../ffmpeg/libavformat/movenc.c 27 Nov 2005 16:54:56 -0000 |
|---|
| 653 | 677 | @@ -21,9 +21,6 @@ |
|---|
| 654 | 678 | #include "avi.h" |
|---|
| … | … | |
| 667 | 691 | diff -u -r1.89 mpeg.c |
|---|
| 668 | 692 | --- ../ffmpeg/libavformat/mpeg.c 23 Sep 2005 00:25:41 -0000 1.89 |
|---|
| 669 | | +++ ../ffmpeg/libavformat/mpeg.c 21 Nov 2005 23:02:11 -0000 |
|---|
| | 693 | +++ ../ffmpeg/libavformat/mpeg.c 27 Nov 2005 16:54:58 -0000 |
|---|
| 670 | 694 | @@ -22,9 +22,6 @@ |
|---|
| 671 | 695 | #define MAX_PAYLOAD_SIZE 4096 |
|---|
| … | … | |
| 684 | 708 | diff -u -r1.56 nut.c |
|---|
| 685 | 709 | --- ../ffmpeg/libavformat/nut.c 23 Sep 2005 00:25:41 -0000 1.56 |
|---|
| 686 | | +++ ../ffmpeg/libavformat/nut.c 21 Nov 2005 23:02:11 -0000 |
|---|
| | 710 | +++ ../ffmpeg/libavformat/nut.c 27 Nov 2005 16:55:00 -0000 |
|---|
| 687 | 711 | @@ -35,9 +35,6 @@ |
|---|
| 688 | 712 | #include "mpegaudio.h" |
|---|
| … | … | |
| 701 | 725 | diff -u -r1.26 ogg.c |
|---|
| 702 | 726 | --- ../ffmpeg/libavformat/ogg.c 23 Sep 2005 00:25:41 -0000 1.26 |
|---|
| 703 | | +++ ../ffmpeg/libavformat/ogg.c 21 Nov 2005 23:02:11 -0000 |
|---|
| | 727 | +++ ../ffmpeg/libavformat/ogg.c 27 Nov 2005 16:55:00 -0000 |
|---|
| 704 | 728 | @@ -12,9 +12,6 @@ |
|---|
| 705 | 729 | |
|---|
| … | … | |
| 718 | 742 | diff -u -r1.4 os_support.c |
|---|
| 719 | 743 | --- ../ffmpeg/libavformat/os_support.c 9 Nov 2004 17:27:33 -0000 1.4 |
|---|
| 720 | | +++ ../ffmpeg/libavformat/os_support.c 21 Nov 2005 23:02:11 -0000 |
|---|
| | 744 | +++ ../ffmpeg/libavformat/os_support.c 27 Nov 2005 16:55:00 -0000 |
|---|
| 721 | 745 | @@ -18,7 +18,8 @@ |
|---|
| 722 | 746 | */ |
|---|
| … | … | |
| 759 | 783 | diff -u -r1.29 swf.c |
|---|
| 760 | 784 | --- ../ffmpeg/libavformat/swf.c 23 Sep 2005 00:25:41 -0000 1.29 |
|---|
| 761 | | +++ ../ffmpeg/libavformat/swf.c 21 Nov 2005 23:02:12 -0000 |
|---|
| | 785 | +++ ../ffmpeg/libavformat/swf.c 27 Nov 2005 16:55:00 -0000 |
|---|
| 762 | 786 | @@ -54,9 +54,6 @@ |
|---|
| 763 | 787 | #define VIDEO_ID 0 |
|---|
| … | … | |
| 776 | 800 | diff -u -r1.168 utils.c |
|---|
| 777 | 801 | --- ../ffmpeg/libavformat/utils.c 4 Nov 2005 23:50:11 -0000 1.168 |
|---|
| 778 | | +++ ../ffmpeg/libavformat/utils.c 21 Nov 2005 23:02:13 -0000 |
|---|
| | 802 | +++ ../ffmpeg/libavformat/utils.c 27 Nov 2005 16:55:02 -0000 |
|---|
| 779 | 803 | @@ -18,9 +18,6 @@ |
|---|
| 780 | 804 | */ |
|---|
| … | … | |
| 809 | 833 | diff -u -r1.153 common.h |
|---|
| 810 | 834 | --- ../ffmpeg/libavutil/common.h 19 Sep 2005 23:26:47 -0000 1.153 |
|---|
| 811 | | +++ ../ffmpeg/libavutil/common.h 21 Nov 2005 23:02:13 -0000 |
|---|
| | 835 | +++ ../ffmpeg/libavutil/common.h 27 Nov 2005 16:55:02 -0000 |
|---|
| 812 | 836 | @@ -172,6 +172,11 @@ |
|---|
| 813 | 837 | |
|---|
| … | … | |
| 822 | 846 | |
|---|
| 823 | 847 | /* CONFIG_WIN32 end */ |
|---|
| | 848 | @@ -253,6 +258,9 @@ |
|---|
| | 849 | # endif |
|---|
| | 850 | |
|---|
| | 851 | # endif /* !CONFIG_WIN32 */ |
|---|
| | 852 | +# ifdef CONFIG_WINCE |
|---|
| | 853 | +# define abort() |
|---|
| | 854 | +# endif |
|---|
| | 855 | |
|---|
| | 856 | # define av_abort() do { av_log(NULL, AV_LOG_ERROR, "Abort at %s:%d\n", __FILE__, __LINE__); abort(); } while (0) |
|---|
| | 857 | |
|---|