[FFmpeg-cvslog] lavf/mpegtsenc: fix weird indent

Stefano Sabatini git at videolan.org
Tue Jan 21 20:10:53 CET 2014


ffmpeg | branch: master | Stefano Sabatini <stefasab at gmail.com> | Tue Jan 21 19:56:22 2014 +0100| [a2e78161ce77950b2956f58282c19f8fde825b8a] | committer: Stefano Sabatini

lavf/mpegtsenc: fix weird indent

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=a2e78161ce77950b2956f58282c19f8fde825b8a
---

 libavformat/mpegtsenc.c |    6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/libavformat/mpegtsenc.c b/libavformat/mpegtsenc.c
index 1e2d5cc..6bc5f04 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");
         }



More information about the ffmpeg-cvslog mailing list