Skip to content
This repository was archived by the owner on Mar 27, 2024. It is now read-only.

Commit c4461f6

Browse files
committed
Update to OpenDLV Standard Message Set v0.9.6
Signed-off-by: Christian Berger <christian.berger@gu.se>
1 parent 7a2fcd6 commit c4461f6

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ project(opendlv-video-vpx-encoder)
1919

2020
################################################################################
2121
# Defining the relevant versions of OpenDLV Standard Message Set and libcluon.
22-
set(OPENDLV_STANDARD_MESSAGE_SET opendlv-standard-message-set-v0.9.5.odvd)
22+
set(OPENDLV_STANDARD_MESSAGE_SET opendlv-standard-message-set-v0.9.6.odvd)
2323
set(CLUON_COMPLETE cluon-complete-v0.0.105.hpp)
2424

2525
################################################################################

src/opendlv-standard-message-set-v0.9.5.odvd renamed to src/opendlv-standard-message-set-v0.9.6.odvd

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -148,10 +148,10 @@ message opendlv.proxy.GeodeticWgs84Reading [id = 19] {
148148
}
149149

150150
message opendlv.proxy.ImageReading [id = 1055] {
151-
string format [id = 1];
151+
string fourcc [id = 1];
152152
uint32 width [id = 2];
153153
uint32 height [id = 3];
154-
string data [id = 4];
154+
bytes data [id = 4];
155155
}
156156

157157
message opendlv.proxy.ImageReadingShared [id = 14] {

src/opendlv-video-vpx-encoder.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ int32_t main(int32_t argc, char **argv) {
166166

167167
if ( (0 < totalSize) && (VP8 || VP9) ) {
168168
opendlv::proxy::ImageReading ir;
169-
ir.format((VP8 ? "VP80" : "VP90")).width(WIDTH).height(HEIGHT).data(std::string(&vpxBuffer[0], totalSize));
169+
ir.fourcc((VP8 ? "VP80" : "VP90")).width(WIDTH).height(HEIGHT).data(std::string(&vpxBuffer[0], totalSize));
170170
od4.send(ir, sampleTimeStamp, ID);
171171

172172
if (VERBOSE) {

0 commit comments

Comments
 (0)