mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-01-18 21:30:55 +00:00
add const
Originally committed as revision 11756 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
ec9f649371
commit
2b12d6fc79
@ -244,7 +244,8 @@ static int mxf_get_stream_index(AVFormatContext *s, KLVPacket *klv)
|
||||
static int mxf_get_d10_aes3_packet(ByteIOContext *pb, AVStream *st, AVPacket *pkt, int64_t length)
|
||||
{
|
||||
uint8_t buffer[61444];
|
||||
uint8_t *buf_ptr, *end_ptr, *data_ptr;
|
||||
const uint8_t *buf_ptr, *end_ptr;
|
||||
uint8_t *data_ptr;
|
||||
int i;
|
||||
|
||||
if (length > 61444) /* worst case PAL 1920 samples 8 channels */
|
||||
|
Loading…
Reference in New Issue
Block a user