lavc: Fix msvc compilation of utils.c with -WX (warnings treated as errors)

This fixes https://bugzilla.libav.org/show_bug.cgi?id=514.

Signed-off-by: Martin Storsjö <martin@martin.st>
This commit is contained in:
Matt Wolenetz 2013-05-13 19:29:26 -07:00 committed by Martin Storsjö
parent 05165c2f7a
commit 252c0bfdc0
1 changed files with 1 additions and 0 deletions

View File

@ -762,6 +762,7 @@ void avcodec_default_release_buffer(AVCodecContext *s, AVFrame *pic)
int avcodec_default_reget_buffer(AVCodecContext *s, AVFrame *pic)
{
av_assert0(0);
return AVERROR_BUG;
}
#endif