vnc: Default image writer type set to Auto

This commit modifies the default behaviour of the vnc frame dumping
process: rather than using 'Bitmap' as a default parameter value, it is
using 'Auto'.  Auto parameter is letting gem5 to choose the most
efficient image format among the available ones.

Change-Id: I3c8e2b5a34a5925d24892880ac362dfe38de36e3
Reviewed-by: Andreas Sandberg <andreas.sandberg@arm.com>
Reviewed-on: https://gem5-review.googlesource.com/5182
Reviewed-by: Jason Lowe-Power <jason@lowepower.com>
Maintainer: Andreas Sandberg <andreas.sandberg@arm.com>
This commit is contained in:
Giacomo Travaglini
2017-09-29 11:49:40 +01:00
parent 12fb1ca0b5
commit c4d1ae831f

View File

@@ -45,7 +45,7 @@ class VncInput(SimObject):
cxx_header = "base/vnc/vncinput.hh"
frame_capture = Param.Bool(False, "capture changed frames to files")
img_format = Param.ImageFormat(
"Bitmap", "Format of the dumped Framebuffer"
"Auto", "Format of the dumped Framebuffer"
)
class VncServer(VncInput):