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

Unified Diff: media/filters/jpeg_parser.h

Issue 1016773002: MJPEG acceleration for video capture using VAAPI (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix coded size, shm handle Created 5 years, 9 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
Index: media/filters/jpeg_parser.h
diff --git a/media/filters/jpeg_parser.h b/media/filters/jpeg_parser.h
index 8c8d81b6cad3cecfab00d5ea11ec2e90c3edcbd7..f27fa582d2d784d35e91a889d952804a3436fe46 100644
--- a/media/filters/jpeg_parser.h
+++ b/media/filters/jpeg_parser.h
@@ -40,6 +40,8 @@ struct JpegComponent {
struct JpegFrameHeader {
uint16_t visible_width;
uint16_t visible_height;
+ uint16_t coded_width;
+ uint16_t coded_height;
uint8_t num_components;
JpegComponent components[kJpegMaxComponents];
};

Powered by Google App Engine
This is Rietveld 408576698