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
7ffbb60e
Commit
7ffbb60e
authored
Sep 28, 2002
by
Falk Hüffner
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Minor warning fix.
Originally committed as revision 977 to
svn://svn.ffmpeg.org/ffmpeg/trunk
parent
a9c68306
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
avcodec.h
libavcodec/avcodec.h
+1
-1
utils.c
libavcodec/utils.c
+1
-1
No files found.
libavcodec/avcodec.h
View file @
7ffbb60e
...
@@ -878,7 +878,7 @@ AVCodec *avcodec_find_decoder(enum CodecID id);
...
@@ -878,7 +878,7 @@ AVCodec *avcodec_find_decoder(enum CodecID id);
AVCodec
*
avcodec_find_decoder_by_name
(
const
char
*
name
);
AVCodec
*
avcodec_find_decoder_by_name
(
const
char
*
name
);
void
avcodec_string
(
char
*
buf
,
int
buf_size
,
AVCodecContext
*
enc
,
int
encode
);
void
avcodec_string
(
char
*
buf
,
int
buf_size
,
AVCodecContext
*
enc
,
int
encode
);
AVCodecContext
*
avcodec_alloc_context
();
AVCodecContext
*
avcodec_alloc_context
(
void
);
int
avcodec_open
(
AVCodecContext
*
avctx
,
AVCodec
*
codec
);
int
avcodec_open
(
AVCodecContext
*
avctx
,
AVCodec
*
codec
);
int
avcodec_decode_audio
(
AVCodecContext
*
avctx
,
INT16
*
samples
,
int
avcodec_decode_audio
(
AVCodecContext
*
avctx
,
INT16
*
samples
,
int
*
frame_size_ptr
,
int
*
frame_size_ptr
,
...
...
libavcodec/utils.c
View file @
7ffbb60e
...
@@ -67,7 +67,7 @@ void avcodec_get_context_defaults(AVCodecContext *s){
...
@@ -67,7 +67,7 @@ void avcodec_get_context_defaults(AVCodecContext *s){
* allocates a AVCodecContext and set it to defaults.
* allocates a AVCodecContext and set it to defaults.
* this can be deallocated by simply calling free()
* this can be deallocated by simply calling free()
*/
*/
AVCodecContext
*
avcodec_alloc_context
(){
AVCodecContext
*
avcodec_alloc_context
(
void
){
AVCodecContext
*
avctx
=
av_mallocz
(
sizeof
(
AVCodecContext
));
AVCodecContext
*
avctx
=
av_mallocz
(
sizeof
(
AVCodecContext
));
if
(
avctx
==
NULL
)
return
NULL
;
if
(
avctx
==
NULL
)
return
NULL
;
...
...
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