Browse Source

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

tags/n2.4
Carl Eugen Hoyos 11 years ago
parent
commit
cc0acdbd68
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavcodec/h264_slice.c

+ 1
- 1
libavcodec/h264_slice.c 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;


Loading…
Cancel
Save