diff options
author | Diego Biurrun <diego@biurrun.de> | 2017-06-12 11:01:14 +0200 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2017-06-13 13:30:34 +0200 |
commit | 04f691cd4fb7d226e54df886a21ba201cb5019f4 (patch) | |
tree | f04bde19f93afa3477677f754f06472287cc48c9 | |
parent | e2edf1529cb35eaf043e3f8e5cba498ed06e2563 (diff) | |
download | ffmpeg-04f691cd4fb7d226e54df886a21ba201cb5019f4.tar.gz |
mmal: Add missing .item_name to AVClass declaration
-rw-r--r-- | libavcodec/mmaldec.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/mmaldec.c b/libavcodec/mmaldec.c index e64ddbabce..023ebe80de 100644 --- a/libavcodec/mmaldec.c +++ b/libavcodec/mmaldec.c @@ -817,6 +817,7 @@ static const AVOption options[]={ #define FFMMAL_DEC_CLASS(NAME) \ static const AVClass ffmmal_##NAME##_dec_class = { \ .class_name = "mmal_" #NAME "_dec", \ + .item_name = av_default_item_name, \ .option = options, \ .version = LIBAVUTIL_VERSION_INT, \ }; |