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 #include "media/filters/ffmpeg_video_decoder.h"
10 #include "base/bind.h"
11 #include "base/callback_helpers.h"
12 #include "base/command_line.h"
13 #include "base/location.h"
14 #include "base/single_thread_task_runner.h"
15 #include "base/strings/string_number_conversions.h"
16 #include "media/base/bind_to_current_loop.h"
17 #include "media/base/decoder_buffer.h"
18 #include "media/base/limits.h"
19 #include "media/base/media_switches.h"
20 #include "media/base/pipeline.h"
21 #include "media/base/video_frame.h"
22 #include "media/base/video_util.h"
23 #include "media/ffmpeg/ffmpeg_common.h"
24 #include "media/filters/ffmpeg_glue.h"
28 // Always try to use three threads for video decoding. There is little reason
29 // not to since current day CPUs tend to be multi-core and we measured
30 // performance benefits on older machines such as P4s with hyperthreading.
32 // Handling decoding on separate threads also frees up the pipeline thread to
33 // continue processing. Although it'd be nice to have the option of a single
34 // decoding thread, FFmpeg treats having one thread the same as having zero
35 // threads (i.e., avcodec_decode_video() will execute on the calling thread).
36 // Yet another reason for having two threads :)
37 static const int kDecodeThreads
= 2;
38 static const int kMaxDecodeThreads
= 16;
40 // Returns the number of threads given the FFmpeg CodecID. Also inspects the
41 // command line for a valid --video-threads flag.
42 static int GetThreadCount(AVCodecID codec_id
) {
43 // Refer to http://crbug.com/93932 for tsan suppressions on decoding.
44 int decode_threads
= kDecodeThreads
;
46 const base::CommandLine
* cmd_line
= base::CommandLine::ForCurrentProcess();
47 std::string
threads(cmd_line
->GetSwitchValueASCII(switches::kVideoThreads
));
48 if (threads
.empty() || !base::StringToInt(threads
, &decode_threads
))
49 return decode_threads
;
51 decode_threads
= std::max(decode_threads
, 0);
52 decode_threads
= std::min(decode_threads
, kMaxDecodeThreads
);
53 return decode_threads
;
56 static int GetVideoBufferImpl(struct AVCodecContext
* s
,
59 FFmpegVideoDecoder
* decoder
= static_cast<FFmpegVideoDecoder
*>(s
->opaque
);
60 return decoder
->GetVideoBuffer(s
, frame
, flags
);
63 static void ReleaseVideoBufferImpl(void* opaque
, uint8
* data
) {
64 scoped_refptr
<VideoFrame
> video_frame
;
65 video_frame
.swap(reinterpret_cast<VideoFrame
**>(&opaque
));
68 static size_t RoundUp(size_t value
, size_t alignment
) {
69 // Check that |alignment| is a power of 2.
70 DCHECK((alignment
+ (alignment
- 1)) == (alignment
| (alignment
- 1)));
71 return ((value
+ (alignment
- 1)) & ~(alignment
- 1));
74 FFmpegVideoDecoder::FFmpegVideoDecoder(
75 const scoped_refptr
<base::SingleThreadTaskRunner
>& task_runner
)
76 : task_runner_(task_runner
), state_(kUninitialized
),
77 decode_nalus_(false) {}
79 int FFmpegVideoDecoder::GetVideoBuffer(struct AVCodecContext
* codec_context
,
82 // Don't use |codec_context_| here! With threaded decoding,
83 // it will contain unsynchronized width/height/pix_fmt values,
84 // whereas |codec_context| contains the current threads's
85 // updated width/height/pix_fmt, which can change for adaptive
87 const VideoFrame::Format format
=
88 PixelFormatToVideoFormat(codec_context
->pix_fmt
);
90 if (format
== VideoFrame::UNKNOWN
)
91 return AVERROR(EINVAL
);
92 DCHECK(format
== VideoFrame::YV12
|| format
== VideoFrame::YV16
||
93 format
== VideoFrame::YV24
);
95 gfx::Size
size(codec_context
->width
, codec_context
->height
);
96 const int ret
= av_image_check_size(size
.width(), size
.height(), 0, NULL
);
100 gfx::Size natural_size
;
101 if (codec_context
->sample_aspect_ratio
.num
> 0) {
102 natural_size
= GetNaturalSize(size
,
103 codec_context
->sample_aspect_ratio
.num
,
104 codec_context
->sample_aspect_ratio
.den
);
106 natural_size
= config_
.natural_size();
109 // FFmpeg has specific requirements on the allocation size of the frame. The
110 // following logic replicates FFmpeg's allocation strategy to ensure buffers
111 // are not overread / overwritten. See ff_init_buffer_info() for details.
113 // When lowres is non-zero, dimensions should be divided by 2^(lowres), but
114 // since we don't use this, just DCHECK that it's zero.
116 // Always round up to a multiple of two to match VideoFrame restrictions on
118 DCHECK_EQ(codec_context
->lowres
, 0);
119 gfx::Size
coded_size(
120 RoundUp(std::max(size
.width(), codec_context
->coded_width
), 2),
121 RoundUp(std::max(size
.height(), codec_context
->coded_height
), 2));
123 if (!VideoFrame::IsValidConfig(format
, VideoFrame::STORAGE_UNKNOWN
,
124 coded_size
, gfx::Rect(size
), natural_size
)) {
125 return AVERROR(EINVAL
);
128 scoped_refptr
<VideoFrame
> video_frame
= frame_pool_
.CreateFrame(
129 format
, coded_size
, gfx::Rect(size
), natural_size
, kNoTimestamp());
130 if (format
== VideoFrame::YV12
&&
131 codec_context
->colorspace
== AVCOL_SPC_BT709
) {
132 video_frame
->metadata()->SetInteger(VideoFrameMetadata::COLOR_SPACE
,
133 VideoFrame::COLOR_SPACE_HD_REC709
);
136 for (int i
= 0; i
< 3; i
++) {
137 frame
->data
[i
] = video_frame
->data(i
);
138 frame
->linesize
[i
] = video_frame
->stride(i
);
141 frame
->width
= coded_size
.width();
142 frame
->height
= coded_size
.height();
143 frame
->format
= codec_context
->pix_fmt
;
144 frame
->reordered_opaque
= codec_context
->reordered_opaque
;
146 // Now create an AVBufferRef for the data just allocated. It will own the
147 // reference to the VideoFrame object.
149 video_frame
.swap(reinterpret_cast<VideoFrame
**>(&opaque
));
151 av_buffer_create(frame
->data
[0],
152 VideoFrame::AllocationSize(format
, coded_size
),
153 ReleaseVideoBufferImpl
,
159 std::string
FFmpegVideoDecoder::GetDisplayName() const {
160 return "FFmpegVideoDecoder";
163 void FFmpegVideoDecoder::Initialize(const VideoDecoderConfig
& config
,
165 const InitCB
& init_cb
,
166 const OutputCB
& output_cb
) {
167 DCHECK(task_runner_
->BelongsToCurrentThread());
168 DCHECK(!config
.is_encrypted());
169 DCHECK(!output_cb
.is_null());
171 FFmpegGlue::InitializeFFmpeg();
174 InitCB bound_init_cb
= BindToCurrentLoop(init_cb
);
176 if (!config
.IsValidConfig() || !ConfigureDecoder(low_delay
)) {
177 bound_init_cb
.Run(false);
181 output_cb_
= BindToCurrentLoop(output_cb
);
185 bound_init_cb
.Run(true);
188 void FFmpegVideoDecoder::Decode(const scoped_refptr
<DecoderBuffer
>& buffer
,
189 const DecodeCB
& decode_cb
) {
190 DCHECK(task_runner_
->BelongsToCurrentThread());
191 DCHECK(buffer
.get());
192 DCHECK(!decode_cb
.is_null());
193 CHECK_NE(state_
, kUninitialized
);
195 DecodeCB decode_cb_bound
= BindToCurrentLoop(decode_cb
);
197 if (state_
== kError
) {
198 decode_cb_bound
.Run(kDecodeError
);
202 if (state_
== kDecodeFinished
) {
203 decode_cb_bound
.Run(kOk
);
207 DCHECK_EQ(state_
, kNormal
);
209 // During decode, because reads are issued asynchronously, it is possible to
210 // receive multiple end of stream buffers since each decode is acked. When the
211 // first end of stream buffer is read, FFmpeg may still have frames queued
212 // up in the decoder so we need to go through the decode loop until it stops
213 // giving sensible data. After that, the decoder should output empty
214 // frames. There are three states the decoder can be in:
216 // kNormal: This is the starting state. Buffers are decoded. Decode errors
218 // kDecodeFinished: All calls return empty frames.
219 // kError: Unexpected error happened.
221 // These are the possible state transitions.
223 // kNormal -> kDecodeFinished:
224 // When EOS buffer is received and the codec has been flushed.
225 // kNormal -> kError:
226 // A decoding error occurs and decoding needs to stop.
227 // (any state) -> kNormal:
228 // Any time Reset() is called.
230 bool has_produced_frame
;
232 has_produced_frame
= false;
233 if (!FFmpegDecode(buffer
, &has_produced_frame
)) {
235 decode_cb_bound
.Run(kDecodeError
);
238 // Repeat to flush the decoder after receiving EOS buffer.
239 } while (buffer
->end_of_stream() && has_produced_frame
);
241 if (buffer
->end_of_stream())
242 state_
= kDecodeFinished
;
244 // VideoDecoderShim expects that |decode_cb| is called only after
246 decode_cb_bound
.Run(kOk
);
249 void FFmpegVideoDecoder::Reset(const base::Closure
& closure
) {
250 DCHECK(task_runner_
->BelongsToCurrentThread());
252 avcodec_flush_buffers(codec_context_
.get());
254 task_runner_
->PostTask(FROM_HERE
, closure
);
257 FFmpegVideoDecoder::~FFmpegVideoDecoder() {
258 DCHECK(task_runner_
->BelongsToCurrentThread());
260 if (state_
!= kUninitialized
)
261 ReleaseFFmpegResources();
264 bool FFmpegVideoDecoder::FFmpegDecode(
265 const scoped_refptr
<DecoderBuffer
>& buffer
,
266 bool* has_produced_frame
) {
267 DCHECK(!*has_produced_frame
);
269 // Create a packet for input data.
270 // Due to FFmpeg API changes we no longer have const read-only pointers.
272 av_init_packet(&packet
);
273 if (buffer
->end_of_stream()) {
277 packet
.data
= const_cast<uint8
*>(buffer
->data());
278 packet
.size
= buffer
->data_size();
280 // Let FFmpeg handle presentation timestamp reordering.
281 codec_context_
->reordered_opaque
= buffer
->timestamp().InMicroseconds();
284 int frame_decoded
= 0;
285 int result
= avcodec_decode_video2(codec_context_
.get(),
289 // Log the problem if we can't decode a video frame and exit early.
291 LOG(ERROR
) << "Error decoding video: " << buffer
->AsHumanReadableString();
295 // FFmpeg says some codecs might have multiple frames per packet. Previous
296 // discussions with rbultje@ indicate this shouldn't be true for the codecs
298 DCHECK_EQ(result
, packet
.size
);
300 // If no frame was produced then signal that more data is required to
301 // produce more frames. This can happen under two circumstances:
302 // 1) Decoder was recently initialized/flushed
303 // 2) End of stream was reached and all internal frames have been output
304 if (frame_decoded
== 0) {
308 // TODO(fbarchard): Work around for FFmpeg http://crbug.com/27675
309 // The decoder is in a bad state and not decoding correctly.
310 // Checking for NULL avoids a crash in CopyPlane().
311 if (!av_frame_
->data
[VideoFrame::kYPlane
] ||
312 !av_frame_
->data
[VideoFrame::kUPlane
] ||
313 !av_frame_
->data
[VideoFrame::kVPlane
]) {
314 LOG(ERROR
) << "Video frame was produced yet has invalid frame data.";
315 av_frame_unref(av_frame_
.get());
319 scoped_refptr
<VideoFrame
> frame
=
320 reinterpret_cast<VideoFrame
*>(av_buffer_get_opaque(av_frame_
->buf
[0]));
321 frame
->set_timestamp(
322 base::TimeDelta::FromMicroseconds(av_frame_
->reordered_opaque
));
323 *has_produced_frame
= true;
324 output_cb_
.Run(frame
);
326 av_frame_unref(av_frame_
.get());
330 void FFmpegVideoDecoder::ReleaseFFmpegResources() {
331 codec_context_
.reset();
335 bool FFmpegVideoDecoder::ConfigureDecoder(bool low_delay
) {
336 // Release existing decoder resources if necessary.
337 ReleaseFFmpegResources();
339 // Initialize AVCodecContext structure.
340 codec_context_
.reset(avcodec_alloc_context3(NULL
));
341 VideoDecoderConfigToAVCodecContext(config_
, codec_context_
.get());
343 codec_context_
->thread_count
= GetThreadCount(codec_context_
->codec_id
);
344 codec_context_
->thread_type
= low_delay
? FF_THREAD_SLICE
: FF_THREAD_FRAME
;
345 codec_context_
->opaque
= this;
346 codec_context_
->flags
|= CODEC_FLAG_EMU_EDGE
;
347 codec_context_
->get_buffer2
= GetVideoBufferImpl
;
348 codec_context_
->refcounted_frames
= 1;
351 codec_context_
->flags2
|= CODEC_FLAG2_CHUNKS
;
353 AVCodec
* codec
= avcodec_find_decoder(codec_context_
->codec_id
);
354 if (!codec
|| avcodec_open2(codec_context_
.get(), codec
, NULL
) < 0) {
355 ReleaseFFmpegResources();
359 av_frame_
.reset(av_frame_alloc());