requested by Cory Perry:

increase the maximum number of ringbuffer files from 1024 to 10000.

svn path=/trunk/; revision=16690
This commit is contained in:
Ulf Lamping 2005-12-05 23:22:59 +00:00
parent f27bf13022
commit a6f33f1d05
1 changed files with 2 additions and 1 deletions

View File

@ -35,7 +35,8 @@
/* minimum number of ringbuffer files */
#define RINGBUFFER_MIN_NUM_FILES 0
/* maximum number of ringbuffer files */
#define RINGBUFFER_MAX_NUM_FILES 1024
/* (only to avoid crashes on very large numbers) */
#define RINGBUFFER_MAX_NUM_FILES 10000
int ringbuf_init(const char *capture_name, guint num_files);
const gchar *ringbuf_current_filename(void);