bit: remove more unused variables

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
Michael Niedermayer 2011-09-25 11:29:22 +02:00
parent 136a663ceb
commit ba9d174851
1 changed files with 0 additions and 2 deletions

View File

@ -26,7 +26,6 @@ static int probe(AVProbeData *p)
static int read_header(AVFormatContext *s, AVFormatParameters *ap) static int read_header(AVFormatContext *s, AVFormatParameters *ap)
{ {
AVStream* st; AVStream* st;
ByteIOContext *pb = s->pb;
st=av_new_stream(s, 0); st=av_new_stream(s, 0);
if (!st) if (!st)
@ -108,7 +107,6 @@ static int write_packet(AVFormatContext *s, AVPacket *pkt)
ByteIOContext *pb = s->pb; ByteIOContext *pb = s->pb;
GetBitContext gb; GetBitContext gb;
int i; int i;
uint16_t b;
put_le16(pb, SYNC_WORD); put_le16(pb, SYNC_WORD);
put_le16(pb, 8 * 10); put_le16(pb, 8 * 10);