OSDN Git Service

lavu: Drop deprecated context size variables
authorVittorio Giovara <vittorio.giovara@gmail.com>
Tue, 28 Jul 2015 13:30:33 +0000 (14:30 +0100)
committerVittorio Giovara <vittorio.giovara@gmail.com>
Fri, 28 Aug 2015 14:04:27 +0000 (16:04 +0200)
Deprecated in 10/2012.

libavutil/aes.c
libavutil/aes.h
libavutil/md5.c
libavutil/md5.h
libavutil/sha.c
libavutil/sha.h
libavutil/tree.c
libavutil/tree.h
libavutil/version.h

index 3ba5e9a..02a9281 100644 (file)
@@ -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));
index edff275..5b45124 100644 (file)
  * @{
  */
 
-#if FF_API_CONTEXT_SIZE
-extern attribute_deprecated const int av_aes_size;
-#endif
-
 struct AVAES;
 
 /**
index efb993e..f2e9061 100644 (file)
@@ -42,10 +42,6 @@ typedef struct AVMD5{
     uint32_t ABCD[4];
 } AVMD5;
 
-#if FF_API_CONTEXT_SIZE
-const int av_md5_size = sizeof(AVMD5);
-#endif
-
 struct AVMD5 *av_md5_alloc(void)
 {
     return av_mallocz(sizeof(struct AVMD5));
index 29e4e7c..c26318c 100644 (file)
  * @{
  */
 
-#if FF_API_CONTEXT_SIZE
-extern attribute_deprecated const int av_md5_size;
-#endif
-
 struct AVMD5;
 
 struct AVMD5 *av_md5_alloc(void);
index 2d9b58c..9e78d19 100644 (file)
@@ -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));
index 4c9a0c9..86ea0b0 100644 (file)
  * @{
  */
 
-#if FF_API_CONTEXT_SIZE
-extern attribute_deprecated const int av_sha_size;
-#endif
-
 struct AVSHA;
 
 /**
index d48d01a..998851f 100644 (file)
@@ -29,10 +29,6 @@ typedef struct AVTreeNode {
     int state;
 } AVTreeNode;
 
-#if FF_API_CONTEXT_SIZE
-const int av_tree_node_size = sizeof(AVTreeNode);
-#endif
-
 struct AVTreeNode *av_tree_node_alloc(void)
 {
     return av_mallocz(sizeof(struct AVTreeNode));
index 424656e..e2f191c 100644 (file)
@@ -43,9 +43,6 @@
 
 
 struct AVTreeNode;
-#if FF_API_CONTEXT_SIZE
-extern attribute_deprecated const int av_tree_node_size;
-#endif
 
 /**
  * Allocate an AVTreeNode.
index afb64ae..3b28b83 100644 (file)
@@ -78,9 +78,6 @@
  * @{
  */
 
-#ifndef FF_API_CONTEXT_SIZE
-#define FF_API_CONTEXT_SIZE             (LIBAVUTIL_VERSION_MAJOR < 55)
-#endif
 #ifndef FF_API_LLS_PRIVATE
 #define FF_API_LLS_PRIVATE              (LIBAVUTIL_VERSION_MAJOR < 55)
 #endif