blob: d4df2d3181aa6288011b860592b433e474f1aac3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
// Copyright (c) 2009 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.
//
// Implements a basic file I/O URLProtocol for FFmpeg. Since we don't build
// FFmpeg binaries with protocols, we have to write our own.
#ifndef MEDIA_TOOLS_MEDIA_BENCH_FILE_PROTOCOL_H_
#define MEDIA_TOOLS_MEDIA_BENCH_FILE_PROTOCOL_H_
struct URLProtocol;
extern URLProtocol kFFmpegFileProtocol;
#endif // MEDIA_TOOLS_MEDIA_BENCH_FILE_PROTOCOL_H_
|