summaryrefslogtreecommitdiff
path: root/libavformat/mpegtsenc.c
diff options
context:
space:
mode:
authorMike Melanson <mike@multimedia.cx>2012-01-29 21:29:25 -0800
committerAnton Khirnov <anton@khirnov.net>2012-01-30 07:30:21 +0100
commitcc09dc7863e4ffdf5d7c18472721c5ce739f26b0 (patch)
tree98386e474e7f88eb05efcbb7955b632d7c048248 /libavformat/mpegtsenc.c
parentb864b38397a2962d265ad39005265bac4fb001ef (diff)
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>
Diffstat (limited to 'libavformat/mpegtsenc.c')
-rw-r--r--libavformat/mpegtsenc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/mpegtsenc.c b/libavformat/mpegtsenc.c
index c05f7f690e..8232cbc76d 100644
--- a/libavformat/mpegtsenc.c
+++ b/libavformat/mpegtsenc.c
@@ -956,7 +956,7 @@ static int mpegts_write_packet(AVFormatContext *s, AVPacket *pkt)
if (pkt->size < 5 || AV_RB32(pkt->data) != 0x0000001) {
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;
}