Commit f5f62c32 authored by lucabe's avatar lucabe

AAC packetiser cleanup: remove check for a condition that cannot happen


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@18401 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 2553373c
......@@ -66,10 +66,6 @@ void ff_rtp_send_aac(AVFormatContext *s1, const uint8_t *buff, int size)
memcpy(s->buf_ptr, buff, size);
s->buf_ptr += size;
} else {
if (s->buf_ptr != s->buf + MAX_AU_HEADERS_SIZE) {
av_log(s1, AV_LOG_ERROR, "Strange...\n");
av_abort();
}
max_packet_size = s->max_payload_size - 4;
p = s->buf;
p[0] = 0;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment