Skip to content

Commit

Permalink
Implements DirectShow video support for full-screen videos.
Browse files Browse the repository at this point in the history
  • Loading branch information
CCHyper authored and ZivDero committed Sep 14, 2024
1 parent 467a60b commit 09fab68
Show file tree
Hide file tree
Showing 19 changed files with 2,982 additions and 44 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ jobs:
cp ./build/LaunchVinifera.exe ./artifact/LaunchVinifera.exe
cp ./build/_deps/tspp-src/pdb/Game.pdb ./artifact/Game.pdb
cp ./build/_deps/tspp-src/edb/Game.edb ./artifact/Game.edb
cp ./vinifera-files/files/VINIFERA.VQA ./artifact/Movies/VINIFERA.VQA
cp ./vinifera-files/files/VINIFERA.WMV ./artifact/Movies/Vinifera.wmv
- name: Upload Artifact
uses: actions/upload-artifact@v2
Expand Down Expand Up @@ -189,7 +189,7 @@ jobs:
cp ./build/LaunchVinifera.exe ./artifact/LaunchVinifera.dat
cp ./build/_deps/tspp-src/pdb/Game.pdb ./artifact/Game.pdb
cp ./build/_deps/tspp-src/edb/Game.edb ./artifact/Game.edb
cp ./vinifera-files/files/VINIFERA.VQA ./artifact/Movies/VINIFERA.VQA
cp ./vinifera-files/files/VINIFERA.WMV ./artifact/Movies/Vinifera.wmv
- name: Upload Artifact
uses: actions/upload-artifact@v2
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/pull_request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ jobs:
cp ./build/LaunchVinifera.exe ./artifact/LaunchVinifera.exe
cp ./build/_deps/tspp-src/pdb/Game.pdb ./artifact/Game.pdb
cp ./build/_deps/tspp-src/edb/Game.edb ./artifact/Game.edb
cp ./vinifera-files/files/VINIFERA.VQA ./artifact/Movies/VINIFERA.VQA
cp ./vinifera-files/files/VINIFERA.WMV ./artifact/Movies/Vinifera.wmv
- name: Upload Artifact
uses: actions/upload-artifact@v2
Expand Down Expand Up @@ -116,7 +116,7 @@ jobs:
cp ./build/LaunchVinifera.exe ./artifact/LaunchVinifera.dat
cp ./build/_deps/tspp-src/pdb/Game.pdb ./artifact/Game.pdb
cp ./build/_deps/tspp-src/edb/Game.edb ./artifact/Game.edb
cp ./vinifera-files/files/VINIFERA.WMV ./artifact/Movies/VINIFERA.VQA
cp ./vinifera-files/files/VINIFERA.WMV ./artifact/Movies/Vinifera.wmv
- name: Upload Artifact
uses: actions/upload-artifact@v2
Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -615,7 +615,7 @@ add_dependencies(${PROJECT_NAME} TSpp)
# Ensure the launcher is built with the main project.
add_dependencies(${PROJECT_NAME} Launch${PROJECT_NAME})

set(REQUIRED_LIBRARIES ws2_32 dbghelp shlwapi version comctl32)
set(REQUIRED_LIBRARIES ws2_32 dbghelp shlwapi version comctl32 strmiids)

# Link to any required libraries.
target_link_libraries(${PROJECT_NAME} ${REQUIRED_LIBRARIES})
Expand Down
Loading

0 comments on commit 09fab68

Please sign in to comment.