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

Unified Diff: libavformat/oggdec.h

Issue 9373002: Fix valgrind and asan memory leaks and crashes. (Closed) Base URL: ssh://gerrit.chromium.org:29418/chromium/third_party/ffmpeg.git@master
Patch Set: Make vp3 fix an ignore. Created 8 years, 10 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 | « libavformat/mov.c ('k') | libavformat/oggdec.c » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: libavformat/oggdec.h
diff --git a/libavformat/oggdec.h b/libavformat/oggdec.h
index 7f5452f2b094cc6e6b2a9195115e988faf59019a..4d5d8cb76c3cf98767852833d8e1bac03aba427d 100644
--- a/libavformat/oggdec.h
+++ b/libavformat/oggdec.h
@@ -95,6 +95,11 @@ struct ogg {
struct ogg_state *state;
};
+struct oggvorbis_private {
+ unsigned int len[3];
+ unsigned char *packet[3];
+};
+
#define OGG_FLAG_CONT 1
#define OGG_FLAG_BOS 2
#define OGG_FLAG_EOS 4
« no previous file with comments | « libavformat/mov.c ('k') | libavformat/oggdec.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698