Skip to content

Commit

Permalink
rtpenc_aac: Set a default value for max_frames_per_packet at init
Browse files Browse the repository at this point in the history
This avoids having to conditionally set the default within the
packetizer function.

Signed-off-by: Martin Storsjö <[email protected]>
  • Loading branch information
mstorsjo committed Feb 28, 2015
1 parent 12b3459 commit 0662440
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
2 changes: 2 additions & 0 deletions libavformat/rtpenc.c
Original file line number Diff line number Diff line change
Expand Up @@ -271,6 +271,8 @@ static int rtp_write_header(AVFormatContext *s1)
goto defaultcase;
case AV_CODEC_ID_AAC:
s->num_frames = 0;
if (!s->max_frames_per_packet)
s->max_frames_per_packet = 5;
goto defaultcase;
default:
defaultcase:
Expand Down
5 changes: 2 additions & 3 deletions libavformat/rtpenc_aac.c
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,7 @@ void ff_rtp_send_aac(AVFormatContext *s1, const uint8_t *buff, int size)
RTPMuxContext *s = s1->priv_data;
int len, max_packet_size;
uint8_t *p;
const int max_frames_per_packet = s->max_frames_per_packet ? s->max_frames_per_packet : 5;
const int max_au_headers_size = 2 + 2 * max_frames_per_packet;
const int max_au_headers_size = 2 + 2 * s->max_frames_per_packet;

/* skip ADTS header, if present */
if ((s1->streams[0]->codec->extradata_size) == 0) {
Expand All @@ -39,7 +38,7 @@ 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 == max_frames_per_packet) || (s->num_frames && (len + size) > s->max_payload_size)) {
if ((s->num_frames == s->max_frames_per_packet) || (s->num_frames && (len + size) > s->max_payload_size)) {
int au_size = s->num_frames * 2;

p = s->buf + max_au_headers_size - au_size - 2;
Expand Down

0 comments on commit 0662440

Please sign in to comment.