diff options
author | Vittorio Giovara <vittorio.giovara@gmail.com> | 2018-11-02 15:23:16 -0400 |
---|---|---|
committer | Vittorio Giovara <vittorio.giovara@gmail.com> | 2018-11-05 12:36:05 -0500 |
commit | cdc487bfc841ce47e64bdd774f7bcc40e3f4a626 (patch) | |
tree | 526a68fe956665b4e9fae8c83e0d59c40a8b7363 /libavcodec/proresdec2.c | |
parent | febaa63b0f7f7ef7e80cfc5031e1d0982d9c74ea (diff) | |
download | ffmpeg-cdc487bfc841ce47e64bdd774f7bcc40e3f4a626.tar.gz |
prores: Use profile names in the various encoders and decoders
Export FF_PROFILE_PRORES_* symbols publicly, add a missing one.
Diffstat (limited to 'libavcodec/proresdec2.c')
-rw-r--r-- | libavcodec/proresdec2.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavcodec/proresdec2.c b/libavcodec/proresdec2.c index d818e5d8da..6b3021bdfa 100644 --- a/libavcodec/proresdec2.c +++ b/libavcodec/proresdec2.c @@ -33,6 +33,7 @@ #include "get_bits.h" #include "idctdsp.h" #include "internal.h" +#include "profiles.h" #include "simple_idct.h" #include "proresdec.h" #include "proresdata.h" @@ -730,4 +731,5 @@ AVCodec ff_prores_decoder = { .close = decode_close, .decode = decode_frame, .capabilities = AV_CODEC_CAP_DR1 | AV_CODEC_CAP_SLICE_THREADS | AV_CODEC_CAP_FRAME_THREADS, + .profiles = NULL_IF_CONFIG_SMALL(ff_prores_profiles), }; |