[COMMON] media: mfc: change the variable name
authorAyoung Sim <a.sim@samsung.com>
Fri, 22 Jun 2018 05:43:01 +0000 (14:43 +0900)
committerSunyoung Kang <sy0816.kang@samsung.com>
Mon, 23 Jul 2018 06:18:44 +0000 (15:18 +0900)
'num_bufs_in_vb' is mean the number of valid buffers.

Change-Id: I5985cfdbc4d3a30a4fb60e0cec2bc66220d28dd5
Signed-off-by: Ayoung Sim <a.sim@samsung.com>
drivers/media/platform/exynos/mfc/s5p_mfc_data_struct.h
drivers/media/platform/exynos/mfc/s5p_mfc_enc_vb2_ops.c
drivers/media/platform/exynos/mfc/s5p_mfc_irq.c
drivers/media/platform/exynos/mfc/s5p_mfc_mem.c
drivers/media/platform/exynos/mfc/s5p_mfc_nal_q.c
drivers/media/platform/exynos/mfc/s5p_mfc_opr.c
drivers/media/platform/exynos/mfc/s5p_mfc_queue.c
drivers/media/platform/exynos/mfc/s5p_mfc_reg.c

index bb736df3bd59fe9558d58d19ea250151743fe9e9..deee549e1a8b62aeb3d1890b75f2212d66cee036 100644 (file)
@@ -213,7 +213,7 @@ struct s5p_mfc_buf {
        int done_index;
        int used;
        int num_bufs_in_batch;
-       int num_bufs_in_vb;
+       int num_valid_bufs;
        unsigned char *vir_addr;
 };
 
index 63fd7f1ec97bf6a45727a81b611b0496dd174334..e4b72bda8a3cca19faeee84e03909729da430db5 100644 (file)
@@ -234,7 +234,7 @@ static int s5p_mfc_enc_buf_prepare(struct vb2_buffer *vb)
                                        goto err_mem_put;
                                }
 
-                               ctx->framerate = buf->num_bufs_in_vb * ENC_DEFAULT_CAM_CAPTURE_FPS;
+                               ctx->framerate = buf->num_valid_bufs * ENC_DEFAULT_CAM_CAPTURE_FPS;
                                mfc_debug(3, "framerate: %ld\n", ctx->framerate);
 
                                dma_buf_put(bufcon_dmabuf[i]);
index 860ba8e3537346618efb816ae7db179fa9a8d426..4c7e141e01e75e76010fc8f61ce4ba16fa2dbeb4 100644 (file)
@@ -797,7 +797,7 @@ static void mfc_handle_stream_input(struct s5p_mfc_ctx *ctx)
                                mfc_err_ctx("failed in recover_buf_ctrls_val\n");
 
                        /* single buffer || last image in a buffer container */
