]> git.sesse.net Git - ffmpeg/blobdiff - libavutil/aes.c
Merge commit '8ac0f6767bf63d3e6b308ee6648ff02598b81e03'
[ffmpeg] / libavutil / aes.c
index 7950902280f18e94047e438672f477e956ac0a07..a3eb295e24421d580913aa2e9c2c0fd0c2674d06 100644 (file)
@@ -41,6 +41,11 @@ typedef struct AVAES {
 
 const int av_aes_size= sizeof(AVAES);
 
+struct AVAES *av_aes_alloc(void)
+{
+    return av_mallocz(sizeof(struct AVAES));
+}
+
 static const uint8_t rcon[10] = {
   0x01, 0x02, 0x04, 0x08, 0x10, 0x20, 0x40, 0x80, 0x1b, 0x36
 };