Mercurial > libavcodec.hg
comparison vc1.c @ 4784:7738ad31b6e2 libavcodec
vc1_split should be static
author | kostya |
---|---|
date | Wed, 04 Apr 2007 13:26:26 +0000 |
parents | 184d33cce3b6 |
children | 300b60dee58c |
comparison
equal
deleted
inserted
replaced
4783:011fb289e3b0 | 4784:7738ad31b6e2 |
---|---|
4599 *poutbuf = (uint8_t *)buf; | 4599 *poutbuf = (uint8_t *)buf; |
4600 *poutbuf_size = buf_size; | 4600 *poutbuf_size = buf_size; |
4601 return next; | 4601 return next; |
4602 } | 4602 } |
4603 | 4603 |
4604 int vc1_split(AVCodecContext *avctx, | 4604 static int vc1_split(AVCodecContext *avctx, |
4605 const uint8_t *buf, int buf_size) | 4605 const uint8_t *buf, int buf_size) |
4606 { | 4606 { |
4607 int i; | 4607 int i; |
4608 uint32_t state= -1; | 4608 uint32_t state= -1; |
4609 | 4609 |