mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-11-26 19:01:44 +02:00
avcodec/mlpenc: simplify compare_best_offset()
This commit is contained in:
parent
5b28a5db03
commit
589cd58c85
@ -1939,10 +1939,7 @@ static void clear_path_counter(PathCounter *path_counter)
|
||||
|
||||
static int compare_best_offset(const BestOffset *prev, const BestOffset *cur)
|
||||
{
|
||||
if (prev->lsb_bits != cur->lsb_bits)
|
||||
return 1;
|
||||
|
||||
return 0;
|
||||
return prev->lsb_bits != cur->lsb_bits;
|
||||
}
|
||||
|
||||
static int best_codebook_path_cost(MLPEncodeContext *ctx, unsigned int channel,
|
||||
|
Loading…
Reference in New Issue
Block a user