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
247fbf07
Commit
247fbf07
authored
13 years ago
by
Nicolas George
Browse files
Options
Downloads
Patches
Plain Diff
ass: fix aspect ratio computation.
parent
c44417e1
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
doc/filters.texi
+4
-3
4 additions, 3 deletions
doc/filters.texi
libavfilter/version.h
+1
-1
1 addition, 1 deletion
libavfilter/version.h
libavfilter/vf_ass.c
+11
-12
11 additions, 12 deletions
libavfilter/vf_ass.c
with
16 additions
and
16 deletions
doc/filters.texi
+
4
−
3
View file @
247fbf07
...
...
@@ -761,9 +761,10 @@ separated by ":".
A description of the accepted options follows.
@table @option
@item dar
Specifies the display aspect ratio adopted for rendering the
subtitles. Default value is "1.0".
@item original_size
Specifies the size of the original video, the video for which the ASS file
was composed. Due to a misdesign in ASS aspect ratio arithmetic, this is
necessary to correctly scale the fonts if the aspect ratio has been changed.
@end table
For example, to render the file @file{sub.ass} on top of the input
...
...
This diff is collapsed.
Click to expand it.
libavfilter/version.h
+
1
−
1
View file @
247fbf07
...
...
@@ -30,7 +30,7 @@
#define LIBAVFILTER_VERSION_MAJOR 2
#define LIBAVFILTER_VERSION_MINOR 66
#define LIBAVFILTER_VERSION_MICRO 10
0
#define LIBAVFILTER_VERSION_MICRO 10
1
#define LIBAVFILTER_VERSION_INT AV_VERSION_INT(LIBAVFILTER_VERSION_MAJOR, \
LIBAVFILTER_VERSION_MINOR, \
...
...
This diff is collapsed.
Click to expand it.
libavfilter/vf_ass.c
+
11
−
12
View file @
247fbf07
...
...
@@ -45,14 +45,14 @@ typedef struct {
char
*
filename
;
uint8_t
rgba_map
[
4
];
int
pix_step
[
4
];
///< steps per pixel for each plane of the main output
char
*
dar
_str
;
AVRational
dar
;
char
*
original_size
_str
;
int
original_w
,
original_h
;
}
AssContext
;
#define OFFSET(x) offsetof(AssContext, x)
static
const
AVOption
ass_options
[]
=
{
{
"
dar"
,
"set subtitles display aspect ratio"
,
OFFSET
(
dar
_str
),
AV_OPT_TYPE_STRING
,
{.
str
=
"1.0"
},
CHAR_MIN
,
CHAR_MAX
},
{
"
original_size"
,
"set the size of the original video (used to scale fonts)"
,
OFFSET
(
original_size
_str
),
AV_OPT_TYPE_STRING
,
{.
str
=
NULL
},
CHAR_MIN
,
CHAR_MAX
},
{
NULL
},
};
...
...
@@ -107,10 +107,11 @@ static av_cold int init(AVFilterContext *ctx, const char *args, void *opaque)
return
ret
;
}
if
(
av_parse_ratio
(
&
ass
->
dar
,
ass
->
dar_str
,
100
,
0
,
ctx
)
<
0
||
ass
->
dar
.
num
<
0
||
ass
->
dar
.
den
<=
0
)
{
if
(
ass
->
original_size_str
&&
av_parse_video_size
(
&
ass
->
original_w
,
&
ass
->
original_h
,
ass
->
original_size_str
)
<
0
)
{
av_log
(
ctx
,
AV_LOG_ERROR
,
"Invalid
string '%s' or value for display aspect ratio.
\n
"
,
ass
->
dar
_str
);
"Invalid
original size '%s'.
\n
"
,
ass
->
original_size
_str
);
return
AVERROR
(
EINVAL
);
}
...
...
@@ -136,8 +137,6 @@ static av_cold int init(AVFilterContext *ctx, const char *args, void *opaque)
}
ass_set_fonts
(
ass
->
renderer
,
NULL
,
NULL
,
1
,
NULL
,
1
);
av_log
(
ctx
,
AV_LOG_INFO
,
"dar:%f
\n
"
,
av_q2d
(
ass
->
dar
));
return
0
;
}
...
...
@@ -146,7 +145,7 @@ static av_cold void uninit(AVFilterContext *ctx)
AssContext
*
ass
=
ctx
->
priv
;
av_freep
(
&
ass
->
filename
);
av_freep
(
&
ass
->
dar
_str
);
av_freep
(
&
ass
->
original_size
_str
);
if
(
ass
->
track
)
ass_free_track
(
ass
->
track
);
if
(
ass
->
renderer
)
...
...
@@ -173,8 +172,6 @@ static int config_input(AVFilterLink *inlink)
{
AssContext
*
ass
=
inlink
->
dst
->
priv
;
const
AVPixFmtDescriptor
*
pix_desc
=
&
av_pix_fmt_descriptors
[
inlink
->
format
];
double
sar
=
inlink
->
sample_aspect_ratio
.
num
?
av_q2d
(
inlink
->
sample_aspect_ratio
)
:
1
;
av_image_fill_max_pixsteps
(
ass
->
pix_step
,
NULL
,
pix_desc
);
ff_fill_rgba_map
(
ass
->
rgba_map
,
inlink
->
format
);
...
...
@@ -183,7 +180,9 @@ static int config_input(AVFilterLink *inlink)
ass
->
vsub
=
pix_desc
->
log2_chroma_h
;
ass_set_frame_size
(
ass
->
renderer
,
inlink
->
w
,
inlink
->
h
);
ass_set_aspect_ratio
(
ass
->
renderer
,
av_q2d
(
ass
->
dar
),
sar
);
if
(
ass
->
original_w
&&
ass
->
original_h
)
ass_set_aspect_ratio
(
ass
->
renderer
,
(
double
)
inlink
->
w
/
inlink
->
h
,
(
double
)
ass
->
original_w
/
ass
->
original_h
);
return
0
;
}
...
...
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