Browse Source

lavu/film_grain_params: fix typo in type enum

Ref: xkcd #1015
tags/n4.4
Lynne 5 years ago
parent
commit
2ba04670c3
No known key found for this signature in database GPG Key ID: A2FEA5F03F034464
2 changed files with 3 additions and 3 deletions
  1. +1
    -1
      libavcodec/libdav1d.c
  2. +2
    -2
      libavutil/film_grain_params.h

+ 1
- 1
libavcodec/libdav1d.c View File

@@ -406,7 +406,7 @@ FF_ENABLE_DEPRECATION_WARNINGS
goto fail;
}

fgp->type = AV_FILM_GRAM_PARAMS_AV1;
fgp->type = AV_FILM_GRAIN_PARAMS_AV1;
fgp->seed = p->frame_hdr->film_grain.data.seed;
fgp->codec.aom.num_y_points = p->frame_hdr->film_grain.data.num_y_points;
fgp->codec.aom.chroma_scaling_from_luma = p->frame_hdr->film_grain.data.chroma_scaling_from_luma;


+ 2
- 2
libavutil/film_grain_params.h View File

@@ -22,12 +22,12 @@
#include "frame.h"

enum AVFilmGrainParamsType {
AV_FILM_GRAM_PARAMS_NONE = 0,
AV_FILM_GRAIN_PARAMS_NONE = 0,

/**
* The union is valid when interpreted as AVFilmGrainAOMParams (codec.aom)
*/
AV_FILM_GRAM_PARAMS_AV1,
AV_FILM_GRAIN_PARAMS_AV1,
};

/**


Loading…
Cancel
Save