On 13/12/15 07:16, Anton Khirnov wrote:
> ---
>  libavformat/r3d.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/libavformat/r3d.c b/libavformat/r3d.c
> index fb066a6..9db1d4b 100644
> --- a/libavformat/r3d.c
> +++ b/libavformat/r3d.c
> @@ -352,7 +352,7 @@ static int r3d_read_packet(AVFormatContext *s, AVPacket 
> *pkt)
>          case MKTAG('R','E','D','A'):
>              if (!r3d->audio_channels)
>                  return -1;
> -            if (s->streams[1]->discard == AVDISCARD_ALL)
> +            if (s->nb_streams >= 2 && s->streams[1]->discard == 
> AVDISCARD_ALL)
>                  goto skip;
>              if (!(err = r3d_read_reda(s, pkt, &atom)))
>                  return 0;
> 

Ok.
_______________________________________________
libav-devel mailing list
[email protected]
https://lists.libav.org/mailman/listinfo/libav-devel

Reply via email to