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

Unified Diff: media/filters/vp8_parser.h

Issue 813693006: Add accelerated video decoder interface, VP8 and H.264 implementations and hook up to V4L2SVDA (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 11 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 | « media/filters/h264_parser.cc ('k') | media/video/h264_poc.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/filters/vp8_parser.h
diff --git a/media/filters/vp8_parser.h b/media/filters/vp8_parser.h
index 6f85be90820d12af01a665f0f4396a33a68dad21..c7fe620ffd5751ee5eb9baf8f834f1a50d97a6bb 100644
--- a/media/filters/vp8_parser.h
+++ b/media/filters/vp8_parser.h
@@ -92,13 +92,13 @@ struct MEDIA_EXPORT Vp8FrameHeader {
bool IsKeyframe() const { return key_frame == KEYFRAME; }
enum GoldenRefreshMode {
- kCopyLastToGolden = 1,
- kCopyAltToGolden = 2,
+ COPY_LAST_TO_GOLDEN = 1,
+ COPY_ALT_TO_GOLDEN = 2,
};
enum AltRefreshMode {
- kCopyLastToAlt = 1,
- kCopyGoldenToAlt = 2,
+ COPY_LAST_TO_ALT = 1,
+ COPY_GOLDEN_TO_ALT = 2,
};
FrameType key_frame;
« no previous file with comments | « media/filters/h264_parser.cc ('k') | media/video/h264_poc.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698