[FFmpeg-devel] [PATCH 2/4] vc2enc: remove useless alignment on slice encoding
Rostislav Pehlivanov
atomnuker at gmail.com
Wed Mar 2 14:14:50 CET 2016
This was a leftover from before the slices were encoded in parallel.
Since the put_bits context is initialized per slice aligning it
aferwards is pointless.
Signed-off-by: Rostislav Pehlivanov <atomnuker at gmail.com>
---
libavcodec/vc2enc.c | 1 -
1 file changed, 1 deletion(-)
diff --git a/libavcodec/vc2enc.c b/libavcodec/vc2enc.c
index 3311d97..34a4f95 100644
--- a/libavcodec/vc2enc.c
+++ b/libavcodec/vc2enc.c
@@ -749,7 +749,6 @@ static int encode_hq_slice(AVCodecContext *avctx, void *arg)
uint8_t quants[MAX_DWT_LEVELS][4];
int p, level, orientation;
- avpriv_align_put_bits(pb);
skip_put_bytes(pb, s->prefix_bytes);
put_bits(pb, 8, quant_idx);
--
2.7.0.79.gdc08a19
More information about the ffmpeg-devel
mailing list