summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorReimar Döffinger <Reimar.Doeffinger@gmx.de>2007-09-09 09:21:14 +0000
committerReimar Döffinger <Reimar.Doeffinger@gmx.de>2007-09-09 09:21:14 +0000
commit7a562a31a34eaff9cffdd3baa4cd378f1f9af389 (patch)
tree9169458b92a0a649d837d73eea7478d37316f196
parentfd065d0593747eb38112bf02e02b23cd5eb6cba2 (diff)
Do not set codec_tag when the container does not specify it.
Originally committed as revision 10445 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r--libavformat/nuv.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/libavformat/nuv.c b/libavformat/nuv.c
index eb38d6ffd8..152ef671d3 100644
--- a/libavformat/nuv.c
+++ b/libavformat/nuv.c
@@ -149,7 +149,6 @@ static int nuv_header(AVFormatContext *s, AVFormatParameters *ap) {
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;