diff options
author | Michael Niedermayer <michael@niedermayer.cc> | 2015-07-15 21:05:24 +0200 |
---|---|---|
committer | Michael Niedermayer <michael@niedermayer.cc> | 2015-07-15 21:05:24 +0200 |
commit | 269a71b68ae7b026dfb764681f45d754f29f7aa2 (patch) | |
tree | 063fa26c915a695813bc89ae7a70b408a2aa2cab /libavcodec/mpeg4videodec.c | |
parent | a5d44d5c220e12ca0cb7a4eceb0f74759cb13111 (diff) | |
download | ffmpeg-269a71b68ae7b026dfb764681f45d754f29f7aa2.tar.gz |
avcodec/mpeg4videodec: Clarify the mpeg4_unpack_bframes reference.
This should avoid misunderstandings like in Ticket4618
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
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 2234e3718a..3efa63d779 100644 --- a/libavcodec/mpeg4videodec.c +++ b/libavcodec/mpeg4videodec.c @@ -2670,7 +2670,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 the mpeg4_unpack_bframes bitstream filter to fix it.\n"); + "Consider using the mpeg4_unpack_bframes bitstream filter without encoding but stream copy to fix it.\n"); ctx->showed_packed_warning = 1; } av_fast_padded_malloc(&s->bitstream_buffer, |