Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJames Almer <jamrial@gmail.com>2017-11-02 02:21:35 +0300
committerJames Almer <jamrial@gmail.com>2017-11-02 02:21:35 +0300
commitf3f1bbc6a88bcbc02acc97907d0d932f32ec4574 (patch)
treea0bec0f6bd0edcb831988c2d59b8c8fb6a5f3f40 /libavcodec/mmaldec.c
parent5352db1dd0f833a6a367aa127a64a18950331278 (diff)
parent04f691cd4fb7d226e54df886a21ba201cb5019f4 (diff)
Merge commit '04f691cd4fb7d226e54df886a21ba201cb5019f4'
* commit '04f691cd4fb7d226e54df886a21ba201cb5019f4': mmal: Add missing .item_name to AVClass declaration Merged-by: James Almer <jamrial@gmail.com>
Diffstat (limited to 'libavcodec/mmaldec.c')
-rw-r--r--libavcodec/mmaldec.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/mmaldec.c b/libavcodec/mmaldec.c
index 0b1195dc3e..f2ee3557aa 100644
--- a/libavcodec/mmaldec.c
+++ b/libavcodec/mmaldec.c
@@ -844,6 +844,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, \
};