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
cc2133b6
Commit
cc2133b6
authored
Aug 04, 2012
by
Anton Khirnov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
avconv: get rid of pointless temporary variable.
parent
83916029
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
3 deletions
+2
-3
avconv.c
avconv.c
+2
-3
No files found.
avconv.c
View file @
cc2133b6
...
...
@@ -2139,7 +2139,6 @@ static int transcode(void)
while
(
!
received_sigterm
)
{
InputFile
*
ifile
;
int
ist_index
;
AVPacket
pkt
;
/* check if there's any stream where output is still needed */
...
...
@@ -2198,8 +2197,8 @@ static int transcode(void)
dynamically in stream : we ignore them */
if
(
pkt
.
stream_index
>=
ifile
->
nb_streams
)
goto
discard_packet
;
ist_index
=
ifile
->
ist_index
+
pkt
.
stream_index
;
ist
=
input_streams
[
i
st
_index
];
ist
=
input_streams
[
i
file
->
ist_index
+
pkt
.
stream
_index
];
if
(
ist
->
discard
)
goto
discard_packet
;
...
...
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