Import of pkgsrc-2013Q2

This commit is contained in:
2013-09-26 17:14:40 +02:00
commit 785076ae39
74991 changed files with 4380255 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
$NetBSD: patch-libavformat_nutdec.c,v 1.1 2013/05/17 21:50:34 jperkin Exp $
Avoid -Werror=return-type failure.
--- libavformat/nutdec.c.orig 2013-04-10 01:52:17.000000000 +0000
+++ libavformat/nutdec.c
@@ -849,7 +849,7 @@ av_log(s, AV_LOG_DEBUG, "read_timestamp(
if (stream_index == -1) return pts;
else if(stream_index == -2) return back_ptr;
-assert(0);
+ return AV_NOPTS_VALUE;
}
static int read_seek(AVFormatContext *s, int stream_index, int64_t pts, int flags){