Someone told me that : [..] > + prev_x = s->last_picture.f.motion_val[0][mot_index][0]; > + prev_y = s->last_picture.f.motion_val[0][mot_index][1]; > + prev_ref = s->last_picture.f.ref_index[0][4 * mb_xy]; [..] > + prev_x = s->current_picture.f.motion_val[0][mot_index][0]; > + prev_y = s->current_picture.f.motion_val[0][mot_index][1]; > + prev_ref = s->current_picture.f.ref_index[0][4 * mb_xy]; 80 characters. Same as what I said before, you can fix this by making the motion_val[0] and ref_index[0] local variables so the lines become shorter. and I don't know how to make these local variables properly...
I'm so sorry for the top posting ... I just didn't understand it . >-------- Оригинално писмо -------- >От: Diego Biurrun >Относно: Re: [libav-devel] Patch error_resilience:cosmetics >До: libav development >Изпратено на: Вторник, 2012, Януари 10 16:53:50 EET >On Mon, Jan 09, 2012 at 05:50:46PM +0200, доналд овчаров wrote: >> I didn't compile it because I think I'm not able to change it properly... > >For the third time: stop top-posting. > >I don't understand your question. What is "it"? You surely can change >the code, so I don't see what you cannot change properly. > >Diego >_______________________________________________ >libav-devel mailing list >[email protected] >https://lists.libav.org/mailman/listinfo/libav-devel >
_______________________________________________ libav-devel mailing list [email protected] https://lists.libav.org/mailman/listinfo/libav-devel
