copyright year update of the files i touched and remembered, things look annoyingly unmaintained otherwise

Originally committed as revision 2686 to svn://svn.ffmpeg.org/ffmpeg/trunk
pull/126/head
Michael Niedermayer 21 years ago
parent d2a9bdddd8
commit 8f2ab83318
  1. 1
      libavcodec/common.c
  2. 1
      libavcodec/dsputil.c
  3. 1
      libavcodec/dsputil.h
  4. 2
      libavcodec/error_resilience.c
  5. 1
      libavcodec/h263.c
  6. 1
      libavcodec/h263dec.c
  7. 1
      libavcodec/i386/dsputil_mmx.c
  8. 2
      libavcodec/i386/dsputil_mmx_avg.h
  9. 1
      libavcodec/i386/dsputil_mmx_rnd.h
  10. 1
      libavcodec/i386/fdct_mmx.c
  11. 1
      libavcodec/i386/motion_est_mmx.c
  12. 2
      libavcodec/motion_est.c
  13. 2
      libavcodec/motion_est_template.c
  14. 1
      libavcodec/mpeg12.c
  15. 1
      libavcodec/mpegvideo.c
  16. 1
      libavcodec/mpegvideo.h
  17. 1
      libavcodec/msmpeg4.c
  18. 2
      libavcodec/ratecontrol.c
  19. 1
      libavcodec/rv10.c
  20. 1
      libavcodec/utils.c

