Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(15)

Unified Diff: third_party/opus/src/celt/modes.c

Issue 2962373002: [Opus] Update to v1.2.1 (Closed)
Patch Set: Pre-increment instead of post-increment Created 3 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « third_party/opus/src/celt/mips/vq_mipsr1.h ('k') | third_party/opus/src/celt/pitch.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/opus/src/celt/modes.c
diff --git a/third_party/opus/src/celt/modes.c b/third_party/opus/src/celt/modes.c
index 911686e905522986b34f4db57d1623ae423aacd8..390c5e8aeb36aa48b16d2ffa202554dc174da661 100644
--- a/third_party/opus/src/celt/modes.c
+++ b/third_party/opus/src/celt/modes.c
@@ -427,7 +427,7 @@ void opus_custom_mode_destroy(CELTMode *mode)
}
#endif /* CUSTOM_MODES_ONLY */
opus_free((opus_int16*)mode->eBands);
- opus_free((opus_int16*)mode->allocVectors);
+ opus_free((unsigned char*)mode->allocVectors);
opus_free((opus_val16*)mode->window);
opus_free((opus_int16*)mode->logN);
« no previous file with comments | « third_party/opus/src/celt/mips/vq_mipsr1.h ('k') | third_party/opus/src/celt/pitch.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698