Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefano Sabatini <stefasab@gmail.com>2012-01-13 03:01:31 +0400
committerStefano Sabatini <stefasab@gmail.com>2012-01-13 18:51:30 +0400
commit0be8e661743705eb4c4369943867f462df0fa1ca (patch)
tree780d088f1fddc30ac9d6d6da0ae6f1d029faa399 /libavformat/mpegtsenc.c
parent7efc6f293289923bc1a6d0905f492a468562f638 (diff)
mpegtsenc: do not reference the deprecated ffmpeg option 'vbsf' in a log message
Give a more generic advice.
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 5adce36ec5..043e578130 100644
--- a/libavformat/mpegtsenc.c
+++ b/libavformat/mpegtsenc.c
@@ -996,7 +996,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 the h264_mp4toannexb bitstream filter\n");
return AVERROR_INVALIDDATA;
}