summaryrefslogtreecommitdiffstats
path: root/libavcodec/lpc.c
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2011-12-20 23:51:55 +0100
committerDiego Biurrun <diego@biurrun.de>2011-12-21 09:04:25 +0100
commitc18365402bbb6fbfa7854b47c3288f9e31f39f44 (patch)
tree555be311010b6653f6ebc75add112a9cdd67bbc8 /libavcodec/lpc.c
parent8742a4ff87b5d6ff9f8b5095a29f2e7e7147b5d8 (diff)
downloadffmpeg-streaming-c18365402bbb6fbfa7854b47c3288f9e31f39f44.zip
ffmpeg-streaming-c18365402bbb6fbfa7854b47c3288f9e31f39f44.tar.gz
Replace Subversion revisions in comments by Git hashes.
Diffstat (limited to 'libavcodec/lpc.c')
-rw-r--r--libavcodec/lpc.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/libavcodec/lpc.c b/libavcodec/lpc.c
index 874af05..d1833cb 100644
--- a/libavcodec/lpc.c
+++ b/libavcodec/lpc.c
@@ -35,8 +35,9 @@ static void lpc_apply_welch_window_c(const int32_t *data, int len,
double w;
double c;
- assert(!(len&1)); //the optimization in r11881 does not support odd len
- //if someone wants odd len extend the change in r11881
+ /* The optimization in commit fa4ed8c does not support odd len.
+ * If someone wants odd len extend that change. */
+ assert(!(len & 1));
n2 = (len >> 1);
c = 2.0 / (len - 1.0);
OpenPOWER on IntegriCloud