-
-
Notifications
You must be signed in to change notification settings - Fork 5.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
WebRTC: Warning if no ideal profile. v6.0.33, v5.0.146 (#3446)
For WebRTC, SRS expect the h.264 codec is: ``` a=rtpmap:106 H264/90000 a=fmtp:106 level-asymmetry-allowed=1;packetization-mode=1;profile-level-id=42e01f ``` But sometimes, the device does not support the profile, for example only bellow: ``` a=fmtp:123 level-asymmetry-allowed=1;packetization-mode=1;profile-level-id=42e033 a=fmtp:122 level-asymmetry-allowed=1;packetization-mode=1;profile-level-id=420033 a=fmtp:121 level-asymmetry-allowed=1;packetization-mode=1;profile-level-id=640033 a=fmtp:120 level-asymmetry-allowed=1;packetization-mode=1;profile-level-id=4d0033 ``` So we should warning user about the profile missmatch, because it might not work. PICK a751448 ---------- Co-authored-by: chundonglinlin <chundonglinlin@163.com> Co-authored-by: LiPeng <lipeng19811218@gmail.com>
- Loading branch information
1 parent
47aa42f
commit 34c78a7
Showing
3 changed files
with
7 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,6 +9,6 @@ | |
|
||
#define VERSION_MAJOR 5 | ||
#define VERSION_MINOR 0 | ||
#define VERSION_REVISION 145 | ||
#define VERSION_REVISION 146 | ||
|
||
#endif |