examples: Improve documentation on V3C examples

This commit is contained in:
Heikki Tampio 2024-01-23 08:55:43 +02:00
parent 8ce471de54
commit 5a686232ea
2 changed files with 5 additions and 4 deletions

View File

@ -9,7 +9,8 @@ Follow either Visual Studio or Linux compilation instructions below:
### Visual Studio compilation
Navigate to `uvgRTP/build/examples` and open the `uvgrtp_examples.sln` with Visual Studio, through which you can build the individual example programs.
Navigate to `uvgRTP/build/examples` and open the `uvgrtp_examples.sln` with Visual Studio, through which you can build the individual example programs. When building, select the Release x64 version.
The built executable files will be found in uvgRTP/build/examples/Release
### Linux and MinGW compilation
@ -33,8 +34,9 @@ To demonstrate V3C streaming, uvgRTP comes with example V3C sender and V3C recei
3. Download a test sequence from [here](https://ultravideo.fi/uvgRTP_example_sequence_longdress.vpcc).
4. Set the PATH variable in the [v3c_sender](v3c_sender.cc#L20) and [v3c_receiver](v3c_receiver.cc#L49) to the path of the test sequence.
5. Build the `v3c_sender` and `v3c_receiver` applications according to building instructions on the top of this page.
6. Start the `v3c_receiver` program.
7. Start the `v3c_sender` program. The program will parse the test sequence for transmission and send it to the receiver.
6. Start the `v3c_receiver` program with `./v3c_receiver`
7. Start the `v3c_sender` program with `./v3c_sender`. The program will parse the test sequence for transmission and send it to the receiver.
8. The with `v3c_receiver` will print information on the reception and reconstruction of the V3C bitstream.
## RTCP example

View File

@ -152,7 +152,6 @@ int main(void)
// Compare reconstructed file with the original one
for (auto i = 0; i < bytes; ++i) {
if (original_buf[i] != out_buf[i]) {
std::cout << "Difference at " << i << std::endl;
diff = true;
break;
}