Browse Source

mux all stream types except audio as one pes packet per avpacket, issue #1374

Originally committed as revision 20292 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.6
Baptiste Coudurier 16 years ago
parent
commit
807e4e81a8
1 changed files with 1 additions and 2 deletions
  1. +1
    -2
      libavformat/mpegtsenc.c

+ 1
- 2
libavformat/mpegtsenc.c View File

@@ -741,8 +741,7 @@ static int mpegts_write_packet(AVFormatContext *s, AVPacket *pkt)
}
}

if (st->codec->codec_type == CODEC_TYPE_SUBTITLE ||
st->codec->codec_type == CODEC_TYPE_VIDEO) {
if (st->codec->codec_type != CODEC_TYPE_AUDIO) {
// for video and subtitle, write a single pes packet
mpegts_write_pes(s, st, buf, size, pts, dts);
av_free(data);


Loading…
Cancel
Save