[FFmpeg-cvslog] vc1: fix incorrect show_bits() usage.
Michael Niedermayer
git at videolan.org
Sat Apr 7 20:57:11 CEST 2012
ffmpeg | branch: master | Michael Niedermayer <michaelni at gmx.at> | Sat Apr 7 16:23:29 2012 +0200| [20676711fedbdb2918c035f86e43adaa03dde2bd] | committer: Michael Niedermayer
vc1: fix incorrect show_bits() usage.
Signed-off-by: Michael Niedermayer <michaelni at gmx.at>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=20676711fedbdb2918c035f86e43adaa03dde2bd
---
libavcodec/vc1.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/libavcodec/vc1.c b/libavcodec/vc1.c
index 21bdced..95ac93c 100644
--- a/libavcodec/vc1.c
+++ b/libavcodec/vc1.c
@@ -293,7 +293,7 @@ static int decode_sequence_header_adv(VC1Context *v, GetBitContext *gb);
*/
int ff_vc1_decode_sequence_header(AVCodecContext *avctx, VC1Context *v, GetBitContext *gb)
{
- av_log(avctx, AV_LOG_DEBUG, "Header: %0X\n", show_bits(gb, 32));
+ av_log(avctx, AV_LOG_DEBUG, "Header: %0X\n", show_bits_long(gb, 32));
v->profile = get_bits(gb, 2);
if (v->profile == PROFILE_COMPLEX) {
av_log(avctx, AV_LOG_WARNING, "WMV3 Complex Profile is not fully supported\n");
More information about the ffmpeg-cvslog
mailing list