-                       if (!src_mb->num_bufs_in_vb || src_mb->done_index == src_mb->num_bufs_in_vb) {
+                       if (!src_mb->num_valid_bufs || src_mb->done_index == src_mb->num_valid_bufs) {
                                src_mb = s5p_mfc_find_del_buf(&ctx->buf_queue_lock,
                                                &ctx->src_buf_queue, enc_addr[0]);
                                for (i = 0; i < raw->num_planes; i++)
index 96de70099e3cbd1b445477ee25dcae37674de43b..bbbe88a424bf8e6c5013548523748a29e0ec3c61 100644 (file)
@@ -195,7 +195,7 @@ void s5p_mfc_bufcon_put_daddr(struct s5p_mfc_ctx *ctx, struct s5p_mfc_buf *mfc_b
 {
        int i;
 
-       for (i = 0; i < mfc_buf->num_bufs_in_vb; i++) {
+       for (i = 0; i < mfc_buf->num_valid_bufs; i++) {
                if (mfc_buf->addr[i][plane]) {
                        mfc_debug(4, "put batch buf addr[%d][%d]: 0x%08llx\n",
                                        i, plane, mfc_buf->addr[i][plane]);
@@ -263,8 +263,8 @@ int s5p_mfc_bufcon_get_daddr(struct s5p_mfc_ctx *ctx, struct s5p_mfc_buf *mfc_bu
                j++;
        }
 
-       mfc_buf->num_bufs_in_vb = j;
-       mfc_debug(3, "batch buffer has %d buffers\n", mfc_buf->num_bufs_in_vb);
+       mfc_buf->num_valid_bufs = j;
+       mfc_debug(3, "batch buffer has %d buffers\n", mfc_buf->num_valid_bufs);
 
        return 0;
 
index 621434b6add224e3ff703dd40b32bb4918997d98..530238e4f3915dff52f51ea19004b4ef641c9bdc 100644 (file)
@@ -641,7 +641,7 @@ static int mfc_nal_q_run_in_buf_enc(struct s5p_mfc_ctx *ctx, EncoderInputStr *pI
 
                /* last image in a buffer container */
                /* move src_queue -> src_queue_nal_q */
-               if (src_mb->next_index == (src_mb->num_bufs_in_vb - 1)) {
+               if (src_mb->next_index == (src_mb->num_valid_bufs - 1)) {
                        src_mb = s5p_mfc_get_move_buf(&ctx->buf_queue_lock,
                                        &ctx->src_buf_nal_queue, &ctx->src_buf_queue,
                                        MFC_BUF_SET_USED, MFC_QUEUE_ADD_BOTTOM);
@@ -949,7 +949,7 @@ static void mfc_nal_q_handle_stream_input(struct s5p_mfc_ctx *ctx, EncoderOutput
                                mfc_debug(4, "[NALQ] batch buf done_index: %d\n", src_mb->done_index);
 
                                /* last image in a buffer container */
-                               if (src_mb->done_index == src_mb->num_bufs_in_vb) {
+                               if (src_mb->done_index == src_mb->num_valid_bufs) {
                                        src_mb = s5p_mfc_find_del_buf(&ctx->buf_queue_lock,
                                                        &ctx->src_buf_nal_queue, enc_addr[0]);
                                        for (i = 0; i < raw->num_planes; i++)
index 31ed9ada52f9455c332441c6f2d30118de557027..81022ea350b2ecffa144cdff64f70d1e3cc1698c 100644 (file)
@@ -259,9 +259,9 @@ int s5p_mfc_run_enc_frame(struct s5p_mfc_ctx *ctx)
                return -EAGAIN;
        }
 
-       if (src_mb->num_bufs_in_vb > 0) {
+       if (src_mb->num_valid_bufs > 0) {
                /* last image in a buffer container */
-               if (src_mb->next_index == (src_mb->num_bufs_in_vb - 1))
+               if (src_mb->next_index == (src_mb->num_valid_bufs - 1))
                        last_frame = mfc_check_last_frame(ctx, src_mb);
        } else {
                last_frame = mfc_check_last_frame(ctx, src_mb);
index a4e4fda08e4a256f5dbef8aeaba9e5dabab9492c..cc8429a8ba732032a923b710a1e7cc7c896a3bd0 100644 (file)
@@ -280,8 +280,8 @@ struct s5p_mfc_buf *s5p_mfc_find_first_buf(spinlock_t *plock, struct s5p_mfc_buf
 
        mfc_debug(2, "Looking for this address: 0x%08llx\n", addr);
        mfc_buf = list_entry(queue->head.next, struct s5p_mfc_buf, list);
-       if (mfc_buf->num_bufs_in_vb > 0) {
-               for (i = 0; i < mfc_buf->num_bufs_in_vb; i++) {
+       if (mfc_buf->num_valid_bufs > 0) {
+               for (i = 0; i < mfc_buf->num_valid_bufs; i++) {
                        mb_addr = mfc_buf->addr[i][0];
                        mfc_debug(2, "batch buf[%d] plane[0] addr: 0x%08llx\n", i, mb_addr);
                        if (addr == mb_addr) {
@@ -315,8 +315,8 @@ struct s5p_mfc_buf *s5p_mfc_find_buf(spinlock_t *plock, struct s5p_mfc_buf_queue
 
        mfc_debug(2, "Looking for this address: 0x%08llx\n", addr);
        list_for_each_entry(mfc_buf, &queue->head, list) {
-               if (mfc_buf->num_bufs_in_vb > 0) {
-                       for (i = 0; i < mfc_buf->num_bufs_in_vb; i++) {
+               if (mfc_buf->num_valid_bufs > 0) {
+                       for (i = 0; i < mfc_buf->num_valid_bufs; i++) {
                                mb_addr = mfc_buf->addr[i][0];
                                mfc_debug(2, "batch buf[%d] plane[0] addr: 0x%08llx\n", i, mb_addr);
                                if (addr == mb_addr) {
@@ -351,8 +351,8 @@ struct s5p_mfc_buf *s5p_mfc_find_del_buf(spinlock_t *plock, struct s5p_mfc_buf_q
 
        mfc_debug(4, "Looking for this address: 0x%08llx\n", addr);
        list_for_each_entry(mfc_buf, &queue->head, list) {
-               if (mfc_buf->num_bufs_in_vb > 0) {
-                       for (i = 0; i < mfc_buf->num_bufs_in_vb; i++) {
+               if (mfc_buf->num_valid_bufs > 0) {
+                       for (i = 0; i < mfc_buf->num_valid_bufs; i++) {
                                mb_addr = mfc_buf->addr[i][0];
                                mfc_debug(4, "batch buf[%d] plane[0] addr: 0x%08llx\n", i, mb_addr);
 
index 1cec5ff4f03617ee65679a873d7fcac9692a1bb7..91452bfb14d3cf74c7117ed9e76c6613528ac072 100644 (file)
@@ -339,7 +339,7 @@ void s5p_mfc_set_enc_frame_buffer(struct s5p_mfc_ctx *ctx,
        }
 
        index = mfc_buf->vb.vb2_buf.index;
-       if (mfc_buf->num_bufs_in_vb > 0) {
+       if (mfc_buf->num_valid_bufs > 0) {
                for (i = 0; i < num_planes; i++) {
                        addr[i] = mfc_buf->addr[mfc_buf->next_index][i];
                        mfc_debug(2, "[BUFINFO] ctx[%d] set src index:%d, batch[%d], addr[%d]: 0x%08llx\n",