diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2014-11-15 19:09:30 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2014-11-15 19:11:14 +0100 |
commit | 89e705cd5c94e6ccaa2969720de2f238c42c7e3c (patch) | |
tree | 1112d32aa039a1d86b5eb358c37d832751da1a84 | |
parent | a2f05d33373eb56a87f9581b33d50e44bb5f6a0b (diff) | |
parent | 74d7db586a2e9aeb107e357739c7e4dde0b6991c (diff) | |
download | ffmpeg-89e705cd5c94e6ccaa2969720de2f238c42c7e3c.tar.gz |
Merge commit '74d7db586a2e9aeb107e357739c7e4dde0b6991c'
* commit '74d7db586a2e9aeb107e357739c7e4dde0b6991c':
dv: Drop a spurious check
Conflicts:
libavcodec/dvdec.c
See: 5307fa00a45b50897af3d5070e936fcaa82ae19e
Merged-by: Michael Niedermayer <michaelni@gmx.at>
-rw-r--r-- | libavcodec/dvdec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/dvdec.c b/libavcodec/dvdec.c index 4f0d0f64c9..99fe1f4981 100644 --- a/libavcodec/dvdec.c +++ b/libavcodec/dvdec.c @@ -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]); } |