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
964465eb
Commit
964465eb
authored
13 years ago
by
Clément Bœsch
Browse files
Options
Downloads
Patches
Plain Diff
libmodplug: simpler and faster use of eval expr.
parent
d377deaa
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
libavformat/libmodplug.c
+10
-13
10 additions, 13 deletions
libavformat/libmodplug.c
with
10 additions
and
13 deletions
libavformat/libmodplug.c
+
10
−
13
View file @
964465eb
...
...
@@ -55,7 +55,7 @@ typedef struct ModPlugContext {
int
fsize
;
///< constant frame size
int
linesize
;
///< line size in bytes
char
*
color_eval
;
///< color eval user input expression
int
eval_er
r
;
///<
1 if eval failed once, otherwise 0 (used to disable video)
AVExpr
*
exp
r
;
///<
parsed color eval expression
}
ModPlugContext
;
static
const
char
*
var_names
[]
=
{
...
...
@@ -167,7 +167,7 @@ static int modplug_read_header(AVFormatContext *s, AVFormatParameters *ap)
AVIOContext
*
pb
=
s
->
pb
;
ModPlug_Settings
settings
;
ModPlugContext
*
modplug
=
s
->
priv_data
;
int
sz
=
avio_size
(
pb
);
int
r
,
sz
=
avio_size
(
pb
);
if
(
sz
<
0
)
{
av_log
(
s
,
AV_LOG_WARNING
,
"Could not determine file size
\n
"
);
...
...
@@ -178,6 +178,12 @@ static int modplug_read_header(AVFormatContext *s, AVFormatParameters *ap)
"but demuxing is likely to fail due to incomplete buffer
\n
"
,
sz
==
FF_MODPLUG_DEF_FILE_SIZE
?
" (see -max_size)"
:
""
,
sz
);
}
r
=
av_expr_parse
(
&
modplug
->
expr
,
modplug
->
color_eval
,
var_names
,
NULL
,
NULL
,
NULL
,
NULL
,
0
,
s
);
if
(
r
<
0
)
return
r
;
modplug
->
buf
=
av_malloc
(
modplug
->
max_size
);
if
(
!
modplug
->
buf
)
return
AVERROR
(
ENOMEM
);
...
...
@@ -294,23 +300,14 @@ static int modplug_read_packet(AVFormatContext *s, AVPacket *pkt)
PRINT_INFO
(
5
,
"ts"
,
VAR_TIME
);
}
if
(
modplug
->
color_eval
&&
!
modplug
->
eval_er
r
)
{
if
(
modplug
->
exp
r
)
{
int
x
,
y
;
for
(
y
=
0
;
y
<
modplug
->
h
;
y
++
)
{
for
(
x
=
0
;
x
<
modplug
->
w
;
x
++
)
{
double
color
;
var_values
[
VAR_X
]
=
x
;
var_values
[
VAR_Y
]
=
y
;
if
(
av_expr_parse_and_eval
(
&
color
,
modplug
->
color_eval
,
var_names
,
var_values
,
NULL
,
NULL
,
NULL
,
NULL
,
NULL
,
0
,
s
)
<
0
)
{
av_log
(
s
,
AV_LOG_ERROR
,
"Error while evaluating the expression '%s' with x=%d y=%d
\n
"
,
modplug
->
color_eval
,
x
,
y
);
modplug
->
eval_err
=
1
;
return
0
;
}
color
=
av_expr_eval
(
modplug
->
expr
,
var_values
,
NULL
);
pkt
->
data
[
y
*
modplug
->
linesize
+
x
*
3
+
2
]
|=
av_clip
((
int
)
color
,
0
,
0xf
)
<<
4
;
}
}
...
...
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