Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(190)

Side by Side Diff: media/filters/ffmpeg_demuxer.h

Issue 9234066: Detect errors in audio output and report them upstream. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 8 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « media/base/audio_renderer_sink.h ('k') | media/filters/ffmpeg_demuxer.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 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 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 // Implements the Demuxer interface using FFmpeg's libavformat. At this time 5 // Implements the Demuxer interface using FFmpeg's libavformat. At this time
6 // will support demuxing any audio/video format thrown at it. The streams 6 // will support demuxing any audio/video format thrown at it. The streams
7 // output mime types audio/x-ffmpeg and video/x-ffmpeg and include an integer 7 // output mime types audio/x-ffmpeg and video/x-ffmpeg and include an integer
8 // key FFmpegCodecID which contains the CodecID enumeration value. The CodecIDs 8 // key FFmpegCodecID which contains the CodecID enumeration value. The CodecIDs
9 // can be used to create and initialize the corresponding FFmpeg decoder. 9 // can be used to create and initialize the corresponding FFmpeg decoder.
10 // 10 //
(...skipping 243 matching lines...) Expand 10 before | Expand all | Expand 10 after
254 254
255 // Used to skip the implicit "first seek" to avoid resetting FFmpeg's internal 255 // Used to skip the implicit "first seek" to avoid resetting FFmpeg's internal
256 // state. 256 // state.
257 bool first_seek_hack_; 257 bool first_seek_hack_;
258 258
259 // The first timestamp of the opened media file. This is used to set the 259 // The first timestamp of the opened media file. This is used to set the
260 // starting clock value to match the timestamps in the media file. Default 260 // starting clock value to match the timestamps in the media file. Default
261 // is 0. 261 // is 0.
262 base::TimeDelta start_time_; 262 base::TimeDelta start_time_;
263 263
264 // Whether audio has been disabled for this demuxer (in which case this class
265 // drops packets destined for AUDIO demuxer streams on the floor).
266 bool audio_disabled_;
267
264 DISALLOW_COPY_AND_ASSIGN(FFmpegDemuxer); 268 DISALLOW_COPY_AND_ASSIGN(FFmpegDemuxer);
265 }; 269 };
266 270
267 } // namespace media 271 } // namespace media
268 272
269 #endif // MEDIA_FILTERS_FFMPEG_DEMUXER_H_ 273 #endif // MEDIA_FILTERS_FFMPEG_DEMUXER_H_
OLDNEW
« no previous file with comments | « media/base/audio_renderer_sink.h ('k') | media/filters/ffmpeg_demuxer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698