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
c557a5b0
Commit
c557a5b0
authored
Feb 14, 2013
by
Nicolas George
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
lavfi/vf_ass: reindent after last commit.
parent
bb3303b9
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
7 deletions
+6
-7
vf_ass.c
libavfilter/vf_ass.c
+6
-7
No files found.
libavfilter/vf_ass.c
View file @
c557a5b0
...
@@ -322,13 +322,12 @@ static av_cold int init_subtitles(AVFilterContext *ctx, const char *args)
...
@@ -322,13 +322,12 @@ static av_cold int init_subtitles(AVFilterContext *ctx, const char *args)
av_log
(
ctx
,
AV_LOG_WARNING
,
"Error decoding: %s (ignored)
\n
"
,
av_log
(
ctx
,
AV_LOG_WARNING
,
"Error decoding: %s (ignored)
\n
"
,
av_err2str
(
ret
));
av_err2str
(
ret
));
}
else
if
(
got_subtitle
)
{
}
else
if
(
got_subtitle
)
{
/* TODO reindent */
for
(
i
=
0
;
i
<
sub
.
num_rects
;
i
++
)
{
for
(
i
=
0
;
i
<
sub
.
num_rects
;
i
++
)
{
char
*
ass_line
=
sub
.
rects
[
i
]
->
ass
;
char
*
ass_line
=
sub
.
rects
[
i
]
->
ass
;
if
(
!
ass_line
)
if
(
!
ass_line
)
break
;
break
;
ass_process_data
(
ass
->
track
,
ass_line
,
strlen
(
ass_line
));
ass_process_data
(
ass
->
track
,
ass_line
,
strlen
(
ass_line
));
}
}
}
}
}
}
av_free_packet
(
&
pkt
);
av_free_packet
(
&
pkt
);
...
...
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