diff options
| author | Ben Hilburn <ben.hilburn@ettus.com> | 2014-06-13 12:56:30 -0700 | 
|---|---|---|
| committer | Ben Hilburn <ben.hilburn@ettus.com> | 2014-06-13 12:56:30 -0700 | 
| commit | e4f94aaaf4b9d9cc2af8ce5199f0898581a614f8 (patch) | |
| tree | ecbea9ba1092c9280f436e9197d293d5b4756bba /host/lib | |
| parent | 57486eb4bcab31fc522eabefcb0b199230586317 (diff) | |
| parent | 98f8ec4e14ab92cd4891fb9986479b6c6ff88782 (diff) | |
| download | uhd-e4f94aaaf4b9d9cc2af8ce5199f0898581a614f8.tar.gz uhd-e4f94aaaf4b9d9cc2af8ce5199f0898581a614f8.tar.bz2 uhd-e4f94aaaf4b9d9cc2af8ce5199f0898581a614f8.zip | |
Fix issue with "item32" registered size, Bug 466.
Diffstat (limited to 'host/lib')
| -rw-r--r-- | host/lib/convert/convert_impl.cpp | 3 | 
1 files changed, 3 insertions, 0 deletions
| diff --git a/host/lib/convert/convert_impl.cpp b/host/lib/convert/convert_impl.cpp index c7907ed83..caab3929e 100644 --- a/host/lib/convert/convert_impl.cpp +++ b/host/lib/convert/convert_impl.cpp @@ -144,4 +144,7 @@ UHD_STATIC_BLOCK(convert_register_item_sizes){      convert::register_bytes_per_item("s32", sizeof(boost::int32_t));      convert::register_bytes_per_item("s16", sizeof(boost::int16_t));      convert::register_bytes_per_item("s8", sizeof(boost::int8_t)); + +    //register VITA types +    convert::register_bytes_per_item("item32", sizeof(boost::int32_t));  } | 
