diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2008-07-23 14:59:55 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2008-07-23 14:59:55 +0000 |
commit | cf67f1655c30083d1f8474b07937915f110cbd33 (patch) | |
tree | c2030295d8e13139711cc1dbc9244f7ab6718647 | |
parent | f3ba9db42d836403372de34b0ed1c51f71ad5fad (diff) | |
download | ffmpeg-cf67f1655c30083d1f8474b07937915f110cbd33.tar.gz |
100l cross_idr simplification had a typo
Originally committed as revision 14351 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavcodec/h264.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/h264.c b/libavcodec/h264.c index 5aab7a84bd..0497624ba1 100644 --- a/libavcodec/h264.c +++ b/libavcodec/h264.c @@ -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; |