[FFmpeg-cvslog] avcodec/v4l2_m2m_enc: reindent code

Limin Wang git at videolan.org
Tue May 5 03:22:08 EEST 2020


ffmpeg | branch: master | Limin Wang <lance.lmwang at gmail.com> | Thu Apr 30 07:23:41 2020 +0800| [e468106269fb5b1b983d20d6b94447ab94f7195e] | committer: Limin Wang

avcodec/v4l2_m2m_enc: reindent code

Reviewed-by: Andriy Gelman <andriy.gelman at gmail.com>
Signed-off-by: Limin Wang <lance.lmwang at gmail.com>

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=e468106269fb5b1b983d20d6b94447ab94f7195e
---

 libavcodec/v4l2_m2m_enc.c | 20 ++++++++++----------
 1 file changed, 10 insertions(+), 10 deletions(-)

diff --git a/libavcodec/v4l2_m2m_enc.c b/libavcodec/v4l2_m2m_enc.c
index 8454e2326c..98b93c61af 100644
--- a/libavcodec/v4l2_m2m_enc.c
+++ b/libavcodec/v4l2_m2m_enc.c
@@ -204,11 +204,11 @@ static int v4l2_prepare_encoder(V4L2m2mContext *s)
     switch (avctx->codec_id) {
     case AV_CODEC_ID_H264:
         if (avctx->profile != FF_PROFILE_UNKNOWN) {
-        val = v4l2_h264_profile_from_ff(avctx->profile);
-        if (val < 0)
-            av_log(avctx, AV_LOG_WARNING, "h264 profile not found\n");
-        else
-            v4l2_set_ext_ctrl(s, MPEG_CID(H264_PROFILE), val, "h264 profile", 1);
+            val = v4l2_h264_profile_from_ff(avctx->profile);
+            if (val < 0)
+                av_log(avctx, AV_LOG_WARNING, "h264 profile not found\n");
+            else
+                v4l2_set_ext_ctrl(s, MPEG_CID(H264_PROFILE), val, "h264 profile", 1);
         }
         qmin_cid = MPEG_CID(H264_MIN_QP);
         qmax_cid = MPEG_CID(H264_MAX_QP);
@@ -217,11 +217,11 @@ static int v4l2_prepare_encoder(V4L2m2mContext *s)
         break;
     case AV_CODEC_ID_MPEG4:
         if (avctx->profile != FF_PROFILE_UNKNOWN) {
-        val = v4l2_mpeg4_profile_from_ff(avctx->profile);
-        if (val < 0)
-            av_log(avctx, AV_LOG_WARNING, "mpeg4 profile not found\n");
-        else
-            v4l2_set_ext_ctrl(s, MPEG_CID(MPEG4_PROFILE), val, "mpeg4 profile", 1);
+            val = v4l2_mpeg4_profile_from_ff(avctx->profile);
+            if (val < 0)
+                av_log(avctx, AV_LOG_WARNING, "mpeg4 profile not found\n");
+            else
+                v4l2_set_ext_ctrl(s, MPEG_CID(MPEG4_PROFILE), val, "mpeg4 profile", 1);
         }
         qmin_cid = MPEG_CID(MPEG4_MIN_QP);
         qmax_cid = MPEG_CID(MPEG4_MAX_QP);



More information about the ffmpeg-cvslog mailing list