[FFmpeg-devel] [PATCH V2 2/2] lavc/hevc_ps: use skip_bits instead of get_bits when skip bits.
mypopy at gmail.com
mypopy at gmail.com
Mon Jul 16 03:17:02 EEST 2018
On Fri, Jul 13, 2018 at 6:28 PM Michael Niedermayer <michael at niedermayer.cc>
wrote:
>
> 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
>
Change the comment and applied, Thanks
>
> [...]
>
> --
> 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.
> _______________________________________________
> ffmpeg-devel mailing list
> ffmpeg-devel at ffmpeg.org
> http://ffmpeg.org/mailman/listinfo/ffmpeg-devel
--
=======================================
Jun zhao/赵军
+++++++++++++++++++++++++++++++++++++++
More information about the ffmpeg-devel
mailing list