87eabf2721
This adds some spacing to the version struct, so that astyle won't
need to change the file.
This was changed in 02354832cf
, both in the earlier codec_ver.h
and in the script that generates it, but a recent change manually
overwrote the spacing.
16 lines
411 B
C
16 lines
411 B
C
//The current file is auto-generated by script: generate_codec_ver.sh
|
|
#ifndef CODEC_VER_H
|
|
#define CODEC_VER_H
|
|
|
|
#include "codec_app_def.h"
|
|
|
|
static const OpenH264Version g_stCodecVersion = {1, 4, 1, 0};
|
|
static const char* const g_strCodecVer = "OpenH264 version:1.4.1.0";
|
|
|
|
#define OPENH264_MAJOR (1)
|
|
#define OPENH264_MINOR (4)
|
|
#define OPENH264_REVISION (1)
|
|
#define OPENH264_RESERVED (0)
|
|
|
|
#endif // CODEC_VER_H
|