mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
Cosmetic, get rid of &x[0]
Originally committed as revision 21309 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
2b3649f656
commit
7231ccf4d5
@ -578,7 +578,7 @@ static void hl_motion(H264Context *h, uint8_t *dest_y, uint8_t *dest_cb, uint8_t
|
|||||||
if(IS_16X16(mb_type)){
|
if(IS_16X16(mb_type)){
|
||||||
mc_part(h, 0, 1, 8, 0, dest_y, dest_cb, dest_cr, 0, 0,
|
mc_part(h, 0, 1, 8, 0, dest_y, dest_cb, dest_cr, 0, 0,
|
||||||
qpix_put[0], chroma_put[0], qpix_avg[0], chroma_avg[0],
|
qpix_put[0], chroma_put[0], qpix_avg[0], chroma_avg[0],
|
||||||
&weight_op[0], &weight_avg[0],
|
weight_op, weight_avg,
|
||||||
IS_DIR(mb_type, 0, 0), IS_DIR(mb_type, 0, 1));
|
IS_DIR(mb_type, 0, 0), IS_DIR(mb_type, 0, 1));
|
||||||
}else if(IS_16X8(mb_type)){
|
}else if(IS_16X8(mb_type)){
|
||||||
mc_part(h, 0, 0, 4, 8, dest_y, dest_cb, dest_cr, 0, 0,
|
mc_part(h, 0, 0, 4, 8, dest_y, dest_cb, dest_cr, 0, 0,
|
||||||
|
@ -740,7 +740,7 @@ static int decode_cabac_intra_mb_type(H264Context *h, int ctx_base, int intra_sl
|
|||||||
return 0; /* I4x4 */
|
return 0; /* I4x4 */
|
||||||
state += 2;
|
state += 2;
|
||||||
}else{
|
}else{
|
||||||
if( get_cabac_noinline( &h->cabac, &state[0] ) == 0 )
|
if( get_cabac_noinline( &h->cabac, state ) == 0 )
|
||||||
return 0; /* I4x4 */
|
return 0; /* I4x4 */
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user