summaryrefslogtreecommitdiff
path: root/libavformat/davs2.c
diff options
context:
space:
mode:
authorhwren <hwrenx@126.com>2020-08-20 14:47:42 +0800
committerhwren <hwrenx@126.com>2020-10-06 00:01:34 +0800
commit026be690e65c18bfb30413c0bc31e3a92ec5dcc6 (patch)
treeb938e05d9571e1106924c2aa2271f6d9f99f012c /libavformat/davs2.c
parentc952db9d68d31d1eca5ac770cc53bf35b885b087 (diff)
lavc/avs2_parser.c,lavf/davs2.c: add AVS2_* prefix
Add AVS2_* prefix to macro definitions to avoid confusion Signed-off-by: hwren <hwrenx@126.com>
Diffstat (limited to 'libavformat/davs2.c')
-rw-r--r--libavformat/davs2.c20
1 files changed, 10 insertions, 10 deletions
diff --git a/libavformat/davs2.c b/libavformat/davs2.c
index 59f41fd499..f8337ea500 100644
--- a/libavformat/davs2.c
+++ b/libavformat/davs2.c
@@ -25,11 +25,11 @@
#include "libavcodec/internal.h"
#include "libavutil/intreadwrite.h"
-#define ISSQH(x) ((x) == 0xB0 )
-#define ISEND(x) ((x) == 0xB1 )
-#define ISPIC(x) ((x) == 0xB3 || (x) == 0xB6)
-#define ISUNIT(x) ( ISSQH(x) || ISEND(x) || (x) == 0xB2 || ISPIC(x) || (x) == 0xB5 || (x) == 0xB7 )
-#define ISAVS2(x) ((x) == 0x20 || (x) == 0x22 || (x) == 0x30 || (x) == 0x32 )
+#define AVS2_ISSQH(x) ((x) == 0xB0)
+#define AVS2_ISEND(x) ((x) == 0xB1)
+#define AVS2_ISPIC(x) ((x) == 0xB3 || (x) == 0xB6)
+#define AVS2_ISUNIT(x) (AVS2_ISSQH(x) || AVS2_ISEND(x) || (x) == 0xB2 || AVS2_ISPIC(x) || (x) == 0xB5 || (x) == 0xB7)
+#define AVS2_ISPROFILE(x) ((x) == 0x20 || (x) == 0x22 || (x) == 0x30 || (x) == 0x32)
static int avs2_probe(const AVProbeData *p)
{
@@ -44,18 +44,18 @@ static int avs2_probe(const AVProbeData *p)
ptr = avpriv_find_start_code(ptr, end, &code);
state = code & 0xFF;
if ((code & 0xffffff00) == 0x100) {
- if (ISUNIT(state)) {
+ if (AVS2_ISUNIT(state)) {
if (sqb && !hds) {
hds = ptr - sqb;
}
- if (ISSQH(state)) {
- if (!ISAVS2(*ptr))
+ if (AVS2_ISSQH(state)) {
+ if (!AVS2_ISPROFILE(*ptr))
return 0;
sqb = ptr;
seq++;
- } else if (ISPIC(state)) {
+ } else if (AVS2_ISPIC(state)) {
pic++;
- } else if (ISEND(state)) {
+ } else if (AVS2_ISEND(state)) {
break;
}
}