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
67f2a688
Commit
67f2a688
authored
Feb 19, 2014
by
Anton Khirnov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
avconv: remove a write-only variable
parent
8aca00cc
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
0 additions
and
2 deletions
+0
-2
avconv.c
avconv.c
+0
-1
avconv.h
avconv.h
+0
-1
No files found.
avconv.c
View file @
67f2a688
...
@@ -1480,7 +1480,6 @@ static int init_input_stream(int ist_index, char *error, int error_len)
...
@@ -1480,7 +1480,6 @@ static int init_input_stream(int ist_index, char *error, int error_len)
ist
->
last_dts
=
ist
->
st
->
avg_frame_rate
.
num
?
-
ist
->
st
->
codec
->
has_b_frames
*
AV_TIME_BASE
/
av_q2d
(
ist
->
st
->
avg_frame_rate
)
:
0
;
ist
->
last_dts
=
ist
->
st
->
avg_frame_rate
.
num
?
-
ist
->
st
->
codec
->
has_b_frames
*
AV_TIME_BASE
/
av_q2d
(
ist
->
st
->
avg_frame_rate
)
:
0
;
ist
->
next_dts
=
AV_NOPTS_VALUE
;
ist
->
next_dts
=
AV_NOPTS_VALUE
;
init_pts_correction
(
&
ist
->
pts_ctx
);
init_pts_correction
(
&
ist
->
pts_ctx
);
ist
->
is_start
=
1
;
return
0
;
return
0
;
}
}
...
...
avconv.h
View file @
67f2a688
...
@@ -229,7 +229,6 @@ typedef struct InputStream {
...
@@ -229,7 +229,6 @@ typedef struct InputStream {
int64_t
last_dts
;
int64_t
last_dts
;
PtsCorrectionContext
pts_ctx
;
PtsCorrectionContext
pts_ctx
;
double
ts_scale
;
double
ts_scale
;
int
is_start
;
/* is 1 at the start and after a discontinuity */
int
showed_multi_packet_warning
;
int
showed_multi_packet_warning
;
AVDictionary
*
opts
;
AVDictionary
*
opts
;
AVRational
framerate
;
/* framerate forced with -r */
AVRational
framerate
;
/* framerate forced with -r */
...
...
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