[FFmpeg-cvslog] avcodec/cbs_h265: fix writing extension_data bits

James Almer git at videolan.org
Thu Apr 30 22:28:45 EEST 2020


ffmpeg | branch: master | James Almer <jamrial at gmail.com> | Mon Apr 20 15:25:58 2020 -0300| [38d1815cc65dd447de80760895ee008cfc9a0091] | committer: James Almer

avcodec/cbs_h265: fix writing extension_data bits

We only care about the right most bit.

Signed-off-by: James Almer <jamrial at gmail.com>

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=38d1815cc65dd447de80760895ee008cfc9a0091
---

 libavcodec/cbs_h265_syntax_template.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/libavcodec/cbs_h265_syntax_template.c b/libavcodec/cbs_h265_syntax_template.c
index 5f5531944c..0696eeeb9e 100644
--- a/libavcodec/cbs_h265_syntax_template.c
+++ b/libavcodec/cbs_h265_syntax_template.c
@@ -80,7 +80,7 @@ static int FUNC(extension_data)(CodedBitstreamContext *ctx, RWContext *rw,
     }
 #else
     for (k = 0; k < current->bit_length; k++)
-        xu(1, extension_data, current->data[k / 8] >> (7 - k % 8), 0, 1, 0);
+        xu(1, extension_data, current->data[k / 8] >> (7 - k % 8) & 1, 0, 1, 0);
 #endif
     return 0;
 }



More information about the ffmpeg-cvslog mailing list