diff options
author | Andreas Cadhalpun <andreas.cadhalpun@googlemail.com> | 2015-04-03 19:15:15 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2015-04-05 15:21:20 +0200 |
commit | 71fa0aa085ccb540469b0298a277ca5c2221532a (patch) | |
tree | 6e695cf28edc5730e740efe17ce92def11932c71 /libavcodec/mpeg4videodec.c | |
parent | cf880ccb6a82476e1b944d5d0e742b63de21283a (diff) | |
download | ffmpeg-71fa0aa085ccb540469b0298a277ca5c2221532a.tar.gz |
mpeg4: suggest mpeg4_unpack_bframes bsf instead of avidemux/VirtualDub
Signed-off-by: Andreas Cadhalpun <Andreas.Cadhalpun@googlemail.com>
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/mpeg4videodec.c')
-rw-r--r-- | libavcodec/mpeg4videodec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/mpeg4videodec.c b/libavcodec/mpeg4videodec.c index 80dfb91391..b8fd50bce2 100644 --- a/libavcodec/mpeg4videodec.c +++ b/libavcodec/mpeg4videodec.c @@ -2664,7 +2664,7 @@ int ff_mpeg4_frame_end(AVCodecContext *avctx, const uint8_t *buf, int buf_size) if (!ctx->showed_packed_warning) { av_log(s->avctx, AV_LOG_INFO, "Video uses a non-standard and " "wasteful way to store B-frames ('packed B-frames'). " - "Consider using a tool like VirtualDub or avidemux to fix it.\n"); + "Consider using the mpeg4_unpack_bframes bitstream filter to fix it.\n"); ctx->showed_packed_warning = 1; } av_fast_padded_malloc(&s->bitstream_buffer, |