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

Side by Side Diff: media/base/pipeline_status.h

Issue 10837206: Rewrite media::Pipeline state transition machinery and simplify shutdown. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src
Patch Set: nits Created 8 years, 3 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/pipeline.cc ('k') | media/base/pipeline_unittest.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 #ifndef MEDIA_BASE_PIPELINE_STATUS_H_ 5 #ifndef MEDIA_BASE_PIPELINE_STATUS_H_
6 #define MEDIA_BASE_PIPELINE_STATUS_H_ 6 #define MEDIA_BASE_PIPELINE_STATUS_H_
7 7
8 #include "base/callback.h" 8 #include "base/callback.h"
9 9
10 #include <string> 10 #include <string>
11 11
12 namespace media { 12 namespace media {
13 13
14 // Status states for pipeline. All codes except PIPELINE_OK indicate errors. 14 // Status states for pipeline. All codes except PIPELINE_OK indicate errors.
15 // Logged to UMA, so never reuse a value, always add new/greater ones! 15 // Logged to UMA, so never reuse a value, always add new/greater ones!
16 // TODO(vrk/scherkus): Trim the unused status codes. (crbug.com/126070) 16 // TODO(vrk/scherkus): Trim the unused status codes. (crbug.com/126070)
17 enum PipelineStatus { 17 enum PipelineStatus {
18 PIPELINE_OK = 0, 18 PIPELINE_OK = 0,
19 PIPELINE_ERROR_URL_NOT_FOUND = 1, 19 PIPELINE_ERROR_URL_NOT_FOUND = 1,
20 PIPELINE_ERROR_NETWORK = 2, 20 PIPELINE_ERROR_NETWORK = 2,
21 PIPELINE_ERROR_DECODE = 3, 21 PIPELINE_ERROR_DECODE = 3,
22 PIPELINE_ERROR_DECRYPT = 4, 22 PIPELINE_ERROR_DECRYPT = 4,
23 PIPELINE_ERROR_ABORT = 5, 23 PIPELINE_ERROR_ABORT = 5,
24 PIPELINE_ERROR_INITIALIZATION_FAILED = 6, 24 PIPELINE_ERROR_INITIALIZATION_FAILED = 6,
25 PIPELINE_ERROR_REQUIRED_FILTER_MISSING = 7,
26 PIPELINE_ERROR_COULD_NOT_RENDER = 8, 25 PIPELINE_ERROR_COULD_NOT_RENDER = 8,
27 PIPELINE_ERROR_READ = 9, 26 PIPELINE_ERROR_READ = 9,
28 PIPELINE_ERROR_OPERATION_PENDING = 10, 27 PIPELINE_ERROR_OPERATION_PENDING = 10,
29 PIPELINE_ERROR_INVALID_STATE = 11, 28 PIPELINE_ERROR_INVALID_STATE = 11,
30 // Demuxer related errors. 29 // Demuxer related errors.
31 DEMUXER_ERROR_COULD_NOT_OPEN = 12, 30 DEMUXER_ERROR_COULD_NOT_OPEN = 12,
32 DEMUXER_ERROR_COULD_NOT_PARSE = 13, 31 DEMUXER_ERROR_COULD_NOT_PARSE = 13,
33 DEMUXER_ERROR_NO_SUPPORTED_STREAMS = 14, 32 DEMUXER_ERROR_NO_SUPPORTED_STREAMS = 14,
34 // Decoder related errors. 33 // Decoder related errors.
35 DECODER_ERROR_NOT_SUPPORTED = 15, 34 DECODER_ERROR_NOT_SUPPORTED = 15,
(...skipping 21 matching lines...) Expand all
57 uint32 video_frames_decoded; 56 uint32 video_frames_decoded;
58 uint32 video_frames_dropped; 57 uint32 video_frames_dropped;
59 }; 58 };
60 59
61 // Used for updating pipeline statistics. 60 // Used for updating pipeline statistics.
62 typedef base::Callback<void(const PipelineStatistics&)> StatisticsCB; 61 typedef base::Callback<void(const PipelineStatistics&)> StatisticsCB;
63 62
64 } // namespace media 63 } // namespace media
65 64
66 #endif // MEDIA_BASE_PIPELINE_STATUS_H_ 65 #endif // MEDIA_BASE_PIPELINE_STATUS_H_
OLDNEW
« no previous file with comments | « media/base/pipeline.cc ('k') | media/base/pipeline_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698