

Fixed in private debug beta-version. ThanksiT00NZ wrote:I found a little bug in PVRDecoder. After sucessfully decoding file, there is no update size-info on green bar. Can you fix it in next version? Thanks
Exactly those plugins are uploaded to TV, - yes.LaserMan wrote:Hi, sorry if this is a stupid question, but what packages does the "Force upload all payloads to TV" actually include? SamyGoSo I guess, but anything else, e.g. LibPvrAnyDev? Or LibPVRtoTS? After upload, are the changes permanent? Or only until next TV reboot. I have root access and PVRDecoder works like a dream.
No, real size is in GiB (Gibibytes)iT00NZ wrote:it shows 'Gb' (Gigabits) when the real file size is in GB (Gigabytes)
Code: Select all
function GetTextualFileSize(const ASize: Int64): string;
const
__kb = 1024;
begin
__if ASize < kb then Result := IntToStr(ASize) + ' B'
__else if (ASize / kb) < kb then Result := Format('%.2n', [ASize / kb]) + ' KB'
__else if (ASize / kb / kb) < kb then Result := Format('%.2n', [ASize / kb / kb]) + ' MB'
__else if (ASize / kb / kb / kb) < kb then Result := Format('%.2n', [ASize / kb / kb / kb]) + ' GB'
__else if (ASize / kb / kb / kb / kb) < kb then Result := Format('%.2n', [ASize / kb / kb / kb / kb]) + ' TB'
__else if (ASize / kb / kb / kb / kb / kb) < kb then Result := Format('%.2n', [ASize / kb / kb / kb / kb / kb]) + ' EB'
__else Result := 'Too huge';
end;