diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2012-01-01 16:09:23 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2012-01-01 21:04:34 +0100 |
commit | ecb14b8af73b92e5a1be47c119d2f528ff402ebd (patch) | |
tree | 7896b9606357ed7503166c60c4c93ecb11aa3242 | |
parent | 393253b4b3b454830b22c8e69acbe11e2684da7e (diff) | |
download | ffmpeg-ecb14b8af73b92e5a1be47c119d2f528ff402ebd.tar.gz |
h264: add forgotten \n to "Invalid mix of idr and non-idr slices"
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-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 1ec04f32ff..384e2d101c 100644 --- a/libavcodec/h264.c +++ b/libavcodec/h264.c @@ -3881,7 +3881,7 @@ static int decode_nal_units(H264Context *h, const uint8_t *buf, int buf_size){ switch(hx->nal_unit_type){ case NAL_IDR_SLICE: if (h->nal_unit_type != NAL_IDR_SLICE) { - av_log(h->s.avctx, AV_LOG_ERROR, "Invalid mix of idr and non-idr slices"); + av_log(h->s.avctx, AV_LOG_ERROR, "Invalid mix of idr and non-idr slices\n"); return -1; } idr(h); // FIXME ensure we don't lose some frames if there is reordering |