Skip to content
Snippets Groups Projects
Commit c1836540 authored by Diego Biurrun's avatar Diego Biurrun
Browse files

Replace Subversion revisions in comments by Git hashes.

parent 8742a4ff
No related branches found
No related tags found
No related merge requests found
...@@ -35,8 +35,9 @@ static void lpc_apply_welch_window_c(const int32_t *data, int len, ...@@ -35,8 +35,9 @@ static void lpc_apply_welch_window_c(const int32_t *data, int len,
double w; double w;
double c; double c;
assert(!(len&1)); //the optimization in r11881 does not support odd len /* The optimization in commit fa4ed8c does not support odd len.
//if someone wants odd len extend the change in r11881 * If someone wants odd len extend that change. */
assert(!(len & 1));
n2 = (len >> 1); n2 = (len >> 1);
c = 2.0 / (len - 1.0); c = 2.0 / (len - 1.0);
......
...@@ -33,7 +33,7 @@ typedef union { ...@@ -33,7 +33,7 @@ typedef union {
typedef struct AVAES { typedef struct AVAES {
// Note: round_key[16] is accessed in the init code, but this only // Note: round_key[16] is accessed in the init code, but this only
// overwrites state, which does not matter (see also r7471). // overwrites state, which does not matter (see also commit ba554c0).
av_aes_block round_key[15]; av_aes_block round_key[15];
av_aes_block state[2]; av_aes_block state[2];
int rounds; int rounds;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment