---
 libavcodec/adpcm.c               |   24 ++++++++++++------------
 libavcodec/adpcmenc.c            |    8 ++++----
 libavcodec/gif.c                 |    4 ++--
 libavcodec/x86/dsputilenc_mmx.c  |    4 ++--
 libavcodec/x86/fmtconvert_init.c |    4 ++--
 libavformat/au.c                 |    4 ++--
 libavformat/gif.c                |    4 ++--
 libavformat/mov.c                |    8 +++-----
 libavformat/nsvdec.c             |    3 ++-
 9 files changed, 31 insertions(+), 32 deletions(-)

diff --git a/libavcodec/adpcm.c b/libavcodec/adpcm.c
index 3e93bee..9502849 100644
--- a/libavcodec/adpcm.c
+++ b/libavcodec/adpcm.c
@@ -1,6 +1,18 @@
 /*
  * Copyright (c) 2001-2003 The ffmpeg Project
  *
+ * first version by Francois Revol ([email protected])
+ * fringe ADPCM codecs (e.g., DK3, DK4, Westwood)
+ *   by Mike Melanson ([email protected])
+ * CD-ROM XA ADPCM codec by BERO
+ * EA ADPCM decoder by Robin Kay ([email protected])
+ * EA ADPCM R1/R2/R3 decoder by Peter Ross ([email protected])
+ * EA IMA EACS decoder by Peter Ross ([email protected])
+ * EA IMA SEAD decoder by Peter Ross ([email protected])
+ * EA ADPCM XAS decoder by Peter Ross ([email protected])
+ * MAXIS EA ADPCM decoder by Robert Marston ([email protected])
+ * THP ADPCM decoder by Marco Gerards ([email protected])
+ *
  * This file is part of Libav.
  *
  * Libav is free software; you can redistribute it and/or
@@ -28,18 +40,6 @@
 /**
  * @file
  * ADPCM decoders
- * First version by Francois Revol ([email protected])
- * Fringe ADPCM codecs (e.g., DK3, DK4, Westwood)
- *   by Mike Melanson ([email protected])
- * CD-ROM XA ADPCM codec by BERO
- * EA ADPCM decoder by Robin Kay ([email protected])
- * EA ADPCM R1/R2/R3 decoder by Peter Ross ([email protected])
- * EA IMA EACS decoder by Peter Ross ([email protected])
- * EA IMA SEAD decoder by Peter Ross ([email protected])
- * EA ADPCM XAS decoder by Peter Ross ([email protected])
- * MAXIS EA ADPCM decoder by Robert Marston ([email protected])
- * THP ADPCM decoder by Marco Gerards ([email protected])
- *
  * Features and limitations:
  *
  * Reference documents:
diff --git a/libavcodec/adpcmenc.c b/libavcodec/adpcmenc.c
index 9bcbc42..14b1257 100644
--- a/libavcodec/adpcmenc.c
+++ b/libavcodec/adpcmenc.c
@@ -1,6 +1,10 @@
 /*
  * Copyright (c) 2001-2003 The ffmpeg Project
  *
+ * first version by Francois Revol ([email protected])
+ * fringe ADPCM codecs (e.g., DK3, DK4, Westwood)
+ *   by Mike Melanson ([email protected])
+ *
  * This file is part of Libav.
  *
  * Libav is free software; you can redistribute it and/or
@@ -29,10 +33,6 @@
 /**
  * @file
  * ADPCM encoders
- * First version by Francois Revol ([email protected])
- * Fringe ADPCM codecs (e.g., DK3, DK4, Westwood)
- *   by Mike Melanson ([email protected])
- *
  * See ADPCM decoder reference documents for codec information.
  */
 
diff --git a/libavcodec/gif.c b/libavcodec/gif.c
index af57fff..8705e74 100644
--- a/libavcodec/gif.c
+++ b/libavcodec/gif.c
@@ -4,6 +4,8 @@
  * Copyright (c) 2002 Francois Revol
  * Copyright (c) 2006 Baptiste Coudurier
  *
+ * first version by Francois Revol <[email protected]>
+ *
  * This file is part of Libav.
  *
  * Libav is free software; you can redistribute it and/or
