OLD | NEW |
---|---|
1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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 #include <stddef.h> | 5 #include <stddef.h> |
6 #include <stdint.h> | 6 #include <stdint.h> |
7 | 7 |
8 #include "base/bind.h" | 8 #include "base/bind.h" |
9 #include "media/formats/mp2t/es_parser_adts.h" | 9 #include "media/formats/mp2t/es_parser_adts.h" |
10 | 10 |
11 static void NewAudioConfig(const media::AudioDecoderConfig& config) {} | 11 static void NewAudioConfig(const media::AudioDecoderConfig& config) {} |
12 static void EmitBuffer(scoped_refptr<media::StreamParserBuffer> buffer) {} | 12 static void EmitBuffer(scoped_refptr<media::StreamParserBuffer> buffer) {} |
13 | 13 |
14 // Entry point for LibFuzzer. | 14 // Entry point for LibFuzzer. |
15 extern "C" int LLVMFuzzerTestOneInput(const uint8_t* data, size_t size) { | 15 extern "C" int LLVMFuzzerTestOneInput(const uint8_t* data, size_t size) { |
16 media::mp2t::EsParserAdts es_parser(base::Bind(&NewAudioConfig), | 16 media::mp2t::EsParserAdts es_parser(base::Bind(&NewAudioConfig), |
17 base::Bind(&EmitBuffer), true); | 17 base::Bind(&EmitBuffer), true); |
18 if (!es_parser.Parse(data, size, media::kNoTimestamp(), | 18 if (!es_parser.Parse(data, size, media::kNoTimestamp, |
19 media::kNoDecodeTimestamp())) { | 19 media::kNoDecodeTimestamp())) { |
mmoroz
2016/07/19 08:50:33
Sorry if |kNoDecodeTimestamp()| shouldn't be repla
| |
20 return 0; | 20 return 0; |
21 } | 21 } |
22 es_parser.Flush(); | 22 es_parser.Flush(); |
23 return 0; | 23 return 0; |
24 } | 24 } |
OLD | NEW |