Index: media/filters/ffmpeg_video_decoder.cc |
diff --git a/media/filters/ffmpeg_video_decoder.cc b/media/filters/ffmpeg_video_decoder.cc |
index 2ca570890f6cde7bcf4d786ca722ee423325f0bf..b2915a0308a17e15451b409fea91194314e89928 100644 |
--- a/media/filters/ffmpeg_video_decoder.cc |
+++ b/media/filters/ffmpeg_video_decoder.cc |
@@ -130,7 +130,7 @@ int FFmpegVideoDecoder::GetVideoBuffer(struct AVCodecContext* codec_context, |
// FFmpeg expects the initialize allocation to be zero-initialized. Failure |
// to do so can lead to unitialized value usage. See http://crbug.com/390941 |
scoped_refptr<VideoFrame> video_frame = frame_pool_.CreateFrame( |
- format, coded_size, gfx::Rect(size), natural_size, kNoTimestamp()); |
+ format, coded_size, gfx::Rect(size), natural_size, kNoTimestamp); |
// Prefer the color space from the codec context. If it's not specified (or is |
// set to an unsupported value), fall back on the value from the config. |