You've already forked FFmpeg
							
							
				mirror of
				https://github.com/FFmpeg/FFmpeg.git
				synced 2025-10-30 23:18:11 +02:00 
			
		
		
		
	remove cast and use put_sbits, fix assertion in put_bits
Originally committed as revision 19024 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
		| @@ -1077,7 +1077,7 @@ static int dv_encode_video_segment(AVCodecContext *avctx, void *arg) | ||||
|             int sz = s->sys->block_sizes[i]>>3; | ||||
|  | ||||
|             init_put_bits(&pbs[j], dif, sz); | ||||
|             put_bits(&pbs[j], 9, (uint16_t)(((enc_blks[j].mb[0] >> 3) - 1024 + 2) >> 2)); | ||||
|             put_sbits(&pbs[j], 9, ((enc_blks[j].mb[0] >> 3) - 1024 + 2) >> 2); | ||||
|             put_bits(&pbs[j], 1, enc_blks[j].dct_mode); | ||||
|             put_bits(&pbs[j], 2, enc_blks[j].cno); | ||||
|  | ||||
|   | ||||
		Reference in New Issue
	
	Block a user