0
0
mirror of https://github.com/mpv-player/mpv.git synced 2024-09-20 03:52:22 +02:00

ao_coreaudio_utils: add a format negotiation helper function

This commit is contained in:
wm4 2015-05-05 01:02:22 +02:00
parent f719b8164d
commit 305a85cc9a
2 changed files with 37 additions and 0 deletions

View File

@ -268,6 +268,40 @@ void ca_print_asbd(struct ao *ao, const char *description,
talloc_free(format);
}
// Return whether new is an improvement over old (req is the requested format).
bool ca_asbd_is_better(AudioStreamBasicDescription *req,
AudioStreamBasicDescription *old,
AudioStreamBasicDescription *new)
{
if (req->mFormatID != new->mFormatID)
return false;
int mpfmt_req = ca_asbd_to_mp_format(old);
int mpfmt_new = ca_asbd_to_mp_format(new);
if (!mpfmt_new)
return false;
if (mpfmt_req != mpfmt_new) {
int mpfmt_old = ca_asbd_to_mp_format(old);
if (af_format_conversion_score(mpfmt_req, mpfmt_old) >
af_format_conversion_score(mpfmt_req, mpfmt_new))
return false;
}
if (req->mSampleRate != new->mSampleRate) {
if (old->mSampleRate > new->mSampleRate)
return false;
}
if (req->mChannelsPerFrame != new->mChannelsPerFrame) {
if (old->mChannelsPerFrame > new->mChannelsPerFrame ||
new->mChannelsPerFrame > MP_NUM_CHANNELS)
return false;
}
return true;
}
int64_t ca_frames_to_us(struct ao *ao, uint32_t frames)
{
return frames / (float) ao->samplerate * 1e6;

View File

@ -58,6 +58,9 @@ void ca_print_asbd(struct ao *ao, const char *description,
bool ca_asbd_equals(const AudioStreamBasicDescription *a,
const AudioStreamBasicDescription *b);
int ca_asbd_to_mp_format(const AudioStreamBasicDescription *asbd);
bool ca_asbd_is_better(AudioStreamBasicDescription *req,
AudioStreamBasicDescription *old,
AudioStreamBasicDescription *new);
int64_t ca_frames_to_us(struct ao *ao, uint32_t frames);
int64_t ca_get_latency(const AudioTimeStamp *ts);