# HG changeset patch # User michael # Date 1123793649 0 # Node ID bb505841be0a2d71cbe5b58d5669b90685bf6c3d # Parent acb7885f916d6014562dc270f0bf899123292ef9 video fourcc fix diff -r acb7885f916d -r bb505841be0a libmpdemux/muxer_lavf.c --- a/libmpdemux/muxer_lavf.c Thu Aug 11 17:23:45 2005 +0000 +++ b/libmpdemux/muxer_lavf.c Thu Aug 11 20:54:09 2005 +0000 @@ -196,6 +196,7 @@ else if(stream->type == MUXER_TYPE_VIDEO) { ctx->codec_id = codec_get_bmp_id(stream->bih->biCompression); + ctx->codec_tag= stream->bih->biCompression; mp_msg(MSGT_MUXER, MSGL_INFO, "VIDEO CODEC ID: %d\n", ctx->codec_id); ctx->width = stream->bih->biWidth; ctx->height = stream->bih->biHeight;