1
mirror of https://git.videolan.org/git/ffmpeg.git synced 2024-08-02 17:29:58 +02:00

mlpdec: set AV_FRAME_DATA_MATRIXENCODING side data.

This commit is contained in:
Tim Walker 2013-12-11 02:03:33 +00:00
parent 4b7f1a7ced
commit e92123093d

View File

@ -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;