X-Git-Url: http://git.ieval.ro/?a=blobdiff_plain;f=src%2Fmain.c;h=ee07e35557b1378283ecb9795821f9ff7f20c526;hb=3de0e22dcc176fb7f34be00d3406235870ae7db4;hp=5e0dc0cfdcc9902a10e821c02d5e9f16a6f78825;hpb=4d48b091d49818772a47559ba7fd7ab58fdd7682;p=fdkaac.git diff --git a/src/main.c b/src/main.c index 5e0dc0c..ee07e35 100644 --- a/src/main.c +++ b/src/main.c @@ -472,16 +472,15 @@ int parse_options(int argc, char **argv, aacenc_param_ex_t *params) }; static -int write_sample(FILE *ofp, m4af_ctx_t *m4af, - const void *data, uint32_t size, uint32_t duration) +int write_sample(FILE *ofp, m4af_ctx_t *m4af, aacenc_frame_t *frame) { if (!m4af) { - fwrite(data, 1, size, ofp); + fwrite(frame->data, 1, frame->size, ofp); if (ferror(ofp)) { fprintf(stderr, "ERROR: fwrite(): %s\n", strerror(errno)); return -1; } - } else if (m4af_write_sample(m4af, 0, data, size, duration) < 0) { + } else if (m4af_write_sample(m4af, 0, frame->data, frame->size, 0) < 0) { fprintf(stderr, "ERROR: failed to write m4a sample\n"); return -1; } @@ -493,12 +492,8 @@ int encode(aacenc_param_ex_t *params, pcm_reader_t *reader, HANDLE_AACENCODER encoder, uint32_t frame_length, m4af_ctx_t *m4af) { - struct buffer_t { - uint8_t *data; - uint32_t len, size; - }; int16_t *ibuf = 0, *ip; - struct buffer_t obuf[2] = {{ 0 }}, *obp; + aacenc_frame_t obuf[2] = {{ 0 }}, *obp; unsigned flip = 0; int nread = 1; int rc = -1; @@ -530,11 +525,10 @@ int encode(aacenc_param_ex_t *params, pcm_reader_t *reader, remaining = nread; do { obp = &obuf[flip]; - consumed = aac_encode_frame(encoder, fmt, ip, remaining, - &obp->data, &obp->len, &obp->size); + consumed = aac_encode_frame(encoder, fmt, ip, remaining, obp); if (consumed < 0) goto END; - if (consumed == 0 && obp->len == 0) goto DONE; - if (obp->len == 0) break; + if (consumed == 0 && obp->size == 0) goto DONE; + if (obp->size == 0) break; remaining -= consumed; ip += consumed * fmt->channels_per_frame; @@ -551,8 +545,7 @@ int encode(aacenc_param_ex_t *params, pcm_reader_t *reader, if (encoded == 1 || encoded == 3) continue; obp = &obuf[flip]; - if (write_sample(params->output_fp, m4af, obp->data, obp->len, - frame_length) < 0) + if (write_sample(params->output_fp, m4af, obp) < 0) goto END; ++frames_written; } while (remaining > 0); @@ -682,7 +675,7 @@ int parse_raw_spec(const char *spec, pcm_sample_description_t *desc) static pcm_io_vtbl_t pcm_io_vtbl = { read_callback, seek_callback, tell_callback }; -static pcm_io_vtbl_t pcm_io_vtbl_noseek = { read_callback, 0, 0 }; +static pcm_io_vtbl_t pcm_io_vtbl_noseek = { read_callback, 0, tell_callback }; static pcm_reader_t *open_input(aacenc_param_ex_t *params) @@ -828,6 +821,16 @@ int main(int argc, char **argv) m4af_set_priming_mode(m4af, params.gapless_mode + 1); m4af_begin_write(m4af); } + if (sbr_mode && (aacinfo.encoderDelay & 1)) { + /* + * Since odd delay cannot be exactly expressed in downsampled scale, + * we push one zero frame to the encoder here, to make delay even + */ + int16_t zero[8] = { 0 }; + aacenc_frame_t frame = { 0 }; + aac_encode_frame(encoder, sample_format, zero, 1, &frame); + free(frame.data); + } frame_count = encode(¶ms, reader, encoder, aacinfo.frameLength, m4af); if (frame_count < 0) goto END;