avformat/img2dec: Move DQT after unrelated if()
Fixes: CID1494636 Missing break in switch Sponsored-by: Sovereign Tech Fund Signed-off-by: Michael Niedermayer <michael@niedermayer.cc> (cherry picked from commit 7d04c6016b0971fecb890d3a0afe4e6706a1a68e) Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
parent
54f57cb532
commit
2ea4dfd684
@ -794,7 +794,6 @@ static int jpeg_probe(const AVProbeData *p)
|
|||||||
return 0;
|
return 0;
|
||||||
state = EOI;
|
state = EOI;
|
||||||
break;
|
break;
|
||||||
case DQT:
|
|
||||||
case APP0:
|
case APP0:
|
||||||
if (AV_RL32(&b[i + 4]) == MKTAG('J','F','I','F'))
|
if (AV_RL32(&b[i + 4]) == MKTAG('J','F','I','F'))
|
||||||
got_header = 1;
|
got_header = 1;
|
||||||
@ -815,6 +814,7 @@ static int jpeg_probe(const AVProbeData *p)
|
|||||||
case APP13:
|
case APP13:
|
||||||
case APP14:
|
case APP14:
|
||||||
case APP15:
|
case APP15:
|
||||||
|
case DQT: /* fallthrough */
|
||||||
case COM:
|
case COM:
|
||||||
i += AV_RB16(&b[i + 2]) + 1;
|
i += AV_RB16(&b[i + 2]) + 1;
|
||||||
break;
|
break;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user