comparison mpegvideo.h @ 440:000aeeac27a2 libavcodec

* started to cleanup name clashes for onetime compilation
author kabi
date Mon, 27 May 2002 16:42:14 +0000
parents 718a22dc121f
children c006ee838856
comparison
equal deleted inserted replaced
439:6ae275655a23 440:000aeeac27a2
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 #ifndef AVCODEC_MPEGVIDEO_H
21 #define AVCODEC_MPEGVIDEO_H
19 22
20 #define FRAME_SKIPED 100 // return value for header parsers if frame is not coded 23 #define FRAME_SKIPED 100 // return value for header parsers if frame is not coded
21 24
22 enum OutputFormat { 25 enum OutputFormat {
23 FMT_MPEG1, 26 FMT_MPEG1,
508 int ff_rate_estimate_qscale(MpegEncContext *s); 511 int ff_rate_estimate_qscale(MpegEncContext *s);
509 int ff_rate_estimate_qscale_pass2(MpegEncContext *s); 512 int ff_rate_estimate_qscale_pass2(MpegEncContext *s);
510 void ff_write_pass1_stats(MpegEncContext *s); 513 void ff_write_pass1_stats(MpegEncContext *s);
511 void ff_rate_control_uninit(MpegEncContext *s); 514 void ff_rate_control_uninit(MpegEncContext *s);
512 515
513 516 #endif /* AVCODEC_MPEGVIDEO_H */
514
515