Ticket #42149: patch-fix-ticket-42149.diff
File patch-fix-ticket-42149.diff, 7.9 KB (added by gthb (Gunnlaugur Thor Briem), 10 years ago) |
---|
-
common/video/iso-mpeg4/include/bitstrm.hpp
45 45 #ifndef _BITSTREAM_HPP_ 46 46 #define _BITSTREAM_HPP_ 47 47 #include "inbits.h" 48 #include <istream .h>49 #include <ostream .h>48 #include <istream> 49 #include <ostream> 50 50 51 51 class CIOBitStream 52 52 { -
common/video/iso-mpeg4/include/entropy.hpp
39 39 #ifndef __ENTROPY_HPP_ 40 40 #define __ENTROPY_HPP_ 41 41 42 #include <istream.h> 43 #include <ostream.h> 42 #include <istream> 43 #include <ostream> 44 45 using namespace std; 44 46 45 47 class CInBitStream; 46 48 class COutBitStream; -
common/video/iso-mpeg4/include/vopseenc.hpp
79 79 80 80 #include "tm5rc.hpp" 81 81 82 using namespace std; 83 82 84 class CFwdBlockDCT; 83 85 84 86 // HHI Schueuer: scan selection classes to support the sadct -
common/video/iso-mpeg4/src/app_encoder_encoder.cpp
99 99 100 100 #include "mode.hpp" 101 101 #include "tm5rc.hpp" 102 #include "fstream .h"102 #include "fstream" 103 103 #include "sesenc.hpp" 104 104 // #include "encoder/tps_sesenc.hpp" // deleted by Sharp (98/2/12) 105 105 -
common/video/iso-mpeg4/src/sys_encoder_errenc.cpp
54 54 #include <stdio.h> 55 55 #include <math.h> 56 56 #include <stdlib.h> 57 #include <iostream .h>57 #include <iostream> 58 58 59 59 #include "typeapi.h" 60 60 #include "codehead.h" -
common/video/iso-mpeg4/src/sys_encoder_gmc_enc_util.cpp
46 46 #include <stdio.h> 47 47 #include <math.h> 48 48 #include <stdlib.h> 49 #include <iostream .h>49 #include <iostream> 50 50 #include <assert.h> 51 51 52 52 #include "typeapi.h" -
common/video/iso-mpeg4/src/sys_encoder_mbenc.cpp
75 75 76 76 #include <stdlib.h> 77 77 #include <math.h> 78 #include <iostream .h>78 #include <iostream> 79 79 #include "typeapi.h" 80 80 #include "codehead.h" 81 81 #include "mode.hpp" -
common/video/iso-mpeg4/src/sys_encoder_mbinterlace.cpp
60 60 #include <stdio.h> 61 61 #include <math.h> 62 62 #include <stdlib.h> 63 #include <iostream .h>63 #include <iostream> 64 64 65 65 #include "typeapi.h" 66 66 #include "codehead.h" -
common/video/iso-mpeg4/src/sys_encoder_mcenc.cpp
53 53 #include <stdio.h> 54 54 #include <math.h> 55 55 #include <stdlib.h> 56 #include <iostream .h>56 #include <iostream> 57 57 58 58 #include "typeapi.h" 59 59 #include "codehead.h" -
common/video/iso-mpeg4/src/sys_encoder_motest.cpp
67 67 #include <stdio.h> 68 68 #include <math.h> 69 69 #include <stdlib.h> 70 #include <iostream .h>70 #include <iostream> 71 71 72 72 #include "typeapi.h" 73 73 #include "codehead.h" -
common/video/iso-mpeg4/src/sys_encoder_mvenc.cpp
44 44 45 45 **************************************************************************/ 46 46 #include <stdio.h> 47 #include <fstream .h>47 #include <fstream> 48 48 #include <math.h> 49 49 #include <stdlib.h> 50 50 -
common/video/iso-mpeg4/src/sys_encoder_padenc.cpp
43 43 #include <stdio.h> 44 44 #include <math.h> 45 45 #include <stdlib.h> 46 #include <iostream .h>46 #include <iostream> 47 47 48 48 #include "typeapi.h" 49 49 #include "codehead.h" -
common/video/iso-mpeg4/src/sys_encoder_sesenc.cpp
83 83 #include "stdlib.h" 84 84 #include "stdio.h" 85 85 #include "math.h" 86 #include "fstream .h"87 #include "ostream .h"86 #include "fstream" 87 #include "ostream" 88 88 89 89 #include "typeapi.h" 90 90 #include "codehead.h" -
common/video/iso-mpeg4/src/sys_encoder_sptenc.cpp
40 40 *************************************************************************/ 41 41 42 42 #include <stdio.h> 43 #include <iostream .h>43 #include <iostream> 44 44 #include <math.h> 45 45 #include <stdlib.h> 46 46 -
common/video/iso-mpeg4/src/sys_encoder_tm5rc.cpp
52 52 53 53 #include <stdio.h> 54 54 #include <stdlib.h> 55 #include <iostream .h>55 #include <iostream> 56 56 #include <math.h> 57 57 #include "header.h" 58 58 #include "typeapi.h" -
common/video/iso-mpeg4/src/sys_encoder_vopmbenc.cpp
73 73 #include <stdio.h> 74 74 #include <math.h> 75 75 #include <stdlib.h> 76 #include <iostream .h>76 #include <iostream> 77 77 78 78 #include "typeapi.h" 79 79 #include "codehead.h" -
common/video/iso-mpeg4/src/sys_error.cpp
35 35 #include <stdio.h> 36 36 #include <math.h> 37 37 #include <stdlib.h> 38 #include <iostream .h>38 #include <iostream> 39 39 40 40 #include "typeapi.h" 41 41 #include "codehead.h" -
common/video/iso-mpeg4/src/sys_mode.cpp
50 50 51 51 52 52 #include <string.h> 53 #include <iostream .h>53 #include <iostream> 54 54 #include <math.h> 55 55 #include "typeapi.h" 56 56 #include "mode.hpp" -
common/video/iso-mpeg4/src/sys_tps_enhcbuf.cpp
36 36 *************************************************************************/ 37 37 38 38 #include <stdio.h> 39 #include <fstream .h>39 #include <fstream> 40 40 #include <stdlib.h> 41 41 42 42 #include "typeapi.h" -
common/video/iso-mpeg4/src/tools_entropy_bitstrm.cpp
42 42 43 43 *************************************************************************/ 44 44 45 #include <fstream .h>46 #include <iostream .h>45 #include <fstream> 46 #include <iostream> 47 47 #include <stdio.h> 48 48 #include <stdlib.h> 49 49 #include "typeapi.h" -
common/video/iso-mpeg4/src/tools_entropy_huffman.cpp
55 55 #include "bitstrm.hpp" 56 56 57 57 #include "vlc.hpp" 58 #include <iostream .h>58 #include <iostream> 59 59 #ifdef __MFC_ 60 60 #ifdef _DEBUG 61 61 #undef THIS_FILE -
common/video/iso-mpeg4/src/tools_sadct_sadct.cpp
37 37 #include "dct.hpp" 38 38 #include <math.h> 39 39 #if defined(__DEBUG_SADCT_) && !defined(NDEBUG) 40 #include <iostream .h>40 #include <iostream> 41 41 #endif 42 42 #ifdef __MFC_ 43 43 #ifdef _DEBUG -
common/video/iso-mpeg4/src/type_yuvac.cpp
39 39 40 40 *************************************************************************/ 41 41 42 #include <iostream .h>42 #include <iostream> 43 43 #include "typeapi.h" 44 44 45 using namespace std; 46 45 47 #ifdef __MFC_ 46 48 #ifdef _DEBUG 47 49 #undef THIS_FILE -
common/video/iso-mpeg4/src/type_yuvai.cpp
37 37 *************************************************************************/ 38 38 39 39 #include "typeapi.h" 40 #include <iostream.h> 40 #include <iostream> 41 42 using namespace std; 41 43 42 44 #ifdef __MFC_ 43 45 #ifdef _DEBUG -
common/video/iso-mpeg4/src/vtc_main_vtcenc.cpp
57 57 #include <math.h> 58 58 #include <assert.h> 59 59 // begin: added by Sharp (99/2/16) 60 #include <iostream .h>60 #include <iostream> 61 61 #include <sys/stat.h> 62 62 // end: added by Sharp (99/2/16) 63 63 -
player/lib/audio/faad/Makefile.am
33 33 transfo.h\ 34 34 util.h 35 35 INCLUDES = -I$(top_srcdir)/include 36 AM_CFLAGS = -O2 -W error -Wall -fexceptions -fno-strict-aliasing36 AM_CFLAGS = -O2 -Wall -fexceptions -fno-strict-aliasing 37 37 38 38 EXTRA_DIST = COPYING libfaad60.dsp README -
server/mp4live/video_util_resize.h
90 90 91 91 void CopyYuv(const uint8_t *fY, const uint8_t *fU, const uint8_t *fV, 92 92 uint32_t fyStride, uint32_t fuStride, uint32_t fvStride, 93 uint8_t *tY, uint8_t *tU, uint8_t *f V,94 uint32_t tyStride, uint32_t tvStride, uint32_t tv Stride,93 uint8_t *tY, uint8_t *tU, uint8_t *f_V, 94 uint32_t tyStride, uint32_t tvStride, uint32_t tv_Stride, 95 95 uint32_t w, uint32_t h); 96 96 #endif