|
|
|
@ -335,15 +335,15 @@ static int write_audio_frame(AVFormatContext *oc, OutputStream *ost) |
|
|
|
|
if (ret < 0) |
|
|
|
|
exit(1); |
|
|
|
|
|
|
|
|
|
/* convert to destination format */ |
|
|
|
|
ret = swr_convert(ost->swr_ctx, |
|
|
|
|
ost->frame->data, dst_nb_samples, |
|
|
|
|
(const uint8_t **)frame->data, frame->nb_samples); |
|
|
|
|
if (ret < 0) { |
|
|
|
|
fprintf(stderr, "Error while converting\n"); |
|
|
|
|
exit(1); |
|
|
|
|
} |
|
|
|
|
frame = ost->frame; |
|
|
|
|
/* convert to destination format */ |
|
|
|
|
ret = swr_convert(ost->swr_ctx, |
|
|
|
|
ost->frame->data, dst_nb_samples, |
|
|
|
|
(const uint8_t **)frame->data, frame->nb_samples); |
|
|
|
|
if (ret < 0) { |
|
|
|
|
fprintf(stderr, "Error while converting\n"); |
|
|
|
|
exit(1); |
|
|
|
|
} |
|
|
|
|
frame = ost->frame; |
|
|
|
|
|
|
|
|
|
frame->pts = av_rescale_q(ost->samples_count, (AVRational){1, c->sample_rate}, c->time_base); |
|
|
|
|
ost->samples_count += dst_nb_samples; |
|
|
|
|