Skip to content

Commit 755dbba

Browse files
rename library as mediaEngine
1 parent 622a904 commit 755dbba

File tree

111 files changed

+339
-339
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

111 files changed

+339
-339
lines changed

CMakeLists.txt

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
1-
cmake_minimum_required(VERSION 2.8)
1+
cmake_minimum_required(VERSION 2.8)
22

3-
project(MediaManager)
3+
project(MediaEngine)
44

55
# Set MediaManger versions
6-
set(MEDIA_MANAGER_VERSION_MAJOR "0")
7-
set(MEDIA_MANAGER_VERSION_MINOR "3")
8-
set(MEDIA_MANAGER_VERSION_MICRO "0")
9-
set(MEDIA_MANAGER_VERSION ${MEDIA_MANAGER_VERSION_MAJOR}.${MEDIA_MANAGER_VERSION_MINOR}.${MEDIA_MANAGER_VERSION_MICRO})
6+
set(MEDIA_ENGINE_VERSION_MAJOR "0")
7+
set(MEDIA_ENGINE_VERSION_MINOR "3")
8+
set(MEDIA_ENGINE_VERSION_MICRO "0")
9+
set(MEDIA_ENGINE_VERSION ${MEDIA_ENGINE_VERSION_MAJOR}.${MEDIA_ENGINE_VERSION_MINOR}.${MEDIA_ENGINE_VERSION_MICRO})
1010

1111
# Define AvTranscoder versions
12-
add_definitions(-DMEDIA_MANAGER_VERSION_MAJOR=${MEDIA_MANAGER_VERSION_MAJOR})
13-
add_definitions(-DMEDIA_MANAGER_VERSION_MINOR=${MEDIA_MANAGER_VERSION_MINOR})
14-
add_definitions(-DMEDIA_MANAGER_VERSION_MICRO=${MEDIA_MANAGER_VERSION_MICRO})
12+
add_definitions(-DMEDIA_ENGINE_VERSION_MAJOR=${MEDIA_ENGINE_VERSION_MAJOR})
13+
add_definitions(-DMEDIA_ENGINE_VERSION_MINOR=${MEDIA_ENGINE_VERSION_MINOR})
14+
add_definitions(-DMEDIA_ENGINE_VERSION_MICRO=${MEDIA_ENGINE_VERSION_MICRO})
1515

1616
# Diplay commands being ran by CMake
1717
set(CMAKE_VERBOSE_MAKEFILE OFF)

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
# mediaManager
1+
# mediaEngine
22

33
C++ API for LibAV / FFMpeg
44

5-
Based on LibAV/FFMpeg libraries to support various video formats, mediaManager provides the high level API to re-wrap or transcode media easily.
5+
Based on LibAV/FFMpeg libraries to support various video formats, mediaEngine provides the high level API to re-wrap or transcode media easily.
66

77
You can also use its Java & Python bindings for simpler integration in your own projects.
88

app/mediaChecker/CMakeLists.txt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22

33
# Load custom cmake utilities
44
set(CMAKE_MODULE_PATH ${PROJECT_SOURCE_DIR}/cmake)
5-
include(MediaManagerMacros)
5+
include(MediaEngineMacros)
66

77
# Build app
8-
include_directories(${MEDIA_MANAGER_SRC_PATH} ${FFMPEG_INCLUDE_DIR})
8+
include_directories(${MEDIA_ENGINE_SRC_PATH} ${FFMPEG_INCLUDE_DIR})
99

1010
# Add C++11 flag
1111
if(NOT WIN32)
@@ -16,14 +16,14 @@ elseif(${MSVC_VERSION} LESS 1800)
1616
endif()
1717

1818
add_executable(mediachecker mediaChecker.cpp)
19-
set_target_properties(mediachecker PROPERTIES VERSION ${MEDIA_MANAGER_VERSION})
19+
set_target_properties(mediachecker PROPERTIES VERSION ${MEDIA_ENGINE_VERSION})
2020
target_link_libraries(mediachecker mediaCore-shared mediaIO-shared)
2121

2222
# Install app
2323
if(WIN32)
2424
set(BINARY_FILES "${CMAKE_CURRENT_BINARY_DIR}/mediachecker.exe")
2525
else()
26-
set(BINARY_FILES "${CMAKE_CURRENT_BINARY_DIR}/mediachecker" "${CMAKE_CURRENT_BINARY_DIR}/mediachecker-${MEDIA_MANAGER_VERSION}")
26+
set(BINARY_FILES "${CMAKE_CURRENT_BINARY_DIR}/mediachecker" "${CMAKE_CURRENT_BINARY_DIR}/mediachecker-${MEDIA_ENGINE_VERSION}")
2727
endif()
2828

