Searched refs:PacketList (Results 1 - 25 of 34) sorted by relevance

12

/external/chromium_org/third_party/webrtc/modules/audio_coding/neteq/mock/
H A Dmock_payload_splitter.h23 int(PacketList* packet_list));
25 int(PacketList* packet_list, DecoderDatabase* decoder_database));
27 int(PacketList* packet_list, const DecoderDatabase& decoder_database));
29 int(PacketList* packet_list, const DecoderDatabase& decoder_database));
32 PacketList* new_packets));
35 PacketList* new_packets));
H A Dmock_packet_buffer.h33 int(PacketList* packet_list,
H A Dmock_decoder_database.h60 int(const PacketList& packet_list));
/external/chromium_org/third_party/webrtc/modules/audio_coding/neteq/
H A Dpayload_splitter.h49 virtual int SplitRed(PacketList* packet_list);
54 virtual int SplitFec(PacketList* packet_list,
60 virtual int CheckRedPayloads(PacketList* packet_list,
67 virtual int SplitAudio(PacketList* packet_list,
76 PacketList* new_packets);
84 PacketList* new_packets);
H A Dpacket_buffer.h62 virtual int InsertPacketList(PacketList* packet_list,
122 static bool DeleteFirstPacket(PacketList* packet_list);
126 static void DeleteAllPackets(PacketList* packet_list);
130 PacketList buffer_;
H A Dpayload_splitter.cc26 int PayloadSplitter::SplitRed(PacketList* packet_list) {
28 PacketList::iterator it = packet_list->begin();
30 PacketList new_packets; // An empty list to store the split packets in.
83 PacketList::iterator new_it;
122 int PayloadSplitter::SplitFec(PacketList* packet_list,
124 PacketList::iterator it = packet_list->begin();
180 int PayloadSplitter::CheckRedPayloads(PacketList* packet_list,
182 PacketList::iterator it = packet_list->begin();
212 int PayloadSplitter::SplitAudio(PacketList* packet_list,
214 PacketList
[all...]
H A Dtimestamp_scaler.cc27 void TimestampScaler::ToInternal(PacketList* packet_list) {
28 PacketList::iterator it;
H A Dpacket_buffer.cc71 PacketList::reverse_iterator rit = std::find_if(
79 int PacketBuffer::InsertPacketList(PacketList* packet_list,
138 PacketList::const_iterator it;
209 PacketList::const_iterator it;
236 PacketList::iterator it;
242 bool PacketBuffer::DeleteFirstPacket(PacketList* packet_list) {
253 void PacketBuffer::DeleteAllPackets(PacketList* packet_list) {
H A Dtimestamp_scaler.h46 virtual void ToInternal(PacketList* packet_list);
H A Dpayload_splitter_unittest.cc167 PacketList packet_list;
194 PacketList packet_list;
234 PacketList packet_list;
297 PacketList packet_list;
339 PacketList packet_list;
359 PacketList packet_list;
400 PacketList::iterator it = packet_list.begin();
416 PacketList packet_list;
434 PacketList::iterator it = packet_list.begin();
512 PacketList packet_lis
[all...]
H A Dpacket.h85 typedef std::list<Packet*> PacketList; typedef in namespace:webrtc
H A Dneteq_impl.h21 #include "webrtc/modules/audio_coding/neteq/packet.h" // Declare PacketList.
231 PacketList* packet_list,
241 int Decode(PacketList* packet_list,
248 int DecodeLoop(PacketList* packet_list,
288 int DoRfc3389Cng(PacketList* packet_list, bool play_dtmf)
314 int ExtractPackets(int required_samples, PacketList* packet_list)
H A Ddecoder_database.h145 virtual int CheckPayloadTypes(const PacketList& packet_list) const;
H A Dpacket_buffer_unittest.cc151 PacketList list;
187 PacketList list;
310 PacketList list;
341 // Generate 10 small packets and insert them into a PacketList. Insert every
344 PacketList list;
421 PacketList list;
514 PacketList list;
/external/chromium_org/third_party/webrtc/modules/pacing/include/
H A Dpaced_sender.h29 class PacketList;
116 bool ShouldSendNextPacket(paced_sender::PacketList** packet_list)
120 paced_sender::Packet GetNextPacketFromList(paced_sender::PacketList* packets)
123 bool SendPacketFromList(paced_sender::PacketList* packet_list)
154 scoped_ptr<paced_sender::PacketList> high_priority_packets_
156 scoped_ptr<paced_sender::PacketList> normal_priority_packets_
158 scoped_ptr<paced_sender::PacketList> low_priority_packets_
/external/chromium_org/third_party/webrtc/modules/video_coding/main/source/
H A Dsession_info.h98 typedef std::list<VCMPacket> PacketList; typedef in class:webrtc::VCMSessionInfo
99 typedef PacketList::iterator PacketIterator;
100 typedef PacketList::const_iterator PacketIteratorConst;
101 typedef PacketList::reverse_iterator ReversePacketIterator;
155 PacketList packets_;
/external/chromium_org/third_party/webrtc/modules/rtp_rtcp/source/
H A Dforward_error_correction.h116 typedef std::list<Packet*> PacketList; typedef in class:webrtc::ForwardErrorCorrection
160 int32_t GenerateFEC(const PacketList& media_packet_list,
163 PacketList* fec_packet_list);
212 void GenerateFecUlpHeaders(const PacketList& media_packet_list,
222 int InsertZerosInBitMasks(const PacketList& media_packets,
247 void GenerateFecBitStrings(const PacketList& media_packet_list,
H A Drtp_fec_unittest.cc28 typedef std::list<ForwardErrorCorrection::Packet*> PacketList; typedef
50 PacketList media_packet_list_;
51 PacketList fec_packet_list_;
76 void ReceivedPackets(const PacketList& packet_list, int* loss_mask,
600 PacketList protected_media_packets;
602 for (PacketList::iterator it = media_packet_list_.begin();
664 PacketList protected_media_packets;
666 for (PacketList::iterator it = media_packet_list_.begin();
735 PacketList protected_media_packets;
737 for (PacketList
[all...]
/external/chromium_org/media/cast/
H A Dcast_config.h165 typedef PacketList PacketList; typedef in namespace:media::cast
/external/chromium_org/third_party/webrtc/modules/pacing/
H A Dpaced_sender.cc62 class PacketList { class in namespace:webrtc::paced_sender
64 PacketList() {}; function in class:webrtc::paced_sender::PacketList
147 high_priority_packets_(new paced_sender::PacketList),
148 normal_priority_packets_(new paced_sender::PacketList),
149 low_priority_packets_(new paced_sender::PacketList) {
199 paced_sender::PacketList* packet_list = NULL;
273 paced_sender::PacketList* packet_list;
293 bool PacedSender::SendPacketFromList(paced_sender::PacketList* packet_list)
328 bool PacedSender::ShouldSendNextPacket(paced_sender::PacketList** packet_list) {
379 paced_sender::PacketList* packet
[all...]
/external/chromium_org/third_party/webrtc/modules/remote_bitrate_estimator/
H A Dremote_bitrate_estimator_unittest_helper.h63 typedef std::list<RtpPacket*> PacketList; typedef in class:webrtc::testing::RtpStream
74 int64_t GenerateFrame(int64_t time_now_us, PacketList* packets);
129 int64_t GenerateFrame(RtpStream::PacketList* packets, int64_t time_now_us);
/external/chromium_org/media/cast/net/pacing/
H A Dpaced_sender.h176 typedef std::map<PacketKey, std::pair<PacketType, PacketRef> > PacketList; typedef in class:media::cast::PacedSender
177 PacketList packet_list_;
178 PacketList priority_packet_list_;
/external/chromium_org/media/cast/logging/
H A Dlogging_impl.cc84 const PacketList& packets) {
86 for (PacketList::const_iterator it = packets.begin(); it != packets.end();
H A Dlogging_impl.h53 const PacketList& packets);
/external/chromium_org/media/cast/net/
H A Dcast_transport_config.h126 typedef std::vector<PacketRef> PacketList; typedef in namespace:media::cast

Completed in 5052 milliseconds

12