summaryrefslogtreecommitdiff
path: root/libavcodec/dca.c
diff options
context:
space:
mode:
authorJames Almer <jamrial@gmail.com>2017-10-22 20:51:31 -0300
committerJames Almer <jamrial@gmail.com>2017-10-22 20:51:38 -0300
commit0cb8369bce32c559fc3ccd1eb0f93151e293b465 (patch)
tree36742dbb14699ed7e9e83cdc2d059c0fea7592a0 /libavcodec/dca.c
parent90eb0a2180fd682f8b73278fabc7eb66fa6300d2 (diff)
downloadffmpeg-0cb8369bce32c559fc3ccd1eb0f93151e293b465.tar.gz
avcodec/tak: make buf const in avpriv_dca_parse_core_frame_header()
Signed-off-by: James Almer <jamrial@gmail.com>
Diffstat (limited to 'libavcodec/dca.c')
-rw-r--r--libavcodec/dca.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/dca.c b/libavcodec/dca.c
index 307b21471e..942fe6c3c9 100644
--- a/libavcodec/dca.c
+++ b/libavcodec/dca.c
@@ -146,7 +146,7 @@ int ff_dca_parse_core_frame_header(DCACoreFrameHeader *h, GetBitContext *gb)
return 0;
}
-int avpriv_dca_parse_core_frame_header(DCACoreFrameHeader *h, uint8_t *buf, int size)
+int avpriv_dca_parse_core_frame_header(DCACoreFrameHeader *h, const uint8_t *buf, int size)
{
GetBitContext gb;