Commit f433ccf
committed
vp9_postproc: add missing casts
Fixes warnings with cl.exe:
```
vp9\common\vp9_postproc.c(141):
warning C4244: '=': conversion from 'int64_t' to 'uint16_t', possible
loss of data
vp9\common\vp9_postproc.c(176):
warning C4244: '=': conversion from 'int64_t' to 'uint16_t', possible
loss of data
```
Change-Id: Iff06b434c35395b8eb7eb7f36d76f6f8ab74a5811 parent b71c17f commit f433ccf
1 file changed
Lines changed: 2 additions & 2 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
138 | 138 | | |
139 | 139 | | |
140 | 140 | | |
141 | | - | |
| 141 | + | |
142 | 142 | | |
143 | 143 | | |
144 | 144 | | |
| |||
173 | 173 | | |
174 | 174 | | |
175 | 175 | | |
176 | | - | |
| 176 | + | |
177 | 177 | | |
178 | 178 | | |
179 | 179 | | |
| |||
0 commit comments