diff options
author | Kostya Shishkov <kostya.shishkov@gmail.com> | 2007-04-04 13:26:26 +0000 |
---|---|---|
committer | Kostya Shishkov <kostya.shishkov@gmail.com> | 2007-04-04 13:26:26 +0000 |
commit | 047549d382218b292afb1ac03bb24c068d1e9e46 (patch) | |
tree | e63b968d8c347ce877f360fcba176743d362e61a /libavcodec | |
parent | 2b100ab2bff7993e2c662e80f53cdb76889a71d5 (diff) | |
download | ffmpeg-047549d382218b292afb1ac03bb24c068d1e9e46.tar.gz |
vc1_split should be static
Originally committed as revision 8626 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/vc1.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/vc1.c b/libavcodec/vc1.c index 84868904df..51f2a7c1a3 100644 --- a/libavcodec/vc1.c +++ b/libavcodec/vc1.c @@ -4601,7 +4601,7 @@ static int vc1_parse(AVCodecParserContext *s, return next; } -int vc1_split(AVCodecContext *avctx, +static int vc1_split(AVCodecContext *avctx, const uint8_t *buf, int buf_size) { int i; |