Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2022-10-07 20:36:09 +0300
committerAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2022-10-08 11:19:30 +0300
commite846617b8210fdd8d4a9612e0532c94173f193b1 (patch)
tree2db47ae23ba3937ec7acaa26040fd81f5b5d4a6e /libavcodec/opus_parse.h
parenta4dc60a2582ae130b89e07d0c1a5aa764c1a3d7e (diff)
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_parse.h')
-rw-r--r--libavcodec/opus_parse.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/opus_parse.h b/libavcodec/opus_parse.h
index 8e5c6a880c..83ed3c7887 100644
--- a/libavcodec/opus_parse.h
+++ b/libavcodec/opus_parse.h
@@ -37,8 +37,8 @@ typedef struct OpusPacket {
int config; /**< configuration: tells the audio mode,
** bandwidth, and frame duration */
int frame_count; /**< frame count */
- int frame_offset[MAX_FRAMES]; /**< frame offsets */
- int frame_size[MAX_FRAMES]; /**< frame sizes */
+ int frame_offset[OPUS_MAX_FRAMES]; /**< frame offsets */
+ int frame_size[OPUS_MAX_FRAMES]; /**< frame sizes */
int frame_duration; /**< frame duration, in samples @ 48kHz */
enum OpusMode mode; /**< mode */
enum OpusBandwidth bandwidth; /**< bandwidth */