diff options
author | Baptiste Coudurier <baptiste.coudurier@gmail.com> | 2007-01-14 23:17:10 +0000 |
---|---|---|
committer | Baptiste Coudurier <baptiste.coudurier@gmail.com> | 2007-01-14 23:17:10 +0000 |
commit | 9bdeba37a095bf7e10843f84470ed8c79a9433bd (patch) | |
tree | 6fab15c0b59a0dcc51804d2b1870793880a36d4a /libavformat/mxf.c | |
parent | 55de95b9c7727caa02543ba7018a307ec0166b99 (diff) | |
download | ffmpeg-9bdeba37a095bf7e10843f84470ed8c79a9433bd.tar.gz |
remove warning, key is const
Originally committed as revision 7509 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/mxf.c')
-rw-r--r-- | libavformat/mxf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/mxf.c b/libavformat/mxf.c index cb05cd10c7..24bad4ba51 100644 --- a/libavformat/mxf.c +++ b/libavformat/mxf.c @@ -141,7 +141,7 @@ typedef struct MXFContext { UID content_storage_uid; MXFMetadataSet **metadata_sets; int metadata_sets_count; - uint8_t *sync_key; + const uint8_t *sync_key; AVFormatContext *fc; } MXFContext; |