OLD | NEW |
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 2189 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2200 int pl = 0; | 2200 int pl = 0; |
2201 if (!GetPayloadTypeFromString(line, fields[j], &pl, error)) { | 2201 if (!GetPayloadTypeFromString(line, fields[j], &pl, error)) { |
2202 return false; | 2202 return false; |
2203 } | 2203 } |
2204 codec_preference.push_back(pl); | 2204 codec_preference.push_back(pl); |
2205 } | 2205 } |
2206 } | 2206 } |
2207 | 2207 |
2208 // Make a temporary TransportDescription based on |session_td|. | 2208 // Make a temporary TransportDescription based on |session_td|. |
2209 // Some of this gets overwritten by ParseContent. | 2209 // Some of this gets overwritten by ParseContent. |
2210 TransportDescription transport(session_td.transport_options, | 2210 TransportDescription transport( |
2211 session_td.ice_ufrag, | 2211 session_td.transport_options, session_td.ice_ufrag, session_td.ice_pwd, |
2212 session_td.ice_pwd, | 2212 session_td.ice_mode, session_td.connection_role, |
2213 session_td.ice_mode, | 2213 session_td.identity_fingerprint.get()); |
2214 session_td.connection_role, | |
2215 session_td.identity_fingerprint.get(), | |
2216 Candidates()); | |
2217 | 2214 |
2218 rtc::scoped_ptr<MediaContentDescription> content; | 2215 rtc::scoped_ptr<MediaContentDescription> content; |
2219 std::string content_name; | 2216 std::string content_name; |
2220 if (HasAttribute(line, kMediaTypeVideo)) { | 2217 if (HasAttribute(line, kMediaTypeVideo)) { |
2221 content.reset(ParseContentDescription<VideoContentDescription>( | 2218 content.reset(ParseContentDescription<VideoContentDescription>( |
2222 message, cricket::MEDIA_TYPE_VIDEO, mline_index, protocol, | 2219 message, cricket::MEDIA_TYPE_VIDEO, mline_index, protocol, |
2223 codec_preference, pos, &content_name, | 2220 codec_preference, pos, &content_name, |
2224 &transport, candidates, error)); | 2221 &transport, candidates, error)); |
2225 } else if (HasAttribute(line, kMediaTypeAudio)) { | 2222 } else if (HasAttribute(line, kMediaTypeAudio)) { |
2226 content.reset(ParseContentDescription<AudioContentDescription>( | 2223 content.reset(ParseContentDescription<AudioContentDescription>( |
(...skipping 850 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3077 UpdateCodec<AudioContentDescription, cricket::AudioCodec>( | 3074 UpdateCodec<AudioContentDescription, cricket::AudioCodec>( |
3078 media_desc, payload_type, feedback_param); | 3075 media_desc, payload_type, feedback_param); |
3079 } else if (media_type == cricket::MEDIA_TYPE_VIDEO) { | 3076 } else if (media_type == cricket::MEDIA_TYPE_VIDEO) { |
3080 UpdateCodec<VideoContentDescription, cricket::VideoCodec>( | 3077 UpdateCodec<VideoContentDescription, cricket::VideoCodec>( |
3081 media_desc, payload_type, feedback_param); | 3078 media_desc, payload_type, feedback_param); |
3082 } | 3079 } |
3083 return true; | 3080 return true; |
3084 } | 3081 } |
3085 | 3082 |
3086 } // namespace webrtc | 3083 } // namespace webrtc |
OLD | NEW |