/external/chromium_org/media/base/ |
pipeline.cc | 5 #include "media/base/pipeline.h" 34 Pipeline::Pipeline(const scoped_refptr<base::MessageLoopProxy>& message_loop, 61 Pipeline::~Pipeline() { 63 << "Pipeline must be destroyed on same thread that created it"; 72 void Pipeline::Start(scoped_ptr<FilterCollection> collection, 79 CHECK(!running_) << "Media pipeline is already running"; 84 &Pipeline::StartTask, base::Unretained(this), base::Passed(&collection), 88 void Pipeline::Stop(const base::Closure& stop_cb) [all...] |
pipeline.h | 37 // Pipeline runs the media pipeline. Filters are created and called on the 38 // message loop injected into this object. Pipeline works like a state 68 class MEDIA_EXPORT Pipeline : public DemuxerHost { 70 // Buffering states the pipeline transitions between during playback. 85 // Constructs a media pipeline that will execute on |message_loop|. 86 Pipeline(const scoped_refptr<base::MessageLoopProxy>& message_loop, 88 virtual ~Pipeline(); 90 // Build a pipeline to using the given filter collection to construct a filter 103 // pipeline's buffering state changes [all...] |
media_log.h | 15 #include "media/base/pipeline.h" 62 Pipeline::State state);
|
pipeline_unittest.cc | 18 #include "media/base/pipeline.h" 28 // TODO(scherkus): Remove InSequence after refactoring Pipeline. 49 ACTION_P2(Stop, pipeline, stop_cb) { 50 pipeline->Stop(stop_cb); 53 ACTION_P2(SetError, pipeline, status) { 54 pipeline->SetErrorForTesting(status); 57 // Used for setting expectations on pipeline callbacks. Using a StrictMock 69 MOCK_METHOD1(OnBufferingState, void(Pipeline::BufferingState)); 79 // InitializationComplete(), which keeps the pipeline humming along. If 85 : pipeline_(new Pipeline(message_loop_.message_loop_proxy() 937 Pipeline* pipeline = pipeline_.get(); local [all...] |
media_log.cc | 71 return "pipeline: ok"; 73 return "pipeline: url not found"; 75 return "pipeline: network error"; 77 return "pipeline: decode error"; 79 return "pipeline: decrypt error"; 81 return "pipeline: abort"; 83 return "pipeline: initialization failed"; 85 return "pipeline: could not render"; 87 return "pipeline: read error"; 89 return "pipeline: operation pending" [all...] |
/external/llvm/utils/lit/lit/ |
ShUtil.py | 5 from lit.ShCommands import Command, Pipeline, Seq 230 return Pipeline(commands, negate, self.pipefail) 291 Pipeline([Command(['echo', 'hello'], [])], False)) 293 Pipeline([Command(['echo', ''], [])], False)) 295 Pipeline([Command(['echo', '-DFOO=a'], [])], False)) 297 Pipeline([Command(['echo', '-DFOO=a'], [])], False)) 301 Pipeline([Command(['echo', 'hello'], 304 Pipeline([Command(['echo', 'hello'], [(('>',), 'c'), 307 Pipeline([Command(['a'], [(('>&',2), '1')])], False)) 311 Pipeline([Command(['a'], []) [all...] |
ShCommands.py | 38 class Pipeline: 45 return 'Pipeline(%r, %r, %r)' % (self.commands, self.negate, 49 if not isinstance(other, Pipeline):
|
TestRunner.py | 73 assert isinstance(cmd, ShUtil.Pipeline)
|
/external/nist-sip/java/gov/nist/javax/sip/parser/ |
Pipeline.java | 43 public class Pipeline extends InputStream { 59 Pipeline pipeline; field in class:Pipeline.MyTimer 63 protected MyTimer(Pipeline pipeline) { 64 this.pipeline = pipeline; 72 pipeline.close(); 122 public Pipeline(InputStream pipe, int readTimeout, Timer timer) {
|
PipelinedMsgParser.java | 74 private Pipeline rawInputStream; 106 Pipeline in, boolean debug, int maxMessageSize) { 126 public PipelinedMsgParser(SIPMessageListener mhandler, Pipeline in, 138 public PipelinedMsgParser(Pipeline in) { 213 Pipeline inputStream = this.rawInputStream; 387 * Deliver tx timeout for Canceled INVITE. Fix pipeline thread exit.
|
/external/chromium_org/media/filters/ |
pipeline_integration_test_base.cc | 31 pipeline_(new Pipeline(message_loop_.message_loop_proxy(), 105 EXPECT_CALL(*this, OnBufferingState(Pipeline::kHaveMetadata)) 107 EXPECT_CALL(*this, OnBufferingState(Pipeline::kPrerollCompleted)) 138 EXPECT_CALL(*this, OnBufferingState(Pipeline::kHaveMetadata)) 140 EXPECT_CALL(*this, OnBufferingState(Pipeline::kPrerollCompleted)) 166 EXPECT_CALL(*this, OnBufferingState(Pipeline::kPrerollCompleted));
|
pipeline_integration_test_base.h | 15 #include "media/base/pipeline.h" 45 // Integration tests for Pipeline. Real demuxers, real decoders, and 46 // base renderer implementations are used to verify pipeline functionality. The 52 // little effect on verifying pipeline behavior and allow tests to run faster 69 // Initialize the pipeline and ignore any status updates. Useful for testing 84 // --video-threads=1 to ensure correctness. Pipeline must have been started 89 // after playback completes. Pipeline must have been started with hashing 94 // Pipeline must have been started with clockless playback enabled. 104 scoped_ptr<Pipeline> pipeline_; 134 MOCK_METHOD1(OnBufferingState, void(Pipeline::BufferingState)) [all...] |
pipeline_integration_test.cc | 381 EXPECT_CALL(*this, OnBufferingState(Pipeline::kHaveMetadata)) 383 EXPECT_CALL(*this, OnBufferingState(Pipeline::kPrerollCompleted)) 405 EXPECT_CALL(*this, OnBufferingState(Pipeline::kHaveMetadata)) 407 EXPECT_CALL(*this, OnBufferingState(Pipeline::kPrerollCompleted)) [all...] |
/external/chromium_org/media/tools/player_x11/ |
player_x11.cc | 24 #include "media/base/pipeline.h" 96 static void OnBufferingState(media::Pipeline::BufferingState buffering_state) {} 111 void InitPipeline(media::Pipeline* pipeline, 145 pipeline->Start( 150 // Wait until the pipeline is fully initialized. 152 CHECK_EQ(status, media::PIPELINE_OK) << "Pipeline initialization failed"; 155 pipeline->SetPlaybackRate(1.0f); 163 media::Pipeline* pipeline, [all...] |
/external/chromium_org/content/renderer/media/ |
webmediaplayer_impl.h | 6 // It contains Pipeline which is the actual media player pipeline, it glues 7 // the media player pipeline, data source, audio renderer and renderer. 8 // Pipeline would creates multiple threads and access some public methods 37 #include "media/base/pipeline.h" 127 // TODO(hclam): Ask the pipeline about the state rather than having reading 187 media::Pipeline::BufferingState buffering_state); 215 // Finishes starting the pipeline due to a call to load(). 248 // Gets the duration value reported by the pipeline. 266 // TODO(hclam): get rid of these members and read from the pipeline directly [all...] |
webmediaplayer_impl.cc | 40 #include "media/base/pipeline.h" 169 pipeline_.reset(new media::Pipeline(media_loop_, media_log_.get())); 933 media::Pipeline::BufferingState buffering_state) { 937 case media::Pipeline::kHaveMetadata: 947 case media::Pipeline::kPrerollCompleted [all...] |
/external/chromium/webkit/glue/ |
webmediaplayer_impl.h | 6 // It contains PipelineImpl which is the actual media player pipeline, it glues 7 // the media player pipeline, data source, audio renderer and renderer. 15 // The media playback pipeline. 21 // Proxies methods calls from the media pipeline to WebKit. 64 #include "media/base/pipeline.h" 86 // A proxy class that dispatches method calls from the media pipeline to 87 // WebKit. Since there are multiple threads in the media pipeline and there's 88 // need for the media pipeline to call to WebKit, e.g. repaint requests, 90 // from the media pipeline on different threads and serialize these calls 143 // Notify |webmediaplayer_| that a pipeline error has occurred durin [all...] |
/external/nist-sip/java/gov/nist/javax/sip/stack/ |
TCPMessageChannel.java | 592 Pipeline hispipe = null; 593 // Create a pipeline to connect to our message parser. 594 hispipe = new Pipeline(myClientInputStream, sipStack.readTimeout,
|
TLSMessageChannel.java | 572 Pipeline hispipe = null; 573 // Create a pipeline to connect to our message parser. 574 hispipe = new Pipeline(myClientInputStream, sipStack.readTimeout,
|
/external/oprofile/events/x86-64/family11h/ |
events | 70 event:0x86 counters:0,1,2,3 um:zero minimum:500 name:PIPELINE_RESTART_DUE_TO_INSTRUCTION_STREAM_PROBE : Pipeline restart due to instruction stream probe
|
/external/oprofile/events/x86-64/hammer/ |
events | 70 event:0x86 counters:0,1,2,3 um:zero minimum:500 name:PIPELINE_RESTART_DUE_TO_INSTRUCTION_STREAM_PROBE : Pipeline restart due to instruction stream probe
|
/external/chromium-trace/ |
script.js | [all...] |