[FFmpeg-cvslog] mpegtsenc: do not reference the deprecated ffmpeg option 'vbsf' in a log message

Stefano Sabatini git at videolan.org
Fri Jan 13 15:55:13 CET 2012


ffmpeg | branch: master | Stefano Sabatini <stefasab at gmail.com> | Fri Jan 13 00:01:31 2012 +0100| [0be8e661743705eb4c4369943867f462df0fa1ca] | committer: Stefano Sabatini

mpegtsenc: do not reference the deprecated ffmpeg option 'vbsf' in a log message

Give a more generic advice.

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=0be8e661743705eb4c4369943867f462df0fa1ca
---

 libavformat/mpegtsenc.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/libavformat/mpegtsenc.c b/libavformat/mpegtsenc.c
index 5adce36..043e578 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;
         }
 



More information about the ffmpeg-cvslog mailing list