projects
/
ffmpeg.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b864b38
)
s/vbsf/bsf/
author
Mike Melanson
<mike@multimedia.cx>
Mon, 30 Jan 2012 05:29:25 +0000
(21:29 -0800)
committer
Anton Khirnov
<anton@khirnov.net>
Mon, 30 Jan 2012 06:30:21 +0000
(07:30 +0100)
-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>
libavformat/mpegtsenc.c
patch
|
blob
|
history
diff --git
a/libavformat/mpegtsenc.c
b/libavformat/mpegtsenc.c
index
c05f7f6
..
8232cbc
100644
(file)
--- 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 -
v
bsf h264_mp4toannexb\n");
+ "no startcode found, use -bsf h264_mp4toannexb\n");
return -1;
}