summaryrefslogtreecommitdiff
path: root/libavformat/rtpenc_aac.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2012-11-09 10:29:51 +0100
committerMichael Niedermayer <michaelni@gmx.at>2012-11-09 10:29:51 +0100
commit1b5a6d3c4966fb67d79445aca9c1ad6c1ecbdd4b (patch)
treec9ba394ee683ee33501a52b655542087c9d76071 /libavformat/rtpenc_aac.c
parent769354348a3acddb36582277a7d3f26e6d179369 (diff)
parent3a2731cbd31d0c5681ddbc7c78edd5c53c4d0032 (diff)
Merge remote-tracking branch 'qatar/master'
* qatar/master: flacenc: ensure the order is within the min/max range in LPC order search avconv: rescale packet duration to muxer time base when flushing encoders add 24-bit FLAC encoding to Changelog rtpenc_aac: Fix calculation of the header size x86: h264_intrapred: port to cpuflags Conflicts: Changelog libavformat/rtpenc_aac.c Merged-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavformat/rtpenc_aac.c')
-rw-r--r--libavformat/rtpenc_aac.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/rtpenc_aac.c b/libavformat/rtpenc_aac.c
index f4c515e756..be8f43ae69 100644
--- a/libavformat/rtpenc_aac.c
+++ b/libavformat/rtpenc_aac.c
@@ -47,7 +47,7 @@ void ff_rtp_send_aac(AVFormatContext *s1, const uint8_t *buff, int size)
memmove(p + 2, s->buf + 2, au_size);
}
/* Write the AU header size */
- p[0] = au_size >> 5;
+ p[0] = au_size >> 5;
p[1] = (au_size & 0x1F) << 3;
ff_rtp_send_data(s1, p, s->buf_ptr - p, 1);