From 9621aa586e2ea74eaacf2eac67147cbff838c75d Mon Sep 17 00:00:00 2001 From: Martin Pulec Date: Sun, 29 Jul 2012 15:10:19 +0200 Subject: [PATCH] LDGM: added values for uncompressed HD profiles --- src/rtp/ldgm.cpp | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/src/rtp/ldgm.cpp b/src/rtp/ldgm.cpp index 78436c760..b2b3c07a1 100644 --- a/src/rtp/ldgm.cpp +++ b/src/rtp/ldgm.cpp @@ -98,6 +98,8 @@ loss_t losses[] = { #define JPEG80_SIZE (177 * 1000) #define JPEG90_SIZE (144 * 1000) +#define UNCOMPRESSED_SIZE (1920 * 1080 * 2) + const configuration_t suggested_configurations[] = { // JPEG 60 { STD1500, JPEG60_SIZE, PCT2, 750, 120, 5 }, @@ -112,6 +114,14 @@ const configuration_t suggested_configurations[] = { { STD1500, JPEG90_SIZE, PCT5, 1500, 450, 6 }, { STD1500, JPEG90_SIZE, PCT10, 1500, 750, 8 }, + // uncompressed + { JUMBO9000, UNCOMPRESSED_SIZE, PCT2, 1500, 180, 5 }, + { JUMBO9000, UNCOMPRESSED_SIZE, PCT5, 1000, 300, 6 }, + { JUMBO9000, UNCOMPRESSED_SIZE, PCT10, 1000, 500, 7 }, + + { STD1500, UNCOMPRESSED_SIZE, PCT2, 1500, 250, 5 }, + { STD1500, UNCOMPRESSED_SIZE, PCT5, 1500, 650, 6 }, + { STD1500, UNCOMPRESSED_SIZE, PCT10, 1500, 1500, 8 }, }; #include "ldgm-coding/ldgm-session.h"