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
f277d6bf
Commit
f277d6bf
authored
Aug 07, 2013
by
Stephen Hutchinson
Committed by
Michael Niedermayer
Aug 07, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
avisynth: Cosmetics
Signed-off-by:
Michael Niedermayer
<
michaelni@gmx.at
>
parent
81f4d55c
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
14 additions
and
14 deletions
+14
-14
avisynth.c
libavformat/avisynth.c
+14
-14
No files found.
libavformat/avisynth.c
View file @
f277d6bf
...
...
@@ -62,19 +62,19 @@
typedef
struct
{
void
*
library
;
#define AVSC_DECLARE_FUNC(name) name##_func name
AVSC_DECLARE_FUNC
(
avs_bit_blt
);
AVSC_DECLARE_FUNC
(
avs_clip_get_error
);
AVSC_DECLARE_FUNC
(
avs_create_script_environment
);
AVSC_DECLARE_FUNC
(
avs_delete_script_environment
);
AVSC_DECLARE_FUNC
(
avs_get_audio
);
AVSC_DECLARE_FUNC
(
avs_get_error
);
AVSC_DECLARE_FUNC
(
avs_clip_get_error
);
AVSC_DECLARE_FUNC
(
avs_invoke
);
AVSC_DECLARE_FUNC
(
avs_release_value
);
AVSC_DECLARE_FUNC
(
avs_get_frame
);
AVSC_DECLARE_FUNC
(
avs_get_video_info
);
AVSC_DECLARE_FUNC
(
avs_
take_clip
);
AVSC_DECLARE_FUNC
(
avs_
invoke
);
AVSC_DECLARE_FUNC
(
avs_release_clip
);
AVSC_DECLARE_FUNC
(
avs_bit_blt
);
AVSC_DECLARE_FUNC
(
avs_get_audio
);
AVSC_DECLARE_FUNC
(
avs_get_frame
);
AVSC_DECLARE_FUNC
(
avs_release_value
);
AVSC_DECLARE_FUNC
(
avs_release_video_frame
);
AVSC_DECLARE_FUNC
(
avs_take_clip
);
#undef AVSC_DECLARE_FUNC
}
AviSynthLibrary
;
...
...
@@ -127,19 +127,19 @@ static av_cold int avisynth_load_library(void) {
if(!continue_on_fail && !avs_library->name) \
goto fail; \
}
LOAD_AVS_FUNC
(
avs_bit_blt
,
0
);
LOAD_AVS_FUNC
(
avs_clip_get_error
,
0
);
LOAD_AVS_FUNC
(
avs_create_script_environment
,
0
);
LOAD_AVS_FUNC
(
avs_delete_script_environment
,
0
);
LOAD_AVS_FUNC
(
avs_get_audio
,
0
);
LOAD_AVS_FUNC
(
avs_get_error
,
1
);
// New to AviSynth 2.6
LOAD_AVS_FUNC
(
avs_clip_get_error
,
0
);
LOAD_AVS_FUNC
(
avs_invoke
,
0
);
LOAD_AVS_FUNC
(
avs_release_value
,
0
);
LOAD_AVS_FUNC
(
avs_get_frame
,
0
);
LOAD_AVS_FUNC
(
avs_get_video_info
,
0
);
LOAD_AVS_FUNC
(
avs_
take_clip
,
0
);
LOAD_AVS_FUNC
(
avs_
invoke
,
0
);
LOAD_AVS_FUNC
(
avs_release_clip
,
0
);
LOAD_AVS_FUNC
(
avs_bit_blt
,
0
);
LOAD_AVS_FUNC
(
avs_get_audio
,
0
);
LOAD_AVS_FUNC
(
avs_get_frame
,
0
);
LOAD_AVS_FUNC
(
avs_release_value
,
0
);
LOAD_AVS_FUNC
(
avs_release_video_frame
,
0
);
LOAD_AVS_FUNC
(
avs_take_clip
,
0
);
#undef LOAD_AVS_FUNC
atexit
(
avisynth_atexit_handler
);
...
...
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