mirror of https://git.ffmpeg.org/ffmpeg.git
avcodec/flac_parser: remove duplicate assignent
Found-by: CSA Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
1af563b5df
commit
590c2996ee
|
@ -667,7 +667,6 @@ static int flac_parse(AVCodecParserContext *s, AVCodecContext *avctx,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
curr = fpc->headers;
|
|
||||||
for (curr = fpc->headers; curr; curr = curr->next) {
|
for (curr = fpc->headers; curr; curr = curr->next) {
|
||||||
if (curr->max_score > 0 &&
|
if (curr->max_score > 0 &&
|
||||||
(!fpc->best_header || curr->max_score > fpc->best_header->max_score)) {
|
(!fpc->best_header || curr->max_score > fpc->best_header->max_score)) {
|
||||||
|
|
Loading…
Reference in New Issue