comparison ratecontrol.h @ 5830:1d83e9c34641 libavcodec

Add FFMPEG_ prefix to all multiple inclusion guards.
author diego
date Wed, 17 Oct 2007 09:37:46 +0000
parents 4394344397d8
children c4a4495715dd
comparison
equal deleted inserted replaced
5829:74db916a3715 5830:1d83e9c34641
18 * 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
19 * License along with FFmpeg; if not, write to the Free Software 19 * License along with FFmpeg; if not, write to the Free Software
20 * 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
21 */ 21 */
22 22
23 #ifndef AVCODEC_RATECONTROL_H 23 #ifndef FFMPEG_RATECONTROL_H
24 #define AVCODEC_RATECONTROL_H 24 #define FFMPEG_RATECONTROL_H
25 25
26 /** 26 /**
27 * @file ratecontrol.h 27 * @file ratecontrol.h
28 * ratecontrol header. 28 * ratecontrol header.
29 */ 29 */
99 99
100 int ff_xvid_rate_control_init(struct MpegEncContext *s); 100 int ff_xvid_rate_control_init(struct MpegEncContext *s);
101 void ff_xvid_rate_control_uninit(struct MpegEncContext *s); 101 void ff_xvid_rate_control_uninit(struct MpegEncContext *s);
102 float ff_xvid_rate_estimate_qscale(struct MpegEncContext *s, int dry_run); 102 float ff_xvid_rate_estimate_qscale(struct MpegEncContext *s, int dry_run);
103 103
104 #endif /* AVCODEC_RATECONTROL_H */ 104 #endif /* FFMPEG_RATECONTROL_H */
105 105