summaryrefslogtreecommitdiffstats
path: root/third_party/aom/tools/auto_refactor/c_files/parse_lvalue.c
blob: fa44d7238101e52ff14b0a4c346f0b6b93b0257d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
/*
 * Copyright (c) 2021, Alliance for Open Media. All rights reserved
 *
 * This source code is subject to the terms of the BSD 2 Clause License and
 * the Alliance for Open Media Patent License 1.0. If the BSD 2 Clause License
 * was not distributed with this source code in the LICENSE file, you can
 * obtain it at www.aomedia.org/license/software. If the Alliance for Open
 * Media Patent License 1.0 was not distributed with this source code in the
 * PATENTS file, you can obtain it at www.aomedia.org/license/patent.
 */

typedef struct RD {
  int u;
  int v;
  int arr[3];
} RD;

typedef struct VP9_COMP {
  int y;
  RD *rd;
  RD rd2;
  RD rd3[2];
} VP9_COMP;

int parse_lvalue_2(VP9_COMP *cpi) { RD *rd2 = &cpi->rd2; }

int func(VP9_COMP *cpi, int x) {
  cpi->rd->u = 0;

  int y;
  y = 0;

  cpi->rd2.v = 0;

  cpi->rd->arr[2] = 0;

  cpi->rd3[1]->arr[2] = 0;

  return 0;
}

int main(void) {
  int x = 0;
  VP9_COMP cpi;
  func(&cpi, x);
}