Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
FFmpeg
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
libremedia
Tethys
FFmpeg
Commits
e869d08c
Commit
e869d08c
authored
13 years ago
by
Stefano Sabatini
Browse files
Options
Downloads
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
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
cmdutils.c
+1
-1
1 addition, 1 deletion
cmdutils.c
cmdutils.h
+5
-0
5 additions, 0 deletions
cmdutils.h
with
6 additions
and
1 deletion
cmdutils.c
+
1
−
1
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
;
...
...
This diff is collapsed.
Click to expand it.
cmdutils.h
+
5
−
0
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
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment