Mercurial > libavcodec.hg
comparison mpeg12.c @ 1106:1e39f273ecd6 libavcodec
per file doxy
author | michaelni |
---|---|
date | Thu, 06 Mar 2003 11:32:04 +0000 |
parents | b7f267d168b7 |
children | 77ccf7fe3bd0 |
comparison
equal
deleted
inserted
replaced
1105:b773f9d23236 | 1106:1e39f273ecd6 |
---|---|
1 /* | 1 /* |
2 * MPEG1 encoder / MPEG2 decoder | 2 * MPEG1 codec / MPEG2 decoder |
3 * Copyright (c) 2000,2001 Fabrice Bellard. | 3 * Copyright (c) 2000,2001 Fabrice Bellard. |
4 * | 4 * |
5 * This library is free software; you can redistribute it and/or | 5 * This library is free software; you can redistribute it and/or |
6 * modify it under the terms of the GNU Lesser General Public | 6 * modify it under the terms of the GNU Lesser General Public |
7 * License as published by the Free Software Foundation; either | 7 * License as published by the Free Software Foundation; either |
14 * | 14 * |
15 * You should have received a copy of the GNU Lesser General Public | 15 * You should have received a copy of the GNU Lesser General Public |
16 * License along with this library; if not, write to the Free Software | 16 * License along with this library; if not, write to the Free Software |
17 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | 17 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
18 */ | 18 */ |
19 | |
20 /** | |
21 * @file mpeg12.c | |
22 * MPEG1 codec / MPEG2 decoder. | |
23 */ | |
24 | |
19 //#define DEBUG | 25 //#define DEBUG |
20 #include "avcodec.h" | 26 #include "avcodec.h" |
21 #include "dsputil.h" | 27 #include "dsputil.h" |
22 #include "mpegvideo.h" | 28 #include "mpegvideo.h" |
23 | 29 |