summaryrefslogtreecommitdiff
path: root/libavcodec/idcinvideo.c
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2011-10-30 18:02:42 +0100
committerDiego Biurrun <diego@biurrun.de>2011-11-02 10:42:55 +0100
commit2f5df0b12caea699ba85efa1fdb54fd0b57b4cfd (patch)
tree861355be8a653081a7ea52b43597d5329d50ef5c /libavcodec/idcinvideo.c
parent20566eb0f0e3b0f538bcf68fca42e67afaa0dec6 (diff)
Replace ffmpeg references with more accurate libav* references.
Diffstat (limited to 'libavcodec/idcinvideo.c')
-rw-r--r--libavcodec/idcinvideo.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/idcinvideo.c b/libavcodec/idcinvideo.c
index 99c43a09a4..8ae15eb67f 100644
--- a/libavcodec/idcinvideo.c
+++ b/libavcodec/idcinvideo.c
@@ -36,7 +36,7 @@
* a little more compression by exploiting the fact that adjacent pixels
* tend to be similar.
*
- * Note that this decoder could use ffmpeg's optimized VLC facilities
+ * Note that this decoder could use libavcodec's optimized VLC facilities
* rather than naive, tree-based Huffman decoding. However, there are 256
* Huffman tables. Plus, the VLC bit coding order is right -> left instead
* or left -> right, so all of the bits would have to be reversed. Further,