Skip to content

Commit 8fe55e3

Browse files
Guangwei Wanghuili2
authored andcommitted
update openh264 version to v2.3.0
1 parent f54be70 commit 8fe55e3

File tree

6 files changed

+13
-13
lines changed

6 files changed

+13
-13
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ STRIP ?= strip
3737
USE_STACK_PROTECTOR = Yes
3838

3939
SHAREDLIB_MAJORVERSION=6
40-
FULL_VERSION := 2.2.0
40+
FULL_VERSION := 2.3.0
4141

4242
ifeq (,$(wildcard $(SRC_PATH)gmp-api))
4343
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.2.0
7-
COMPATIBILITY_VERSION := 2.2.0
6+
CURRENT_VERSION := 2.3.0
7+
COMPATIBILITY_VERSION := 2.3.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, 2, 0, 2201};
8-
static const char* const g_strCodecVer = "OpenH264 version:2.2.0.2201";
7+
static const OpenH264Version g_stCodecVersion = {2, 3, 0, 2206};
8+
static const char* const g_strCodecVer = "OpenH264 version:2.3.0.2206";
99

1010
#define OPENH264_MAJOR (2)
11-
#define OPENH264_MINOR (2)
11+
#define OPENH264_MINOR (3)
1212
#define OPENH264_REVISION (0)
13-
#define OPENH264_RESERVED (2201)
13+
#define OPENH264_RESERVED (2206)
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.2.0
3+
Version: 2.3.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.2.0',
2+
version : '2.3.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,2,0,2201
28-
PRODUCTVERSION 2,2,0,2201
27+
FILEVERSION 2,3,0,2206
28+
PRODUCTVERSION 2,3,0,2206
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.2.0.2201"
46+
VALUE "FileVersion", "2.3.0.2206"
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.2.0.2201"
51+
VALUE "ProductVersion", "2.3.0.2206"
5252
END
5353
END
5454
BLOCK "VarFileInfo"

0 commit comments

Comments
 (0)