diff options
author | trav90 <travawine@protonmail.ch> | 2018-04-26 16:46:31 -0500 |
---|---|---|
committer | trav90 <travawine@protonmail.ch> | 2018-04-26 16:46:31 -0500 |
commit | 56a2df6b25bc93ea9a59b8e0bf8029f752f68573 (patch) | |
tree | fe4ca9816c362f2099e18df75fceca85561f9f5a /media/ffvpx/libavcodec/options.c | |
parent | 73aace89c1cd9bc77f420109ce4f94fed687c5d6 (diff) | |
download | uxp-56a2df6b25bc93ea9a59b8e0bf8029f752f68573.tar.gz |
[ffvpx] Restore AVOptions and dictionary features
FFmpeg requires specific default values in AVCodecContext to be set. Instead of manually setting these each time we resync with upstream, let's use FFmpeg's own AVOptions which automatically sets all the values to their default.
Diffstat (limited to 'media/ffvpx/libavcodec/options.c')
-rw-r--r-- | media/ffvpx/libavcodec/options.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/media/ffvpx/libavcodec/options.c b/media/ffvpx/libavcodec/options.c index f25df2ab36..d8e3dbfa33 100644 --- a/media/ffvpx/libavcodec/options.c +++ b/media/ffvpx/libavcodec/options.c @@ -34,7 +34,7 @@ #include <string.h> FF_DISABLE_DEPRECATION_WARNINGS -#include "ff_options_table.h" +#include "options_table.h" FF_ENABLE_DEPRECATION_WARNINGS static const char* context_to_name(void* ptr) { |