diff options
author | Clément Bœsch <ubitux@gmail.com> | 2011-11-02 07:54:44 +0100 |
---|---|---|
committer | Clément Bœsch <ubitux@gmail.com> | 2011-11-02 07:54:48 +0100 |
commit | 971e7104381fbb30686041506ff0ed752d9d1697 (patch) | |
tree | d656681465b5128ded5d578e7cc48a2ca10d61e3 | |
parent | c36edf3899c80364341987a565d0ed7a5c3f6126 (diff) | |
download | ffmpeg-971e7104381fbb30686041506ff0ed752d9d1697.tar.gz |
dsputil: fix typo (referece -> reference).
-rw-r--r-- | libavcodec/dsputil.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/dsputil.h b/libavcodec/dsputil.h index 22c51a0962..92e081c411 100644 --- a/libavcodec/dsputil.h +++ b/libavcodec/dsputil.h @@ -479,8 +479,8 @@ typedef struct DSPContext { * with the zigzag/alternate scan<br> * an example to avoid confusion: * - (->decode coeffs -> zigzag reorder -> dequant -> reference idct ->...) - * - (x -> referece dct -> reference idct -> x) - * - (x -> referece dct -> simple_mmx_perm = idct_permutation -> simple_idct_mmx -> x) + * - (x -> reference dct -> reference idct -> x) + * - (x -> reference dct -> simple_mmx_perm = idct_permutation -> simple_idct_mmx -> x) * - (->decode coeffs -> zigzag reorder -> simple_mmx_perm -> dequant -> simple_idct_mmx ->...) */ uint8_t idct_permutation[64]; |