diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2014-03-20 21:09:57 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2014-03-20 21:09:57 +0100 |
commit | 047cf46e97541f6941cdb00cda009684e2aff5f1 (patch) | |
tree | a0b725984b2cc0160e3f6ef76bfe6627f25afbfc /libavcodec/ppc/fdct_altivec.c | |
parent | 75cc29a8a8e68aaa81c549f563521c64ed4e2caf (diff) | |
parent | 82ee14d2cedd7867920529b408ed6c7ec2f13ff1 (diff) | |
download | ffmpeg-047cf46e97541f6941cdb00cda009684e2aff5f1.tar.gz |
Merge commit '82ee14d2cedd7867920529b408ed6c7ec2f13ff1'
* commit '82ee14d2cedd7867920529b408ed6c7ec2f13ff1':
ppc: dsputil: comment formatting and wording/grammar improvements
Conflicts:
libavcodec/ppc/gmc_altivec.c
libavcodec/ppc/idct_altivec.c
Merged-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/ppc/fdct_altivec.c')
-rw-r--r-- | libavcodec/ppc/fdct_altivec.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/libavcodec/ppc/fdct_altivec.c b/libavcodec/ppc/fdct_altivec.c index ff816e2a5f..2553e4e4ff 100644 --- a/libavcodec/ppc/fdct_altivec.c +++ b/libavcodec/ppc/fdct_altivec.c @@ -259,11 +259,10 @@ void ff_fdct_altivec(int16_t *block) #undef MERGE_S16 /* }}} */ + /* Some of the initial calculations can be done as vector short + * before conversion to vector float. The following code section + * takes advantage of this. */ -/* Some of the initial calculations can be done as vector short before - * conversion to vector float. The following code section takes advantage - * of this. - */ /* fdct rows {{{ */ x0 = ((vector float)vec_add(vs16(b00), vs16(b70))); x7 = ((vector float)vec_sub(vs16(b00), vs16(b70))); |