diff options
author | Vittorio Giovara <vittorio.giovara@gmail.com> | 2015-07-28 14:30:33 +0100 |
---|---|---|
committer | Vittorio Giovara <vittorio.giovara@gmail.com> | 2015-08-28 16:04:27 +0200 |
commit | 2f9b652e8c646eabef74a6742f0d7d4c9118fd0e (patch) | |
tree | 34ab94b26c31b00c9c26f122fffcbf80a4f58ae2 /libavutil/aes.c | |
parent | 8f12ef9860d0e164e4647fd5d5cebdb3cfb34a79 (diff) | |
download | ffmpeg-2f9b652e8c646eabef74a6742f0d7d4c9118fd0e.tar.gz |
lavu: Drop deprecated context size variables
Deprecated in 10/2012.
Diffstat (limited to 'libavutil/aes.c')
-rw-r--r-- | libavutil/aes.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/libavutil/aes.c b/libavutil/aes.c index 3ba5e9aef4..02a9281b77 100644 --- a/libavutil/aes.c +++ b/libavutil/aes.c @@ -40,10 +40,6 @@ typedef struct AVAES { int rounds; } AVAES; -#if FF_API_CONTEXT_SIZE -const int av_aes_size= sizeof(AVAES); -#endif - struct AVAES *av_aes_alloc(void) { return av_mallocz(sizeof(struct AVAES)); |