comparison h261enc.c @ 6788:e1302edb0f69 libavcodec

Replace some occurrences of -1 with PIX_FMT_NONE. Fixes icc warning #188: enumerated type mixed with another type
author cehoyos
date Sun, 11 May 2008 22:28:43 +0000
parents a4104482ceef
children e943e1409077
comparison
equal deleted inserted replaced
6787:d24da66bec76 6788:e1302edb0f69
327 CODEC_ID_H261, 327 CODEC_ID_H261,
328 sizeof(H261Context), 328 sizeof(H261Context),
329 MPV_encode_init, 329 MPV_encode_init,
330 MPV_encode_picture, 330 MPV_encode_picture,
331 MPV_encode_end, 331 MPV_encode_end,
332 .pix_fmts= (enum PixelFormat[]){PIX_FMT_YUV420P, -1}, 332 .pix_fmts= (enum PixelFormat[]){PIX_FMT_YUV420P, PIX_FMT_NONE},
333 .long_name= "H.261", 333 .long_name= "H.261",
334 }; 334 };
335 335