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
1f4f7521
Commit
1f4f7521
authored
Apr 14, 2012
by
Diego Biurrun
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
libschroedinger: Move a function to avoid a forward declaration.
parent
b68c4ac2
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
7 deletions
+4
-7
libschroedingerdec.c
libavcodec/libschroedingerdec.c
+4
-7
No files found.
libavcodec/libschroedingerdec.c
View file @
1f4f7521
...
...
@@ -71,7 +71,10 @@ typedef struct SchroParseUnitContext {
static
void
libschroedinger_decode_buffer_free
(
SchroBuffer
*
schro_buf
,
void
*
priv
);
void
*
priv
)
{
av_freep
(
&
priv
);
}
static
void
SchroParseContextInit
(
SchroParseUnitContext
*
parse_ctx
,
const
uint8_t
*
buf
,
int
buf_size
)
...
...
@@ -156,12 +159,6 @@ static av_cold int libschroedinger_decode_init(AVCodecContext *avccontext)
return
0
;
}
static
void
libschroedinger_decode_buffer_free
(
SchroBuffer
*
schro_buf
,
void
*
priv
)
{
av_freep
(
&
priv
);
}
static
void
libschroedinger_decode_frame_free
(
void
*
frame
)
{
schro_frame_unref
(
frame
);
...
...
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