Skip to content

Commit 70b074e

Browse files
committed
update openh264 version to v2.5.1
1 parent 66adfc3 commit 70b074e

File tree

6 files changed

+12
-12
lines changed

6 files changed

+12
-12
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.5.0
42+
FULL_VERSION := 2.5.1
4343

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

build/platform-darwin.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ SHAREDLIB_DIR = $(PREFIX)/lib
33
SHAREDLIBSUFFIX = dylib
44
SHAREDLIBSUFFIXFULLVER=$(FULL_VERSION).$(SHAREDLIBSUFFIX)
55
SHAREDLIBSUFFIXMAJORVER=$(SHAREDLIB_MAJORVERSION).$(SHAREDLIBSUFFIX)
6-
CURRENT_VERSION := 2.5.0
6+
CURRENT_VERSION := 2.5.1
77
COMPATIBILITY_VERSION := 2.5.0
88
SHLDFLAGS = -dynamiclib -twolevel_namespace -undefined dynamic_lookup \
99
-fno-common -headerpad_max_install_names -install_name \

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, 5, 1, 2503};
8+
static const char* const g_strCodecVer = "OpenH264 version:2.5.1.2503";
99

1010
#define OPENH264_MAJOR (2)
1111
#define OPENH264_MINOR (5)
12-
#define OPENH264_REVISION (0)
13-
#define OPENH264_RESERVED (2411)
12+
#define OPENH264_REVISION (1)
13+
#define OPENH264_RESERVED (2503)
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.5.1
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.5.1',
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,5,1,2503
28+
PRODUCTVERSION 2,5,1,2503
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.5.1.2503"
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.5.1.2503"
5252
END
5353
END
5454
BLOCK "VarFileInfo"

0 commit comments

Comments
 (0)