summaryrefslogtreecommitdiff
path: root/libavcodec/h261.c
diff options
context:
space:
mode:
authorDieter <freebsd@sopwith.solgatos.com>2006-01-28 16:05:06 +0000
committerAurelien Jacobs <aurel@gnuage.org>2006-01-28 16:05:06 +0000
commit1b47fafd9fa21a5bdafa41848dfdccd36623ee6c (patch)
tree2e7c4e1b0ee932f700f6eae90e5bec13887071bd /libavcodec/h261.c
parentfdb52bccf609b88f81d3730ff88f8f784cd7be8a (diff)
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.c2
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;