Changeset 163bf2de4d1fd2f02b82fac5179c1c2f93d268d5

Show
Ignore:
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
  • extras/contrib/bootstrap

    r6034bfd r163bf2d  
    117117            echo "HAVE_WINCE = 1" >> config.mak 
    118118            echo "PKG_CONFIG_PATH = \$(PREFIX)/lib/pkgconfig" >> config.mak 
     119            EXTRA_CPPFLAGS=" -D_WIN32_WCE" 
    119120        ;; 
    120121    *) 
  • extras/contrib/src/Makefile

    rc645b38 r163bf2d  
    8787ifdef HAVE_WIN32 
    8888HOSTCONF+= --without-pic --disable-shared --enable-msw --with-included-opencdk --with-included-libtasn1 --disable-depedency-tracking 
    89 FFMPEGCONF+= --enable-mingw32 --enable-memalign-hack --cpu=x86 
     89FFMPEGCONF+= --enable-mingw32 --enable-memalign-hack --cpu=x86 --disable-debug 
    9090endif 
    9191 
    9292ifdef HAVE_WINCE 
    9393HOSTCONF+= --without-pic --disable-shared 
    94 FFMPEGCONF+= --enable-mingwce --cpu=armv4l --disable-debug --disable-encoders --disable-muxers --disable-mpegaudio-hp --disable-codec=snow --disable-protocols 
     94FFMPEGCONF+= --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 
    9595else 
    9696FFMPEGCONF+= --enable-mp3lame --enable-faac 
     
    146146   ifdef HAVE_WINCE 
    147147 
    148    all: .dvbpsi .zlib .ffmpeg .ogg .tremor 
     148   all: .dvbpsi .zlib .ffmpeg .ogg .tremor .faad 
    149149   else 
    150150 
     
    720720faad2: faad2-$(FAAD2_VERSION).tar.bz2 
    721721    $(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 
    725724.faad: faad2 
    726725    (cd $< && $(HOSTCC) ./configure $(HOSTCONF) --prefix=$(PREFIX) CFLAGS="-O3" && make -C libfaad && make -C libfaad install) 
     
    847846ifdef HAVE_WIN32 
    848847    patch -p 0 < Patches/ffmpeg-cvs-win32.patch 
     848    patch -p 1 < Patches/ffmpeg-cvs-wince.patch 
    849849endif 
    850850ifdef HAVE_WINCE 
  • extras/contrib/src/Patches/faad2.patch

    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 @@ 
    64  
    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) \ 
     12Index: libfaad/common.h 
     13=================================================================== 
     14RCS file: /cvsroot/faac/faad2/libfaad/common.h,v 
     15retrieving revision 1.66 
     16diff -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; 
  • extras/contrib/src/Patches/ffmpeg-cvs-wince.patch

    r32f841d r163bf2d  
    55diff -u -r1.215 configure 
    66--- ../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 
    88@@ -26,6 +26,7 @@ 
    99 echo "  --enable-xvid            enable XviD support via xvidcore [default=no]" 
     
    110110diff -u -r1.15 4xm.c 
    111111--- ../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 
    113113@@ -26,9 +26,6 @@ 
    114114 #include "dsputil.h" 
     
    127127diff -u -r1.18 asv1.c 
    128128--- ../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 
    130130@@ -26,9 +26,6 @@ 
    131131 #include "dsputil.h" 
     
    144144diff -u -r1.11 cabac.h 
    145145--- ../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 
    147147@@ -24,9 +24,6 @@ 
    148148  */ 
     
    161161diff -u -r1.65 dv.c 
    162162--- ../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 
    164164@@ -34,9 +34,6 @@ 
    165165 #include "simple_idct.h" 
     
    178178diff -u -r1.1 dvdsubenc.c 
    179179--- ../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 
    181181@@ -18,9 +18,6 @@ 
    182182  */ 
     
    195195diff -u -r1.19 flac.c 
    196196--- ../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 
    198198@@ -37,9 +37,6 @@ 
    199199 #include "bitstream.h" 
     
    212212diff -u -r1.291 h263.c 
    213213--- ../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 
    215215@@ -39,9 +39,6 @@ 
    216216 #include "h263data.h" 
     
    229229diff -u -r1.166 h264.c 
    230230--- ../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 
    232232@@ -33,9 +33,6 @@ 
    233233  
     
    246246diff -u -r1.15 mdec.c 
    247247--- ../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 
    249249@@ -29,9 +29,6 @@ 
    250250 #include "dsputil.h" 
     
    263263diff -u -r1.114 mjpeg.c 
    264264--- ../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 
    266266@@ -28,9 +28,6 @@ 
    267267  * MJPEG encoder and decoder. 
     
    280280diff -u -r1.110 motion_est.c 
    281281--- ../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 
    283283@@ -33,9 +33,6 @@ 
    284284 #include "dsputil.h" 
     
    297297diff -u -r1.243 mpeg12.c 
    298298--- ../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 
    300300@@ -30,9 +30,6 @@ 
    301301  
     
    314314diff -u -r1.489 mpegvideo.c 
    315315--- ../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 
    317317@@ -35,9 +35,6 @@ 
    318318 #include "fastmemcpy.h" 
     
    331331diff -u -r1.24 oggvorbis.c 
    332332--- ../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 
    334334@@ -8,9 +8,6 @@ 
    335335  
     
    348348diff -u -r1.2 qdm2.c 
    349349--- ../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 
    351351@@ -46,9 +46,6 @@ 
    352352  
     
    365365diff -u -r1.49 ratecontrol.c 
    366366--- ../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 
    368368@@ -27,9 +27,6 @@ 
    369369 #include "dsputil.h" 
     
    376376 #define M_E 2.718281828 
    377377 #endif 
     378Index: ../ffmpeg/libavcodec/shorten.c 
     379=================================================================== 
     380RCS file: /cvsroot/ffmpeg/ffmpeg/libavcodec/shorten.c,v 
     381retrieving revision 1.1 
     382diff -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++) 
    378402Index: ../ffmpeg/libavcodec/snow.c 
    379403=================================================================== 
     
    382406diff -u -r1.63 snow.c 
    383407--- ../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 
    385409@@ -25,9 +25,6 @@ 
    386410  
     
    399423diff -u -r1.58 svq1.c 
    400424--- ../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 
    402426@@ -45,9 +45,6 @@ 
    403427 #include "mpegvideo.h" 
     
    416440diff -u -r1.24 vc9.c 
    417441--- ../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 
    419443@@ -33,9 +33,6 @@ 
    420444 #include "mpegvideo.h" 
     
    433457diff -u -r1.8 vcr1.c 
    434458--- ../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 
    436460@@ -25,9 +25,6 @@ 
    437461 #include "avcodec.h" 
     
    450474diff -u -r1.11 vorbis.c 
    451475--- ../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 
    453477@@ -38,9 +38,6 @@ 
    454478 #define AV_DEBUG(...) 
     
    467491diff -u -r1.11 xvmcvideo.c 
    468492--- ../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 
    470494@@ -24,9 +24,6 @@ 
    471495 #include "dsputil.h" 
     
    484508diff -u -r1.102 Makefile 
    485509--- ../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 
    487511@@ -11,13 +11,20 @@ 
    488512 OBJS= utils.o cutils.o os_support.o allformats.o 
     
    550574diff -u -r1.50 allformats.c 
    551575--- ../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 
    553577@@ -88,7 +88,10 @@ 
    554578     libogg_init(); 
     
    582606diff -u -r1.73 asf-enc.c 
    583607--- ../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 
    585609@@ -20,9 +20,6 @@ 
    586610 #include "avi.h" 
     
    599623diff -u -r1.86 asf.c 
    600624--- ../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 
    602626@@ -21,9 +21,6 @@ 
    603627 #include "mpegaudio.h" 
     
    616640diff -u -r1.76 avidec.c 
    617641--- ../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 
    619643@@ -20,9 +20,6 @@ 
    620644 #include "avi.h" 
     
    633657diff -u -r1.19 flvenc.c 
    634658--- ../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 
    636660@@ -18,9 +18,6 @@ 
    637661  */ 
     
    650674diff -u -r1.44 movenc.c 
    651675--- ../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 
    653677@@ -21,9 +21,6 @@ 
    654678 #include "avi.h" 
     
    667691diff -u -r1.89 mpeg.c 
    668692--- ../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 
    670694@@ -22,9 +22,6 @@ 
    671695 #define MAX_PAYLOAD_SIZE 4096 
     
    684708diff -u -r1.56 nut.c 
    685709--- ../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 
    687711@@ -35,9 +35,6 @@ 
    688712 #include "mpegaudio.h" 
     
    701725diff -u -r1.26 ogg.c 
    702726--- ../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 
    704728@@ -12,9 +12,6 @@ 
    705729  
     
    718742diff -u -r1.4 os_support.c 
    719743--- ../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 
    721745@@ -18,7 +18,8 @@ 
    722746  */ 
     
    759783diff -u -r1.29 swf.c 
    760784--- ../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 
    762786@@ -54,9 +54,6 @@ 
    763787 #define VIDEO_ID 0 
     
    776800diff -u -r1.168 utils.c 
    777801--- ../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 
    779803@@ -18,9 +18,6 @@ 
    780804  */ 
     
    809833diff -u -r1.153 common.h 
    810834--- ../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 
    812836@@ -172,6 +172,11 @@ 
    813837  
     
    822846  
    823847 /* 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