Browse Source

Have xvid encoder wrapper honnor -vtag option

Patch by Ramiro Polla angustia A arrozcru P no-ip P org
Original thread:
Date: 14.10.2006 05:44
Subject: [Ffmpeg-devel] xvid ignores -vtag

Originally committed as revision 6701 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.5
Ramiro Polla Guillaume Poirier 18 years ago
parent
commit
aa770811a3
1 changed files with 2 additions and 1 deletions
  1. +2
    -1
      libavcodec/xvidff.c

+ 2
- 1
libavcodec/xvidff.c View File

@@ -335,7 +335,8 @@ int ff_xvid_encode_init(AVCodecContext *avctx) {
} else { } else {
/* We are claiming to be XviD */ /* We are claiming to be XviD */
x->quicktime_format = 0; x->quicktime_format = 0;
avctx->codec_tag = ff_get_fourcc("xvid");
if(!avctx->codec_tag)
avctx->codec_tag = ff_get_fourcc("xvid");
} }


/* Bframes */ /* Bframes */


Loading…
Cancel
Save