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: - Initial OpenAL support. - Fix hardware decoding crashes: seeking, packet loss(e.g. bad network) - Allwinner's CedarX hardware decoding support. Thanks Miroslav Bendik. - FFmpeg log and error handling. New class: AVError - AVDictionary support for decoder and demuxer. API: AVPlayer::setOptionsForXXX() - Fix crash on app exit - Fix Hi10bits crash - Build: * fix XXX_EXPORT macro confliction. * configurable qmake project etc. - QMLPlayer: better UI - player: * wheel to zoom in/out. * apply decoder without restart. * exit on main window close. * move EventHandler to player. - Installer: ubuntu support. - Screen saver for OSX, X11. Improve windows
- Loading branch information
Showing
14 changed files
with
46 additions
and
23 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
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,7 1,7 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<Installer> | ||
<Name>QtAV</Name> | ||
<Version>1.3.0</Version> | ||
<Version>1.3.1</Version> | ||
<Title>QtAV Installer</Title> | ||
<Publisher>[email protected]</Publisher> | ||
<ProductUrl>https://github.com/wang-bin/QtAV</ProductUrl> | ||
|
@@ -16,4 16,4 @@ | |
<StartMenuDir>QtAV</StartMenuDir> | ||
<TargetDir>@rootDir@/QtAV</TargetDir> | ||
<AdminTargetDir>@rootDir@/QtAV</AdminTargetDir> | ||
</Installer> | ||
</Installer> |
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 |
---|---|---|
@@ -1,6 1,6 @@ | ||
/****************************************************************************** | ||
QtAV: Media play library based on Qt and FFmpeg | ||
Copyright (C) 2012-2013 Wang Bin <[email protected]> | ||
Copyright (C) 2012-2014 Wang Bin <[email protected]> | ||
* This file is part of QtAV | ||
|
@@ -24,7 24,7 @@ | |
|
||
#define QTAV_MAJOR 1 //((QTAV_VERSION&0xff0000)>>16) | ||
#define QTAV_MINOR 3 //((QTAV_VERSION&0xff00)>>8) | ||
#define QTAV_PATCH 0 //(QTAV_VERSION&0xff) | ||
#define QTAV_PATCH 1 //(QTAV_VERSION&0xff) | ||
|
||
|
||
#define QTAV_VERSION_MAJOR(V) ((V & 0xff0000) >> 16) | ||
|
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