diff options
author | Sean Nowlan <sean.nowlan@gtri.gatech.edu> | 2015-04-26 12:10:31 -0400 |
---|---|---|
committer | Sean Nowlan <sean.nowlan@gtri.gatech.edu> | 2015-04-26 12:10:31 -0400 |
commit | db7fb5329f31f6f96c84552c9818c95ead5fcf7a (patch) | |
tree | abcc4ee1ef62b439309070e96d66885d11d7e918 /gr-blocks/lib/vector_source_X_impl.cc.t | |
parent | e61a5c86d005af6fc91281e9fb43c374272c14cd (diff) |
blocks: vector_source: fixed tag srcid propagation when not using repeat mode
Diffstat (limited to 'gr-blocks/lib/vector_source_X_impl.cc.t')
-rw-r--r-- | gr-blocks/lib/vector_source_X_impl.cc.t | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gr-blocks/lib/vector_source_X_impl.cc.t b/gr-blocks/lib/vector_source_X_impl.cc.t index cb17c70d63..287864fcac 100644 --- a/gr-blocks/lib/vector_source_X_impl.cc.t +++ b/gr-blocks/lib/vector_source_X_impl.cc.t @@ -133,7 +133,8 @@ namespace gr { } for(unsigned t = 0; t < d_tags.size(); t++) { if((d_tags[t].offset >= d_offset) && (d_tags[t].offset < d_offset+n)) - add_item_tag(0, d_tags[t].offset, d_tags[t].key, d_tags[t].value); + add_item_tag(0, d_tags[t].offset, d_tags[t].key, d_tags[t].value, + d_tags[t].srcid); } d_offset += n; return n/d_vlen; |