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
7abd35a1
Commit
7abd35a1
authored
Apr 18, 2013
by
Diego Biurrun
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
avformat: Add av_cold attributes to init functions missing them
parent
2cca96e6
Hide whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
27 additions
and
12 deletions
+27
-12
g723_1.c
libavformat/g723_1.c
+2
-1
mpegenc.c
libavformat/mpegenc.c
+2
-1
rtpdec_g726.c
libavformat/rtpdec_g726.c
+3
-1
rtpdec_h263.c
libavformat/rtpdec_h263.c
+3
-1
rtpdec_h263_rfc2190.c
libavformat/rtpdec_h263_rfc2190.c
+2
-1
rtpdec_h264.c
libavformat/rtpdec_h264.c
+3
-1
rtpdec_mpeg12.c
libavformat/rtpdec_mpeg12.c
+3
-2
rtpdec_mpeg4.c
libavformat/rtpdec_mpeg4.c
+3
-1
rtpdec_mpegts.c
libavformat/rtpdec_mpegts.c
+3
-1
rtpdec_xiph.c
libavformat/rtpdec_xiph.c
+3
-2
No files found.
libavformat/g723_1.c
View file @
7abd35a1
...
...
@@ -24,13 +24,14 @@
* G.723.1 demuxer
*/
#include "libavutil/attributes.h"
#include "libavutil/channel_layout.h"
#include "avformat.h"
#include "internal.h"
static
const
uint8_t
frame_size
[
4
]
=
{
24
,
20
,
4
,
1
};
static
int
g723_1_init
(
AVFormatContext
*
s
)
static
av_cold
int
g723_1_init
(
AVFormatContext
*
s
)
{
AVStream
*
st
;
...
...
libavformat/mpegenc.c
View file @
7abd35a1
...
...
@@ -19,6 +19,7 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
#include "libavutil/attributes.h"
#include "libavutil/fifo.h"
#include "libavutil/log.h"
#include "libavutil/mathematics.h"
...
...
@@ -292,7 +293,7 @@ static int get_system_header_size(AVFormatContext *ctx)
return
buf_index
;
}
static
int
mpeg_mux_init
(
AVFormatContext
*
ctx
)
static
av_cold
int
mpeg_mux_init
(
AVFormatContext
*
ctx
)
{
MpegMuxContext
*
s
=
ctx
->
priv_data
;
int
bitrate
,
i
,
mpa_id
,
mpv_id
,
mps_id
,
ac3_id
,
dts_id
,
lpcm_id
,
j
;
...
...
libavformat/rtpdec_g726.c
View file @
7abd35a1
...
...
@@ -18,11 +18,13 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
#include "libavutil/attributes.h"
#include "avformat.h"
#include "rtpdec_formats.h"
#define RTP_G726_HANDLER(bitrate) \
static int g726_ ## bitrate ##_init(AVFormatContext *s, int st_index, PayloadContext *data) \
static av_cold int g726_ ## bitrate ##_init(AVFormatContext *s, int st_index, \
PayloadContext *data) \
{ \
AVStream *stream = s->streams[st_index]; \
AVCodecContext *codec = stream->codec; \
...
...
libavformat/rtpdec_h263.c
View file @
7abd35a1
...
...
@@ -21,9 +21,11 @@
#include "avformat.h"
#include "rtpdec_formats.h"
#include "libavutil/attributes.h"
#include "libavutil/intreadwrite.h"
static
int
h263_init
(
AVFormatContext
*
ctx
,
int
st_index
,
PayloadContext
*
data
)
static
av_cold
int
h263_init
(
AVFormatContext
*
ctx
,
int
st_index
,
PayloadContext
*
data
)
{
if
(
st_index
<
0
)
return
0
;
...
...
libavformat/rtpdec_h263_rfc2190.c
View file @
7abd35a1
...
...
@@ -27,6 +27,7 @@
#include "avformat.h"
#include "rtpdec_formats.h"
#include "libavutil/attributes.h"
#include "libavutil/intreadwrite.h"
#include "libavcodec/get_bits.h"
...
...
@@ -55,7 +56,7 @@ static void h263_free_context(PayloadContext *data)
av_free
(
data
);
}
static
int
h263_init
(
AVFormatContext
*
ctx
,
int
st_index
,
PayloadContext
*
data
)
static
av_cold
int
h263_init
(
AVFormatContext
*
ctx
,
int
st_index
,
PayloadContext
*
data
)
{
if
(
st_index
<
0
)
return
0
;
...
...
libavformat/rtpdec_h264.c
View file @
7abd35a1
...
...
@@ -33,6 +33,7 @@
* FU-B packet types)
*/
#include "libavutil/attributes.h"
#include "libavutil/base64.h"
#include "libavutil/avstring.h"
#include "libavcodec/get_bits.h"
...
...
@@ -338,7 +339,8 @@ static void h264_free_context(PayloadContext *data)
av_free
(
data
);
}
static
int
h264_init
(
AVFormatContext
*
s
,
int
st_index
,
PayloadContext
*
data
)
static
av_cold
int
h264_init
(
AVFormatContext
*
s
,
int
st_index
,
PayloadContext
*
data
)
{
if
(
st_index
<
0
)
return
0
;
...
...
libavformat/rtpdec_mpeg12.c
View file @
7abd35a1
...
...
@@ -19,10 +19,11 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
#include "
rtpdec_format
s.h"
#include "
libavutil/attribute
s.h"
#include "libavutil/intreadwrite.h"
#include "rtpdec_formats.h"
static
int
mpeg_init
(
AVFormatContext
*
ctx
,
int
st_index
,
PayloadContext
*
data
)
static
av_cold
int
mpeg_init
(
AVFormatContext
*
ctx
,
int
st_index
,
PayloadContext
*
data
)
{
if
(
st_index
<
0
)
return
0
;
...
...
libavformat/rtpdec_mpeg4.c
View file @
7abd35a1
...
...
@@ -29,6 +29,7 @@
#include "rtpdec_formats.h"
#include "internal.h"
#include "libavutil/attributes.h"
#include "libavutil/avstring.h"
#include "libavcodec/get_bits.h"
...
...
@@ -252,7 +253,8 @@ static int parse_sdp_line(AVFormatContext *s, int st_index,
return
0
;
}
static
int
init_video
(
AVFormatContext
*
s
,
int
st_index
,
PayloadContext
*
data
)
static
av_cold
int
init_video
(
AVFormatContext
*
s
,
int
st_index
,
PayloadContext
*
data
)
{
if
(
st_index
<
0
)
return
0
;
...
...
libavformat/rtpdec_mpegts.c
View file @
7abd35a1
...
...
@@ -19,6 +19,7 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
#include "libavutil/attributes.h"
#include "mpegts.h"
#include "rtpdec_formats.h"
...
...
@@ -43,7 +44,8 @@ static void mpegts_free_context(PayloadContext *data)
av_free
(
data
);
}
static
int
mpegts_init
(
AVFormatContext
*
ctx
,
int
st_index
,
PayloadContext
*
data
)
static
av_cold
int
mpegts_init
(
AVFormatContext
*
ctx
,
int
st_index
,
PayloadContext
*
data
)
{
data
->
ts
=
ff_mpegts_parse_open
(
ctx
);
if
(
!
data
->
ts
)
...
...
libavformat/rtpdec_xiph.c
View file @
7abd35a1
...
...
@@ -27,6 +27,7 @@
* @author Josh Allmann <joshua.allmann@gmail.com>
*/
#include "libavutil/attributes.h"
#include "libavutil/avstring.h"
#include "libavutil/base64.h"
#include "libavcodec/bytestream.h"
...
...
@@ -70,8 +71,8 @@ static void xiph_free_context(PayloadContext * data)
av_free
(
data
);
}
static
int
xiph_vorbis_init
(
AVFormatContext
*
ctx
,
int
st_index
,
PayloadContext
*
data
)
static
av_cold
int
xiph_vorbis_init
(
AVFormatContext
*
ctx
,
int
st_index
,
PayloadContext
*
data
)
{
if
(
st_index
<
0
)
return
0
;
...
...
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