Browse Source

mpegtsenc: Do not fail ADTS AAC muxing if the first frame is not ADTS

Fixes ticket 279.

Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
tags/n3.0
Hagen Schmidt Michael Niedermayer 9 years ago
parent
commit
583a643146
1 changed files with 0 additions and 2 deletions
  1. +0
    -2
      libavformat/mpegtsenc.c

+ 0
- 2
libavformat/mpegtsenc.c View File

@@ -1523,8 +1523,6 @@ static int mpegts_write_packet_internal(AVFormatContext *s, AVPacket *pkt)
if (!ts_st->amux) {
av_log(s, AV_LOG_ERROR, "AAC bitstream not in ADTS format "
"and extradata missing\n");
if (!st->nb_frames)
return AVERROR_INVALIDDATA;
} else {
av_init_packet(&pkt2);
pkt2.data = pkt->data;


Loading…
Cancel
Save