[FFmpeg-devel] [PATCH v5 6/7] libavformat/asfdec: Use predefined constants

Soft Works softworkz at hotmail.com
Thu Sep 30 05:58:56 EEST 2021


Signed-off-by: softworkz <softworkz at hotmail.com>
---
v5: Split into pieces as requested

 libavformat/asfdec_f.c | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/libavformat/asfdec_f.c b/libavformat/asfdec_f.c
index 7ac4e460a7..c4bcf0904d 100644
--- a/libavformat/asfdec_f.c
+++ b/libavformat/asfdec_f.c
@@ -205,13 +205,13 @@ static int asf_probe(const AVProbeData *pd)
 static uint64_t 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;
-- 
2.30.2.windows.1



More information about the ffmpeg-devel mailing list