Browse Source

lavf/mpegtsenc: fix weird indent

tags/n2.2-rc1
Stefano Sabatini 12 years ago
parent
commit
a2e78161ce
1 changed files with 3 additions and 3 deletions
  1. +3
    -3
      libavformat/mpegtsenc.c

+ 3
- 3
libavformat/mpegtsenc.c View File

@@ -1125,9 +1125,9 @@ static int mpegts_write_packet_internal(AVFormatContext *s, AVPacket *pkt)


if (pkt->size < 5 || AV_RB32(pkt->data) != 0x0000001) { if (pkt->size < 5 || AV_RB32(pkt->data) != 0x0000001) {
if (!st->nb_frames) { 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"); av_log(s, AV_LOG_WARNING, "H.264 bitstream error, startcode missing\n");
} }


Loading…
Cancel
Save