comparison mpegvideo.c @ 5214:470601203f44 libavcodec

Group all copyright and author notices together.
author diego
date Thu, 05 Jul 2007 10:37:29 +0000
parents 4738fae7555a
children a5e1cc69033d
comparison
equal deleted inserted replaced
5213:4738fae7555a 5214:470601203f44
1 /* 1 /*
2 * The simplest mpeg encoder (well, it was the simplest!) 2 * The simplest mpeg encoder (well, it was the simplest!)
3 * Copyright (c) 2000,2001 Fabrice Bellard. 3 * Copyright (c) 2000,2001 Fabrice Bellard.
4 * Copyright (c) 2002-2004 Michael Niedermayer <michaelni@gmx.at> 4 * Copyright (c) 2002-2004 Michael Niedermayer <michaelni@gmx.at>
5 *
6 * 4MV & hq & B-frame encoding stuff by Michael Niedermayer <michaelni@gmx.at>
5 * 7 *
6 * This file is part of FFmpeg. 8 * This file is part of FFmpeg.
7 * 9 *
8 * FFmpeg is free software; you can redistribute it and/or 10 * FFmpeg is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU Lesser General Public 11 * modify it under the terms of the GNU Lesser General Public
16 * Lesser General Public License for more details. 18 * Lesser General Public License for more details.
17 * 19 *
18 * You should have received a copy of the GNU Lesser General Public 20 * You should have received a copy of the GNU Lesser General Public
19 * License along with FFmpeg; if not, write to the Free Software 21 * License along with FFmpeg; if not, write to the Free Software
20 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA 22 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
21 *
22 * 4MV & hq & b-frame encoding stuff by Michael Niedermayer <michaelni@gmx.at>
23 */ 23 */
24 24
25 /** 25 /**
26 * @file mpegvideo.c 26 * @file mpegvideo.c
27 * The simplest mpeg encoder (well, it was the simplest!). 27 * The simplest mpeg encoder (well, it was the simplest!).