diff options
author | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2022-10-07 19:36:09 +0200 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2022-10-08 10:19:30 +0200 |
commit | e846617b8210fdd8d4a9612e0532c94173f193b1 (patch) | |
tree | 2db47ae23ba3937ec7acaa26040fd81f5b5d4a6e /libavcodec/opus.h | |
parent | a4dc60a2582ae130b89e07d0c1a5aa764c1a3d7e (diff) | |
download | ffmpeg-e846617b8210fdd8d4a9612e0532c94173f193b1.tar.gz |
avcodec/opus: Use prefix for defines
Reviewed-by: Lynne <dev@lynne.ee>
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
Diffstat (limited to 'libavcodec/opus.h')
-rw-r--r-- | libavcodec/opus.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libavcodec/opus.h b/libavcodec/opus.h index 4d061cf5f8..f87b63aaca 100644 --- a/libavcodec/opus.h +++ b/libavcodec/opus.h @@ -25,9 +25,9 @@ #include <stdint.h> -#define MAX_FRAME_SIZE 1275 -#define MAX_FRAMES 48 -#define MAX_PACKET_DUR 5760 +#define OPUS_MAX_FRAME_SIZE 1275 +#define OPUS_MAX_FRAMES 48 +#define OPUS_MAX_PACKET_DUR 5760 #define OPUS_TS_HEADER 0x7FE0 // 0x3ff (11 bits) #define OPUS_TS_MASK 0xFFE0 // top 11 bits |