Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Open sidebar
VideoLAN
x264
Commits
45e2f899
Commit
45e2f899
authored
Jul 12, 2020
by
Anton Mitrofanov
Committed by
Anton Mitrofanov
Jul 14, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
cli: Add info about gpac/lsmash into version info
parent
375cc588
Pipeline
#20123
passed with stages
in 9 minutes and 2 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
16 additions
and
0 deletions
+16
-0
x264.c
x264.c
+16
-0
No files found.
x264.c
View file @
45e2f899
...
...
@@ -65,6 +65,14 @@
#include <ffms.h>
#endif
#if HAVE_GPAC
#include <gpac/version.h>
#endif
#if HAVE_LSMASH
#include <lsmash.h>
#endif
#ifdef _WIN32
#define CONSOLE_TITLE_SIZE 200
static
wchar_t
org_console_title
[
CONSOLE_TITLE_SIZE
]
=
L""
;
...
...
@@ -344,10 +352,18 @@ static void print_version_info( void )
#endif
#if HAVE_FFMS
printf
(
"(ffmpegsource %d.%d.%d.%d)
\n
"
,
FFMS_VERSION
>>
24
,
(
FFMS_VERSION
&
0xff0000
)
>>
16
,
(
FFMS_VERSION
&
0xff00
)
>>
8
,
FFMS_VERSION
&
0xff
);
#endif
#if HAVE_GPAC
printf
(
"(gpac "
GPAC_FULL_VERSION
")
\n
"
);
#endif
#if HAVE_LSMASH
printf
(
"(lsmash %d.%d.%d)
\n
"
,
LSMASH_VERSION_MAJOR
,
LSMASH_VERSION_MINOR
,
LSMASH_VERSION_MICRO
);
#endif
printf
(
"built on "
__DATE__
", "
);
#ifdef __INTEL_COMPILER
printf
(
"intel: %.2f (%d)
\n
"
,
__INTEL_COMPILER
/
100
.
f
,
__INTEL_COMPILER_BUILD_DATE
);
#elif defined(__clang__)
printf
(
"clang: "
__clang_version__
"
\n
"
);
#elif defined(__GNUC__)
printf
(
"gcc: "
__VERSION__
"
\n
"
);
#elif defined(_MSC_FULL_VER)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment