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

Side by Side Diff: media/BUILD.gn

Issue 2133993002: Parse VP9 compressed header (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: reset curr_frame_info_ when Reset Created 4 years, 4 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 unified diff | Download patch
« no previous file with comments | « no previous file | media/filters/vp9_bool_decoder.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 import("//build/buildflag_header.gni") 5 import("//build/buildflag_header.gni")
6 import("//build/config/android/config.gni") 6 import("//build/config/android/config.gni")
7 import("//build/config/arm.gni") 7 import("//build/config/arm.gni")
8 import("//build/config/features.gni") 8 import("//build/config/features.gni")
9 import("//build/config/linux/pkg_config.gni") 9 import("//build/config/linux/pkg_config.gni")
10 import("//build/config/ui.gni") 10 import("//build/config/ui.gni")
(...skipping 157 matching lines...) Expand 10 before | Expand all | Expand 10 after
168 "filters/stream_parser_factory.cc", 168 "filters/stream_parser_factory.cc",
169 "filters/stream_parser_factory.h", 169 "filters/stream_parser_factory.h",
170 "filters/video_cadence_estimator.cc", 170 "filters/video_cadence_estimator.cc",
171 "filters/video_cadence_estimator.h", 171 "filters/video_cadence_estimator.h",
172 "filters/video_renderer_algorithm.cc", 172 "filters/video_renderer_algorithm.cc",
173 "filters/video_renderer_algorithm.h", 173 "filters/video_renderer_algorithm.h",
174 "filters/vp8_bool_decoder.cc", 174 "filters/vp8_bool_decoder.cc",
175 "filters/vp8_bool_decoder.h", 175 "filters/vp8_bool_decoder.h",
176 "filters/vp8_parser.cc", 176 "filters/vp8_parser.cc",
177 "filters/vp8_parser.h", 177 "filters/vp8_parser.h",
178 "filters/vp9_bool_decoder.cc",
179 "filters/vp9_bool_decoder.h",
180 "filters/vp9_compressed_header_parser.cc",
181 "filters/vp9_compressed_header_parser.h",
178 "filters/vp9_parser.cc", 182 "filters/vp9_parser.cc",
179 "filters/vp9_parser.h", 183 "filters/vp9_parser.h",
180 "filters/vp9_raw_bits_reader.cc", 184 "filters/vp9_raw_bits_reader.cc",
181 "filters/vp9_raw_bits_reader.h", 185 "filters/vp9_raw_bits_reader.h",
186 "filters/vp9_uncompressed_header_parser.cc",
187 "filters/vp9_uncompressed_header_parser.h",
182 "filters/webvtt_util.h", 188 "filters/webvtt_util.h",
183 "filters/wsola_internals.cc", 189 "filters/wsola_internals.cc",
184 "filters/wsola_internals.h", 190 "filters/wsola_internals.h",
185 "formats/common/offset_byte_queue.cc", 191 "formats/common/offset_byte_queue.cc",
186 "formats/common/offset_byte_queue.h", 192 "formats/common/offset_byte_queue.h",
187 "formats/webm/webm_audio_client.cc", 193 "formats/webm/webm_audio_client.cc",
188 "formats/webm/webm_audio_client.h", 194 "formats/webm/webm_audio_client.h",
189 "formats/webm/webm_cluster_parser.cc", 195 "formats/webm/webm_cluster_parser.cc",
190 "formats/webm/webm_cluster_parser.h", 196 "formats/webm/webm_cluster_parser.h",
191 "formats/webm/webm_constants.cc", 197 "formats/webm/webm_constants.cc",
(...skipping 701 matching lines...) Expand 10 before | Expand all | Expand 10 after
893 sources = [ 899 sources = [
894 "filters/vpx_video_decoder_fuzzertest.cc", 900 "filters/vpx_video_decoder_fuzzertest.cc",
895 ] 901 ]
896 deps = [ 902 deps = [
897 ":media", 903 ":media",
898 "//base", 904 "//base",
899 ] 905 ]
900 libfuzzer_options = [ "max_len = 400000" ] 906 libfuzzer_options = [ "max_len = 400000" ]
901 seed_corpus = "//media/test/data" 907 seed_corpus = "//media/test/data"
902 } 908 }
OLDNEW
« no previous file with comments | « no previous file | media/filters/vp9_bool_decoder.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698