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

Commit 106213a

Browse files
committed
* update to openh264 2.0.0
* update to libcluon 0.0.121 Signed-off-by: Christian Berger <christian.berger@gu.se>
1 parent f3bd821 commit 106213a

File tree

3 files changed

+512
-136
lines changed

3 files changed

+512
-136
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ project(opendlv-video-h264-decoder)
2020
################################################################################
2121
# Defining the relevant versions of OpenDLV Standard Message Set and libcluon.
2222
set(OPENDLV_STANDARD_MESSAGE_SET opendlv-standard-message-set-v0.9.6.odvd)
23-
set(CLUON_COMPLETE cluon-complete-v0.0.117.hpp)
23+
set(CLUON_COMPLETE cluon-complete-v0.0.121.hpp)
2424

2525
################################################################################
2626
# Set the search path for .cmake files.

Dockerfile.amd64

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ RUN cd tmp && \
3232
cd libyuv &&\
3333
make -f linux.mk libyuv.a && cp libyuv.a /usr/lib/x86_64-linux-gnu && cd include && cp -r * /usr/include
3434
RUN cd tmp && \
35-
git clone --depth 1 --branch v1.8.0 https://github.com/cisco/openh264.git && \
35+
git clone --depth 1 --branch v2.0.0 https://github.com/cisco/openh264.git && \
3636
cd openh264 && mkdir b && cd b \
3737
make -j2 -f ../Makefile libraries && make -f ../Makefile install
3838
ADD . /opt/sources
@@ -41,7 +41,7 @@ RUN mkdir build && \
4141
cd build && \
4242
cmake -D CMAKE_BUILD_TYPE=Release -D CMAKE_INSTALL_PREFIX=/tmp .. && \
4343
make && make install
44-
RUN cd /tmp && wget http://ciscobinary.openh264.org/libopenh264-1.8.0-linux64.4.so.bz2
44+
RUN cd /tmp && wget http://ciscobinary.openh264.org/libopenh264-2.0.0-linux64.5.so.bz2
4545

4646
# Part to deploy opendlv-video-h264-decoder.
4747
FROM ubuntu:18.04
@@ -53,9 +53,9 @@ RUN apt-get update -y && \
5353
apt-get install -y --no-install-recommends libx11-6
5454

5555
WORKDIR /usr/lib/x86_64-linux-gnu
56-
COPY --from=builder /tmp/libopenh264-1.8.0-linux64.4.so.bz2 .
57-
RUN bunzip2 libopenh264-1.8.0-linux64.4.so.bz2 && \
58-
ln -sf libopenh264-1.8.0-linux64.4.so libopenh264.so.4
56+
COPY --from=builder /tmp/libopenh264-2.0.0-linux64.5.so.bz2 .
57+
RUN bunzip2 libopenh264-2.0.0-linux64.5.so.bz2 && \
58+
ln -sf libopenh264-2.0.0-linux64.5.so libopenh264.so.5
5959

6060
WORKDIR /usr/bin
6161
COPY --from=builder /tmp/bin/opendlv-video-h264-decoder .

0 commit comments

Comments
 (0)