Home
last modified time | relevance | path

Searched refs:spx_coord_mant (Results 1 - 1 of 1) sorted by relevance

/third_party/ffmpeg/libavcodec/
H A Dac3dec.c915 int spx_coord_exp, spx_coord_mant; in spx_coordinates() local
950 spx_coord_mant = get_bits(bc, 2); in spx_coordinates()
951 if (spx_coord_exp == 15) spx_coord_mant <<= 1; in spx_coordinates()
952 else spx_coord_mant += 4; in spx_coordinates()
953 spx_coord_mant <<= (25 - spx_coord_exp - master_spx_coord); in spx_coordinates()
957 accu = (int64_t)nblend * spx_coord_mant; in spx_coordinates()
959 accu = (int64_t)sblend * spx_coord_mant; in spx_coordinates()
962 spx_coord = spx_coord_mant * (1.0f / (1 << 23)); in spx_coordinates()

Completed in 3 milliseconds