mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
simplify
Originally committed as revision 7602 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
f8a32f450a
commit
07495657fb
@ -29,18 +29,13 @@
|
|||||||
|
|
||||||
static uint64_t get_v(ByteIOContext *bc){
|
static uint64_t get_v(ByteIOContext *bc){
|
||||||
uint64_t val = 0;
|
uint64_t val = 0;
|
||||||
|
int tmp;
|
||||||
|
|
||||||
for(;;)
|
do{
|
||||||
{
|
tmp = get_byte(bc);
|
||||||
int tmp = get_byte(bc);
|
val= (val<<7) + (tmp&127);
|
||||||
|
}while(tmp&128);
|
||||||
if (tmp&0x80)
|
return val;
|
||||||
val= (val<<7) + tmp - 0x80;
|
|
||||||
else{
|
|
||||||
return (val<<7) + tmp;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return -1;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
static int get_str(ByteIOContext *bc, char *string, unsigned int maxlen){
|
static int get_str(ByteIOContext *bc, char *string, unsigned int maxlen){
|
||||||
|
Loading…
Reference in New Issue
Block a user