forked from wang-bin/QtAV
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Changelog - CMake support - Fix iOS build - Fix AVPacket memory leak - Geometry & GeometryRenderer class is public - PAL8, XYZ color format support - Fix OpenGL background color - Fix external clock error after pause - VA-API encoder support (ffmpeg>=3) - Other improvements, fixes, and untested features
- Loading branch information
Showing
27 changed files
with
298 additions
and
36 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 1,17 @@ | ||
qtav (1.12.0) unstable; urgency=low | ||
|
||
* CMake support | ||
* Fix iOS build | ||
* Fix AVPacket memory leak | ||
* Geometry & GeometryRenderer class is public | ||
* PAL8, XYZ color format support | ||
* Fix OpenGL background color | ||
* Fix external clock error after pause | ||
* VA-API encoder support (ffmpeg>=3) | ||
* Other improvements, fixes, and untested features | ||
|
||
-- Wang Bin (Lucas) <[email protected]> Tue, 20 Jun 2017 20:44:14 0800 | ||
|
||
qtav (1.11.0) unstable; urgency=low | ||
|
||
* Dynamic load QtAVWidgets in VideoOutput. avwidgets module is not requred now. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -56,7 56,7 @@ defineTest(genRC) { | |
RC_ICONS = $$PROJECTROOT/src/QtAV.ico | ||
QMAKE_TARGET_COMPANY = "Shanghai University->S3 Graphics->Deepin | [email protected]" | ||
QMAKE_TARGET_DESCRIPTION = "QtAV Multimedia playback framework. http://qtav.org" | ||
QMAKE_TARGET_COPYRIGHT = "Copyright (C) 2012-2016 WangBin, [email protected]" | ||
QMAKE_TARGET_COPYRIGHT = "Copyright (C) 2012-2017 WangBin, [email protected]" | ||
QMAKE_TARGET_PRODUCT = "QtAV $$1" | ||
export(RC_ICONS) | ||
export(QMAKE_TARGET_COMPANY) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -152,7 152,7 @@ defineTest(genRC) { | |
RC_ICONS = $$PROJECTROOT/src/QtAV.ico | ||
QMAKE_TARGET_COMPANY = "Shanghai University->S3 Graphics->Deepin | [email protected]" | ||
QMAKE_TARGET_DESCRIPTION = "QtAV Multimedia framework. http://qtav.org" | ||
QMAKE_TARGET_COPYRIGHT = "Copyright (C) 2012-2016 WangBin, [email protected]" | ||
QMAKE_TARGET_COPYRIGHT = "Copyright (C) 2012-2017 WangBin, [email protected]" | ||
QMAKE_TARGET_PRODUCT = "QtAV $$1" | ||
export(RC_ICONS) | ||
export(QMAKE_TARGET_COMPANY) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 1,231 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | ||
<plist version="1.0"> | ||
<dict> | ||
<key>CFBundleIconFile</key> | ||
<string>@ICON@</string> | ||
<key>CFBundlePackageType</key> | ||
<string>APPL</string> | ||
<key>CFBundleGetInfoString</key> | ||
<string>Created by Wang Bin</string> | ||
<key>CFBundleSignature</key> | ||
<string>????</string> | ||
<key>CFBundleExecutable</key> | ||
<string>Player</string> | ||
<key>CFBundleIdentifier</key> | ||
<string>org.qtav.player</string> | ||
<key>CFBundleDisplayName</key> | ||
<string>QtAV Player</string> | ||
<key>CFBundleName</key> | ||
<string>QtAV Player</string> | ||
<key>CFBundleShortVersionString</key> | ||
<string>1.12</string> | ||
<key>CFBundleVersion</key> | ||
<string>1.12.0</string> | ||
<key>LSRequiresIPhoneOS</key> | ||
<true/> | ||
<key>UIFileSharingEnabled</key> | ||
<true/> | ||
<key>UILaunchStoryboardName</key> | ||
<string>LaunchScreen</string> | ||
<key>UISupportedInterfaceOrientations</key> | ||
<array> | ||
<string>UIInterfaceOrientationPortrait</string> | ||
<string>UIInterfaceOrientationPortraitUpsideDown</string> | ||
<string>UIInterfaceOrientationLandscapeLeft</string> | ||
<string>UIInterfaceOrientationLandscapeRight</string> | ||
</array> | ||
<key>NOTE</key> | ||
<string>This file was generated by Qt/QMake.</string> | ||
<key>CFBundleDocumentTypes</key> | ||
<array> | ||
<dict> | ||
<key>CFBundleTypeExtensions</key> | ||
<array> | ||
<string>AAC</string> | ||
<string>AC3</string> | ||
<string>AIFF</string> | ||
<string>M4A</string> | ||
<string>MKA</string> | ||
<string>MP3</string> | ||
<string>OGG</string> | ||
<string>PCM</string> | ||
<string>VAW</string> | ||
<string>WAV</string> | ||
<string>WAW</string> | ||
<string>WMA</string> | ||
<string>aac</string> | ||
<string>ac3</string> | ||
<string>aiff</string> | ||
<string>m4a</string> | ||
<string>mka</string> | ||
<string>mp3</string> | ||
<string>ogg</string> | ||
<string>pcm</string> | ||
<string>vaw</string> | ||
<string>wav</string> | ||
<string>waw</string> | ||
<string>wma</string> | ||
</array> | ||
<key>CFBundleTypeIconFile</key> | ||
<string>document.icns</string> | ||
<key>CFBundleTypeName</key> | ||
<string>Audio file</string> | ||
<key>CFBundleTypeRole</key> | ||
<string>Viewer</string> | ||
<key>LSTypeIsPackage</key> | ||
<false/> | ||
<key>NSPersistentStoreTypeKey</key> | ||
<string>XML</string> | ||
</dict> | ||
<dict> | ||
<key>CFBundleTypeExtensions</key> | ||
<array> | ||
<string>*</string> | ||
<string>*</string> | ||
<string>3GP</string> | ||
<string>3IV</string> | ||
<string>3gp</string> | ||
<string>3iv</string> | ||
<string>ASF</string> | ||
<string>AVI</string> | ||
<string>CPK</string> | ||
<string>DAT</string> | ||
<string>DIVX</string> | ||
<string>DV</string> | ||
<string>FLAC</string> | ||
<string>FLI</string> | ||
<string>FLV</string> | ||
<string>H264</string> | ||
<string>I263</string> | ||
<string>M2TS</string> | ||
<string>M4V</string> | ||
<string>MKV</string> | ||
<string>MOV</string> | ||
<string>MP2</string> | ||
<string>MP4</string> | ||
<string>MPEG</string> | ||
<string>MPG</string> | ||
<string>MPG2</string> | ||
<string>MPG4</string> | ||
<string>NSV</string> | ||
<string>NUT</string> | ||
<string>NUV</string> | ||
<string>OGG</string> | ||
<string>OGM</string> | ||
<string>QT</string> | ||
<string>RM</string> | ||
<string>RMVB</string> | ||
<string>VCD</string> | ||
<string>VFW</string> | ||
<string>VOB</string> | ||
<string>WEBM</string> | ||
<string>WMV</string> | ||
<string>asf</string> | ||
<string>avi</string> | ||
<string>cpk</string> | ||
<string>dat</string> | ||
<string>divx</string> | ||
<string>dv</string> | ||
<string>flac</string> | ||
<string>fli</string> | ||
<string>flv</string> | ||
<string>h264</string> | ||
<string>i263</string> | ||
<string>m2ts</string> | ||
<string>m4v</string> | ||
<string>mkv</string> | ||
<string>mov</string> | ||
<string>mp2</string> | ||
<string>mp4</string> | ||
<string>mpeg</string> | ||
<string>mpg</string> | ||
<string>mpg2</string> | ||
<string>mpg4</string> | ||
<string>mts</string> | ||
<string>nsv</string> | ||
<string>nut</string> | ||
<string>nuv</string> | ||
<string>ogg</string> | ||
<string>ogm</string> | ||
<string>qt</string> | ||
<string>rm</string> | ||
<string>rmvb</string> | ||
<string>vcd</string> | ||
<string>vfw</string> | ||
<string>vob</string> | ||
<string>webm</string> | ||
<string>wmv</string> | ||
<string>f4v</string> | ||
<string>ts</string> | ||
</array> | ||
<key>CFBundleTypeIconFile</key> | ||
<string>document.icns</string> | ||
<key>CFBundleTypeName</key> | ||
<string>Movie file</string> | ||
<key>CFBundleTypeRole</key> | ||
<string>Viewer</string> | ||
<key>LSTypeIsPackage</key> | ||
<false/> | ||
<key>NSPersistentStoreTypeKey</key> | ||
<string>XML</string> | ||
</dict> | ||
<dict> | ||
<key>CFBundleTypeExtensions</key> | ||
<array> | ||
<string>AQT</string> | ||
<string>ASS</string> | ||
<string>JSS</string> | ||
<string>RT</string> | ||
<string>SMI</string> | ||
<string>SRT</string> | ||
<string>SSA</string> | ||
<string>SUB</string> | ||
<string>TXT</string> | ||
<string>UTF</string> | ||
<string>aqt</string> | ||
<string>ass</string> | ||
<string>jss</string> | ||
<string>rt</string> | ||
<string>smi</string> | ||
<string>srt</string> | ||
<string>ssa</string> | ||
<string>sub</string> | ||
<string>txt</string> | ||
<string>utf</string> | ||
</array> | ||
<key>CFBundleTypeIconFile</key> | ||
<string>document.icns</string> | ||
<key>CFBundleTypeName</key> | ||
<string>Subtitles file</string> | ||
<key>CFBundleTypeRole</key> | ||
<string>Viewer</string> | ||
<key>LSTypeIsPackage</key> | ||
<false/> | ||
<key>NSPersistentStoreTypeKey</key> | ||
<string>XML</string> | ||
</dict> | ||
</array> | ||
<key>CFBundleURLTypes</key> | ||
<array> | ||
<dict> | ||
<key>CFBundleTypeRole</key> | ||
<string>Viewer</string> | ||
<key>CFBundleURLName</key> | ||
<string>Streaming Protocol</string> | ||
<key>CFBundleURLSchemes</key> | ||
<array> | ||
<string>mms</string> | ||
<string>mmst</string> | ||
<string>http</string> | ||
<string>httpproxy</string> | ||
<string>rtp</string> | ||
<string>rtsp</string> | ||
<string>ftp</string> | ||
<string>udp</string> | ||
<string>smb</string> | ||
</array> | ||
</dict> | ||
</array> | ||
</dict> | ||
</plist> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 1,5 @@ | ||
QT = sql | ||
TARGET = Player | ||
QT = sql svg | ||
########## template for QtAV app project BEGIN ################ | ||
greaterThan(QT_MAJOR_VERSION, 4) { | ||
QT = avwidgets | ||
|
@@ -22,11 23,15 @@ RESOURCES = $$COMMON/theme/theme.qrc | |
isEmpty(PROJECTROOT): PROJECTROOT = $$PWD/../.. | ||
mac: RC_FILE = $$PROJECTROOT/src/QtAV.icns | ||
QMAKE_INFO_PLIST = $$COMMON/Info.plist | ||
ios: QMAKE_INFO_PLIST = ios/Info.plist | ||
videos.files = video | ||
videos.path = / | ||
QMAKE_BUNDLE_DATA = videos | ||
defineTest(genRC) { | ||
RC_ICONS = $$PROJECTROOT/src/QtAV.ico | ||
QMAKE_TARGET_COMPANY = "Shanghai University->S3 Graphics->Deepin | [email protected]" | ||
QMAKE_TARGET_DESCRIPTION = "QtAV Multimedia framework. http://qtav.org" | ||
QMAKE_TARGET_COPYRIGHT = "Copyright (C) 2012-2016 WangBin, [email protected]" | ||
QMAKE_TARGET_COPYRIGHT = "Copyright (C) 2012-2017 WangBin, [email protected]" | ||
QMAKE_TARGET_PRODUCT = "QtAV $$1" | ||
export(RC_ICONS) | ||
export(QMAKE_TARGET_COMPANY) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -65,7 65,7 @@ EXTRA_COPY_FILES = $$qtav_qml.files | |
QMAKE_WRITE_DEFAULT_RC = 1 | ||
QMAKE_TARGET_COMPANY = "Shanghai University->S3 Graphics->Deepin | [email protected]" | ||
QMAKE_TARGET_DESCRIPTION = "QtAV QML module. QtAV Multimedia framework. http://qtav.org" | ||
QMAKE_TARGET_COPYRIGHT = "Copyright (C) 2012-2016 WangBin, [email protected]" | ||
QMAKE_TARGET_COPYRIGHT = "Copyright (C) 2012-2017 WangBin, [email protected]" | ||
QMAKE_TARGET_PRODUCT = "QtAV QML" | ||
|
||
SOURCES = \ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.