comparison vp6.c @ 5214:470601203f44 libavcodec

Group all copyright and author notices together.
author diego
date Thu, 05 Jul 2007 10:37:29 +0000
parents ff4cd98bc90c
children 09fb7275a6bf
comparison
equal deleted inserted replaced
5213:4738fae7555a 5214:470601203f44
1 /** 1 /**
2 * @file vp6.c 2 * @file vp6.c
3 * VP6 compatible video decoder 3 * VP6 compatible video decoder
4 * 4 *
5 * Copyright (C) 2006 Aurelien Jacobs <aurel@gnuage.org> 5 * Copyright (C) 2006 Aurelien Jacobs <aurel@gnuage.org>
6 *
7 * The VP6F decoder accepts an optional 1 byte extradata. It is composed of:
8 * - upper 4bits: difference between encoded width and visible width
9 * - lower 4bits: difference between encoded height and visible height
6 * 10 *
7 * This file is part of FFmpeg. 11 * This file is part of FFmpeg.
8 * 12 *
9 * FFmpeg is free software; you can redistribute it and/or 13 * FFmpeg is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU Lesser General Public 14 * modify it under the terms of the GNU Lesser General Public
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 * Lesser General Public License for more details. 21 * Lesser General Public License for more details.
18 * 22 *
19 * You should have received a copy of the GNU Lesser General Public 23 * You should have received a copy of the GNU Lesser General Public
20 * License along with FFmpeg; if not, write to the Free Software 24 * License along with FFmpeg; if not, write to the Free Software
21 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA 25 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
22 *
23 *
24 * The VP6F decoder accept an optional 1 byte extradata. It is composed of:
25 * - upper 4bits: difference between encoded width and visible width
26 * - lower 4bits: difference between encoded height and visible height
27 */ 26 */
28 27
29 #include <stdlib.h> 28 #include <stdlib.h>
30 29
31 #include "avcodec.h" 30 #include "avcodec.h"