@@ -22,8 +24,6 @@
  */
 
 /*
- * First version by Francois Revol [email protected]
- *
  * Features and limitations:
  * - currently no compression is performed,
  *   in fact the size of the data is 9/8 the size of the image in 8bpp
diff --git a/libavcodec/x86/dsputilenc_mmx.c b/libavcodec/x86/dsputilenc_mmx.c
index 29cdb76..67db52c 100644
--- a/libavcodec/x86/dsputilenc_mmx.c
+++ b/libavcodec/x86/dsputilenc_mmx.c
@@ -3,6 +3,8 @@
  * Copyright (c) 2000, 2001 Fabrice Bellard
  * Copyright (c) 2002-2004 Michael Niedermayer <[email protected]>
  *
+ * MMX optimization by Nick Kurshev <[email protected]>
+ *
  * This file is part of Libav.
  *
  * Libav is free software; you can redistribute it and/or
@@ -18,8 +20,6 @@
  * You should have received a copy of the GNU Lesser General Public
  * License along with Libav; if not, write to the Free Software
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
- *
- * MMX optimization by Nick Kurshev <[email protected]>
  */
 
 #include "libavutil/attributes.h"
diff --git a/libavcodec/x86/fmtconvert_init.c b/libavcodec/x86/fmtconvert_init.c
index 05afe22..24c81bd 100644
--- a/libavcodec/x86/fmtconvert_init.c
+++ b/libavcodec/x86/fmtconvert_init.c
@@ -3,6 +3,8 @@
  * Copyright (c) 2000, 2001 Fabrice Bellard
  * Copyright (c) 2002-2004 Michael Niedermayer <[email protected]>
  *
+ * MMX optimization by Nick Kurshev <[email protected]>
+ *
  * This file is part of Libav.
  *
  * Libav is free software; you can redistribute it and/or
@@ -18,8 +20,6 @@
  * You should have received a copy of the GNU Lesser General Public
  * License along with Libav; if not, write to the Free Software
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
- *
- * MMX optimization by Nick Kurshev <[email protected]>
  */
 
 #include "libavutil/attributes.h"
diff --git a/libavformat/au.c b/libavformat/au.c
index 76da6e6..6b252b2 100644
--- a/libavformat/au.c
+++ b/libavformat/au.c
@@ -2,6 +2,8 @@
  * AU muxer and demuxer
  * Copyright (c) 2001 Fabrice Bellard
  *
+ * first version by Francois Revol <[email protected]>
+ *
  * This file is part of Libav.
  *
  * Libav is free software; you can redistribute it and/or
@@ -20,8 +22,6 @@
  */
 
 /*
- * First version by Francois Revol [email protected]
- *
  * Reference documents:
  * http://www.opengroup.org/public/pubs/external/auformat.html
  * http://www.goice.co.jp/member/mo/formats/au.html
diff --git a/libavformat/gif.c b/libavformat/gif.c
index eb2db46..2b1e93a 100644
--- a/libavformat/gif.c
+++ b/libavformat/gif.c
@@ -2,6 +2,8 @@
  * Animated GIF muxer
  * Copyright (c) 2000 Fabrice Bellard
  *
+ * first version by Francois Revol <[email protected]>
+ *
  * This file is part of Libav.
  *
  * Libav is free software; you can redistribute it and/or
@@ -20,8 +22,6 @@
  */
 
 /*
- * First version by Francois Revol [email protected]
- *
  * Features and limitations:
  * - currently no compression is performed,
  *   in fact the size of the data is 9/8 the size of the image in 8bpp
diff --git a/libavformat/mov.c b/libavformat/mov.c
index edd6f8e..291c142 100644
--- a/libavformat/mov.c
+++ b/libavformat/mov.c
@@ -3,6 +3,9 @@
  * Copyright (c) 2001 Fabrice Bellard
  * Copyright (c) 2009 Baptiste Coudurier <baptiste dot coudurier at gmail dot 
com>
  *
+ * first version by Francois Revol <[email protected]>
+ * seek function by Gael Chardon <[email protected]>
+ *
  * This file is part of Libav.
  *
  * Libav is free software; you can redistribute it and/or
@@ -46,11 +49,6 @@
 #include <zlib.h>
 #endif
 
-/*
- * First version by Francois Revol [email protected]
- * Seek function by Gael Chardon [email protected]
- */
-
 #include "qtpalette.h"
 
 
diff --git a/libavformat/nsvdec.c b/libavformat/nsvdec.c
index 4193ed2..7698f55 100644
--- a/libavformat/nsvdec.c
+++ b/libavformat/nsvdec.c
@@ -2,6 +2,8 @@
  * NSV demuxer
  * Copyright (c) 2004 The Libav Project
  *
+ * first version by Francois Revol <[email protected]>
+ *
  * This file is part of Libav.
  *
  * Libav is free software; you can redistribute it and/or
@@ -36,7 +38,6 @@
 #define NSV_MAX_RESYNC_TRIES 300
 
 /*
- * First version by Francois Revol - [email protected]
  * References:
  * (1) http://www.multimedia.cx/nsv-format.txt
  * seems someone came to the same conclusions as me, and updated it:
-- 
1.7.9.5

_______________________________________________
libav-devel mailing list
[email protected]
https://lists.libav.org/mailman/listinfo/libav-devel

Reply via email to