Jul 9, 2019, 9:18 PM by m...@jailuthra.in: > we need two bits instead of one bit to represent -1 in bitstream > > Signed-off-by: Jai Luthra <m...@jailuthra.in> > --- > libavcodec/mlpenc.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/libavcodec/mlpenc.c b/libavcodec/mlpenc.c > index deb171645c..f4948451f1 100644 > --- a/libavcodec/mlpenc.c > +++ b/libavcodec/mlpenc.c > @@ -466,7 +466,7 @@ static void default_decoding_params(MLPEncodeContext *ctx, > */ > static int inline number_sbits(int number) > { > - if (number < 0) > + if (number < -1) > number++; >
This is different from the first patch's version. Sure its correct now? _______________________________________________ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org https://ffmpeg.org/mailman/listinfo/ffmpeg-devel To unsubscribe, visit link above, or email ffmpeg-devel-requ...@ffmpeg.org with subject "unsubscribe".