Quoting Vittorio Giovara (2014-11-12 19:10:39) > From: Luca Barbato <[email protected]> > > The buffer is always valid. > > Bug-Id: CID 700682 > --- > libavcodec/dvdec.c | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > > diff --git a/libavcodec/dvdec.c b/libavcodec/dvdec.c > index a1235d3..bdf3eea 100644 > --- a/libavcodec/dvdec.c > +++ b/libavcodec/dvdec.c > @@ -383,8 +383,8 @@ static int dvvideo_decode_frame(AVCodecContext *avctx, > void *data, > vsc_pack = buf + 80 * 5 + 48 + 5; > if (*vsc_pack == dv_video_control) { > apt = buf[4] & 0x07; > - is16_9 = (vsc_pack && ((vsc_pack[2] & 0x07) == 0x02 || > - (!apt && (vsc_pack[2] & 0x07) == 0x07))); > + is16_9 = (vsc_pack[2] & 0x07) == 0x02 || > + (!apt && (vsc_pack[2] & 0x07) == 0x07); > ff_set_sar(avctx, s->sys->sar[is16_9]); > } > > -- > 1.9.3 (Apple Git-50) >
Looks ok -- Anton Khirnov _______________________________________________ libav-devel mailing list [email protected] https://lists.libav.org/mailman/listinfo/libav-devel
