On Wed, Apr 26, 2017 at 11:41:49AM +0200, Anton Khirnov wrote: > @@ -118,19 +118,21 @@ static int vp9_superframe_filter(AVBSFContext *ctx, > AVPacket *out) > > - profile = get_bits1(&gb); > - profile |= get_bits1(&gb) << 1; > + profile = bitstream_read(&bc, 1); > + profile |= bitstream_read(&bc, 1) << 1;
bitstream_read_bit() Diego _______________________________________________ libav-devel mailing list [email protected] https://lists.libav.org/mailman/listinfo/libav-devel
