comparison mpegvideo_common.h @ 8590:7a463923ecd1 libavcodec

Change semantic of CONFIG_*, HAVE_* and ARCH_*. They are now always defined to either 0 or 1.
author aurel
date Tue, 13 Jan 2009 23:44:16 +0000
parents 50516d28608a
children 68e959302527
comparison
equal deleted inserted replaced
8589:a29b5b5c3c9d 8590:7a463923ecd1
369 uint8_t *dest_y, uint8_t *dest_cb, uint8_t *dest_cr, 369 uint8_t *dest_y, uint8_t *dest_cb, uint8_t *dest_cr,
370 int field_based, int bottom_field, int field_select, 370 int field_based, int bottom_field, int field_select,
371 uint8_t **ref_picture, op_pixels_func (*pix_op)[4], 371 uint8_t **ref_picture, op_pixels_func (*pix_op)[4],
372 int motion_x, int motion_y, int h) 372 int motion_x, int motion_y, int h)
373 { 373 {
374 #ifndef CONFIG_SMALL 374 #if !CONFIG_SMALL
375 if(s->out_format == FMT_MPEG1) 375 if(s->out_format == FMT_MPEG1)
376 mpeg_motion_internal(s, dest_y, dest_cb, dest_cr, field_based, 376 mpeg_motion_internal(s, dest_y, dest_cb, dest_cr, field_based,
377 bottom_field, field_select, ref_picture, pix_op, 377 bottom_field, field_select, ref_picture, pix_op,
378 motion_x, motion_y, h, 1); 378 motion_x, motion_y, h, 1);
379 else 379 else
886 uint8_t *dest_cr, int dir, 886 uint8_t *dest_cr, int dir,
887 uint8_t **ref_picture, 887 uint8_t **ref_picture,
888 op_pixels_func (*pix_op)[4], 888 op_pixels_func (*pix_op)[4],
889 qpel_mc_func (*qpix_op)[16]) 889 qpel_mc_func (*qpix_op)[16])
890 { 890 {
891 #ifndef CONFIG_SMALL 891 #if !CONFIG_SMALL
892 if(s->out_format == FMT_MPEG1) 892 if(s->out_format == FMT_MPEG1)
893 MPV_motion_internal(s, dest_y, dest_cb, dest_cr, dir, 893 MPV_motion_internal(s, dest_y, dest_cb, dest_cr, dir,
894 ref_picture, pix_op, qpix_op, 1); 894 ref_picture, pix_op, qpix_op, 1);
895 else 895 else
896 #endif 896 #endif