Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
F
ffmpeg
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
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
ffmpeg
Commits
2cdb0810
Commit
2cdb0810
authored
Aug 09, 2012
by
Michael Niedermayer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ffmpeg: reduce difference to qatar by a few lines
Signed-off-by:
Michael Niedermayer
<
michaelni@gmx.at
>
parent
b41d481a
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
3 deletions
+4
-3
ffmpeg.c
ffmpeg.c
+4
-3
No files found.
ffmpeg.c
View file @
2cdb0810
...
...
@@ -107,7 +107,6 @@ static void do_video_stats(AVFormatContext *os, OutputStream *ost, int frame_siz
static
int64_t
getutime
(
void
);
static
int
run_as_daemon
=
0
;
static
volatile
int
received_nb_signals
=
0
;
static
int64_t
video_size
=
0
;
static
int64_t
audio_size
=
0
;
static
int64_t
subtitle_size
=
0
;
...
...
@@ -262,8 +261,10 @@ void term_exit(void)
}
static
volatile
int
received_sigterm
=
0
;
static
volatile
int
received_nb_signals
=
0
;
static
void
sigterm_handler
(
int
sig
)
static
void
sigterm_handler
(
int
sig
)
{
received_sigterm
=
sig
;
received_nb_signals
++
;
...
...
@@ -411,8 +412,8 @@ void av_noreturn exit_program(int ret)
output_streams
[
i
]
->
bitstream_filters
=
NULL
;
av_freep
(
&
output_streams
[
i
]
->
forced_keyframes
);
av_freep
(
&
output_streams
[
i
]
->
filtered_frame
);
av_freep
(
&
output_streams
[
i
]
->
avfilter
);
av_freep
(
&
output_streams
[
i
]
->
filtered_frame
);
av_freep
(
&
output_streams
[
i
]);
}
for
(
i
=
0
;
i
<
nb_input_files
;
i
++
)
{
...
...
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