Remove return statements following infinite loops without break

These statements cannot be reached and are thus not needed.
This removes a number of compiler warnings.

Signed-off-by: Mans Rullgard <mans@mansr.com>
This commit is contained in:
Mans Rullgard
2011-07-03 21:02:18 +01:00
parent f75e3da535
commit add41decd9
11 changed files with 0 additions and 15 deletions

View File

@ -184,8 +184,6 @@ static int read_packet(AVFormatContext *s,
avio_skip(pb, length);
}
}
return 0;
}
AVInputFormat ff_mm_demuxer = {