File tree Expand file tree Collapse file tree 5 files changed +9
-9
lines changed Expand file tree Collapse file tree 5 files changed +9
-9
lines changed Original file line number Diff line number Diff line change 1
1
# C++ apps
2
2
add_subdirectory (avInfo )
3
3
add_subdirectory (avMeta )
4
- add_subdirectory (avPlay )
4
+ add_subdirectory (avPlayer )
5
5
add_subdirectory (avProcessor )
6
6
7
7
# Python apps
Original file line number Diff line number Diff line change 1
- ### cpp/avplay
1
+ ### cpp/avplayer
2
2
3
3
# Load custom cmake utilities
4
4
set (CMAKE_MODULE_PATH ${PROJECT_SOURCE_DIR} /cmake )
@@ -7,7 +7,7 @@ include(AvTranscoderMacros)
7
7
# Check OpenGL
8
8
find_package (OpenGL )
9
9
if (NOT OPENGL_FOUND )
10
- message ("OpenGL not found, will not build avplay app." )
10
+ message ("OpenGL not found, will not build avplayer app." )
11
11
return ()
12
12
endif ()
13
13
@@ -27,15 +27,15 @@ endif()
27
27
include_directories ( ${OPENGL_INCLUDE_DIRS} ${GLUT_INCLUDE_DIR} )
28
28
29
29
file (GLOB AVPLAY_SRC_FILES "*.cpp" "*.hpp" )
30
- add_executable (avplay ${AVPLAY_SRC_FILES} )
31
- set_target_properties (avplay PROPERTIES VERSION ${AVTRANSCODER_VERSION} )
32
- target_link_libraries (avplay avtranscoder-shared ${OPENGL_LIBRARIES} ${GLUT_LIBRARIES} )
30
+ add_executable (avplayer ${AVPLAY_SRC_FILES} )
31
+ set_target_properties (avplayer PROPERTIES VERSION ${AVTRANSCODER_VERSION} )
32
+ target_link_libraries (avplayer avtranscoder-shared ${OPENGL_LIBRARIES} ${GLUT_LIBRARIES} )
33
33
34
34
# Install app
35
35
if (WIN32 )
36
- set (BINARY_FILES "${CMAKE_CURRENT_BINARY_DIR} /avplay .exe" )
36
+ set (BINARY_FILES "${CMAKE_CURRENT_BINARY_DIR} /avplayer .exe" )
37
37
else ()
38
- set (BINARY_FILES "${CMAKE_CURRENT_BINARY_DIR} /avplay " "${CMAKE_CURRENT_BINARY_DIR} /avplay -${AVTRANSCODER_VERSION} " )
38
+ set (BINARY_FILES "${CMAKE_CURRENT_BINARY_DIR} /avplayer " "${CMAKE_CURRENT_BINARY_DIR} /avplayer -${AVTRANSCODER_VERSION} " )
39
39
endif ()
40
40
41
41
install (
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ int main(int argc, char** argv)
14
14
15
15
std::string help;
16
16
help += " Usage\n " ;
17
- help += " \t avplay filename [streamIndex] [--width width] [--height height] [--help]\n " ;
17
+ help += " \t avplayer filename [streamIndex] [--width width] [--height height] [--help]\n " ;
18
18
help += " Command line options\n " ;
19
19
help += " \t streamIndex: specify the index of the stream to read (by default 0)\n " ;
20
20
help += " \t --width: specify the output width (by default the same as input)\n " ;
You can’t perform that action at this time.
0 commit comments