Message ID | 20190909072815.23981-1-boris.brezillon@collabora.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Series | [1/3] media: hantro: h264: Fix a comment in b1_ref_list_cmp() | expand |
On Mon, Sep 9, 2019 at 4:28 PM Boris Brezillon <boris.brezillon@collabora.com> wrote: > > So it matches the code and the spec. > > Signed-off-by: Boris Brezillon <boris.brezillon@collabora.com> Tested-by: Francois Buergisser <fbuergisser@chromium.org>
On Wed, Sep 18, 2019 at 2:03 PM Francois Buergisser <fbuergisser@google.com> wrote: > > On Mon, Sep 9, 2019 at 4:28 PM Boris Brezillon > <boris.brezillon@collabora.com> wrote: > > > > So it matches the code and the spec. > > > > Signed-off-by: Boris Brezillon <boris.brezillon@collabora.com> > Tested-by: Francois Buergisser <fbuergisser@chromium.org> Reviewed-by: Tomasz Figa <tfiga@chromium.org> Best regards, Tomasz
diff --git a/drivers/staging/media/hantro/hantro_h264.c b/drivers/staging/media/hantro/hantro_h264.c index 0d758e0c0f99..f070e7174007 100644 --- a/drivers/staging/media/hantro/hantro_h264.c +++ b/drivers/staging/media/hantro/hantro_h264.c @@ -429,7 +429,7 @@ static int b1_ref_list_cmp(const void *ptra, const void *ptrb, const void *data) /* * Short term pics with POC > cur POC first in POC ascending order - * followed by short term pics with POC > cur POC in POC descending + * followed by short term pics with POC < cur POC in POC descending * order. */ if ((poca < builder->curpoc) != (pocb < builder->curpoc))
So it matches the code and the spec. Signed-off-by: Boris Brezillon <boris.brezillon@collabora.com> --- drivers/staging/media/hantro/hantro_h264.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)