Commit cf67f165 authored by Michael Niedermayer's avatar Michael Niedermayer

100l cross_idr simplification had a typo

Originally committed as revision 14351 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent f3ba9db4
......@@ -7887,7 +7887,7 @@ static int decode_frame(AVCodecContext *avctx,
out = h->delayed_pic[i];
out_idx = i;
}
cross_idr = !h->delayed_pic[0]->poc || !h->delayed_pic[i];
cross_idr = !h->delayed_pic[0]->poc || !!h->delayed_pic[i];
out_of_order = !cross_idr && out->poc < h->outputed_poc;
......
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