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

Side by Side Diff: talk/media/webrtc/webrtcmediaengine.h

Issue 1429753003: Filter overlapping RTP header extensions. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: size_t conversion fix Created 5 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
« no previous file with comments | « no previous file | talk/media/webrtc/webrtcmediaengine.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * libjingle 2 * libjingle
3 * Copyright 2011 Google Inc. 3 * Copyright 2011 Google Inc.
4 * 4 *
5 * Redistribution and use in source and binary forms, with or without 5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are met: 6 * modification, are permitted provided that the following conditions are met:
7 * 7 *
8 * 1. Redistributions of source code must retain the above copyright notice, 8 * 1. Redistributions of source code must retain the above copyright notice,
9 * this list of conditions and the following disclaimer. 9 * this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright notice, 10 * 2. Redistributions in binary form must reproduce the above copyright notice,
(...skipping 30 matching lines...) Expand all
41 namespace cricket { 41 namespace cricket {
42 42
43 class WebRtcMediaEngineFactory { 43 class WebRtcMediaEngineFactory {
44 public: 44 public:
45 static MediaEngineInterface* Create( 45 static MediaEngineInterface* Create(
46 webrtc::AudioDeviceModule* adm, 46 webrtc::AudioDeviceModule* adm,
47 WebRtcVideoEncoderFactory* encoder_factory, 47 WebRtcVideoEncoderFactory* encoder_factory,
48 WebRtcVideoDecoderFactory* decoder_factory); 48 WebRtcVideoDecoderFactory* decoder_factory);
49 }; 49 };
50 50
51 extern const char* kBweExtensionPriorities[];
52 extern const size_t kBweExtensionPrioritiesLength;
53
54 std::vector<RtpHeaderExtension> FilterRedundantRtpExtensions(
55 const std::vector<RtpHeaderExtension>& extensions,
56 const char* extension_prios[],
57 size_t extension_prios_length);
58
51 } // namespace cricket 59 } // namespace cricket
52 60
53 #endif // TALK_MEDIA_WEBRTCMEDIAENGINE_H_ 61 #endif // TALK_MEDIA_WEBRTCMEDIAENGINE_H_
OLDNEW
« no previous file with comments | « no previous file | talk/media/webrtc/webrtcmediaengine.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698