diff options
-rw-r--r-- | multimedia/gmplayer/Makefile | 4 | ||||
-rw-r--r-- | multimedia/gmplayer/distinfo | 4 | ||||
-rw-r--r-- | multimedia/mencoder/Makefile | 3 | ||||
-rw-r--r-- | multimedia/mplayer-share/distinfo | 4 | ||||
-rw-r--r-- | multimedia/mplayer-share/patches/patch-ba | 21 | ||||
-rw-r--r-- | multimedia/mplayer-share/patches/patch-bb | 17 | ||||
-rw-r--r-- | multimedia/mplayer/Makefile | 4 |
7 files changed, 50 insertions, 7 deletions
diff --git a/multimedia/gmplayer/Makefile b/multimedia/gmplayer/Makefile index a888aea8417..29d07d1269f 100644 --- a/multimedia/gmplayer/Makefile +++ b/multimedia/gmplayer/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.31 2005/04/11 21:46:41 tv Exp $ +# $NetBSD: Makefile,v 1.32 2005/04/16 17:43:09 drochner Exp $ # # NOTE: if you are updating both mplayer and gmplayer, you must ensure @@ -9,7 +9,7 @@ # PKGNAME= gmplayer-${MPLAYER_PKG_VERSION} -PKGREVISION= 2 +PKGREVISION= 3 SKIN_SITES= http://www.mplayerhq.hu/MPlayer/Skin/ \ ftp://ftp.mplayerhq.hu/MPlayer/Skin/ \ diff --git a/multimedia/gmplayer/distinfo b/multimedia/gmplayer/distinfo index 00605a35411..744e32bbb2b 100644 --- a/multimedia/gmplayer/distinfo +++ b/multimedia/gmplayer/distinfo @@ -1,4 +1,4 @@ -$NetBSD: distinfo,v 1.24 2005/04/09 11:19:32 abs Exp $ +$NetBSD: distinfo,v 1.25 2005/04/16 17:43:09 drochner Exp $ SHA1 (gmplayer-1.0rc6-20050409/MPlayer-1.0pre6a.tar.bz2) = 15acd1edf1e6ebb1dada81cdfcbfd3bc62d6bc0c RMD160 (gmplayer-1.0rc6-20050409/MPlayer-1.0pre6a.tar.bz2) = a0e866906bd9f87b93ad35e47aaa24f69ef7224e @@ -68,3 +68,5 @@ SHA1 (patch-ab) = 68e81c67cd3902499f912d3ca8c6d6bc208a2433 SHA1 (patch-ac) = 696183adc3777cb4d9bc4b6d96d5cb7c88ec489d SHA1 (patch-ad) = 95c8741263b822e20eea3da00ca64923ed91c53b SHA1 (patch-ae) = e3b1a98d86f377b84a4f92673f878d287ae5aa6d +SHA1 (patch-ba) = be78ddba2d58230cf12f186b746d46b01c2836bc +SHA1 (patch-bb) = 90e635cf521d8ba0f3f4e9dafc1e298abf8e315f diff --git a/multimedia/mencoder/Makefile b/multimedia/mencoder/Makefile index 0ee04b1888e..7f85b1948a4 100644 --- a/multimedia/mencoder/Makefile +++ b/multimedia/mencoder/Makefile @@ -1,6 +1,7 @@ -# $NetBSD: Makefile,v 1.17 2005/04/11 21:46:42 tv Exp $ +# $NetBSD: Makefile,v 1.18 2005/04/16 17:43:09 drochner Exp $ PKGNAME= mencoder-${MPLAYER_PKG_VERSION} +PKGREVISION= 1 COMMENT= Simple movie encoder for MPlayer-playable movies diff --git a/multimedia/mplayer-share/distinfo b/multimedia/mplayer-share/distinfo index 98304a7ac71..133c7ef0a37 100644 --- a/multimedia/mplayer-share/distinfo +++ b/multimedia/mplayer-share/distinfo @@ -1,4 +1,4 @@ -$NetBSD: distinfo,v 1.17 2005/02/24 11:24:04 agc Exp $ +$NetBSD: distinfo,v 1.18 2005/04/16 17:43:09 drochner Exp $ SHA1 (mplayer-1.0rc6/MPlayer-1.0pre6a.tar.bz2) = 15acd1edf1e6ebb1dada81cdfcbfd3bc62d6bc0c RMD160 (mplayer-1.0rc6/MPlayer-1.0pre6a.tar.bz2) = a0e866906bd9f87b93ad35e47aaa24f69ef7224e @@ -17,3 +17,5 @@ SHA1 (patch-ab) = 68e81c67cd3902499f912d3ca8c6d6bc208a2433 SHA1 (patch-ac) = 696183adc3777cb4d9bc4b6d96d5cb7c88ec489d SHA1 (patch-ad) = 95c8741263b822e20eea3da00ca64923ed91c53b SHA1 (patch-ae) = e3b1a98d86f377b84a4f92673f878d287ae5aa6d +SHA1 (patch-ba) = be78ddba2d58230cf12f186b746d46b01c2836bc +SHA1 (patch-bb) = 90e635cf521d8ba0f3f4e9dafc1e298abf8e315f diff --git a/multimedia/mplayer-share/patches/patch-ba b/multimedia/mplayer-share/patches/patch-ba new file mode 100644 index 00000000000..04a9f0cce6f --- /dev/null +++ b/multimedia/mplayer-share/patches/patch-ba @@ -0,0 +1,21 @@ +$NetBSD: patch-ba,v 1.3 2005/04/16 17:43:09 drochner Exp $ + +--- libmpdemux/realrtsp/rtsp.c.orig 2005-04-16 21:08:44.000000000 +0200 ++++ libmpdemux/realrtsp/rtsp.c +@@ -397,6 +397,7 @@ static int rtsp_get_answers(rtsp_t *s) { + unsigned int answer_seq; + char **answer_ptr=s->answers; + int code; ++ int ans_count = 0; + + answer=rtsp_get(s); + if (!answer) +@@ -448,7 +449,7 @@ static int rtsp_get_answers(rtsp_t *s) { + } + *answer_ptr=answer; + answer_ptr++; +- } while (strlen(answer)!=0); ++ } while ((strlen(answer)!=0) && (++ans_count < MAX_FIELDS)); + + s->cseq++; + diff --git a/multimedia/mplayer-share/patches/patch-bb b/multimedia/mplayer-share/patches/patch-bb new file mode 100644 index 00000000000..ab078d1180c --- /dev/null +++ b/multimedia/mplayer-share/patches/patch-bb @@ -0,0 +1,17 @@ +$NetBSD: patch-bb,v 1.3 2005/04/16 17:43:09 drochner Exp $ + +--- libmpdemux/asf_mmst_streaming.c.orig 2005-04-16 21:10:36.000000000 +0200 ++++ libmpdemux/asf_mmst_streaming.c +@@ -334,8 +334,12 @@ static int interp_header (uint8_t *heade + + printf ("stream object, stream id: %d\n", stream_id); + ++ if (num_stream_ids < 20) { + stream_ids[num_stream_ids] = stream_id; + num_stream_ids++; ++ } else { ++ printf ("too many id, stream skipped"); ++ } + + } else { + printf ("unknown object\n"); diff --git a/multimedia/mplayer/Makefile b/multimedia/mplayer/Makefile index 42d455c7dd1..c841103192f 100644 --- a/multimedia/mplayer/Makefile +++ b/multimedia/mplayer/Makefile @@ -1,7 +1,7 @@ -# $NetBSD: Makefile,v 1.15 2005/04/11 21:46:42 tv Exp $ +# $NetBSD: Makefile,v 1.16 2005/04/16 17:43:09 drochner Exp $ PKGNAME= mplayer-${MPLAYER_PKG_VERSION} -PKGREVISION= 1 +PKGREVISION= 2 COMMENT= Software-only MPEG-1/2/4 video decoder |