Skip to content

Commit

Permalink
Print the actual bit depth for audio if it is different from the samp…
Browse files Browse the repository at this point in the history
…le_fmt bit depth.

This is already done for video.
  • Loading branch information
cehoyos committed Sep 8, 2014
1 parent 5a6dd92 commit 2b1f6a3
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions libavcodec/utils.c
Expand Up @@ -2978,6 +2978,10 @@ void avcodec_string(char *buf, int buf_size, AVCodecContext *enc, int encode)
snprintf(buf + strlen(buf), buf_size - strlen(buf),
", %s", av_get_sample_fmt_name(enc->sample_fmt));
}
if ( enc->bits_per_raw_sample > 0
&& enc->bits_per_raw_sample != av_get_bytes_per_sample(enc->sample_fmt) * 8)
snprintf(buf + strlen(buf), buf_size - strlen(buf),
" (%d bit)", enc->bits_per_raw_sample);
break;
case AVMEDIA_TYPE_DATA:
if (av_log_get_level() >= AV_LOG_DEBUG) {
Expand Down

0 comments on commit 2b1f6a3

Please sign in to comment.