You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+15Lines changed: 15 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -55,6 +55,12 @@ cmake --build --preset=Release
55
55
By default, the build application is located in ```_build/Release/src/app/```.
56
56
Refer to "Using uvgVPCCenc" section to learn how to use the library, and attached application.
57
57
58
+
#### Compile with V3C RTP support
59
+
To enable sending over RTP run cmake with
60
+
```
61
+
cmake --preset=Release -DENABLE_V3CRTP=ON
62
+
```
63
+
58
64
### Test uvgVPCCenc
59
65
To test the encoder, please use following commands:
60
66
```
@@ -98,6 +104,13 @@ The application option ```--uvgvpcc``` accept a string containing uvgVPCCenc par
98
104
99
105
The list of uvgVPCCenc parameters that can be modified with the ```--uvgvpcc``` option is defined in the ```parameterMap``` initialized in [parameters.cpp](src/lib/utils/parameters.cpp).
Send encoded bitstream over RTP. Destination can be set using ```--dst-address``` and ```--dst-port```. A separate RTP media stream is created for each type of V3C unit and the streames are multiplexed to the same port using SSRC (hardcoded to be ```vuh_unit_type + 1```).
113
+
101
114
---
102
115
103
116
@@ -113,6 +126,8 @@ The list of uvgVPCCenc parameters that can be modified with the ```--uvgvpcc```
113
126
--uvgvpcc <params> Encoder configuration parameters (see next section)
114
127
--help Show this help message
115
128
--version Show version information
129
+
--dst-address <IP> Destination IP address for an rtp stream (when compiled with V3C RTP support)";
130
+
--dst-port <number> Destination port for an rtp stream (when compiled with V3C RTP support)";
0 commit comments