Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
F
ffmpeg.wasm-core
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Linshizhi
ffmpeg.wasm-core
Commits
e869d08c
Commit
e869d08c
authored
Jan 04, 2012
by
Stefano Sabatini
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
cmdutils: make this_year extern, so it can be referenced from other .o files
Required by a pending change in ffprobe.
parent
ceef1ee7
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
1 deletion
+6
-1
cmdutils.c
cmdutils.c
+1
-1
cmdutils.h
cmdutils.h
+5
-0
No files found.
cmdutils.c
View file @
e869d08c
...
@@ -54,7 +54,7 @@
...
@@ -54,7 +54,7 @@
struct
SwsContext
*
sws_opts
;
struct
SwsContext
*
sws_opts
;
AVDictionary
*
format_opts
,
*
codec_opts
;
AVDictionary
*
format_opts
,
*
codec_opts
;
static
const
int
this_year
=
2012
;
const
int
this_year
=
2012
;
static
FILE
*
report_file
;
static
FILE
*
report_file
;
...
...
cmdutils.h
View file @
e869d08c
...
@@ -43,6 +43,11 @@ extern const char program_name[];
...
@@ -43,6 +43,11 @@ extern const char program_name[];
*/
*/
extern
const
int
program_birth_year
;
extern
const
int
program_birth_year
;
/**
* this year, defined by the program for show_banner()
*/
extern
const
int
this_year
;
extern
AVCodecContext
*
avcodec_opts
[
AVMEDIA_TYPE_NB
];
extern
AVCodecContext
*
avcodec_opts
[
AVMEDIA_TYPE_NB
];
extern
AVFormatContext
*
avformat_opts
;
extern
AVFormatContext
*
avformat_opts
;
extern
struct
SwsContext
*
sws_opts
;
extern
struct
SwsContext
*
sws_opts
;
...
...
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