summaryrefslogtreecommitdiffstats
path: root/audio/decode/ad_lavc.c
diff options
context:
space:
mode:
authorMarcoen Hirschberg <m.hirschberg@activevideo.com>2014-05-27 00:15:41 +0200
committerwm4 <wm4@nowhere>2014-05-28 21:37:50 +0200
commit434242adb5dc045faf16f8bb19aa740732cc3345 (patch)
treeaf5d64f31973a33b70ba23e17cd8e59ee9134702 /audio/decode/ad_lavc.c
parent6e58b20cced05c303f1b35d5baa5f79b8ad612f5 (diff)
downloadmpv-434242adb5dc045faf16f8bb19aa740732cc3345.tar.bz2
mpv-434242adb5dc045faf16f8bb19aa740732cc3345.tar.xz
audio: rename i_bps to 'bitrate' to avoid confusion
Since i_bps now contains bits/sec, rename it to reflect this change.
Diffstat (limited to 'audio/decode/ad_lavc.c')
-rw-r--r--audio/decode/ad_lavc.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/audio/decode/ad_lavc.c b/audio/decode/ad_lavc.c
index b013400cab..a55a5966ae 100644
--- a/audio/decode/ad_lavc.c
+++ b/audio/decode/ad_lavc.c
@@ -229,7 +229,7 @@ static int init(struct dec_audio *da, const char *decoder)
lavc_context->codec_tag = sh->format;
lavc_context->sample_rate = sh_audio->samplerate;
- lavc_context->bit_rate = sh_audio->i_bps;
+ lavc_context->bit_rate = sh_audio->bitrate;
lavc_context->channel_layout = mp_chmap_to_lavc(&sh_audio->channels);
if (sh_audio->wf)
@@ -270,9 +270,9 @@ static int init(struct dec_audio *da, const char *decoder)
}
}
- da->i_bps = lavc_context->bit_rate;
+ da->bitrate = lavc_context->bit_rate;
if (sh_audio->wf && sh_audio->wf->nAvgBytesPerSec)
- da->i_bps = sh_audio->wf->nAvgBytesPerSec * 8;
+ da->bitrate = sh_audio->wf->nAvgBytesPerSec * 8;
return 1;
}