# HG changeset patch # User reimar # Date 1189329674 0 # Node ID 46fc89be5b520a23ee8c4498870006285577371d # Parent fb7c72af3a61970488ca75cfbfa7d064240404a2 Do not set codec_tag when the container does not specify it. diff -r fb7c72af3a61 -r 46fc89be5b52 nuv.c --- a/nuv.c Sun Sep 09 07:25:52 2007 +0000 +++ b/nuv.c Sun Sep 09 09:21:14 2007 +0000 @@ -149,7 +149,6 @@ vst = av_new_stream(s, ctx->v_id); vst->codec->codec_type = CODEC_TYPE_VIDEO; vst->codec->codec_id = CODEC_ID_NUV; - vst->codec->codec_tag = MKTAG('R', 'J', 'P', 'G'); vst->codec->width = width; vst->codec->height = height; vst->codec->bits_per_sample = 10;