Skip to content

Commit d12e51a

Browse files
update openh264 version to v2.6.0 (#3852)
1 parent cf3b514 commit d12e51a

File tree

6 files changed

+14
-14
lines changed

6 files changed

+14
-14
lines changed

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,8 @@ USE_STACK_PROTECTOR = Yes
3838
USE_LOW_VERSION_NDK=No
3939
USE_ANT=No
4040

41-
SHAREDLIB_MAJORVERSION=7
42-
FULL_VERSION := 2.5.0
41+
SHAREDLIB_MAJORVERSION=8
42+
FULL_VERSION := 2.6.0
4343

4444
ifeq (,$(wildcard $(SRC_PATH)gmp-api))
4545
HAVE_GMP_API=No

build/platform-darwin.mk

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ SHAREDLIB_DIR = $(PREFIX)/lib
33
SHAREDLIBSUFFIX = dylib
44
SHAREDLIBSUFFIXFULLVER=$(FULL_VERSION).$(SHAREDLIBSUFFIX)
55
SHAREDLIBSUFFIXMAJORVER=$(SHAREDLIB_MAJORVERSION).$(SHAREDLIBSUFFIX)
6-
CURRENT_VERSION := 2.5.0
7-
COMPATIBILITY_VERSION := 2.5.0
6+
CURRENT_VERSION := 2.6.0
7+
COMPATIBILITY_VERSION := 2.6.0
88
SHLDFLAGS = -dynamiclib -twolevel_namespace -undefined dynamic_lookup \
99
-fno-common -headerpad_max_install_names -install_name \
1010
$(SHAREDLIB_DIR)/$(LIBPREFIX)$(PROJECT_NAME).$(SHAREDLIBSUFFIXMAJORVER)

codec/api/wels/codec_ver.h

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@
44

55
#include "codec_app_def.h"
66

7-
static const OpenH264Version g_stCodecVersion = {2, 5, 0, 2411};
8-
static const char* const g_strCodecVer = "OpenH264 version:2.5.0.2411";
7+
static const OpenH264Version g_stCodecVersion = {2, 6, 0, 2502};
8+
static const char* const g_strCodecVer = "OpenH264 version:2.6.0.2502";
99

1010
#define OPENH264_MAJOR (2)
11-
#define OPENH264_MINOR (5)
11+
#define OPENH264_MINOR (6)
1212
#define OPENH264_REVISION (0)
13-
#define OPENH264_RESERVED (2411)
13+
#define OPENH264_RESERVED (2502)
1414

1515
#endif // CODEC_VER_H

gmpopenh264.info

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
Name: gmpopenh264
22
Description: GMP Plugin for OpenH264.
3-
Version: 2.5.0
3+
Version: 2.6.0
44
APIs: encode-video[h264], decode-video[h264]

meson.build

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
project('openh264', ['c', 'cpp'],
2-
version : '2.5.0',
2+
version : '2.6.0',
33
meson_version : '>= 0.52',
44
default_options : [ 'warning_level=1',
55
'buildtype=debugoptimized' ])

openh264.rc

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@ LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US
2424
//
2525

2626
VS_VERSION_INFO VERSIONINFO
27-
FILEVERSION 2,5,0,2411
28-
PRODUCTVERSION 2,5,0,2411
27+
FILEVERSION 2,6,0,2502
28+
PRODUCTVERSION 2,6,0,2502
2929
FILEFLAGSMASK 0x3fL
3030
#ifdef _DEBUG
3131
FILEFLAGS 0x1L
@@ -43,12 +43,12 @@ BEGIN
4343
VALUE "Comments", "Cisco OpenH264 codec"
4444
VALUE "CompanyName", "Cisco Systems Inc."
4545
VALUE "FileDescription", "Cisco OpenH264 codec"
46-
VALUE "FileVersion", "2.5.0.2411"
46+
VALUE "FileVersion", "2.6.0.2502"
4747
VALUE "InternalName", "openh264.dll"
4848
VALUE "LegalCopyright", "� 2011-2015 Cisco and/or its affiliates. All rights reserved."
4949
VALUE "OriginalFilename", "openh264.dll"
5050
VALUE "ProductName", "Cisco OpenH264 codec"
51-
VALUE "ProductVersion", "2.5.0.2411"
51+
VALUE "ProductVersion", "2.6.0.2502"
5252
END
5353
END
5454
BLOCK "VarFileInfo"

0 commit comments

Comments
 (0)