Commit c6a89d89 authored by mru's avatar mru

kill harmless 64-bit pointer cast warning


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@9539 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 8cd9d4b0
......@@ -407,7 +407,7 @@ static int mov_write_svq3_tag(ByteIOContext *pb)
static uint8_t *avc_find_startcode( uint8_t *p, uint8_t *end )
{
uint8_t *a = p + 4 - ((int)p & 3);
uint8_t *a = p + 4 - ((long)p & 3);
for( end -= 3; p < a && p < end; p++ ) {
if( p[0] == 0 && p[1] == 0 && p[2] == 1 )
......
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