Skip to content

Commit

Permalink
version 1.2.1
Browse files Browse the repository at this point in the history
Changelog:
- Configurable video quality
- Correct aspect ratio. Any value is supported
- Fix some media playing problem
- Fix crash if no audio
- Fix d2d crash by setting multi-thread type
- Fix WidgetRenderer can not update problem
- Fix mem leak if renderer changed
- player: volume control, display correct online tv name, correct
display time
  • Loading branch information
wang-bin committed Jun 19, 2013
1 parent f7b7df0 commit 89749c5
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 3 deletions.
12 changes: 12 additions & 0 deletions Changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,15 @@
version 1.2.1 2013-06-19

- Configurable video quality
- Correct aspect ratio. Any value is supported
- Fix some media playing problem
- Fix crash if no audio
- Fix d2d crash by setting multi-thread type
- Fix WidgetRenderer can not update problem
- Fix mem leak if renderer changed
- player: volume control, display correct online tv name, correct display time


version 1.2.0 2013-05-27

- Better gui for the player example
Expand Down
2 changes: 1 addition & 1 deletion QtAV.pro
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ unix {

include(root.pri)

PACKAGE_VERSION = 1.2.0
PACKAGE_VERSION = 1.2.1
PACKAGE_NAME= QtAV

include(pack.pri)
Expand Down
2 changes: 1 addition & 1 deletion src/QtAV/version.h
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@

#define QTAV_MAJOR 1 //((QTAV_VERSION&0xff0000)>>16)
#define QTAV_MINOR 2 //((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)
Expand Down
2 changes: 1 addition & 1 deletion src/libQtAV.pri
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ NAME = QtAV
#!isEmpty(LIBQTAV_PRI_INCLUDED):error("libQtAV.pri already included")
eval(LIB$$upper($$NAME)_PRI_INCLUDED = 1)

LIB_VERSION = 1.2.0 #0.x.y may be wrong for dll
LIB_VERSION = 1.2.1 #0.x.y may be wrong for dll
isEmpty(STATICLINK): STATICLINK = 0 #1 or 0. use static lib or not

TEMPLATE += fakelib
Expand Down

0 comments on commit 89749c5

Please sign in to comment.