Searched refs:decode_scaling_list (Results 1 - 1 of 1) sorted by relevance
/third_party/ffmpeg/libavcodec/ |
H A D | h264_ps.c | 251 static int decode_scaling_list(GetBitContext *gb, uint8_t *factors, int size, in decode_scaling_list() function 293 ret |= decode_scaling_list(gb, scaling_matrix4[0], 16, default_scaling4[0], fallback[0]); // Intra, Y in decode_scaling_matrices() 294 ret |= decode_scaling_list(gb, scaling_matrix4[1], 16, default_scaling4[0], scaling_matrix4[0]); // Intra, Cr in decode_scaling_matrices() 295 ret |= decode_scaling_list(gb, scaling_matrix4[2], 16, default_scaling4[0], scaling_matrix4[1]); // Intra, Cb in decode_scaling_matrices() 296 ret |= decode_scaling_list(gb, scaling_matrix4[3], 16, default_scaling4[1], fallback[1]); // Inter, Y in decode_scaling_matrices() 297 ret |= decode_scaling_list(gb, scaling_matrix4[4], 16, default_scaling4[1], scaling_matrix4[3]); // Inter, Cr in decode_scaling_matrices() 298 ret |= decode_scaling_list(gb, scaling_matrix4[5], 16, default_scaling4[1], scaling_matrix4[4]); // Inter, Cb in decode_scaling_matrices() 300 ret |= decode_scaling_list(gb, scaling_matrix8[0], 64, default_scaling8[0], fallback[2]); // Intra, Y in decode_scaling_matrices() 301 ret |= decode_scaling_list(gb, scaling_matrix8[3], 64, default_scaling8[1], fallback[3]); // Inter, Y in decode_scaling_matrices() 303 ret |= decode_scaling_list(g in decode_scaling_matrices() [all...] |
Completed in 1 milliseconds