Declare cur_row inside #if CONFIG_MULTITHREAD
authorWan-Teh Chang <wtc@google.com>
Sat, 30 Sep 2023 18:17:30 +0000 (11:17 -0700)
committerWan-Teh Chang <wtc@google.com>
Wed, 4 Oct 2023 02:16:36 +0000 (19:16 -0700)
commitf67f9ce3469fba7585c1a9fc4e5f1700b5433a39
tree29dedbc0e0a66722745118061f84d56cf9aa47dd
parent5b6ceba996f08e2502737eec14f291ac8d46a5bc
Declare cur_row inside #if CONFIG_MULTITHREAD

Fix the following compiler warning when libvpx is configured with
the --disable-multithread option:

  vp9/common/vp9_thread_common.c:391:7: warning:
  variable 'cur_row' set but not used [-Wunused-but-set-variable]
    int cur_row;
        ^

Change-Id: I53aa279152715083df40990eb7fdcaeb77a66777
vp9/common/vp9_thread_common.c