summaryrefslogtreecommitdiff
path: root/libavcodec
diff options
context:
space:
mode:
authorClément Bœsch <ubitux@gmail.com>2011-11-02 07:54:44 +0100
committerClément Bœsch <ubitux@gmail.com>2011-11-02 07:54:48 +0100
commit971e7104381fbb30686041506ff0ed752d9d1697 (patch)
treed656681465b5128ded5d578e7cc48a2ca10d61e3 /libavcodec
parentc36edf3899c80364341987a565d0ed7a5c3f6126 (diff)
dsputil: fix typo (referece -> reference).
Diffstat (limited to 'libavcodec')
-rw-r--r--libavcodec/dsputil.h4
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];