| 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 <memory> | 8 #include <memory> |
| 9 | 9 |
| 10 #include "base/bind.h" | 10 #include "base/bind.h" |
| (...skipping 14 matching lines...) Expand all Loading... |
| 25 }; | 25 }; |
| 26 | 26 |
| 27 static void NewAudioConfig(const media::AudioDecoderConfig& config) {} | 27 static void NewAudioConfig(const media::AudioDecoderConfig& config) {} |
| 28 static void EmitBuffer(scoped_refptr<media::StreamParserBuffer> buffer) {} | 28 static void EmitBuffer(scoped_refptr<media::StreamParserBuffer> buffer) {} |
| 29 | 29 |
| 30 // Entry point for LibFuzzer. | 30 // Entry point for LibFuzzer. |
| 31 extern "C" int LLVMFuzzerTestOneInput(const uint8_t* data, size_t size) { | 31 extern "C" int LLVMFuzzerTestOneInput(const uint8_t* data, size_t size) { |
| 32 scoped_refptr<NullMediaLog> media_log(new NullMediaLog()); | 32 scoped_refptr<NullMediaLog> media_log(new NullMediaLog()); |
| 33 media::mp2t::EsParserMpeg1Audio es_parser(base::Bind(&NewAudioConfig), | 33 media::mp2t::EsParserMpeg1Audio es_parser(base::Bind(&NewAudioConfig), |
| 34 base::Bind(&EmitBuffer), media_log); | 34 base::Bind(&EmitBuffer), media_log); |
| 35 if (!es_parser.Parse(data, size, media::kNoTimestamp(), | 35 if (!es_parser.Parse(data, size, media::kNoTimestamp, |
| 36 media::kNoDecodeTimestamp())) { | 36 media::kNoDecodeTimestamp())) { |
| 37 return 0; | 37 return 0; |
| 38 } | 38 } |
| 39 es_parser.Flush(); | 39 es_parser.Flush(); |
| 40 return 0; | 40 return 0; |
| 41 } | 41 } |
| OLD | NEW |