diff options
author | Martin Storsjö <martin@martin.st> | 2015-02-27 12:32:42 +0200 |
---|---|---|
committer | Martin Storsjö <martin@martin.st> | 2015-02-28 22:54:26 +0200 |
commit | bde2bba45c2f2df27a8534028bda09a6e7f835e2 (patch) | |
tree | 73dcf2a4ee78c96eab14c627600aa1c7a87851e6 /libavformat/rtpenc_aac.c | |
parent | d4c7fc02f9f59e721e76debf4a595df529707545 (diff) | |
download | ffmpeg-bde2bba45c2f2df27a8534028bda09a6e7f835e2.tar.gz |
rtpenc: Restructure if statements in packetizers to simplify adding more conditions
Factorize out the s->num_frames check at the start of the if statements,
simplifying adding more alternative causes for sending the buffered
frames.
Signed-off-by: Martin Storsjö <martin@martin.st>
Diffstat (limited to 'libavformat/rtpenc_aac.c')
-rw-r--r-- | libavformat/rtpenc_aac.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/libavformat/rtpenc_aac.c b/libavformat/rtpenc_aac.c index 0a74e27ca4..7805ab9034 100644 --- a/libavformat/rtpenc_aac.c +++ b/libavformat/rtpenc_aac.c @@ -39,7 +39,9 @@ void ff_rtp_send_aac(AVFormatContext *s1, const uint8_t *buff, int size) /* test if the packet must be sent */ len = (s->buf_ptr - s->buf); - if ((s->num_frames == s->max_frames_per_packet) || (s->num_frames && (len + size) > s->max_payload_size)) { + if (s->num_frames && + (s->num_frames == s->max_frames_per_packet || + (len + size) > s->max_payload_size)) { int au_size = s->num_frames * 2; p = s->buf + max_au_headers_size - au_size - 2; |