comparison mpegvideo.c @ 79:82e579c37bc3 libavcodec

Moved some H.263+ variables to MpegEncContext to be thread-safe. Increase video_buffer on ffmpeg to avoid buffer overrun on big pictures.
author pulento
date Fri, 31 Aug 2001 06:21:27 +0000
parents 92ed1c4f94fa
children 1e4a4af694d1
comparison
equal deleted inserted replaced
78:92ed1c4f94fa 79:82e579c37bc3
276 break; 276 break;
277 case CODEC_ID_H263P: 277 case CODEC_ID_H263P:
278 s->out_format = FMT_H263; 278 s->out_format = FMT_H263;
279 s->h263_plus = 1; 279 s->h263_plus = 1;
280 s->unrestricted_mv = 1; 280 s->unrestricted_mv = 1;
281
282 /* These are just to be sure */
283 s->umvplus = 0;
284 s->umvplus_dec = 0;
281 break; 285 break;
282 case CODEC_ID_RV10: 286 case CODEC_ID_RV10:
283 s->out_format = FMT_H263; 287 s->out_format = FMT_H263;
284 s->h263_rv10 = 1; 288 s->h263_rv10 = 1;
285 break; 289 break;