[FFmpeg-devel] [PATCH V2 2/2] lavc/hevc_ps: use skip_bits instead of get_bits when skip bits.
Michael Niedermayer
michael at niedermayer.cc
Fri Jul 13 13:27:53 EEST 2018
On Thu, Jul 12, 2018 at 10:28:44PM +0800, Jun Zhao wrote:
> use skip_bits when want to skip some bits.
>
> Signed-off-by: Jun Zhao <mypopydev at gmail.com>
> ---
> libavcodec/hevc_ps.c | 2 +-
> 1 files changed, 1 insertions(+), 1 deletions(-)
>
> diff --git a/libavcodec/hevc_ps.c b/libavcodec/hevc_ps.c
> index bc5406b..116d938 100644
> --- a/libavcodec/hevc_ps.c
> +++ b/libavcodec/hevc_ps.c
> @@ -1679,7 +1679,7 @@ int ff_hevc_decode_nal_pps(GetBitContext *gb, AVCodecContext *avctx,
>
> if (get_bits1(gb)) { // pps_extension_present_flag
> int pps_range_extensions_flag = get_bits1(gb);
> - /* int pps_extension_7bits = */ get_bits(gb, 7);
> + skip_bits(gb, 7); // pps_extension_7bits = get_bits(gb, 7)
Theres no need to keep "= get_bits(gb, 7)" in the comment i think
[...]
--
Michael GnuPG fingerprint: 9FF2128B147EF6730BADF133611EC787040B0FAB
Take away the freedom of one citizen and you will be jailed, take away
the freedom of all citizens and you will be congratulated by your peers
in Parliament.
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 181 bytes
Desc: not available
URL: <http://ffmpeg.org/pipermail/ffmpeg-devel/attachments/20180713/a4b2256d/attachment.sig>
More information about the ffmpeg-devel
mailing list