We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 910292f commit bb69c1eCopy full SHA for bb69c1e
1 file changed
rerun_cpp/src/rerun/datatypes/tensor_buffer_ext.cpp
@@ -102,6 +102,11 @@ namespace rerun {
102
case detail::TensorBufferTag::F64: {
103
return _data.f64.size();
104
}
105
+ case detail::TensorBufferTag::NV12: {
106
+ assert(
107
+ false && "Can't ask for the number of elements in an NV12 encoded image"
108
+ );
109
+ }
110
case detail::TensorBufferTag::JPEG: {
111
assert(false && "Can't ask for the number of elements in a JPEG");
112
0 commit comments