diff options
-rw-r--r-- | libavcodec/mlpdec.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/libavcodec/mlpdec.c b/libavcodec/mlpdec.c index 615abf3cb3..76ce4c4367 100644 --- a/libavcodec/mlpdec.c +++ b/libavcodec/mlpdec.c @@ -1061,6 +1061,10 @@ static int output_data(MLPDecodeContext *m, unsigned int substr, } } + /* Update matrix encoding side data */ + if ((ret = ff_side_data_update_matrix_encoding(frame, s->matrix_encoding)) < 0) + return ret; + *got_frame_ptr = 1; return 0; |