[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Commit-gnuradio] r3796 - gnuradio/branches/developers/jcorgan/cppwrap/g
From: |
jcorgan |
Subject: |
[Commit-gnuradio] r3796 - gnuradio/branches/developers/jcorgan/cppwrap/gnuradio-examples/c++ |
Date: |
Sun, 15 Oct 2006 22:18:39 -0600 (MDT) |
Author: jcorgan
Date: 2006-10-15 22:18:39 -0600 (Sun, 15 Oct 2006)
New Revision: 3796
Modified:
gnuradio/branches/developers/jcorgan/cppwrap/gnuradio-examples/c++/gr_flow_graph.h
Log:
Fixed incorrect default buffer length.
Modified:
gnuradio/branches/developers/jcorgan/cppwrap/gnuradio-examples/c++/gr_flow_graph.h
===================================================================
---
gnuradio/branches/developers/jcorgan/cppwrap/gnuradio-examples/c++/gr_flow_graph.h
2006-10-16 03:54:40 UTC (rev 3795)
+++
gnuradio/branches/developers/jcorgan/cppwrap/gnuradio-examples/c++/gr_flow_graph.h
2006-10-16 04:18:39 UTC (rev 3796)
@@ -57,7 +57,7 @@
typedef std::vector<gr_vertex_t> gr_vertex_vector_t;
typedef std::vector<gr_vertex_t>::iterator gr_vertex_vector_iterator_t;
-#define GR_FIXED_BUFFER_SIZE 32000
+#define GR_FIXED_BUFFER_SIZE (32*(1L<<10))
class gr_flow_graph : public boost::enable_shared_from_this<gr_flow_graph>
{
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [Commit-gnuradio] r3796 - gnuradio/branches/developers/jcorgan/cppwrap/gnuradio-examples/c++,
jcorgan <=