# HG changeset patch # User michael # Date 1076111797 0 # Node ID be1f5b6137e14db6982ee296d8752126b471fee3 # Parent acda5fdfd6e79c219d99e608eef231241c2a5167 - made --extra-cflags option work on darwin - allow INTER4V macroblocks for FLV1 codec - fixed issue in flv file format saving 8 mp3 frames per packet instead of 1 - fixed crasher in flv file format involving mp3 buffer handling - added FLV1 codec support for swf file format (FlashPlayer6 or above required) and made it default - fixed broken mp3 support in swf file format patch by (Tinic Uro ) cleanup by me diff -r acda5fdfd6e7 -r be1f5b6137e1 mpegvideo.c --- a/mpegvideo.c Fri Feb 06 22:34:33 2004 +0000 +++ b/mpegvideo.c Fri Feb 06 23:56:37 2004 +0000 @@ -748,7 +748,7 @@ } if((s->flags & CODEC_FLAG_4MV) && s->codec_id != CODEC_ID_MPEG4 - && s->codec_id != CODEC_ID_H263 && s->codec_id != CODEC_ID_H263P){ + && s->codec_id != CODEC_ID_H263 && s->codec_id != CODEC_ID_H263P && s->codec_id != CODEC_ID_FLV1){ av_log(avctx, AV_LOG_ERROR, "4MV not supported by codec\n"); return -1; }