Browse Source

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

Give a more generic advice.
tags/n0.10
Stefano Sabatini 14 years ago
parent
commit
0be8e66174
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavformat/mpegtsenc.c

+ 1
- 1
libavformat/mpegtsenc.c View File

@@ -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;
}



Loading…
Cancel
Save