[FFmpeg-cvslog] r18401 - trunk/libavformat/rtp_aac.c
lucabe
subversion
Thu Apr 9 23:39:07 CEST 2009
Author: lucabe
Date: Thu Apr 9 23:39:07 2009
New Revision: 18401
Log:
AAC packetiser cleanup: remove check for a condition that cannot happen
Modified:
trunk/libavformat/rtp_aac.c
Modified: trunk/libavformat/rtp_aac.c
==============================================================================
--- trunk/libavformat/rtp_aac.c Thu Apr 9 23:37:11 2009 (r18400)
+++ trunk/libavformat/rtp_aac.c Thu Apr 9 23:39:07 2009 (r18401)
@@ -66,10 +66,6 @@ void ff_rtp_send_aac(AVFormatContext *s1
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;
More information about the ffmpeg-cvslog
mailing list