Skip to content

Commit 05682d2

Browse files
authored
update openh264 version (#3565)
1 parent 2e63786 commit 05682d2

File tree

6 files changed

+15
-15
lines changed

6 files changed

+15
-15
lines changed

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,8 @@ STATIC_LDFLAGS=-lstdc++
3636
STRIP ?= strip
3737
USE_STACK_PROTECTOR = Yes
3838

39-
SHAREDLIB_MAJORVERSION=6
40-
FULL_VERSION := 2.3.0
39+
SHAREDLIB_MAJORVERSION=7
40+
FULL_VERSION := 2.3.1
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.3.0
7-
COMPATIBILITY_VERSION := 2.3.0
6+
CURRENT_VERSION := 2.3.1
7+
COMPATIBILITY_VERSION := 2.3.1
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, 3, 0, 2206};
8-
static const char* const g_strCodecVer = "OpenH264 version:2.3.0.2206";
7+
static const OpenH264Version g_stCodecVersion = {2, 3, 1, 2209};
8+
static const char* const g_strCodecVer = "OpenH264 version:2.3.1.2209";
99

1010
#define OPENH264_MAJOR (2)
1111
#define OPENH264_MINOR (3)
12-
#define OPENH264_REVISION (0)
13-
#define OPENH264_RESERVED (2206)
12+
#define OPENH264_REVISION (1)
13+
#define OPENH264_RESERVED (2209)
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.3.0
3+
Version: 2.3.1
44
APIs: encode-video[h264], decode-video[h264]

meson.build

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
project('openh264', ['c', 'cpp'],
2-
version : '2.3.0',
2+
version : '2.3.1',
33
meson_version : '>= 0.52',
44
default_options : [ 'warning_level=1',
55
'buildtype=debugoptimized' ])
66

7-
major_version = '6'
7+
major_version = '7'
88

99
cpp = meson.get_compiler('cpp')
1010

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,3,0,2206
28-
PRODUCTVERSION 2,3,0,2206
27+
FILEVERSION 2,3,1,2209
28+
PRODUCTVERSION 2,3,1,2209
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.3.0.2206"
46+
VALUE "FileVersion", "2.3.1.2209"
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.3.0.2206"
51+
VALUE "ProductVersion", "2.3.1.2209"
5252
END
5353
END
5454
BLOCK "VarFileInfo"

0 commit comments

Comments
 (0)