Browse Source

s/vbsf/bsf/

-vbsf doesn't exist anymore. It got renamed to -bsf somewhere along the
line. Update print statement accordingly.

Signed-off-by: Anton Khirnov <anton@khirnov.net>
tags/n0.11
Mike Melanson Anton Khirnov 13 years ago
parent
commit
cc09dc7863
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavformat/mpegtsenc.c

+ 1
- 1
libavformat/mpegtsenc.c View File

@@ -956,7 +956,7 @@ static int mpegts_write_packet(AVFormatContext *s, AVPacket *pkt)


if (pkt->size < 5 || AV_RB32(pkt->data) != 0x0000001) { if (pkt->size < 5 || AV_RB32(pkt->data) != 0x0000001) {
av_log(s, AV_LOG_ERROR, "H.264 bitstream malformed, " av_log(s, AV_LOG_ERROR, "H.264 bitstream malformed, "
"no startcode found, use -vbsf h264_mp4toannexb\n");
"no startcode found, use -bsf h264_mp4toannexb\n");
return -1; return -1;
} }




Loading…
Cancel
Save