[FFmpeg-cvslog] avcodec/ff_h264_decode_sei: use skip_bits_long()
Michael Niedermayer
git at videolan.org
Sun Jul 21 18:03:38 CEST 2013
ffmpeg | branch: master | Michael Niedermayer <michaelni at gmx.at> | Sun Jul 21 16:39:18 2013 +0200| [118a1c2f4c2385f629a7be8479cbb20eaf391cac] | committer: Michael Niedermayer
avcodec/ff_h264_decode_sei: use skip_bits_long()
Signed-off-by: Michael Niedermayer <michaelni at gmx.at>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=118a1c2f4c2385f629a7be8479cbb20eaf391cac
---
libavcodec/h264_sei.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/libavcodec/h264_sei.c b/libavcodec/h264_sei.c
index 5e4321f..9c97c18 100644
--- a/libavcodec/h264_sei.c
+++ b/libavcodec/h264_sei.c
@@ -294,7 +294,7 @@ int ff_h264_decode_sei(H264Context *h){
if(decode_frame_packing(h, size) < 0)
return -1;
default:
- skip_bits(&h->gb, 8*size);
+ skip_bits_long(&h->gb, 8*size);
}
//FIXME check bits here
More information about the ffmpeg-cvslog
mailing list