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

Unified Diff: media/filters/jpeg_parser.h

Issue 748023002: Add JPEG parser for JPEG decode acceleration (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase 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/BUILD.gn ('k') | media/filters/jpeg_parser.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/filters/jpeg_parser.h
diff --git a/media/filters/jpeg_parser.h b/media/filters/jpeg_parser.h
new file mode 100644
index 0000000000000000000000000000000000000000..8c8d81b6cad3cecfab00d5ea11ec2e90c3edcbd7
--- /dev/null
+++ b/media/filters/jpeg_parser.h
@@ -0,0 +1,81 @@
+// Copyright 2015 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+//
+#ifndef MEDIA_FILTERS_JPEG_PARSER_H_
+#define MEDIA_FILTERS_JPEG_PARSER_H_
+
+#include <stddef.h>
+#include <stdint.h>
+#include "media/base/media_export.h"
+
+namespace media {
+
+const size_t kJpegMaxHuffmanTableNumBaseline = 2;
+const size_t kJpegMaxComponents = 4;
+const size_t kJpegMaxQuantizationTableNum = 4;
+
+// Parsing result of JPEG DHT marker.
+struct JpegHuffmanTable {
+ bool valid;
+ uint8_t code_length[16];
+ uint8_t code_value[256];
+};
+
+// Parsing result of JPEG DQT marker.
+struct JpegQuantizationTable {
+ bool valid;
+ uint8_t value[64]; // baseline only supports 8 bits quantization table
+};
+
+// Parsing result of a JPEG component.
+struct JpegComponent {
+ uint8_t id;
+ uint8_t horizontal_sampling_factor;
+ uint8_t vertical_sampling_factor;
+ uint8_t quantization_table_selector;
+};
+
+// Parsing result of a JPEG SOF marker.
+struct JpegFrameHeader {
+ uint16_t visible_width;
+ uint16_t visible_height;
+ uint8_t num_components;
+ JpegComponent components[kJpegMaxComponents];
+};
+
+// Parsing result of JPEG SOS marker.
+struct JpegScanHeader {
+ uint8_t num_components;
+ struct Component {
+ uint8_t component_selector;
+ uint8_t dc_selector;
+ uint8_t ac_selector;
+ } components[kJpegMaxComponents];
+};
+
+struct JpegParseResult {
+ JpegFrameHeader frame_header;
+ JpegHuffmanTable dc_table[kJpegMaxHuffmanTableNumBaseline];
+ JpegHuffmanTable ac_table[kJpegMaxHuffmanTableNumBaseline];
+ JpegQuantizationTable q_table[kJpegMaxQuantizationTableNum];
+ uint16_t restart_interval;
+ JpegScanHeader scan;
+ const char* data;
+ size_t data_size;
+};
+
+// Parses JPEG picture in |buffer| with |length|. Returns true iff header is
+// valid and JPEG baseline sequential process is present. If parsed
+// successfully, |result| is the parsed result.
+// It's not a full featured JPEG parser implememtation. It only parses JPEG
+// baseline sequential process. For explanations of each struct and its
+// members, see JPEG specification at
+// http://www.w3.org/Graphics/JPEG/itu-t81.pdf.
+MEDIA_EXPORT bool ParseJpegPicture(const uint8_t* buffer,
+ size_t length,
+ JpegParseResult* result);
+
+} // namespace media
+
+#endif // MEDIA_FILTERS_JPEG_PARSER_H_
« no previous file with comments | « media/BUILD.gn ('k') | media/filters/jpeg_parser.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698