1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 // FFmpegGlue is an interface between FFmpeg and Chrome used to proxy FFmpeg's
6 // read and seek requests to Chrome's internal data structures. The glue works
7 // through the AVIO interface provided by FFmpeg.
9 // AVIO works through a special AVIOContext created through avio_alloc_context()
10 // which is attached to the AVFormatContext used for demuxing. The AVIO context
11 // is initialized with read and seek methods which FFmpeg calls when necessary.
13 // During OpenContext() FFmpegGlue will tell FFmpeg to use Chrome's AVIO context
14 // by passing NULL in for the filename parameter to avformat_open_input(). All
15 // FFmpeg operations using the configured AVFormatContext will then redirect
16 // reads and seeks through the glue.
18 // The glue in turn processes those read and seek requests using the
19 // FFmpegURLProtocol provided during construction.
21 // FFmpegGlue is also responsible for initializing FFmpeg, which is done once
22 // per process. Initialization includes: turning off log messages, registering
23 // a lock manager, and finally registering all demuxers and codecs.
25 #ifndef MEDIA_FILTERS_FFMPEG_GLUE_H_
26 #define MEDIA_FILTERS_FFMPEG_GLUE_H_
28 #include "base/basictypes.h"
29 #include "base/memory/scoped_ptr.h"
30 #include "media/base/media_export.h"
31 #include "media/ffmpeg/ffmpeg_deleters.h"
33 struct AVFormatContext
;
38 class MEDIA_EXPORT FFmpegURLProtocol
{
40 // Read the given amount of bytes into data, returns the number of bytes read
41 // if successful, kReadError otherwise.
42 virtual int Read(int size
, uint8
* data
) = 0;
44 // Returns true and the current file position for this file, false if the
45 // file position could not be retrieved.
46 virtual bool GetPosition(int64
* position_out
) = 0;
48 // Returns true if the file position could be set, false otherwise.
49 virtual bool SetPosition(int64 position
) = 0;
51 // Returns true and the file size, false if the file size could not be
53 virtual bool GetSize(int64
* size_out
) = 0;
55 // Returns false if this protocol supports random seeking.
56 virtual bool IsStreaming() = 0;
59 class MEDIA_EXPORT FFmpegGlue
{
61 static void InitializeFFmpeg();
63 // See file documentation for usage. |protocol| must outlive FFmpegGlue.
64 explicit FFmpegGlue(FFmpegURLProtocol
* protocol
);
67 // Opens an AVFormatContext specially prepared to process reads and seeks
68 // through the FFmpegURLProtocol provided during construction.
70 AVFormatContext
* format_context() { return format_context_
; }
74 AVFormatContext
* format_context_
;
75 scoped_ptr
<AVIOContext
, ScopedPtrAVFree
> avio_context_
;
77 DISALLOW_COPY_AND_ASSIGN(FFmpegGlue
);
82 #endif // MEDIA_FILTERS_FFMPEG_GLUE_H_