X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=modules%2Fcodec%2Fcinepak.c;fp=modules%2Fcodec%2Fcinepak.c;h=c9ff1e102095877c2816bf40e3cb1d8e378cdaa6;hb=2e0102d92da57379e9b65457b36c8e96f93f35b0;hp=a64852e859eef85da9e2a6c41aacfbfc55c9c970;hpb=81ac662973eda626235f40407d5cda038666e519;p=vlc diff --git a/modules/codec/cinepak.c b/modules/codec/cinepak.c index a64852e859..c9ff1e1020 100644 --- a/modules/codec/cinepak.c +++ b/modules/codec/cinepak.c @@ -455,7 +455,7 @@ static int cinepak_decode_frame( cinepak_context_t *p_context, i_strip_id = GET2BYTES( p_data ); i_strip_size = GET2BYTES( p_data ); i_strip_size = __MIN( i_strip_size, i_length ); - /* FIXME I don't really understand how it's work; */ + /* FIXME I don't really understand how it works; */ i_strip_y1 = i_strip_y2 + GET2BYTES( p_data ); i_strip_x1 = GET2BYTES( p_data ); i_strip_y2 = i_strip_y2 + GET2BYTES( p_data );