Searched refs:StreamType (Results 1 - 25 of 40) sorted by relevance

12

/external/chromium_org/media/filters/
H A Ddecoder_selector.cc51 template <DemuxerStream::Type StreamType>
52 DecoderSelector<StreamType>::DecoderSelector(
62 template <DemuxerStream::Type StreamType>
63 DecoderSelector<StreamType>::~DecoderSelector() {
74 template <DemuxerStream::Type StreamType>
75 void DecoderSelector<StreamType>::SelectDecoder(
111 DecoderStreamTraits<StreamType>::Initialize(
115 base::Bind(&DecoderSelector<StreamType>::DecryptingDecoderInitDone,
120 template <DemuxerStream::Type StreamType>
121 void DecoderSelector<StreamType>
[all...]
H A Ddecoder_stream.cc24 template <DemuxerStream::Type StreamType>
29 "<" << DecoderStreamTraits<StreamType>::ToString() << ">"
41 template <DemuxerStream::Type StreamType>
42 DecoderStream<StreamType>::DecoderStream(
53 new DecoderSelector<StreamType>(task_runner,
61 template <DemuxerStream::Type StreamType>
62 DecoderStream<StreamType>::~DecoderStream() {
84 template <DemuxerStream::Type StreamType>
85 void DecoderStream<StreamType>::Initialize(DemuxerStream* stream,
104 base::Bind(&DecoderStream<StreamType>
[all...]
H A Ddecoder_stream.h33 template<DemuxerStream::Type StreamType>
36 typedef DecoderStreamTraits<StreamType> StreamTraits;
177 scoped_ptr<DecoderSelector<StreamType> > decoder_selector_;
203 base::WeakPtrFactory<DecoderStream<StreamType> > weak_factory_;
H A Ddecoder_selector.h30 // The template parameter |StreamType| is the type of stream we will be
32 template<DemuxerStream::Type StreamType>
35 typedef DecoderStreamTraits<StreamType> StreamTraits;
H A Ddecoder_stream_traits.h21 template <DemuxerStream::Type StreamType>
H A Ddecrypting_demuxer_stream.h92 // Returns Decryptor::StreamType converted from |stream_type_|.
93 Decryptor::StreamType GetDecryptorStreamType() const;
/external/chromium_org/content/renderer/media/webrtc/
H A Dmedia_stream_track_metrics.h36 enum StreamType { SENT_STREAM, RECEIVED_STREAM }; enum in class:content::MediaStreamTrackMetrics
45 void AddStream(StreamType type, webrtc::MediaStreamInterface* stream);
48 void RemoveStream(StreamType type, webrtc::MediaStreamInterface* stream);
73 StreamType stream_type);
86 StreamType stream_type);
91 uint64 MakeUniqueId(const std::string& track, StreamType stream_type);
H A Dmedia_stream_track_metrics.cc27 MediaStreamTrackMetrics::StreamType stream_type,
36 MediaStreamTrackMetrics::StreamType stream_type() { return stream_type_; }
74 MediaStreamTrackMetrics::StreamType stream_type_;
85 ObserverFinder(MediaStreamTrackMetrics::StreamType stream_type,
92 MediaStreamTrackMetrics::StreamType stream_type;
99 MediaStreamTrackMetrics::StreamType stream_type,
205 void MediaStreamTrackMetrics::AddStream(StreamType type,
214 void MediaStreamTrackMetrics::RemoveStream(StreamType type,
277 StreamType stream_type) {
299 StreamType stream_typ
[all...]
/external/chromium_org/media/base/
H A Ddecryptor.h41 enum StreamType { enum in class:media::Decryptor
58 virtual void RegisterNewKeyCB(StreamType stream_type,
81 virtual void Decrypt(StreamType stream_type,
89 virtual void CancelDecrypt(StreamType stream_type) = 0;
147 virtual void ResetDecoder(StreamType stream_type) = 0;
158 virtual void DeinitializeDecoder(StreamType stream_type) = 0;
H A Dmock_filters.h219 MOCK_METHOD2(RegisterNewKeyCB, void(StreamType stream_type,
221 MOCK_METHOD3(Decrypt, void(StreamType stream_type,
224 MOCK_METHOD1(CancelDecrypt, void(StreamType stream_type));
237 MOCK_METHOD1(ResetDecoder, void(StreamType stream_type));
238 MOCK_METHOD1(DeinitializeDecoder, void(StreamType stream_type));
/external/chromium_org/media/audio/alsa/
H A Daudio_manager_alsa.h54 enum StreamType { enum in class:media::AudioManagerAlsa
60 void GetAlsaAudioDevices(StreamType type,
65 void GetAlsaDevicesInfo(StreamType type,
70 static bool IsAlsaDeviceAvailable(StreamType type,
74 StreamType wanted_type);
77 bool HasAnyAlsaAudioDevice(StreamType stream);
H A Daudio_manager_alsa.cc120 StreamType type,
143 AudioManagerAlsa::StreamType type,
204 AudioManagerAlsa::StreamType type,
234 AudioManagerAlsa::StreamType wanted_type) {
239 AudioManagerAlsa::StreamType stream) {
/external/clang/include/clang/Analysis/Analyses/
H A DThreadSafetyTraverse.h474 template <typename Self, typename StreamType>
483 static void print(SExpr *E, StreamType &SS) {
491 void newline(StreamType &SS) {
547 void printBlockLabel(StreamType & SS, BasicBlock *BB, unsigned index) {
558 void printSExpr(SExpr *E, StreamType &SS, unsigned P) {
581 void printNull(StreamType &SS) {
585 void printFuture(Future *E, StreamType &SS) {
589 void printUndefined(Undefined *E, StreamType &SS) {
593 void printWildcard(Wildcard *E, StreamType &SS) {
598 void printLiteralT(LiteralT<T> *E, StreamType
[all...]
/external/chromium_org/content/renderer/media/crypto/
H A Dppapi_decryptor.h78 virtual void RegisterNewKeyCB(StreamType stream_type,
80 virtual void Decrypt(StreamType stream_type,
83 virtual void CancelDecrypt(StreamType stream_type) OVERRIDE;
94 virtual void ResetDecoder(StreamType stream_type) OVERRIDE;
95 virtual void DeinitializeDecoder(StreamType stream_type) OVERRIDE;
108 void OnDecoderInitialized(StreamType stream_type, bool success);
H A Dppapi_decryptor.cc287 void PpapiDecryptor::RegisterNewKeyCB(StreamType stream_type,
312 StreamType stream_type,
332 void PpapiDecryptor::CancelDecrypt(StreamType stream_type) {
442 void PpapiDecryptor::ResetDecoder(StreamType stream_type) {
456 void PpapiDecryptor::DeinitializeDecoder(StreamType stream_type) {
471 void PpapiDecryptor::OnDecoderInitialized(StreamType stream_type,
/external/chromium_org/media/cdm/
H A Daes_decryptor.h60 virtual void RegisterNewKeyCB(StreamType stream_type,
62 virtual void Decrypt(StreamType stream_type,
65 virtual void CancelDecrypt(StreamType stream_type) OVERRIDE;
76 virtual void ResetDecoder(StreamType stream_type) OVERRIDE;
77 virtual void DeinitializeDecoder(StreamType stream_type) OVERRIDE;
H A Daes_decryptor.cc391 void AesDecryptor::RegisterNewKeyCB(StreamType stream_type,
407 void AesDecryptor::Decrypt(StreamType stream_type,
440 void AesDecryptor::CancelDecrypt(StreamType stream_type) {
468 void AesDecryptor::ResetDecoder(StreamType stream_type) {
472 void AesDecryptor::DeinitializeDecoder(StreamType stream_type) {
/external/chromium_org/media/audio/
H A Daudio_low_latency_input_output_unittest.cc291 typedef AudioInputStream StreamType; typedef in class:media::AudioInputStreamTraits
299 static StreamType* CreateStream(AudioManager* audio_manager,
308 typedef AudioOutputStream StreamType; typedef in class:media::AudioOutputStreamTraits
315 static StreamType* CreateStream(AudioManager* audio_manager,
321 // Traits template holding a trait of StreamType. It encapsulates
326 typedef typename StreamTraits::StreamType StreamType; typedef in class:media::StreamWrapper
352 StreamType* Create() {
364 StreamType* CreateStream() {
365 StreamType* strea
[all...]
/external/chromium_org/content/renderer/pepper/
H A Dcontent_decryptor_delegate.h82 bool Decrypt(media::Decryptor::StreamType stream_type,
85 bool CancelDecrypt(media::Decryptor::StreamType stream_type);
94 bool DeinitializeDecoder(media::Decryptor::StreamType stream_type);
95 bool ResetDecoder(media::Decryptor::StreamType stream_type);
176 void CancelDecode(media::Decryptor::StreamType stream_type);
189 media::Decryptor::StreamType stream_type,
H A Dcontent_decryptor_delegate.cc225 Decryptor::StreamType stream_type) {
461 Decryptor::StreamType stream_type,
507 Decryptor::StreamType stream_type) {
600 Decryptor::StreamType stream_type) {
613 bool ContentDecryptorDelegate::ResetDecoder(Decryptor::StreamType stream_type) {
1115 void ContentDecryptorDelegate::CancelDecode(Decryptor::StreamType stream_type) {
1140 Decryptor::StreamType stream_type,
/external/chromium_org/media/cdm/ppapi/external_clear_key/
H A Dclear_key_cdm.h72 virtual void DeinitializeDecoder(cdm::StreamType decoder_type) OVERRIDE;
73 virtual void ResetDecoder(cdm::StreamType decoder_type) OVERRIDE;
/external/chromium_org/third_party/webrtc/video_engine/
H A Dvie_rtp_rtcp_impl.h31 const StreamType usage,
36 const StreamType usage,
/external/chromium_org/third_party/webrtc/video_engine/include/
H A Dvie_rtp_rtcp.h48 enum StreamType { enum in namespace:webrtc
110 const StreamType usage = kViEStreamTypeNormal,
118 // This function map a incoming SSRC to a StreamType so that the engine
121 const StreamType usage,
/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/CPP/
H A DCPP.stg114 template\<typename StreamType, typename TokenType, typename TokenBuilder>
115 class <name> : public antlr3::Lexer\<StreamType,TokenType,TokenBuilder> {
117 typedef typename StreamType::position_type position_type;
118 typedef typename StreamType::char_type char_type;
138 <name>(StreamType* input)
139 : antlr3::Lexer\<StreamType,TokenType,TokenBuilder>(input)
284 <name>(StreamType* input)
285 : <superClass>\<StreamType,TokenType>(input)
524 StreamType& input(this->getInput());
553 StreamType
[all...]
/external/chromium_org/media/cdm/ppapi/
H A Dcdm_wrapper.h81 virtual void DeinitializeDecoder(cdm::StreamType decoder_type) = 0;
82 virtual void ResetDecoder(cdm::StreamType decoder_type) = 0;
276 virtual void DeinitializeDecoder(cdm::StreamType decoder_type) OVERRIDE {
280 virtual void ResetDecoder(cdm::StreamType decoder_type) OVERRIDE {

Completed in 289 milliseconds

12