diff options
author | Dieter <freebsd@sopwith.solgatos.com> | 2006-01-28 16:05:06 +0000 |
---|---|---|
committer | Aurelien Jacobs <aurel@gnuage.org> | 2006-01-28 16:05:06 +0000 |
commit | 1b47fafd9fa21a5bdafa41848dfdccd36623ee6c (patch) | |
tree | 2e7c4e1b0ee932f700f6eae90e5bec13887071bd /libavcodec/h261.c | |
parent | fdb52bccf609b88f81d3730ff88f8f784cd7be8a (diff) | |
download | ffmpeg-1b47fafd9fa21a5bdafa41848dfdccd36623ee6c.tar.gz |
make some functions static (patch by Dieter < freebsd at sopwith.solgatos.com >)
Originally committed as revision 4905 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/h261.c')
-rw-r--r-- | libavcodec/h261.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/h261.c b/libavcodec/h261.c index 9b672545a1..c6218c8b9d 100644 --- a/libavcodec/h261.c +++ b/libavcodec/h261.c @@ -762,7 +762,7 @@ static int h261_decode_block(H261Context * h, DCTELEM * block, * decodes the H261 picture header. * @return <0 if no startcode found */ -int h261_decode_picture_header(H261Context *h){ +static int h261_decode_picture_header(H261Context *h){ MpegEncContext * const s = &h->s; int format, i; uint32_t startcode= 0; |