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
a1f234be
Commit
a1f234be
authored
May 05, 2013
by
Michael Niedermayer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
make the ordering of the return type and av_cold consistent
Signed-off-by:
Michael Niedermayer
<
michaelni@gmx.at
>
parent
35623d83
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
4 deletions
+4
-4
dvdsubdec.c
libavcodec/dvdsubdec.c
+1
-1
libopusenc.c
libavcodec/libopusenc.c
+2
-2
f_sendcmd.c
libavfilter/f_sendcmd.c
+1
-1
No files found.
libavcodec/dvdsubdec.c
View file @
a1f234be
...
...
@@ -566,7 +566,7 @@ static int dvdsub_parse_extradata(AVCodecContext *avctx)
return
1
;
}
static
int
av_cold
dvdsub_init
(
AVCodecContext
*
avctx
)
static
av_cold
int
dvdsub_init
(
AVCodecContext
*
avctx
)
{
DVDSubContext
*
ctx
=
avctx
->
priv_data
;
int
ret
;
...
...
libavcodec/libopusenc.c
View file @
a1f234be
...
...
@@ -156,7 +156,7 @@ static int libopus_configure_encoder(AVCodecContext *avctx, OpusMSEncoder *enc,
return
OPUS_OK
;
}
static
int
av_cold
libopus_encode_init
(
AVCodecContext
*
avctx
)
static
av_cold
int
libopus_encode_init
(
AVCodecContext
*
avctx
)
{
LibopusEncContext
*
opus
=
avctx
->
priv_data
;
const
uint8_t
*
channel_mapping
;
...
...
@@ -359,7 +359,7 @@ static int libopus_encode(AVCodecContext *avctx, AVPacket *avpkt,
return
0
;
}
static
int
av_cold
libopus_encode_close
(
AVCodecContext
*
avctx
)
static
av_cold
int
libopus_encode_close
(
AVCodecContext
*
avctx
)
{
LibopusEncContext
*
opus
=
avctx
->
priv_data
;
...
...
libavfilter/f_sendcmd.c
View file @
a1f234be
...
...
@@ -422,7 +422,7 @@ static av_cold int init(AVFilterContext *ctx)
return
0
;
}
static
void
av_col
d
uninit
(
AVFilterContext
*
ctx
)
static
av_cold
voi
d
uninit
(
AVFilterContext
*
ctx
)
{
SendCmdContext
*
sendcmd
=
ctx
->
priv
;
int
i
,
j
;
...
...
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