-
Notifications
You must be signed in to change notification settings - Fork 320
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add RTCP component as submodule after re-factoring (#2027)
* Initial Changes * Update deserialization * Update serialization * Add SLI, PLI, FIR parsing * parse sender report * Parse receiver report * Parse remb packet * Update according to new RTCP code * Update packet type functions * Address comments * Add convertRtcpErrorCodeTest test case * Update according to rtcp library * Remove unused variable * Update function def * Update formatting * Add newline at end of the file * Point to the main branch commit
- Loading branch information
Showing
11 changed files
with
338 additions
and
66 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
cmake_minimum_required(VERSION 3.6.3) | ||
|
||
project(libkvsrtcp NONE) | ||
|
||
include(ExternalProject) | ||
if (BUILD_STATIC_LIBS OR WIN32) | ||
set(LIBKVSRTCP_SHARED_LIBS OFF) | ||
else() | ||
set(LIBKVSRTCP_SHARED_LIBS ON) | ||
endif() | ||
|
||
ExternalProject_Add(libkvsrtcp | ||
GIT_REPOSITORY https://github.com/awslabs/amazon-kinesis-video-streams-rtcp.git | ||
GIT_TAG 6c12978af7331bf156ddc2886727d2bc1b8acc96 | ||
PREFIX ${CMAKE_CURRENT_BINARY_DIR}/build | ||
CMAKE_ARGS | ||
-DCMAKE_INSTALL_PREFIX=${OPEN_SRC_INSTALL_PREFIX} | ||
-DCMAKE_C_FLAGS=${CMAKE_C_FLAGS} | ||
-DBUILD_SHARED_LIBS=${LIBKVSRTCP_SHARED_LIBS} | ||
-DCMAKE_BUILD_TYPE=${CMAKE_BUILD_TYPE} | ||
BUILD_ALWAYS TRUE | ||
TEST_COMMAND "" | ||
) |
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
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
Oops, something went wrong.