# HG changeset patch # User diego # Date 1205174529 0 # Node ID 3f96dc62c4b94187fc8a80e8c0f677a82295a97d # Parent 949e4f444a5049f591448b8f842193cf3fe61f4e misc spelling fixes diff -r 949e4f444a50 -r 3f96dc62c4b9 avcodec.h --- a/avcodec.h Mon Mar 10 17:54:24 2008 +0000 +++ b/avcodec.h Mon Mar 10 18:42:09 2008 +0000 @@ -296,7 +296,7 @@ CODEC_ID_SSA, CODEC_ID_MOV_TEXT, - /* other specific kind of codecs (generaly used for attachments) */ + /* other specific kind of codecs (generally used for attachments) */ CODEC_ID_TTF= 0x18000, CODEC_ID_MPEG2TS= 0x20000, /**< _FAKE_ codec to indicate a raw MPEG-2 TS diff -r 949e4f444a50 -r 3f96dc62c4b9 dsputil.h --- a/dsputil.h Mon Mar 10 17:54:24 2008 +0000 +++ b/dsputil.h Mon Mar 10 18:42:09 2008 +0000 @@ -93,11 +93,14 @@ int dxx, int dxy, int dyx, int dyy, int shift, int r, int width, int height); /* minimum alignment rules ;) -if u notice errors in the align stuff, need more alignment for some asm code for some cpu -or need to use a function with less aligned data then send a mail to the ffmpeg-dev list, ... +If you notice errors in the align stuff, need more alignment for some ASM code +for some CPU or need to use a function with less aligned data then send a mail +to the ffmpeg-devel mailing list, ... -!warning these alignments might not match reallity, (missing attribute((align)) stuff somewhere possible) -i (michael) didnt check them, these are just the alignents which i think could be reached easily ... +!warning These alignments might not match reality, (missing attribute((align)) +stuff somewhere possible). +I (Michael) did not check them, these are just the alignments which i think +could be reached easily ... !future video codecs might need functions with less strict alignment */ diff -r 949e4f444a50 -r 3f96dc62c4b9 mpegvideo_enc.c --- a/mpegvideo_enc.c Mon Mar 10 17:54:24 2008 +0000 +++ b/mpegvideo_enc.c Mon Mar 10 18:42:09 2008 +0000 @@ -425,7 +425,7 @@ } if(s->avctx->scenechange_threshold < 1000000000 && (s->flags & CODEC_FLAG_CLOSED_GOP)){ - av_log(avctx, AV_LOG_ERROR, "closed gop with scene change detection arent supported yet, set threshold to 1000000000\n"); + av_log(avctx, AV_LOG_ERROR, "closed gop with scene change detection are not supported yet, set threshold to 1000000000\n"); return -1; } diff -r 949e4f444a50 -r 3f96dc62c4b9 ppc/mpegvideo_altivec.c --- a/ppc/mpegvideo_altivec.c Mon Mar 10 17:54:24 2008 +0000 +++ b/ppc/mpegvideo_altivec.c Mon Mar 10 18:42:09 2008 +0000 @@ -197,7 +197,7 @@ // z4 = vec_add(z4, z5); // z4 += z5; // z2 = MULTIPLY(z2, - FIX_2_562915447); /* sqrt(2) * (-c1-c3) */ - // Wow! It's actually more effecient to roll this multiply + // Wow! It's actually more efficient to roll this multiply // into the adds below, even thought the multiply gets done twice! // z2 = vec_madd(z2, vec_2_562915447, (vector float)zero);