OSDN Git Service

mux all stream types except audio as one pes packet per avpacket, issue #1374
authorBaptiste Coudurier <baptiste.coudurier@gmail.com>
Sun, 18 Oct 2009 21:41:03 +0000 (21:41 +0000)
committerBaptiste Coudurier <baptiste.coudurier@gmail.com>
Sun, 18 Oct 2009 21:41:03 +0000 (21:41 +0000)
Originally committed as revision 20292 to svn://svn.ffmpeg.org/ffmpeg/trunk

libavformat/mpegtsenc.c

index 48df438..a8d5d38 100644 (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);