# HG changeset patch # User reimar # Date 1182670706 0 # Node ID 147b82d29e296f3f656fae41794e9cac3dd432bf # Parent 5336ab380173c4d35cd6c8ae39fb2dfa5130a581 DV muxer should not only fail for more that 3 streams altogether but also if two of them are video or all three are audio. diff -r 5336ab380173 -r 147b82d29e29 dvenc.c --- a/dvenc.c Sat Jun 23 23:10:35 2007 +0000 +++ b/dvenc.c Sun Jun 24 07:38:26 2007 +0000 @@ -300,9 +300,11 @@ for (i=0; inb_streams; i++) { switch (s->streams[i]->codec->codec_type) { case CODEC_TYPE_VIDEO: + if (vst) return NULL; vst = s->streams[i]; break; case CODEC_TYPE_AUDIO: + if (c->n_ast > 1) return NULL; c->ast[c->n_ast++] = s->streams[i]; break; default: