Mercurial > libavcodec.hg
changeset 6486:3f96dc62c4b9 libavcodec
misc spelling fixes
author | diego |
---|---|
date | Mon, 10 Mar 2008 18:42:09 +0000 |
parents | 949e4f444a50 |
children | 8f1b27d73a07 |
files | avcodec.h dsputil.h mpegvideo_enc.c ppc/mpegvideo_altivec.c |
diffstat | 4 files changed, 10 insertions(+), 7 deletions(-) [+] |
line wrap: on
line diff
--- 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
--- 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 */
--- 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; }
--- 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);