Browse Source

avienc : Avoid creating invalid AVI files when muxing subtitle streams

other than XSUB.

Originally committed as revision 23766 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/n0.8
Jai Menon 15 years ago
parent
commit
d6a9349062
1 changed files with 4 additions and 1 deletions
  1. +4
    -1
      libavformat/avienc.c

+ 4
- 1
libavformat/avienc.c View File

@@ -225,7 +225,10 @@ static int avi_write_header(AVFormatContext *s)
case AVMEDIA_TYPE_SUBTITLE:
// XSUB subtitles behave like video tracks, other subtitles
// are not (yet) supported.
if (stream->codec_id != CODEC_ID_XSUB) break;
if (stream->codec_id != CODEC_ID_XSUB) {
av_log(s, AV_LOG_ERROR, "Subtitle streams other than DivX XSUB are not supported by the AVI muxer.\n");
return AVERROR_PATCHWELCOME;
}
case AVMEDIA_TYPE_VIDEO: put_tag(pb, "vids"); break;
case AVMEDIA_TYPE_AUDIO: put_tag(pb, "auds"); break;
// case AVMEDIA_TYPE_TEXT : put_tag(pb, "txts"); break;


Loading…
Cancel
Save