From: Stefano Sabatini Date: Tue, 21 Jan 2014 18:56:22 +0000 (+0100) Subject: lavf/mpegtsenc: fix weird indent X-Git-Tag: n2.2-rc1~663 X-Git-Url: http://git.ffmpeg.org/gitweb/ffmpeg.git/commitdiff_plain/a2e78161ce77950b2956f58282c19f8fde825b8a lavf/mpegtsenc: fix weird indent --- diff --git a/libavformat/mpegtsenc.c b/libavformat/mpegtsenc.c index 1e2d5ccd10..6bc5f04c96 100644 --- a/libavformat/mpegtsenc.c +++ b/libavformat/mpegtsenc.c @@ -1125,9 +1125,9 @@ static int mpegts_write_packet_internal(AVFormatContext *s, AVPacket *pkt) if (pkt->size < 5 || AV_RB32(pkt->data) != 0x0000001) { if (!st->nb_frames) { - av_log(s, AV_LOG_ERROR, "H.264 bitstream malformed, " - "no startcode found, use the h264_mp4toannexb bitstream filter (-bsf h264_mp4toannexb)\n"); - return AVERROR(EINVAL); + av_log(s, AV_LOG_ERROR, "H.264 bitstream malformed, " + "no startcode found, use the h264_mp4toannexb bitstream filter (-bsf h264_mp4toannexb)\n"); + return AVERROR(EINVAL); } av_log(s, AV_LOG_WARNING, "H.264 bitstream error, startcode missing\n"); }