comparison xan.c @ 4796:231daf8387b1 libavcodec

typos
author diego
date Sat, 07 Apr 2007 14:10:02 +0000
parents 05e932ddaaa9
children 66ef3690d108
comparison
equal deleted inserted replaced
4795:522e52c630bd 4796:231daf8387b1
83 return -1; 83 return -1;
84 84
85 return 0; 85 return 0;
86 } 86 }
87 87
88 /* This function is used in lieu of memcpy(). This decoder can not use 88 /* This function is used in lieu of memcpy(). This decoder cannot use
89 * memcpy because the memory locations often overlap and 89 * memcpy because the memory locations often overlap and
90 * memcpy doesn't like that; it's not uncommon, for example, for 90 * memcpy doesn't like that; it's not uncommon, for example, for
91 * dest = src+1, to turn byte A into pattern AAAAAAAA. 91 * dest = src+1, to turn byte A into pattern AAAAAAAA.
92 * This was originally repz movsb in Intel x86 ASM. */ 92 * This was originally repz movsb in Intel x86 ASM. */
93 static inline void bytecopy(unsigned char *dest, unsigned char *src, int count) 93 static inline void bytecopy(unsigned char *dest, unsigned char *src, int count)