]> sigrok.org Git - libsigrok.git/commitdiff
sr: Consistently use 512kB as default chunk size.
authorUwe Hermann <redacted>
Fri, 6 Jan 2012 15:20:28 +0000 (16:20 +0100)
committerUwe Hermann <redacted>
Fri, 6 Jan 2012 15:20:28 +0000 (16:20 +0100)
input/binary.c
session_driver.c
sigrok-internal.h

index 9d7e1560a4dbcdd0187c3a0222baeeea765f9ab6..80820e022c7b64c736a4e4f14f4d7f42d51c0ebe 100644 (file)
@@ -25,7 +25,7 @@
 #include <sys/time.h>
 #include "sigrok.h"
 
-#define CHUNKSIZE          4096
+#define CHUNKSIZE             (512 * 1024)
 #define DEFAULT_NUM_PROBES    8
 
 static int format_match(const char *filename)
index 27e8cdc92ba9534203c28fbc79d7aa6aa585fdd4..b6d14eaa1b7895407aa3d30116c67159e9beafa1 100644 (file)
@@ -27,7 +27,7 @@
 #include "sigrok-internal.h"
 
 /* size of payloads sent across the session bus */
-#define CHUNKSIZE 4096
+#define CHUNKSIZE (512 * 1024)
 
 struct session_vdevice {
        char *capturefile;
index 71325c273d79d58f77e409b175fecd6658fc1611..4ea5d475c39d87973ced6c864b44961d9f0228fb 100644 (file)
@@ -34,7 +34,7 @@
 #endif
 
 /* Size of a datastore chunk in units */
-#define DATASTORE_CHUNKSIZE 512000
+#define DATASTORE_CHUNKSIZE (512 * 1024)
 
 /*--- hwplugin.c ------------------------------------------------------------*/