Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mpc-hc/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVittorio Giovara <vittorio.giovara@gmail.com>2015-07-28 16:30:33 +0300
committerVittorio Giovara <vittorio.giovara@gmail.com>2015-08-28 17:04:27 +0300
commit2f9b652e8c646eabef74a6742f0d7d4c9118fd0e (patch)
tree34ab94b26c31b00c9c26f122fffcbf80a4f58ae2 /libavutil/sha.c
parent8f12ef9860d0e164e4647fd5d5cebdb3cfb34a79 (diff)
lavu: Drop deprecated context size variables
Deprecated in 10/2012.
Diffstat (limited to 'libavutil/sha.c')
-rw-r--r--libavutil/sha.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/libavutil/sha.c b/libavutil/sha.c
index 2d9b58cda6..9e78d19d83 100644
--- a/libavutil/sha.c
+++ b/libavutil/sha.c
@@ -40,10 +40,6 @@ typedef struct AVSHA {
void (*transform)(uint32_t *state, const uint8_t buffer[64]);
} AVSHA;
-#if FF_API_CONTEXT_SIZE
-const int av_sha_size = sizeof(AVSHA);
-#endif
-
struct AVSHA *av_sha_alloc(void)
{
return av_mallocz(sizeof(struct AVSHA));