# HG changeset patch # User mru # Date 1183858866 0 # Node ID 8cf17fde9a1cf20eeb0c3eafca8553f4908b9a5d # Parent c2ad35fbbd3006fd0236f32a900ce23c550c7e63 remove redundant codec_get_bmp_tag() call in avi_write_header() it is incorrect and av_write_header() already does the right thing diff -r c2ad35fbbd30 -r 8cf17fde9a1c avienc.c --- a/avienc.c Sat Jul 07 20:50:31 2007 +0000 +++ b/avienc.c Sun Jul 08 01:41:06 2007 +0000 @@ -197,11 +197,6 @@ stream = s->streams[i]->codec; - /* FourCC should really be set by the codec itself */ - if (! stream->codec_tag) { - stream->codec_tag = codec_get_bmp_tag(stream->codec_id); - } - /* stream generic header */ strh = start_tag(pb, "strh"); switch(stream->codec_type) {