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

Side by Side Diff: webrtc/modules/video_coding/rtp_frame_reference_finder.cc

Issue 2470103002: Add new codec for FlexFEC. (Closed)
Patch Set: Rebase. Created 4 years, 1 month 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
OLDNEW
1 /* 1 /*
2 * Copyright (c) 2016 The WebRTC project authors. All Rights Reserved. 2 * Copyright (c) 2016 The WebRTC project authors. All Rights Reserved.
3 * 3 *
4 * Use of this source code is governed by a BSD-style license 4 * Use of this source code is governed by a BSD-style license
5 * that can be found in the LICENSE file in the root of the source 5 * that can be found in the LICENSE file in the root of the source
6 * tree. An additional intellectual property rights grant can be found 6 * tree. An additional intellectual property rights grant can be found
7 * in the file PATENTS. All contributing project authors may 7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree. 8 * be found in the AUTHORS file in the root of the source tree.
9 */ 9 */
10 10
(...skipping 22 matching lines...) Expand all
33 std::unique_ptr<RtpFrameObject> frame) { 33 std::unique_ptr<RtpFrameObject> frame) {
34 rtc::CritScope lock(&crit_); 34 rtc::CritScope lock(&crit_);
35 35
36 // If we have cleared past this frame, drop it. 36 // If we have cleared past this frame, drop it.
37 if (cleared_to_seq_num_ != -1 && 37 if (cleared_to_seq_num_ != -1 &&
38 AheadOf<uint16_t>(cleared_to_seq_num_, frame->first_seq_num())) { 38 AheadOf<uint16_t>(cleared_to_seq_num_, frame->first_seq_num())) {
39 return; 39 return;
40 } 40 }
41 41
42 switch (frame->codec_type()) { 42 switch (frame->codec_type()) {
43 case kVideoCodecFlexfec:
43 case kVideoCodecULPFEC: 44 case kVideoCodecULPFEC:
44 case kVideoCodecRED: 45 case kVideoCodecRED:
45 case kVideoCodecUnknown: 46 case kVideoCodecUnknown:
46 RTC_NOTREACHED(); 47 RTC_NOTREACHED();
47 break; 48 break;
48 case kVideoCodecVP8: 49 case kVideoCodecVP8:
49 ManageFrameVp8(std::move(frame)); 50 ManageFrameVp8(std::move(frame));
50 break; 51 break;
51 case kVideoCodecVP9: 52 case kVideoCodecVP9:
52 ManageFrameVp9(std::move(frame)); 53 ManageFrameVp9(std::move(frame));
(...skipping 526 matching lines...) Expand 10 before | Expand all | Expand 10 after
579 if (AheadOf<uint16_t, kPicIdLength>(picture_id, unwrap_truncated)) 580 if (AheadOf<uint16_t, kPicIdLength>(picture_id, unwrap_truncated))
580 last_unwrap_ = Add<1 << 16>(last_unwrap_, diff); 581 last_unwrap_ = Add<1 << 16>(last_unwrap_, diff);
581 else 582 else
582 last_unwrap_ = Subtract<1 << 16>(last_unwrap_, diff); 583 last_unwrap_ = Subtract<1 << 16>(last_unwrap_, diff);
583 584
584 return last_unwrap_; 585 return last_unwrap_;
585 } 586 }
586 587
587 } // namespace video_coding 588 } // namespace video_coding
588 } // namespace webrtc 589 } // namespace webrtc
OLDNEW
« no previous file with comments | « webrtc/modules/video_coding/codec_database.cc ('k') | webrtc/sdk/objc/Framework/Classes/RTCRtpCodecParameters.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698