obs-ffmpeg: Fix SEI data output

SEI was using the wrong variable for its size.
master
jp9000 2019-03-03 04:08:11 -08:00
parent e1ebf1c610
commit b8c78a340d
1 changed files with 1 additions and 1 deletions

View File

@ -902,7 +902,7 @@ static bool nvenc_sei_data(void *data, uint8_t **sei, size_t *size)
}
*sei = enc->sei;
*size = enc->header_size;
*size = enc->sei_size;
return true;
}