Commit 89e705cd authored by Michael Niedermayer's avatar Michael Niedermayer

Merge commit '74d7db58'

* commit '74d7db58':
  dv: Drop a spurious check

Conflicts:
	libavcodec/dvdec.c

See: 5307fa00Merged-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parents a2f05d33 74d7db58
......@@ -505,7 +505,7 @@ static int dvvideo_decode_frame(AVCodecContext *avctx, void *data,
if (*vsc_pack == dv_video_control) {
apt = buf[4] & 0x07;
is16_9 = (vsc_pack[2] & 0x07) == 0x02 ||
(!apt && (vsc_pack[2] & 0x07) == 0x07);
(!apt && (vsc_pack[2] & 0x07) == 0x07);
ff_set_sar(avctx, s->sys->sar[is16_9]);
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment