Searched refs:fragmentation (Results 1 - 25 of 74) sorted by relevance

123

/external/chromium_org/third_party/webrtc/modules/rtp_rtcp/source/
H A Dvp8_partition_aggregator_unittest.cc95 const RTPFragmentationHeader& fragmentation) {
96 ASSERT_EQ(expected_config_len, fragmentation.fragmentationVectorSize);
115 RTPFragmentationHeader fragmentation; local
116 fragmentation.VerifyAndAllocateFragmentationHeader(3);
118 new Vp8PartitionAggregator(fragmentation, 0, 2);
123 RTPFragmentationHeader fragmentation; local
124 fragmentation.VerifyAndAllocateFragmentationHeader(8);
125 fragmentation.fragmentationLength[0] = 197;
126 fragmentation.fragmentationLength[1] = 194;
127 fragmentation
92 VerifyConfiguration(const int* expected_config, size_t expected_config_len, const std::vector<int>& opt_config, const RTPFragmentationHeader& fragmentation) argument
157 RTPFragmentationHeader fragmentation; local
183 RTPFragmentationHeader fragmentation; local
[all...]
H A Drtp_format_h264_unittest.cc87 RTPFragmentationHeader fragmentation; local
88 fragmentation.VerifyAndAllocateFragmentationHeader(1);
89 fragmentation.fragmentationOffset[0] = 0;
90 fragmentation.fragmentationLength[0] = frame_size;
93 packetizer->SetPayloadData(frame.get(), frame_size, &fragmentation);
109 size_t GetExpectedNaluOffset(const RTPFragmentationHeader& fragmentation, argument
112 assert(nalu_index < fragmentation.fragmentationVectorSize);
116 kLengthFieldLength + fragmentation.fragmentationLength[i];
121 void VerifyStapAPayload(const RTPFragmentationHeader& fragmentation,
129 GetExpectedNaluOffset(fragmentation, first_stapa_inde
184 RTPFragmentationHeader fragmentation; local
222 RTPFragmentationHeader fragmentation; local
257 RTPFragmentationHeader fragmentation; local
296 RTPFragmentationHeader fragmentation; local
[all...]
H A Drtp_sender_audio.cc237 const RTPFragmentationHeader* fragmentation) {
350 if (_REDPayloadType >= 0 && fragmentation && !markerBit &&
351 fragmentation->fragmentationVectorSize > 1) {
375 fragmentation &&
376 fragmentation->fragmentationVectorSize > 1 &&
379 if(fragmentation->fragmentationVectorSize != 2) {
385 fragmentation->fragmentationPlType[1];
386 uint32_t blockLength = fragmentation->fragmentationLength[1];
397 dataBuffer[rtpHeaderLength++] = fragmentation->fragmentationPlType[0];
400 payloadData + fragmentation
231 SendAudio( const FrameType frameType, const int8_t payloadType, const uint32_t captureTimeStamp, const uint8_t* payloadData, const uint32_t dataSize, const RTPFragmentationHeader* fragmentation) argument
[all...]
H A Drtp_format.h33 const RTPFragmentationHeader* fragmentation) = 0;
H A Drtp_format_vp8_test_helper.h43 RTPFragmentationHeader* fragmentation() const { return fragmentation_; } function in class:webrtc::test::RtpFormatVp8TestHelper
H A Drtp_sender_video.h52 const RTPFragmentationHeader* fragmentation,
103 const RTPFragmentationHeader* fragmentation,
H A Drtp_format_video_generic.h34 const RTPFragmentationHeader* fragmentation) OVERRIDE;
H A Dvp8_partition_aggregator.h89 // Constructor. All partitions in the fragmentation header from index
92 Vp8PartitionAggregator(const RTPFragmentationHeader& fragmentation,
/external/chromium_org/third_party/webrtc/test/
H A Dfake_encoder.cc139 RTPFragmentationHeader fragmentation; local
143 fragmentation.VerifyAndAllocateFragmentationHeader(kNumSlices);
144 fragmentation.fragmentationOffset[0] = 0;
145 fragmentation.fragmentationLength[0] = kSpsSize;
146 fragmentation.fragmentationOffset[1] = kSpsSize;
147 fragmentation.fragmentationLength[1] = kPpsSize;
148 fragmentation.fragmentationOffset[2] = kSpsSize + kPpsSize;
149 fragmentation.fragmentationLength[2] =
154 encoded_image._buffer[fragmentation.fragmentationOffset[0]] = kSpsNalHeader;
155 encoded_image._buffer[fragmentation
[all...]
H A Dfake_decoder.h32 const RTPFragmentationHeader* fragmentation,
54 const RTPFragmentationHeader* fragmentation,
H A Dfake_decoder.cc35 const RTPFragmentationHeader* fragmentation,
62 const RTPFragmentationHeader* fragmentation,
81 fragmentation,
33 Decode(const EncodedImage& input, bool missing_frames, const RTPFragmentationHeader* fragmentation, const CodecSpecificInfo* codec_specific_info, int64_t render_time_ms) argument
60 Decode(const EncodedImage& input, bool missing_frames, const RTPFragmentationHeader* fragmentation, const CodecSpecificInfo* codec_specific_info, int64_t render_time_ms) argument
H A Dconfigurable_frame_size_encoder.cc53 RTPFragmentationHeader* fragmentation = NULL; local
56 callback_->Encoded(encodedImage, &specific, fragmentation);
/external/chromium_org/third_party/webrtc/video/
H A Dencoded_frame_callback_adapter.h27 const RTPFragmentationHeader* fragmentation);
H A Dencoded_frame_callback_adapter.cc27 const RTPFragmentationHeader* fragmentation) {
24 Encoded( EncodedImage& encodedImage, const CodecSpecificInfo* codecSpecificInfo, const RTPFragmentationHeader* fragmentation) argument
/external/chromium_org/third_party/webrtc/modules/video_coding/main/source/
H A Dsession_info.cc300 RTPFragmentationHeader* fragmentation) {
303 fragmentation->VerifyAndAllocateFragmentationHeader(kMaxVP8Partitions);
304 fragmentation->fragmentationVectorSize = 0;
305 memset(fragmentation->fragmentationLength, 0,
314 fragmentation->fragmentationOffset[partition_id] =
316 assert(fragmentation->fragmentationOffset[partition_id] <
318 fragmentation->fragmentationLength[partition_id] =
320 assert(fragmentation->fragmentationLength[partition_id] <=
322 new_length += fragmentation->fragmentationLength[partition_id];
325 if (partition_id + 1 > fragmentation
297 BuildVP8FragmentationHeader( uint8_t* frame_buffer, int frame_buffer_length, RTPFragmentationHeader* fragmentation) argument
[all...]
/external/chromium_org/third_party/webrtc/modules/audio_coding/main/test/
H A DChannel.cc24 const RTPFragmentationHeader* fragmentation) {
48 // Treat fragmentation separately
49 if (fragmentation != NULL) {
51 if ((fragmentation->fragmentationTimeDiff[1] <= 0x3fff) &&
52 (fragmentation->fragmentationVectorSize == 2)) {
54 _payloadData[0] = 0x80 + fragmentation->fragmentationPlType[1];
55 uint32_t REDheader = (((uint32_t) fragmentation->fragmentationTimeDiff[1])
56 << 10) + fragmentation->fragmentationLength[1];
61 _payloadData[4] = fragmentation->fragmentationPlType[0];
64 payloadData + fragmentation
21 SendData(const FrameType frameType, const uint8_t payloadType, const uint32_t timeStamp, const uint8_t* payloadData, const uint16_t payloadSize, const RTPFragmentationHeader* fragmentation) argument
[all...]
H A Ddual_stream_unittest.cc42 const RTPFragmentationHeader* fragmentation) OVERRIDE;
300 const RTPFragmentationHeader* fragmentation) {
305 if (fragmentation == NULL) {
309 // As the oldest payloads are in the higher indices of fragmentation,
312 for (int n = fragmentation->fragmentationVectorSize - 1; n >= 0; --n) {
313 if (fragmentation->fragmentationPlType[n] == primary_encoder_.pltype) {
316 } else if (fragmentation->fragmentationPlType[n]
334 - fragmentation->fragmentationTimeDiff[n];
335 payload_len_dual_[stream_index][position] = fragmentation
339 &payload_data[fragmentation
296 SendData(FrameType frameType, uint8_t payload_type, uint32_t timestamp, const uint8_t* payload_data, uint16_t payload_size, const RTPFragmentationHeader* fragmentation) argument
[all...]
H A DTestStereo.h42 const RTPFragmentationHeader* fragmentation) OVERRIDE;
84 const RTPFragmentationHeader* fragmentation);
H A DTestAllCodecs.h35 const RTPFragmentationHeader* fragmentation) OVERRIDE;
/external/chromium_org/third_party/webrtc/modules/rtp_rtcp/test/testAPI/
H A Dtest_api_audio.cc288 RTPFragmentationHeader fragmentation; local
289 fragmentation.fragmentationVectorSize = 2;
290 fragmentation.fragmentationLength = new uint32_t[2];
291 fragmentation.fragmentationLength[0] = 4;
292 fragmentation.fragmentationLength[1] = 4;
293 fragmentation.fragmentationOffset = new uint32_t[2];
294 fragmentation.fragmentationOffset[0] = 0;
295 fragmentation.fragmentationOffset[1] = 4;
296 fragmentation.fragmentationTimeDiff = new uint16_t[2];
297 fragmentation
[all...]
/external/chromium_org/third_party/webrtc/examples/android/media_demo/jni/
H A Dmedia_codec_video_decoder.h30 const RTPFragmentationHeader* fragmentation,
/external/chromium_org/third_party/webrtc/modules/audio_coding/main/acm2/
H A Dacm_send_test.h53 const RTPFragmentationHeader* fragmentation) OVERRIDE;
H A Dacm_send_test_oldapi.h55 const RTPFragmentationHeader* fragmentation) OVERRIDE;
/external/chromium_org/third_party/webrtc/modules/video_coding/codecs/interface/mock/
H A Dmock_video_codec_interface.h26 const RTPFragmentationHeader* fragmentation));
65 const RTPFragmentationHeader* fragmentation,
/external/chromium_org/third_party/webrtc/modules/video_coding/codecs/vp8/
H A Dvp8_impl.h167 // - fragmentation : Specifies the start and length of each VP8
178 const RTPFragmentationHeader* fragmentation,
217 const RTPFragmentationHeader* fragmentation);

Completed in 300 milliseconds

123