[FFmpeg-cvslog] Replace Subversion revisions in comments by Git hashes.

Diego Biurrun git at videolan.org
Thu Dec 22 02:05:03 CET 2011


ffmpeg | branch: master | Diego Biurrun <diego at biurrun.de> | Tue Dec 20 23:51:55 2011 +0100| [c18365402bbb6fbfa7854b47c3288f9e31f39f44] | committer: Diego Biurrun

Replace Subversion revisions in comments by Git hashes.

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=c18365402bbb6fbfa7854b47c3288f9e31f39f44
---

 libavcodec/lpc.c |    5 +++--
 libavutil/aes.c  |    2 +-
 2 files changed, 4 insertions(+), 3 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);
diff --git a/libavutil/aes.c b/libavutil/aes.c
index 0301e03..6803c71 100644
--- a/libavutil/aes.c
+++ b/libavutil/aes.c
@@ -33,7 +33,7 @@ typedef union {
 
 typedef struct AVAES {
     // 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 state[2];
     int rounds;



More information about the ffmpeg-cvslog mailing list