libavformat/asfdec: Use predefined constants

Signed-off-by: softworkz <softworkz@hotmail.com>
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
Soft Works 2021-09-30 02:58:56 +00:00 committed by Michael Niedermayer
parent 3ee4502753
commit c8cdf641c7
1 changed files with 4 additions and 4 deletions

View File

@ -205,13 +205,13 @@ static int asf_probe(const AVProbeData *pd)
static int get_value(AVIOContext *pb, int type, int type2_size)
{
switch (type) {
case 2:
case ASF_BOOL:
return (type2_size == 32) ? avio_rl32(pb) : avio_rl16(pb);
case 3:
case ASF_DWORD:
return avio_rl32(pb);
case 4:
case ASF_QWORD:
return avio_rl64(pb);
case 5:
case ASF_WORD:
return avio_rl16(pb);
default:
return INT_MIN;