2929
install(

app/mediaChecker/mediaChecker.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
int main( int argc, char** argv )
1111
{
12-
using namespace mediamanager;
12+
using namespace mediaengine;
1313

1414
mediacore::Profile p;
1515
p.loadProfiles();
@@ -27,7 +27,7 @@ int main( int argc, char** argv )
2727
std::cout << std::setw(35) << key.first << key.second << std::endl;
2828

2929
try{
30-
using namespace mediamanager::mediacore::constants;
30+
using namespace mediaengine::mediacore::constants;
3131
if( profile.find( mediaProfileType )->second == mediaProfileTypeVideo )
3232
{
3333
mediaio::AvOutputVideo outputVideo;

app/mediaChecker/mediachecker.man

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
.\" Manpage for mediachecker.
22
.\" Contact arnaud.marcantoine@gmail.com to correct errors or typos.
3-
.TH man 1 "21 May 2014" "1.0" "avinfo man page"
3+
.TH man 1 "21 May 2014" "1.0" "mediachecker man page"
44
.SH NOM
55
mediachecker - check options for each profile detected
66
.SH SYNOPSIS

app/mediaInfo/CMakeLists.txt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
# Load custom cmake utilities
22
set(CMAKE_MODULE_PATH ${PROJECT_SOURCE_DIR}/cmake)
3-
include(MediaManagerMacros)
3+
include(MediaEngineMacros)
44

55
# Build app
6-
include_directories(${MEDIA_MANAGER_SRC_PATH} ${FFMPEG_INCLUDE_DIR})
6+
include_directories(${MEDIA_ENGINE_SRC_PATH} ${FFMPEG_INCLUDE_DIR})
77
add_executable(mediainfo mediaInfo.cpp)
8-
set_target_properties(mediainfo PROPERTIES VERSION ${MEDIA_MANAGER_VERSION})
8+
set_target_properties(mediainfo PROPERTIES VERSION ${MEDIA_ENGINE_VERSION})
99
target_link_libraries(mediainfo mediaCore-shared)
1010

1111
# Install app
1212
if(WIN32)
1313
set(BINARY_FILES "${CMAKE_CURRENT_BINARY_DIR}/mediainfo.exe")
1414
else()
15-
set(BINARY_FILES "${CMAKE_CURRENT_BINARY_DIR}/mediainfo" "${CMAKE_CURRENT_BINARY_DIR}/mediainfo-${MEDIA_MANAGER_VERSION}")
15+
set(BINARY_FILES "${CMAKE_CURRENT_BINARY_DIR}/mediainfo" "${CMAKE_CURRENT_BINARY_DIR}/mediainfo-${MEDIA_ENGINE_VERSION}")
1616
endif()
1717

1818
install(

app/mediaInfo/mediaInfo.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
int main( int argc, char** argv )
88
{
9-
using namespace mediamanager;
9+
using namespace mediaengine;
1010

1111
mediacore::Libraries libs( mediacore::getLibraries() );
1212

app/mediaInfo/mediainfo.man

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
.\" Manpage for avinfo.
1+
.\" Manpage for mediainfo.
22
.\" Contact arnaud.marcantoine@gmail.com to correct errors or typos.
3-
.TH man 1 "21 May 2014" "1.0" "avinfo man page"
3+
.TH man 1 "21 May 2014" "1.0" "mediainfo man page"
44
.SH NOM
5-
avinfo - display version informations
5+
mediainfo - display version informations
66
.SH SYNOPSIS
7-
avinfo
7+
mediainfo
88
.SH AUTHOR
99
Written by Marc-Antoine ARNAUD (arnaud.marcantoine@gmail.com)
1010
.SH COPYRIGHT

app/mediaMeta/CMakeLists.txt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
# Load custom cmake utilities
22
set(CMAKE_MODULE_PATH ${PROJECT_SOURCE_DIR}/cmake)
3-
include(MediaManagerMacros)
3+
include(MediaEngineMacros)
44

55
# Build app
6-
include_directories(${MEDIA_MANAGER_SRC_PATH} ${FFMPEG_INCLUDE_DIR})
6+
include_directories(${MEDIA_ENGINE_SRC_PATH} ${FFMPEG_INCLUDE_DIR})
77
add_executable(mediameta mediaMeta.cpp)
8-
set_target_properties(mediameta PROPERTIES VERSION ${MEDIA_MANAGER_VERSION})
8+
set_target_properties(mediameta PROPERTIES VERSION ${MEDIA_ENGINE_VERSION})
99
target_link_libraries(mediameta mediaCore-shared mediaIO-shared)
1010

1111
# Install app
1212
if(WIN32)
1313
set(BINARY_FILES "${CMAKE_CURRENT_BINARY_DIR}/mediameta.exe")
1414
else()
15-
set(BINARY_FILES "${CMAKE_CURRENT_BINARY_DIR}/mediameta" "${CMAKE_CURRENT_BINARY_DIR}/mediameta-${MEDIA_MANAGER_VERSION}")
15+
set(BINARY_FILES "${CMAKE_CURRENT_BINARY_DIR}/mediameta" "${CMAKE_CURRENT_BINARY_DIR}/mediameta-${MEDIA_ENGINE_VERSION}")
1616
endif()
1717

1818
install(

app/mediaMeta/mediaMeta.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ int main( int argc, char** argv )
1414
return( -1 );
1515
}
1616

17-
using namespace mediamanager;
17+
using namespace mediaengine;
1818

1919
mediacore::NoDisplayProgress p;
2020

0 commit comments

Comments
 (0)
pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy