📄 ffmpeg-svn-wince.patch
字号:
===================================================================RCS file: /cvsroot/ffmpeg/ffmpeg/libavcodec/svq1.c,vretrieving revision 1.58diff -u -r1.58 svq1.c--- ../ffmpeg/libavcodec/svq1.c 5 Sep 2005 10:26:10 -0000 1.58+++ ../ffmpeg/libavcodec/svq1.c 27 Nov 2005 16:54:38 -0000@@ -45,9 +45,6 @@ #include "mpegvideo.h" #include "bswap.h" -#undef NDEBUG-#include <assert.h>- extern const uint8_t mvtab[33][2]; static VLC svq1_block_type;Index: ../ffmpeg/libavcodec/vc9.c===================================================================RCS file: /cvsroot/ffmpeg/ffmpeg/libavcodec/vc9.c,vretrieving revision 1.24diff -u -r1.24 vc9.c--- ../ffmpeg/libavcodec/vc9.c 21 Sep 2005 23:09:16 -0000 1.24+++ ../ffmpeg/libavcodec/vc9.c 27 Nov 2005 16:54:38 -0000@@ -33,9 +33,6 @@ #include "mpegvideo.h" #include "vc9data.h" -#undef NDEBUG-#include <assert.h>- extern const uint32_t ff_table0_dc_lum[120][2], ff_table1_dc_lum[120][2]; extern const uint32_t ff_table0_dc_chroma[120][2], ff_table1_dc_chroma[120][2]; extern VLC ff_msmp4_dc_luma_vlc[2], ff_msmp4_dc_chroma_vlc[2];Index: ../ffmpeg/libavcodec/vcr1.c===================================================================RCS file: /cvsroot/ffmpeg/ffmpeg/libavcodec/vcr1.c,vretrieving revision 1.8diff -u -r1.8 vcr1.c--- ../ffmpeg/libavcodec/vcr1.c 24 Feb 2005 19:08:50 -0000 1.8+++ ../ffmpeg/libavcodec/vcr1.c 27 Nov 2005 16:54:38 -0000@@ -25,9 +25,6 @@ #include "avcodec.h" #include "mpegvideo.h" -//#undef NDEBUG-//#include <assert.h>- typedef struct VCR1Context{ AVCodecContext *avctx; AVFrame picture;Index: ../ffmpeg/libavcodec/vorbis.c===================================================================RCS file: /cvsroot/ffmpeg/ffmpeg/libavcodec/vorbis.c,vretrieving revision 1.11diff -u -r1.11 vorbis.c--- ../ffmpeg/libavcodec/vorbis.c 30 May 2005 22:02:00 -0000 1.11+++ ../ffmpeg/libavcodec/vorbis.c 27 Nov 2005 16:54:44 -0000@@ -38,9 +38,6 @@ #define AV_DEBUG(...) #endif -#undef NDEBUG-#include <assert.h>- /* Helper functions */ /**Index: ../ffmpeg/libavcodec/xvmcvideo.c===================================================================RCS file: /cvsroot/ffmpeg/ffmpeg/libavcodec/xvmcvideo.c,vretrieving revision 1.11diff -u -r1.11 xvmcvideo.c--- ../ffmpeg/libavcodec/xvmcvideo.c 24 Apr 2005 17:21:10 -0000 1.11+++ ../ffmpeg/libavcodec/xvmcvideo.c 27 Nov 2005 16:54:44 -0000@@ -24,9 +24,6 @@ #include "dsputil.h" #include "mpegvideo.h" -#undef NDEBUG-#include <assert.h>- #ifdef USE_FASTMEMCPY #include "fastmemcpy.h" #endifIndex: ../ffmpeg/libavformat/Makefile===================================================================RCS file: /cvsroot/ffmpeg/ffmpeg/libavformat/Makefile,vretrieving revision 1.102retrieving revision 1.111diff -u -r1.111 Makefile--- Makefile 26 Jan 2006 23:42:29 -0000 1.111+++ Makefile 28 Jan 2006 21:44:10 -0000@@ -12,8 +12,8 @@ PPOBJS= # demuxers-OBJS+=mpeg.o mpegts.o mpegtsenc.o ffm.o crc.o img.o img2.o raw.o rm.o \- avienc.o avidec.o wav.o mmf.o swf.o au.o gif.o mov.o mpjpeg.o dv.o \+OBJS+=mpeg.o mpegts.o ffm.o img.o img2.o raw.o rm.o \+ avidec.o wav.o mmf.o swf.o au.o gif.o mov.o mpjpeg.o dv.o \ yuv4mpeg.o 4xm.o flvdec.o psxstr.o idroq.o ipmovie.o \ nut.o wc3movie.o mp3.o westwood.o segafilm.o idcin.o flic.o \ sierravmd.o matroska.o sol.o electronicarts.o nsvdec.o asf.o \@@ -21,7 +21,7 @@ # muxers ifeq ($(CONFIG_MUXERS),yes)-OBJS+= flvenc.o movenc.o asf-enc.o adtsenc.o+OBJS+= mpegtsenc.o crc.o avienc.o flvenc.o movenc.o asf-enc.o adtsenc.o endif@@ -67,6 +67,10 @@ PPOBJS+= beosaudio.o endif+ifeq ($(CONFIG_FFSERVER),yes)+OBJS+=ffm.o+endif+ # protocols I/O OBJS+= avio.o aviobuf.oIndex: ../ffmpeg/libavformat/allformats.c===================================================================RCS file: /cvsroot/ffmpeg/ffmpeg/libavformat/allformats.c,vretrieving revision 1.53diff -u -r1.53 allformats.c--- allformats.c 21 Jan 2006 18:36:32 -0000 1.53+++ allformats.c 28 Jan 2006 21:57:13 -0000@@ -88,7 +88,10 @@ libogg_init(); #endif+#if defined(CONFIG_FFSERVER) ffm_init();+#endif+ #if defined(CONFIG_VIDEO4LINUX2) v4l2_init(); #endifIndex: ../ffmpeg/libavformat/asf-enc.c===================================================================RCS file: /cvsroot/ffmpeg/ffmpeg/libavformat/asf-enc.c,vretrieving revision 1.73diff -u -r1.73 asf-enc.c--- ../ffmpeg/libavformat/asf-enc.c 23 Sep 2005 00:25:41 -0000 1.73+++ ../ffmpeg/libavformat/asf-enc.c 27 Nov 2005 16:54:47 -0000@@ -20,9 +20,6 @@ #include "avi.h" #include "asf.h" -#undef NDEBUG-#include <assert.h>- #ifdef CONFIG_MUXERS Index: ../ffmpeg/libavformat/asf.c===================================================================RCS file: /cvsroot/ffmpeg/ffmpeg/libavformat/asf.c,vretrieving revision 1.86diff -u -r1.86 asf.c--- ../ffmpeg/libavformat/asf.c 26 Oct 2005 12:15:09 -0000 1.86+++ ../ffmpeg/libavformat/asf.c 27 Nov 2005 16:54:50 -0000@@ -21,9 +21,6 @@ #include "mpegaudio.h" #include "asf.h" -#undef NDEBUG-#include <assert.h>- #define FRAME_HEADER_SIZE 17 // Fix Me! FRAME_HEADER_SIZE may be different. Index: ../ffmpeg/libavformat/avidec.c===================================================================RCS file: /cvsroot/ffmpeg/ffmpeg/libavformat/avidec.c,vretrieving revision 1.76diff -u -r1.76 avidec.c--- ../ffmpeg/libavformat/avidec.c 6 Sep 2005 21:25:35 -0000 1.76+++ ../ffmpeg/libavformat/avidec.c 27 Nov 2005 16:54:50 -0000@@ -20,9 +20,6 @@ #include "avi.h" :q #include "dv.h" -#undef NDEBUG-#include <assert.h>- //#define DEBUG //#define DEBUG_SEEK Index: ../ffmpeg/libavformat/flvenc.c===================================================================RCS file: /cvsroot/ffmpeg/ffmpeg/libavformat/flvenc.c,vretrieving revision 1.19diff -u -r1.19 flvenc.c--- ../ffmpeg/libavformat/flvenc.c 12 Nov 2005 20:01:23 -0000 1.19+++ ../ffmpeg/libavformat/flvenc.c 27 Nov 2005 16:54:50 -0000@@ -18,9 +18,6 @@ */ #include "avformat.h" -#undef NDEBUG-#include <assert.h>- typedef struct FLVContext { int hasAudio; int hasVideo;Index: ../ffmpeg/libavformat/movenc.c===================================================================RCS file: /cvsroot/ffmpeg/ffmpeg/libavformat/movenc.c,vretrieving revision 1.44diff -u -r1.44 movenc.c--- ../ffmpeg/libavformat/movenc.c 6 Sep 2005 21:25:35 -0000 1.44+++ ../ffmpeg/libavformat/movenc.c 27 Nov 2005 16:54:56 -0000@@ -21,9 +21,6 @@ #include "avi.h" #include "avio.h" -#undef NDEBUG-#include <assert.h>- #define MOV_INDEX_CLUSTER_SIZE 16384 #define globalTimescale 1000 Index: ../ffmpeg/libavformat/mpeg.c===================================================================RCS file: /cvsroot/ffmpeg/ffmpeg/libavformat/mpeg.c,vretrieving revision 1.89diff -u -r1.89 mpeg.c--- ../ffmpeg/libavformat/mpeg.c 23 Sep 2005 00:25:41 -0000 1.89+++ ../ffmpeg/libavformat/mpeg.c 27 Nov 2005 16:54:58 -0000@@ -22,9 +22,6 @@ #define MAX_PAYLOAD_SIZE 4096 //#define DEBUG_SEEK -#undef NDEBUG-#include <assert.h>- typedef struct PacketDesc { int64_t pts; int64_t dts;Index: ../ffmpeg/libavformat/nut.c===================================================================RCS file: /cvsroot/ffmpeg/ffmpeg/libavformat/nut.c,vretrieving revision 1.56diff -u -r1.56 nut.c--- ../ffmpeg/libavformat/nut.c 23 Sep 2005 00:25:41 -0000 1.56+++ ../ffmpeg/libavformat/nut.c 27 Nov 2005 16:55:00 -0000@@ -35,9 +35,6 @@ #include "mpegaudio.h" #include "avi.h" -#undef NDEBUG-#include <assert.h>- //#define TRACE //from /dev/randomIndex: ../ffmpeg/libavformat/ogg.c===================================================================RCS file: /cvsroot/ffmpeg/ffmpeg/libavformat/ogg.c,vretrieving revision 1.26diff -u -r1.26 ogg.c--- ../ffmpeg/libavformat/ogg.c 23 Sep 2005 00:25:41 -0000 1.26+++ ../ffmpeg/libavformat/ogg.c 27 Nov 2005 16:55:00 -0000@@ -12,9 +12,6 @@ #include "avformat.h" -#undef NDEBUG-#include <assert.h>- #define DECODER_BUFFER_SIZE 4096 Index: ../ffmpeg/libavformat/swf.c===================================================================RCS file: /cvsroot/ffmpeg/ffmpeg/libavformat/swf.c,vretrieving revision 1.29diff -u -r1.29 swf.c--- ../ffmpeg/libavformat/swf.c 23 Sep 2005 00:25:41 -0000 1.29+++ ../ffmpeg/libavformat/swf.c 27 Nov 2005 16:55:00 -0000@@ -54,9 +54,6 @@ #define VIDEO_ID 0 #define SHAPE_ID 1 -#undef NDEBUG-#include <assert.h>- typedef struct { offset_t duration_pos;Index: ../ffmpeg/libavformat/utils.c===================================================================RCS file: /cvsroot/ffmpeg/ffmpeg/libavformat/utils.c,vretrieving revision 1.168diff -u -r1.168 utils.c--- ../ffmpeg/libavformat/utils.c 4 Nov 2005 23:50:11 -0000 1.168+++ ../ffmpeg/libavformat/utils.c 27 Nov 2005 16:55:02 -0000@@ -18,9 +18,6 @@ */ #include "avformat.h" -#undef NDEBUG-#include <assert.h>- /** * @file libavformat/utils.c * Various utility functions for using ffmpeg library.
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -