Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
F
ffmpeg
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
ffmpeg
Commits
137f0759
Commit
137f0759
authored
Sep 05, 2015
by
Hendrik Leppkes
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
lavu/hmac: remove deprecated type ids
parent
545559e4
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
0 additions
and
13 deletions
+0
-13
hmac.c
libavutil/hmac.c
+0
-6
hmac.h
libavutil/hmac.h
+0
-4
version.h
libavutil/version.h
+0
-3
No files found.
libavutil/hmac.c
View file @
137f0759
...
@@ -81,9 +81,6 @@ AVHMAC *av_hmac_alloc(enum AVHMACType type)
...
@@ -81,9 +81,6 @@ AVHMAC *av_hmac_alloc(enum AVHMACType type)
c
->
hash
=
av_sha_alloc
();
c
->
hash
=
av_sha_alloc
();
break
;
break
;
case
AV_HMAC_SHA224
:
case
AV_HMAC_SHA224
:
#if FF_API_HMAC
case
AV_HMAC_SHA224_DEPRECATED
:
#endif
c
->
blocklen
=
64
;
c
->
blocklen
=
64
;
c
->
hashlen
=
28
;
c
->
hashlen
=
28
;
c
->
init
=
sha224_init
;
c
->
init
=
sha224_init
;
...
@@ -92,9 +89,6 @@ AVHMAC *av_hmac_alloc(enum AVHMACType type)
...
@@ -92,9 +89,6 @@ AVHMAC *av_hmac_alloc(enum AVHMACType type)
c
->
hash
=
av_sha_alloc
();
c
->
hash
=
av_sha_alloc
();
break
;
break
;
case
AV_HMAC_SHA256
:
case
AV_HMAC_SHA256
:
#if FF_API_HMAC
case
AV_HMAC_SHA256_DEPRECATED
:
#endif
c
->
blocklen
=
64
;
c
->
blocklen
=
64
;
c
->
hashlen
=
32
;
c
->
hashlen
=
32
;
c
->
init
=
sha256_init
;
c
->
init
=
sha256_init
;
...
...
libavutil/hmac.h
View file @
137f0759
...
@@ -35,10 +35,6 @@ enum AVHMACType {
...
@@ -35,10 +35,6 @@ enum AVHMACType {
AV_HMAC_SHA1
,
AV_HMAC_SHA1
,
AV_HMAC_SHA224
,
AV_HMAC_SHA224
,
AV_HMAC_SHA256
,
AV_HMAC_SHA256
,
#if FF_API_HMAC
AV_HMAC_SHA224_DEPRECATED
=
10
,
AV_HMAC_SHA256_DEPRECATED
,
#endif
AV_HMAC_SHA384
=
12
,
AV_HMAC_SHA384
=
12
,
AV_HMAC_SHA512
,
AV_HMAC_SHA512
,
};
};
...
...
libavutil/version.h
View file @
137f0759
...
@@ -102,9 +102,6 @@
...
@@ -102,9 +102,6 @@
#ifndef FF_API_DLOG
#ifndef FF_API_DLOG
#define FF_API_DLOG (LIBAVUTIL_VERSION_MAJOR < 56)
#define FF_API_DLOG (LIBAVUTIL_VERSION_MAJOR < 56)
#endif
#endif
#ifndef FF_API_HMAC
#define FF_API_HMAC (LIBAVUTIL_VERSION_MAJOR < 55)
#endif
#ifndef FF_API_CRYPTO_CONTEXT
#ifndef FF_API_CRYPTO_CONTEXT
#define FF_API_CRYPTO_CONTEXT (LIBAVUTIL_VERSION_MAJOR < 56)
#define FF_API_CRYPTO_CONTEXT (LIBAVUTIL_VERSION_MAJOR < 56)
#endif
#endif
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment