Skip to content

Commit

Permalink
lavc audio: missing NL
Browse files Browse the repository at this point in the history
  • Loading branch information
MartinPulec committed Oct 23, 2023
1 parent 6b208b3 commit 395cb24
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/audio/codec/libavcodec.c
Original file line number Diff line number Diff line change
Expand Up @@ -389,7 +389,8 @@ static bool reinitialize_encoder(struct libavcodec_codec_state *s, struct audio_
s->av_frame->channel_layout = AV_CH_LAYOUT_MONO;
#endif
s->av_frame->sample_rate = s->codec_ctx->sample_rate;
MSG(VERBOSE, "Setting AV frame: %d samples, format %d, sample rate %d",
MSG(VERBOSE,
"Setting AV frame: %d samples, format %d, sample rate %d\n",
s->av_frame->nb_samples, s->av_frame->format,
s->av_frame->sample_rate);

Expand Down

0 comments on commit 395cb24

Please sign in to comment.