make some functions static (patch by Dieter < freebsd at sopwith.solgatos.com >)

Originally committed as revision 4905 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Dieter
2006-01-28 16:05:06 +00:00
committed by Aurelien Jacobs
parent fdb52bccf6
commit 1b47fafd9f
4 changed files with 5 additions and 5 deletions

View File

@@ -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;