[FFmpeg-cvslog] dxva2_h264: fix slice offset in long slice structs
Hendrik Leppkes
git at videolan.org
Tue Mar 24 02:48:36 CET 2015
ffmpeg | branch: master | Hendrik Leppkes <h.leppkes at gmail.com> | Mon Mar 23 14:16:44 2015 +0100| [ae4f5d944cce431b1f4715c863122355e1d78007] | committer: Vittorio Giovara
dxva2_h264: fix slice offset in long slice structs
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=ae4f5d944cce431b1f4715c863122355e1d78007
---
libavcodec/dxva2_h264.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/libavcodec/dxva2_h264.c b/libavcodec/dxva2_h264.c
index 03af474..093db99 100644
--- a/libavcodec/dxva2_h264.c
+++ b/libavcodec/dxva2_h264.c
@@ -222,7 +222,7 @@ static void fill_slice_long(AVCodecContext *avctx, DXVA_Slice_H264_Long *slice,
slice->first_mb_in_slice = (sl->mb_y >> FIELD_OR_MBAFF_PICTURE(h)) * h->mb_width + sl->mb_x;
slice->NumMbsForSlice = 0; /* XXX it is set once we have all slices */
- slice->BitOffsetToSliceData = get_bits_count(&h->gb);
+ slice->BitOffsetToSliceData = get_bits_count(&sl->gb);
slice->slice_type = ff_h264_get_slice_type(sl);
if (sl->slice_type_fixed)
slice->slice_type += 5;
More information about the ffmpeg-cvslog
mailing list