diff options
author | Stefano Sabatini <stefasab@gmail.com> | 2014-01-21 19:56:22 +0100 |
---|---|---|
committer | Stefano Sabatini <stefasab@gmail.com> | 2014-01-21 20:08:36 +0100 |
commit | a2e78161ce77950b2956f58282c19f8fde825b8a (patch) | |
tree | 0a19a0a8e9a73bfb9702e347320e1a99dd10901e /libavformat/mpegtsenc.c | |
parent | b539a72bba3048ee1a14a5793114ead02bb9b2a6 (diff) | |
download | ffmpeg-a2e78161ce77950b2956f58282c19f8fde825b8a.tar.gz |
lavf/mpegtsenc: fix weird indent
Diffstat (limited to 'libavformat/mpegtsenc.c')
-rw-r--r-- | libavformat/mpegtsenc.c | 6 |
1 files changed, 3 insertions, 3 deletions
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"); } |