aboutsummaryrefslogtreecommitdiffstats
path: root/stb_vorbis.c
diff options
context:
space:
mode:
authormick grierson <mickgrierson@gmail.com>2015-10-01 09:54:19 +0100
committermick grierson <mickgrierson@gmail.com>2015-10-01 09:54:19 +0100
commite4eb667af04304cbe9c0be5997ebea2049178590 (patch)
tree5630e70df8199c9f53170c9ef4da1e4dac59e69c /stb_vorbis.c
parent537a5a959f8ec9c4fcb5fd016f2a6be65ca99f3c (diff)
parentdfa3efd8495628d55f55ee8c8c8576095c2089e4 (diff)
resolving merge conflict
Diffstat (limited to 'stb_vorbis.c')
-rw-r--r--stb_vorbis.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/stb_vorbis.c b/stb_vorbis.c
index 822253d..d98b4a8 100644
--- a/stb_vorbis.c
+++ b/stb_vorbis.c
@@ -895,12 +895,12 @@ static void neighbors(uint16 *x, int n, int *plow, int *phigh)
typedef struct
{
uint16 x,y;
-} Point;
+} VorbisPoint;
int point_compare(const void *p, const void *q)
{
- Point *a = (Point *) p;
- Point *b = (Point *) q;
+ VorbisPoint *a = (VorbisPoint *) p;
+ VorbisPoint *b = (VorbisPoint *) q;
return a->x < b->x ? -1 : a->x > b->x;
}
@@ -3543,7 +3543,7 @@ static int start_decoder(vorb *f)
g->book_list[j] = get_bits(f,8);
return error(f, VORBIS_feature_not_supported);
} else {
- Point p[31*8+2];
+ VorbisPoint p[31*8+2];
Floor1 *g = &f->floor_config[i].floor1;
int max_class = -1;
g->partitions = get_bits(f, 5);