aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2012-01-01 16:09:23 +0100
committerCarl Eugen Hoyos <cehoyos@ag.or.at>2012-01-03 13:34:15 +0100
commit96545777d7f95ee6a91eba77a886f3efdbd8e11d (patch)
treef81e758f20ecb9ab8e15ea2f91db0a8f5864b619
parent1506becf36ecf1a6608bc56615cdb317ea2fb7f5 (diff)
downloadffmpeg-96545777d7f95ee6a91eba77a886f3efdbd8e11d.tar.gz
h264: add forgotten \n to "Invalid mix of idr and non-idr slices"
Signed-off-by: Michael Niedermayer <michaelni@gmx.at> (cherry picked from commit ecb14b8af73b92e5a1be47c119d2f528ff402ebd)
-rw-r--r--libavcodec/h264.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/h264.c b/libavcodec/h264.c
index fbf4208e01..8139c304ac 100644
--- a/libavcodec/h264.c
+++ b/libavcodec/h264.c
@@ -3876,7 +3876,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 loose some frames if there is reordering