summaryrefslogtreecommitdiffstats
path: root/media/ffmpeg/file_protocol.h
blob: 7c16c4b8af04ceb794f4173acec5586b1e0cb686 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Copyright (c) 2011 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_FFMPEG_FILE_PROTOCOL_H_
#define MEDIA_FFMPEG_FILE_PROTOCOL_H_

#include "media/base/media_export.h"

struct URLProtocol;
MEDIA_EXPORT extern URLProtocol kFFmpegFileProtocol;

#endif  // MEDIA_FFMPEG_FILE_PROTOCOL_H_