Skip to content

Commit 34e14ea

Browse files
update openh264 version to v2.4.0 (#3691)
1 parent 15d02fc commit 34e14ea

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
@@ -39,7 +39,7 @@ USE_LOW_VERSION_NDK=No
3939
USE_ANT=No
4040

4141
SHAREDLIB_MAJORVERSION=7
42-
FULL_VERSION := 2.3.0
42+
FULL_VERSION := 2.4.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.3.0
7-
COMPATIBILITY_VERSION := 2.3.0
6+
CURRENT_VERSION := 2.4.0
7+
COMPATIBILITY_VERSION := 2.4.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, 3, 0, 2206};
8-
static const char* const g_strCodecVer = "OpenH264 version:2.3.0.2206";
7+
static const OpenH264Version g_stCodecVersion = {2, 4, 0, 2310};
8+
static const char* const g_strCodecVer = "OpenH264 version:2.4.0.2310";
99

1010
#define OPENH264_MAJOR (2)
11-
#define OPENH264_MINOR (3)
11+
#define OPENH264_MINOR (4)
1212
#define OPENH264_REVISION (0)
13-
#define OPENH264_RESERVED (2206)
13+
#define OPENH264_RESERVED (2310)
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.4.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.3.0',
2+
version : '2.4.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,3,0,2206
28-
PRODUCTVERSION 2,3,0,2206
27+
FILEVERSION 2,4,0,2310
28+
PRODUCTVERSION 2,4,0,2310
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.4.0.2310"
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.4.0.2310"
5252
END
5353
END
5454
BLOCK "VarFileInfo"

0 commit comments

Comments
 (0)