This commit is contained in:
2020-04-20 22:16:07 +02:00
parent fd86607fdd
commit 984693226c
6 changed files with 74 additions and 22 deletions

View File

@@ -331,10 +331,8 @@ raop_rtp_mirror_thread(void *arg)
// The information in the payload contains an SPS and a PPS NAL
float width_source = byteutils_get_float(packet, 40);
printf("source-width: %f", width_source);
float height_source = byteutils_get_float(packet, 44);
float width = byteutils_get_float(packet, 56);
printf("width: %f", width);
float height = byteutils_get_float(packet, 60);
logger_log(raop_rtp_mirror->logger, LOGGER_DEBUG, "raop_rtp_mirror width_source = %f height_source = %f width = %f height = %f",