@ -1,6 +1,7 @@
/* /*
* Common bit i/o utils * Common bit i/o utils
* Copyright (c) 2000, 2001 Fabrice Bellard. * Copyright (c) 2000, 2001 Fabrice Bellard.
* Copyright (c) 2002-2004 Michael Niedermayer <michaelni@gmx.at>
* *
* This library is free software; you can redistribute it and/or * This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public * modify it under the terms of the GNU Lesser General Public

@ -1,6 +1,7 @@
/* /*
* DSP utils * DSP utils
* Copyright (c) 2000, 2001 Fabrice Bellard. * Copyright (c) 2000, 2001 Fabrice Bellard.
* Copyright (c) 2002-2004 Michael Niedermayer <michaelni@gmx.at>
* *
* This library is free software; you can redistribute it and/or * This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public * modify it under the terms of the GNU Lesser General Public

@ -1,6 +1,7 @@
/* /*
* DSP utils * DSP utils
* Copyright (c) 2000, 2001, 2002 Fabrice Bellard. * Copyright (c) 2000, 2001, 2002 Fabrice Bellard.
* Copyright (c) 2002-2004 Michael Niedermayer <michaelni@gmx.at>
* *
* This library is free software; you can redistribute it and/or * This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public * modify it under the terms of the GNU Lesser General Public

@ -1,7 +1,7 @@
/* /*
* Error resilience / concealment * Error resilience / concealment
* *
* Copyright (c) 2002 Michael Niedermayer <michaelni@gmx.at> * Copyright (c) 2002-2004 Michael Niedermayer <michaelni@gmx.at>
* *
* This library is free software; you can redistribute it and/or * This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public * modify it under the terms of the GNU Lesser General Public

@ -3,6 +3,7 @@
* Copyright (c) 2000,2001 Fabrice Bellard. * Copyright (c) 2000,2001 Fabrice Bellard.
* H263+ support. * H263+ support.
* Copyright (c) 2001 Juan J. Sierralta P. * Copyright (c) 2001 Juan J. Sierralta P.
* Copyright (c) 2002-2004 Michael Niedermayer <michaelni@gmx.at>
* *
* This library is free software; you can redistribute it and/or * This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public * modify it under the terms of the GNU Lesser General Public

@ -1,6 +1,7 @@
/* /*
* H.263 decoder * H.263 decoder
* Copyright (c) 2001 Fabrice Bellard. * Copyright (c) 2001 Fabrice Bellard.
* Copyright (c) 2002-2004 Michael Niedermayer <michaelni@gmx.at>
* *
* This library is free software; you can redistribute it and/or * This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public * modify it under the terms of the GNU Lesser General Public

@ -1,6 +1,7 @@
/* /*
* MMX optimized DSP utils * MMX optimized DSP utils
* Copyright (c) 2000, 2001 Fabrice Bellard. * Copyright (c) 2000, 2001 Fabrice Bellard.
* Copyright (c) 2002-2004 Michael Niedermayer <michaelni@gmx.at>
* *
* This library is free software; you can redistribute it and/or * This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public * modify it under the terms of the GNU Lesser General Public

@ -1,7 +1,7 @@
/* /*
* DSP utils : average functions are compiled twice for 3dnow/mmx2 * DSP utils : average functions are compiled twice for 3dnow/mmx2
* Copyright (c) 2000, 2001 Fabrice Bellard. * Copyright (c) 2000, 2001 Fabrice Bellard.
* Copyright (c) 2002 Michael Niedermayer * Copyright (c) 2002-2004 Michael Niedermayer
* *
* This library is free software; you can redistribute it and/or * This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public * modify it under the terms of the GNU Lesser General Public

@ -1,6 +1,7 @@
/* /*
* DSP utils mmx functions are compiled twice for rnd/no_rnd * DSP utils mmx functions are compiled twice for rnd/no_rnd
* Copyright (c) 2000, 2001 Fabrice Bellard. * Copyright (c) 2000, 2001 Fabrice Bellard.
* Copyright (c) 2003-2004 Michael Niedermayer <michaelni@gmx.at>
* *
* This library is free software; you can redistribute it and/or * This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public * modify it under the terms of the GNU Lesser General Public

@ -1,6 +1,7 @@
/* /*
* MMX optimized forward DCT * MMX optimized forward DCT
* The gcc porting is Copyright (c) 2001 Fabrice Bellard. * The gcc porting is Copyright (c) 2001 Fabrice Bellard.
* cleanup/optimizations are Copyright (c) 2002-2004 Michael Niedermayer <michaelni@gmx.at>
* *
* from fdctam32.c - AP922 MMX(3D-Now) forward-DCT * from fdctam32.c - AP922 MMX(3D-Now) forward-DCT
* *

@ -1,6 +1,7 @@
/* /*
* MMX optimized motion estimation * MMX optimized motion estimation
* Copyright (c) 2001 Fabrice Bellard. * Copyright (c) 2001 Fabrice Bellard.
* Copyright (c) 2002-2004 Michael Niedermayer
* *
* This library is free software; you can redistribute it and/or * This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public * modify it under the terms of the GNU Lesser General Public

@ -1,7 +1,7 @@
/* /*
* Motion estimation * Motion estimation
* Copyright (c) 2000,2001 Fabrice Bellard. * Copyright (c) 2000,2001 Fabrice Bellard.
* Copyright (c) 2002-2003 Michael Niedermayer * Copyright (c) 2002-2004 Michael Niedermayer
* *
* *
* This library is free software; you can redistribute it and/or * This library is free software; you can redistribute it and/or

@ -1,6 +1,6 @@
/* /*
* Motion estimation * Motion estimation
* Copyright (c) 2002 Michael Niedermayer * Copyright (c) 2002-2004 Michael Niedermayer
* *
* This library is free software; you can redistribute it and/or * This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public * modify it under the terms of the GNU Lesser General Public

@ -1,6 +1,7 @@
/* /*
* MPEG1 codec / MPEG2 decoder * MPEG1 codec / MPEG2 decoder
* Copyright (c) 2000,2001 Fabrice Bellard. * Copyright (c) 2000,2001 Fabrice Bellard.
* Copyright (c) 2002-2004 Michael Niedermayer <michaelni@gmx.at>
* *
* This library is free software; you can redistribute it and/or * This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public * modify it under the terms of the GNU Lesser General Public

@ -1,6 +1,7 @@
/* /*
* The simplest mpeg encoder (well, it was the simplest!) * The simplest mpeg encoder (well, it was the simplest!)
* Copyright (c) 2000,2001 Fabrice Bellard. * Copyright (c) 2000,2001 Fabrice Bellard.
* Copyright (c) 2002-2004 Michael Niedermayer <michaelni@gmx.at>
* *
* This library is free software; you can redistribute it and/or * This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public * modify it under the terms of the GNU Lesser General Public

@ -1,6 +1,7 @@
/* /*
* Generic DCT based hybrid video encoder * Generic DCT based hybrid video encoder
* Copyright (c) 2000, 2001, 2002 Fabrice Bellard. * Copyright (c) 2000, 2001, 2002 Fabrice Bellard.
* Copyright (c) 2002-2004 Michael Niedermayer
* *
* This library is free software; you can redistribute it and/or * This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public * modify it under the terms of the GNU Lesser General Public

@ -1,6 +1,7 @@
/* /*
* MSMPEG4 backend for ffmpeg encoder and decoder * MSMPEG4 backend for ffmpeg encoder and decoder
* Copyright (c) 2001 Fabrice Bellard. * Copyright (c) 2001 Fabrice Bellard.
* Copyright (c) 2002-2004 Michael Niedermayer <michaelni@gmx.at>
* *
* This library is free software; you can redistribute it and/or * This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public * modify it under the terms of the GNU Lesser General Public

@ -1,7 +1,7 @@
/* /*
* Rate control for video encoders * Rate control for video encoders
* *
* Copyright (c) 2002-2003 Michael Niedermayer <michaelni@gmx.at> * Copyright (c) 2002-2004 Michael Niedermayer <michaelni@gmx.at>
* *
* This library is free software; you can redistribute it and/or * This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public * modify it under the terms of the GNU Lesser General Public

@ -1,6 +1,7 @@
/* /*
* RV10 codec * RV10 codec
* Copyright (c) 2000,2001 Fabrice Bellard. * Copyright (c) 2000,2001 Fabrice Bellard.
* Copyright (c) 2002-2004 Michael Niedermayer
* *
* This library is free software; you can redistribute it and/or * This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public * modify it under the terms of the GNU Lesser General Public

@ -2,6 +2,7 @@
* utils for libavcodec * utils for libavcodec
* Copyright (c) 2001 Fabrice Bellard. * Copyright (c) 2001 Fabrice Bellard.
* Copyright (c) 2003 Michel Bardiaux for the av_log API * Copyright (c) 2003 Michel Bardiaux for the av_log API
* Copyright (c) 2002-2004 Michael Niedermayer <michaelni@gmx.at>
* *
* This library is free software; you can redistribute it and/or * This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public * modify it under the terms of the GNU Lesser General Public

Loading…
Cancel
Save