This website works better with JavaScript.
Home
Help
Sign In
falkTX
/
FFmpeg
mirror of
https://github.com/falkTX/FFmpeg.git
Watch
1
Star
0
Fork
0
Code
Issues
0
Releases
338
Wiki
Activity
Browse Source
avcodec_find is in no header file, and appearently not used or very usefull so lets make it static ...
Originally committed as revision 3157 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.5
Michael Niedermayer
22 years ago
parent
4df8ca9df2
commit
50071f0b48
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
libavcodec/utils.c
+ 1
- 1
libavcodec/utils.c
View File
@@ -574,7 +574,7 @@ AVCodec *avcodec_find_decoder_by_name(const char *name)
return NULL;
}
AVCodec *avcodec_find(enum CodecID id)
static
AVCodec *avcodec_find(enum CodecID id)
{
AVCodec *p;
p = first_avcodec;
Write
Preview
Loading…
Cancel
Save