Skip to content

Commit

Permalink
VideoSubFinder_6.10.0
Browse files Browse the repository at this point in the history
  • Loading branch information
eritpchy committed Oct 12, 2023
2 parents 837da37 + c3d19ab commit 7d0d43c
Show file tree
Hide file tree
Showing 8 changed files with 7 additions and 72 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/build-darwin-x64.yml
Original file line number Diff line number Diff line change
Expand Up @@ -187,6 +187,8 @@ jobs:
cp -fv /usr/local/lib/libpcre2-8.0.dylib lib/ || true; \
cp -fv ../Interfaces/VideoSubFinderCli/VideoSubFinderCli . && \
cp -rfv ../Darwin_x64/* . && \
mkdir ./settings && \
cp -rf ../../Settings/general.cfg ./settings/ && \
true
-
name: Archive artifacts
Expand Down
35 changes: 0 additions & 35 deletions Build/Darwin_x64/settings/general.cfg

This file was deleted.

1 change: 1 addition & 0 deletions Build/Docker/cpu/build.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ FROM eritpchy/videosubfinder-build:base
COPY . /tmp/work/videosubfinder-src
RUN cd /tmp/work/videosubfinder-src \
&& cp -rf ./Build/Linux_x64/* /tmp/work/ \
&& mkdir /tmp/work/settings && cp -rf ./Settings/general.cfg /tmp/work/settings/ \
&& rm -rf linux_build \
&& mkdir -p linux_build \
&& cd linux_build/ \
Expand Down
1 change: 1 addition & 0 deletions Build/Docker/cpu_static/build.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ FROM eritpchy/videosubfinder-build:base-cpu-static as builder
COPY . /tmp/work/videosubfinder-src
RUN cd /tmp/work/videosubfinder-src \
&& cp -rf ./Build/Linux_x64/* /tmp/work/ \
&& mkdir /tmp/work/settings && cp -rf ./Settings/general.cfg /tmp/work/settings/ \
&& rm -rf linux_build \
&& mkdir -p linux_build \
&& cd linux_build/ \
Expand Down
35 changes: 0 additions & 35 deletions Build/Linux_x64/settings/general.cfg

This file was deleted.

2 changes: 1 addition & 1 deletion Components/IPAlgorithms/SSAlgorithms.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1221,7 +1221,7 @@ s64 FastSearchSubtitles(CVideo *pV, s64 Begin, s64 End)
simple_buffer<u8> ImFSP(size * 3, (u8)0); //image for save prev
simple_buffer<u8> ImNES(size, (u8)0), ImNESP(size, (u8)0);
simple_buffer<u16> ImYInt(size, (u16)0), ImYS(size, (u16)0), ImYSP(size, (u16)0), * pImYInt, * pImY;
simple_buffer<u8>* pImBGR;
simple_buffer<u8>* pImBGR;
simple_buffer<u8> *pIm, *pImInt, *pImNE;
simple_buffer<u8> prevImBGR(size * 3, (u8)0);
simple_buffer<u8> prevImNE(size, (u8)0), prevIm(size, (u8)0);
Expand Down
2 changes: 1 addition & 1 deletion Components/OCVVideo/OCVVideo.h
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ class OCVVideo: public CVideo
int m_type; //video open type
bool m_show_video;
#ifdef USE_GUI
wxBitmap *m_pBmp;
wxBitmap *m_pBmp;
wxBitmap *m_pBmpScaled;
#endif
double m_frameNumbers;
Expand Down
1 change: 1 addition & 0 deletions Interfaces/VideoSubFinderWXW/VideoSubFinderWXW.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@
#ifdef USE_GUI
#include <X11/Xlib.h>
#endif

#endif
#include "DataTypes.h"

Expand Down

0 comments on commit 7d0d43c

Please sign in to comment.