Commit 2b3701e0 authored by diego's avatar diego

Remove disabled function get_num().

It is small and has been disabled and unused for more than four years.


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@19520 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 6b6387f3
......@@ -289,21 +289,6 @@ void rv20_encode_picture_header(MpegEncContext *s, int picture_number){
}
}
#if 0 /* unused, remove? */
static int get_num(GetBitContext *gb)
{
int n, n1;
n = get_bits(gb, 16);
if (n >= 0x4000) {
return n - 0x4000;
} else {
n1 = get_bits(gb, 16);
return (n << 16) | n1;
}
}
#endif
#endif /* CONFIG_RV10_ENCODER || CONFIG_RV20_ENCODER */
/* read RV 1.0 compatible frame header */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment