1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2024-11-21 10:55:51 +02:00

lavc/h264_slice: Add a missing newline to an error message.

This commit is contained in:
Carl Eugen Hoyos 2014-08-24 15:33:10 +02:00
parent f155e01ab0
commit cc0acdbd68

View File

@ -537,7 +537,7 @@ int ff_h264_update_thread_context(AVCodecContext *dst,
h->pps = h1->pps;
if ((err = h264_slice_header_init(h, 1)) < 0) {
av_log(h->avctx, AV_LOG_ERROR, "h264_slice_header_init() failed");
av_log(h->avctx, AV_LOG_ERROR, "h264_slice_header_init() failed\n");
return err;
}
context_reinitialized = 1;