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

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

Issue 10165010: Add a media pipeline status error code for decryption error. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: revise comment and rebase Created 8 years, 8 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/media_log.cc ('k') | media/filters/ffmpeg_video_decoder.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 namespace media { 10 namespace media {
11 11
12 // Status states for pipeline. All codes except PIPELINE_OK indicate errors. 12 // Status states for pipeline. All codes except PIPELINE_OK indicate errors.
13 enum PipelineStatus { 13 enum PipelineStatus {
14 PIPELINE_OK, 14 PIPELINE_OK,
15 PIPELINE_ERROR_URL_NOT_FOUND, 15 PIPELINE_ERROR_URL_NOT_FOUND,
16 PIPELINE_ERROR_NETWORK, 16 PIPELINE_ERROR_NETWORK,
17 PIPELINE_ERROR_DECODE, 17 PIPELINE_ERROR_DECODE,
18 PIPELINE_ERROR_DECRYPT,
18 PIPELINE_ERROR_ABORT, 19 PIPELINE_ERROR_ABORT,
19 PIPELINE_ERROR_INITIALIZATION_FAILED, 20 PIPELINE_ERROR_INITIALIZATION_FAILED,
20 PIPELINE_ERROR_REQUIRED_FILTER_MISSING, 21 PIPELINE_ERROR_REQUIRED_FILTER_MISSING,
21 PIPELINE_ERROR_OUT_OF_MEMORY, 22 PIPELINE_ERROR_OUT_OF_MEMORY,
22 PIPELINE_ERROR_COULD_NOT_RENDER, 23 PIPELINE_ERROR_COULD_NOT_RENDER,
23 PIPELINE_ERROR_READ, 24 PIPELINE_ERROR_READ,
24 PIPELINE_ERROR_AUDIO_HARDWARE, 25 PIPELINE_ERROR_AUDIO_HARDWARE,
25 PIPELINE_ERROR_OPERATION_PENDING, 26 PIPELINE_ERROR_OPERATION_PENDING,
26 PIPELINE_ERROR_INVALID_STATE, 27 PIPELINE_ERROR_INVALID_STATE,
27 // Demuxer related errors. 28 // Demuxer related errors.
(...skipping 23 matching lines...) Expand all
51 uint32 video_frames_decoded; 52 uint32 video_frames_decoded;
52 uint32 video_frames_dropped; 53 uint32 video_frames_dropped;
53 }; 54 };
54 55
55 // Used for updating pipeline statistics. 56 // Used for updating pipeline statistics.
56 typedef base::Callback<void(const PipelineStatistics&)> StatisticsCB; 57 typedef base::Callback<void(const PipelineStatistics&)> StatisticsCB;
57 58
58 } // namespace media 59 } // namespace media
59 60
60 #endif // MEDIA_BASE_PIPELINE_STATUS_H_ 61 #endif // MEDIA_BASE_PIPELINE_STATUS_H_
OLDNEW
« no previous file with comments | « media/base/media_log.cc ('k') | media/filters/ffmpeg_video_decoder.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698