Neil Birkbeck | eb895ef | 2018-03-14 17:51:03 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (c) 2016, Alliance for Open Media. All rights reserved |
| 3 | * |
| 4 | * This source code is subject to the terms of the BSD 2 Clause License and |
| 5 | * the Alliance for Open Media Patent License 1.0. If the BSD 2 Clause License |
| 6 | * was not distributed with this source code in the LICENSE file, you can |
| 7 | * obtain it at www.aomedia.org/license/software. If the Alliance for Open |
| 8 | * Media Patent License 1.0 was not distributed with this source code in the |
| 9 | * PATENTS file, you can obtain it at www.aomedia.org/license/patent. |
| 10 | */ |
| 11 | |
| 12 | /*!\file |
| 13 | * \brief This file has the implementation details of the grain table. |
| 14 | * |
| 15 | * The file format is an ascii representation for readability and |
| 16 | * editability. Array parameters are separated from the non-array |
| 17 | * parameters and prefixed with a few characters to make for easy |
| 18 | * localization with a parameter set. Each entry is prefixed with "E" |
| 19 | * and the other parameters are only specified if "update-parms" is |
| 20 | * non-zero. |
| 21 | * |
| 22 | * filmgrn1 |
| 23 | * E <start-time> <end-time> <apply-grain> <random-seed> <update-parms> |
| 24 | * p <ar_coeff_lag> <ar_coeff_shift> <grain_scale_shift> ... |
| 25 | * sY <num_y_points> <point_0_x> <point_0_y> ... |
| 26 | * sCb <num_cb_points> <point_0_x> <point_0_y> ... |
| 27 | * sCr <num_cr_points> <point_0_x> <point_0_y> ... |
| 28 | * cY <ar_coeff_y_0> .... |
| 29 | * cCb <ar_coeff_cb_0> .... |
| 30 | * cCr <ar_coeff_cr_0> .... |
| 31 | * E <start-time> ... |
| 32 | */ |
| 33 | #include <string.h> |
| 34 | #include <stdio.h> |
| 35 | #include "aom_dsp/aom_dsp_common.h" |
| 36 | #include "aom_dsp/grain_table.h" |
| 37 | #include "aom_mem/aom_mem.h" |
| 38 | |
| 39 | static const char kFileMagic[8] = "filmgrn1"; |
| 40 | |
| 41 | static void grain_table_entry_read(FILE *file, |
| 42 | struct aom_internal_error_info *error_info, |
| 43 | aom_film_grain_table_entry_t *entry) { |
| 44 | aom_film_grain_t *pars = &entry->params; |
| 45 | int num_read = |
| 46 | fscanf(file, "E %" PRId64 " %" PRId64 " %d %hd %d\n", &entry->start_time, |
| 47 | &entry->end_time, &pars->apply_grain, &pars->random_seed, |
| 48 | &pars->update_parameters); |
| 49 | if (num_read == 0 && feof(file)) return; |
| 50 | if (num_read != 5) { |
| 51 | aom_internal_error(error_info, AOM_CODEC_ERROR, |
| 52 | "Unable to read entry header. Read %d != 5", num_read); |
| 53 | return; |
| 54 | } |
| 55 | if (pars->update_parameters) { |
| 56 | num_read = fscanf(file, "p %d %d %d %d %d %d %d %d %d %d %d %d\n", |
| 57 | &pars->ar_coeff_lag, &pars->ar_coeff_shift, |
| 58 | &pars->grain_scale_shift, &pars->scaling_shift, |
| 59 | &pars->chroma_scaling_from_luma, &pars->overlap_flag, |
| 60 | &pars->cb_mult, &pars->cb_luma_mult, &pars->cb_offset, |
| 61 | &pars->cr_mult, &pars->cr_luma_mult, &pars->cr_offset); |
| 62 | if (num_read != 12) { |
| 63 | aom_internal_error(error_info, AOM_CODEC_ERROR, |
| 64 | "Unable to read entry params. Read %d != 12", |
| 65 | num_read); |
| 66 | return; |
| 67 | } |
| 68 | if (!fscanf(file, "\tsY %d ", &pars->num_y_points)) { |
| 69 | aom_internal_error(error_info, AOM_CODEC_ERROR, |
| 70 | "Unable to read num y points"); |
| 71 | return; |
| 72 | } |
| 73 | for (int i = 0; i < pars->num_y_points; ++i) { |
| 74 | if (2 != fscanf(file, "%d %d", &pars->scaling_points_y[i][0], |
| 75 | &pars->scaling_points_y[i][1])) { |
| 76 | aom_internal_error(error_info, AOM_CODEC_ERROR, |
| 77 | "Unable to read y scaling points"); |
| 78 | return; |
| 79 | } |
| 80 | } |
| 81 | if (!fscanf(file, "\n\tsCb %d", &pars->num_cb_points)) { |
| 82 | aom_internal_error(error_info, AOM_CODEC_ERROR, |
| 83 | "Unable to read num cb points"); |
| 84 | return; |
| 85 | } |
| 86 | for (int i = 0; i < pars->num_cb_points; ++i) { |
| 87 | if (2 != fscanf(file, "%d %d", &pars->scaling_points_cb[i][0], |
| 88 | &pars->scaling_points_cb[i][1])) { |
| 89 | aom_internal_error(error_info, AOM_CODEC_ERROR, |
| 90 | "Unable to read cb scaling points"); |
| 91 | return; |
| 92 | } |
| 93 | } |
| 94 | if (!fscanf(file, "\n\tsCr %d", &pars->num_cr_points)) { |
| 95 | aom_internal_error(error_info, AOM_CODEC_ERROR, |
| 96 | "Unable to read num cr points"); |
| 97 | return; |
| 98 | } |
| 99 | for (int i = 0; i < pars->num_cr_points; ++i) { |
| 100 | if (2 != fscanf(file, "%d %d", &pars->scaling_points_cr[i][0], |
| 101 | &pars->scaling_points_cr[i][1])) { |
| 102 | aom_internal_error(error_info, AOM_CODEC_ERROR, |
| 103 | "Unable to read cr scaling points"); |
| 104 | return; |
| 105 | } |
| 106 | } |
| 107 | |
| 108 | fscanf(file, "\n\tcY"); |
| 109 | const int n = 2 * pars->ar_coeff_lag * (pars->ar_coeff_lag + 1); |
| 110 | for (int i = 0; i < n; ++i) { |
| 111 | if (1 != fscanf(file, "%d", &pars->ar_coeffs_y[i])) { |
| 112 | aom_internal_error(error_info, AOM_CODEC_ERROR, |
| 113 | "Unable to read Y coeffs"); |
| 114 | return; |
| 115 | } |
| 116 | } |
| 117 | fscanf(file, "\n\tcCb"); |
| 118 | for (int i = 0; i <= n; ++i) { |
| 119 | if (1 != fscanf(file, "%d", &pars->ar_coeffs_cb[i])) { |
| 120 | aom_internal_error(error_info, AOM_CODEC_ERROR, |
| 121 | "Unable to read Cb coeffs"); |
| 122 | return; |
| 123 | } |
| 124 | } |
| 125 | fscanf(file, "\n\tcCr"); |
| 126 | for (int i = 0; i <= n; ++i) { |
| 127 | if (1 != fscanf(file, "%d", &pars->ar_coeffs_cr[i])) { |
| 128 | aom_internal_error(error_info, AOM_CODEC_ERROR, |
| 129 | "Unable to read Cr coeffs"); |
| 130 | return; |
| 131 | } |
| 132 | } |
| 133 | fscanf(file, "\n"); |
| 134 | } |
| 135 | } |
| 136 | |
| 137 | void grain_table_entry_write(FILE *file, aom_film_grain_table_entry_t *entry) { |
| 138 | const aom_film_grain_t *pars = &entry->params; |
| 139 | fprintf(file, "E %" PRId64 " %" PRId64 " %d %d %d\n", entry->start_time, |
| 140 | entry->end_time, pars->apply_grain, pars->random_seed, |
| 141 | pars->update_parameters); |
| 142 | if (pars->update_parameters) { |
| 143 | fprintf(file, "\tp %d %d %d %d %d %d %d %d %d %d %d %d\n", |
| 144 | pars->ar_coeff_lag, pars->ar_coeff_shift, pars->grain_scale_shift, |
| 145 | pars->scaling_shift, pars->chroma_scaling_from_luma, |
| 146 | pars->overlap_flag, pars->cb_mult, pars->cb_luma_mult, |
| 147 | pars->cb_offset, pars->cr_mult, pars->cr_luma_mult, |
| 148 | pars->cr_offset); |
| 149 | fprintf(file, "\tsY %d ", pars->num_y_points); |
| 150 | for (int i = 0; i < pars->num_y_points; ++i) { |
| 151 | fprintf(file, " %d %d", pars->scaling_points_y[i][0], |
| 152 | pars->scaling_points_y[i][1]); |
| 153 | } |
| 154 | fprintf(file, "\n\tsCb %d", pars->num_cb_points); |
| 155 | for (int i = 0; i < pars->num_cb_points; ++i) { |
| 156 | fprintf(file, " %d %d", pars->scaling_points_cb[i][0], |
| 157 | pars->scaling_points_cb[i][1]); |
| 158 | } |
| 159 | fprintf(file, "\n\tsCr %d", pars->num_cr_points); |
| 160 | for (int i = 0; i < pars->num_cr_points; ++i) { |
| 161 | fprintf(file, " %d %d", pars->scaling_points_cr[i][0], |
| 162 | pars->scaling_points_cr[i][1]); |
| 163 | } |
| 164 | fprintf(file, "\n\tcY"); |
| 165 | const int n = 2 * pars->ar_coeff_lag * (pars->ar_coeff_lag + 1); |
| 166 | for (int i = 0; i < n; ++i) { |
| 167 | fprintf(file, " %d", pars->ar_coeffs_y[i]); |
| 168 | } |
| 169 | fprintf(file, "\n\tcCb"); |
| 170 | for (int i = 0; i <= n; ++i) { |
| 171 | fprintf(file, " %d", pars->ar_coeffs_cb[i]); |
| 172 | } |
| 173 | fprintf(file, "\n\tcCr"); |
| 174 | for (int i = 0; i <= n; ++i) { |
| 175 | fprintf(file, " %d", pars->ar_coeffs_cr[i]); |
| 176 | } |
| 177 | fprintf(file, "\n"); |
| 178 | } |
| 179 | } |
| 180 | |
| 181 | void aom_film_grain_table_append(aom_film_grain_table_t *t, int64_t time_stamp, |
| 182 | int64_t end_time, |
| 183 | const aom_film_grain_t *grain) { |
| 184 | if (!t->tail || memcmp(grain, &t->tail->params, sizeof(*grain))) { |
| 185 | aom_film_grain_table_entry_t *new_tail = aom_malloc(sizeof(*new_tail)); |
| 186 | memset(new_tail, 0, sizeof(*new_tail)); |
| 187 | if (t->tail) t->tail->next = new_tail; |
| 188 | if (!t->head) t->head = new_tail; |
| 189 | t->tail = new_tail; |
| 190 | |
| 191 | new_tail->start_time = time_stamp; |
| 192 | new_tail->end_time = end_time; |
| 193 | new_tail->params = *grain; |
| 194 | } else { |
| 195 | t->tail->end_time = AOMMAX(t->tail->end_time, end_time); |
| 196 | t->tail->start_time = AOMMIN(t->tail->start_time, time_stamp); |
| 197 | } |
| 198 | } |
| 199 | |
| 200 | int aom_film_grain_table_lookup(aom_film_grain_table_t *t, int64_t time_stamp, |
| 201 | int64_t end_time, int erase, |
| 202 | aom_film_grain_t *grain) { |
| 203 | aom_film_grain_table_entry_t *entry = t->head; |
| 204 | aom_film_grain_table_entry_t *prev_entry = 0; |
| 205 | int16_t random_seed = grain ? grain->random_seed : 0; |
| 206 | if (grain) memset(grain, 0, sizeof(*grain)); |
| 207 | |
| 208 | while (entry) { |
| 209 | aom_film_grain_table_entry_t *next = entry->next; |
| 210 | if (time_stamp >= entry->start_time && time_stamp < entry->end_time) { |
| 211 | if (grain) { |
| 212 | *grain = entry->params; |
| 213 | if (time_stamp != 0) grain->random_seed = random_seed; |
| 214 | } |
| 215 | if (!erase) return 1; |
| 216 | |
| 217 | const int64_t entry_end_time = entry->end_time; |
| 218 | if (time_stamp <= entry->start_time && end_time >= entry->end_time) { |
| 219 | if (t->tail == entry) t->tail = prev_entry; |
| 220 | if (prev_entry) { |
| 221 | prev_entry->next = entry->next; |
| 222 | } else { |
| 223 | t->head = entry->next; |
| 224 | } |
| 225 | aom_free(entry); |
| 226 | } else if (time_stamp <= entry->start_time && |
| 227 | end_time < entry->end_time) { |
| 228 | entry->start_time = end_time; |
| 229 | } else if (time_stamp > entry->start_time && |
| 230 | end_time >= entry->end_time) { |
| 231 | entry->end_time = time_stamp; |
| 232 | } else { |
| 233 | aom_film_grain_table_entry_t *new_entry = |
| 234 | aom_malloc(sizeof(*new_entry)); |
| 235 | new_entry->next = entry->next; |
| 236 | new_entry->start_time = end_time; |
| 237 | new_entry->end_time = entry->end_time; |
| 238 | new_entry->params = entry->params; |
| 239 | entry->next = new_entry; |
| 240 | entry->end_time = time_stamp; |
| 241 | if (t->tail == entry) t->tail = new_entry; |
| 242 | } |
| 243 | // If segments aren't aligned, delete from the beggining of subsequent |
| 244 | // segments |
| 245 | if (end_time > entry_end_time) { |
| 246 | aom_film_grain_table_lookup(t, entry->end_time, end_time, 1, 0); |
| 247 | } |
| 248 | return 1; |
| 249 | } |
| 250 | prev_entry = entry; |
| 251 | entry = next; |
| 252 | } |
| 253 | return 0; |
| 254 | } |
| 255 | |
| 256 | aom_codec_err_t aom_film_grain_table_read( |
| 257 | aom_film_grain_table_t *t, const char *filename, |
| 258 | struct aom_internal_error_info *error_info) { |
| 259 | FILE *file = fopen(filename, "rb"); |
| 260 | if (!file) { |
| 261 | aom_internal_error(error_info, AOM_CODEC_ERROR, "Unable to open %s", |
| 262 | filename); |
| 263 | return error_info->error_code; |
| 264 | } |
| 265 | error_info->error_code = AOM_CODEC_OK; |
| 266 | |
| 267 | // Read in one extra character as there should be white space after |
| 268 | // the header. |
| 269 | char magic[9]; |
| 270 | if (!fread(magic, 9, 1, file) || memcmp(magic, kFileMagic, 8)) { |
| 271 | aom_internal_error(error_info, AOM_CODEC_ERROR, |
| 272 | "Unable to read (or invalid) file magic"); |
| 273 | fclose(file); |
| 274 | return error_info->error_code; |
| 275 | } |
| 276 | |
| 277 | aom_film_grain_table_entry_t *prev_entry = 0; |
| 278 | while (!feof(file)) { |
| 279 | aom_film_grain_table_entry_t *entry = aom_malloc(sizeof(*entry)); |
| 280 | memset(entry, 0, sizeof(*entry)); |
| 281 | grain_table_entry_read(file, error_info, entry); |
| 282 | entry->next = 0; |
| 283 | |
| 284 | if (prev_entry) prev_entry->next = entry; |
| 285 | if (!t->head) t->head = entry; |
| 286 | t->tail = entry; |
| 287 | prev_entry = entry; |
| 288 | |
| 289 | if (error_info->error_code != AOM_CODEC_OK) break; |
| 290 | } |
| 291 | |
| 292 | fclose(file); |
| 293 | return error_info->error_code; |
| 294 | } |
| 295 | |
| 296 | aom_codec_err_t aom_film_grain_table_write( |
| 297 | const aom_film_grain_table_t *t, const char *filename, |
| 298 | struct aom_internal_error_info *error_info) { |
| 299 | error_info->error_code = AOM_CODEC_OK; |
| 300 | |
| 301 | FILE *file = fopen(filename, "wb"); |
| 302 | if (!file) { |
| 303 | aom_internal_error(error_info, AOM_CODEC_ERROR, "Unable to open file %s", |
| 304 | filename); |
| 305 | return error_info->error_code; |
| 306 | } |
| 307 | |
| 308 | if (!fwrite(kFileMagic, 8, 1, file)) { |
| 309 | aom_internal_error(error_info, AOM_CODEC_ERROR, |
| 310 | "Unable to write file magic"); |
| 311 | fclose(file); |
| 312 | return error_info->error_code; |
| 313 | } |
| 314 | |
| 315 | fprintf(file, "\n"); |
| 316 | aom_film_grain_table_entry_t *entry = t->head; |
| 317 | while (entry) { |
| 318 | grain_table_entry_write(file, entry); |
| 319 | entry = entry->next; |
| 320 | } |
| 321 | fclose(file); |
| 322 | return error_info->error_code; |
| 323 | } |
| 324 | |
| 325 | void aom_film_grain_table_free(aom_film_grain_table_t *t) { |
| 326 | aom_film_grain_table_entry_t *entry = t->head; |
| 327 | while (entry) { |
| 328 | aom_film_grain_table_entry_t *next = entry->next; |
| 329 | aom_free(entry); |
| 330 | entry = next; |
| 331 | } |
| 332 | memset(t, 0, sizeof(*t)); |
| 333 | } |