Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartin Storsjö <martin@martin.st>2016-07-10 13:19:24 +0300
committerMartin Storsjö <martin@martin.st>2016-07-10 14:52:16 +0300
commit2866d108c9e9da7baf53ff57a51d470691049a57 (patch)
tree0fe1b47c5c57814fde5523f68a594367e8857b07 /libavcodec/vp8dsp.h
parent8c816c0c9b12fdefd9046415e97df299880bc9b8 (diff)
vp8dsp: Remove the comment saying that the height is equal to the width
This comment isn't true, the height can be different from the width for these functions (which is why the height is passed as a parameter to them). Signed-off-by: Martin Storsjö <martin@martin.st>
Diffstat (limited to 'libavcodec/vp8dsp.h')
-rw-r--r--libavcodec/vp8dsp.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/vp8dsp.h b/libavcodec/vp8dsp.h
index deb8f27570..b248b86404 100644
--- a/libavcodec/vp8dsp.h
+++ b/libavcodec/vp8dsp.h
@@ -70,7 +70,7 @@ typedef struct VP8DSPContext {
void (*vp8_h_loop_filter_simple)(uint8_t *dst, ptrdiff_t stride, int flim);
/**
- * first dimension: 4-log2(width), height is assumed equal to width
+ * first dimension: 4-log2(width)
* second dimension: 0 if no vertical interpolation is needed;
* 1 4-tap vertical interpolation filter (my & 1)
* 2 6-tap vertical interpolation filter (!(my & 1))