Mercurial > libavformat.hg
comparison adtsenc.c @ 1358:0899bfe4105c libavformat
Change license headers to say 'FFmpeg' instead of 'this program/this library'
and fix GPL/LGPL version mismatches.
author | diego |
---|---|
date | Sat, 07 Oct 2006 15:30:46 +0000 |
parents | d18cc9a1fd02 |
children | dbcfc6a4c016 |
comparison
equal
deleted
inserted
replaced
1357:25ec3101ee80 | 1358:0899bfe4105c |
---|---|
1 /* | 1 /* |
2 * ADTS muxer. | 2 * ADTS muxer. |
3 * Copyright (c) 2006 Baptiste Coudurier <baptiste.coudurier@smartjog.com> | 3 * Copyright (c) 2006 Baptiste Coudurier <baptiste.coudurier@smartjog.com> |
4 * Mans Rullgard <mru@inprovide.com> | 4 * Mans Rullgard <mru@inprovide.com> |
5 * | 5 * |
6 * This library is free software; you can redistribute it and/or | 6 * This file is part of FFmpeg. |
7 * | |
8 * FFmpeg is free software; you can redistribute it and/or | |
7 * modify it under the terms of the GNU Lesser General Public | 9 * modify it under the terms of the GNU Lesser General Public |
8 * License as published by the Free Software Foundation; either | 10 * License as published by the Free Software Foundation; either |
9 * version 2 of the License, or (at your option) any later version. | 11 * version 2.1 of the License, or (at your option) any later version. |
10 * | 12 * |
11 * This library is distributed in the hope that it will be useful, | 13 * FFmpeg is distributed in the hope that it will be useful, |
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of | 14 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | 15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
14 * Lesser General Public License for more details. | 16 * Lesser General Public License for more details. |
15 * | 17 * |
16 * You should have received a copy of the GNU Lesser General Public | 18 * You should have received a copy of the GNU Lesser General Public |
17 * License along with this library; if not, write to the Free Software | 19 * License along with FFmpeg; if not, write to the Free Software |
18 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA | 20 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA |
19 */ | 21 */ |
20 #include "avformat.h" | 22 #include "avformat.h" |
21 #include "bitstream.h" | 23 #include "bitstream.h" |
22 | 24 |