[FFmpeg-cvslog] r11756 - trunk/libavformat/mxf.c
bcoudurier
subversion
Fri Feb 1 15:58:35 CET 2008
Author: bcoudurier
Date: Fri Feb 1 15:58:35 2008
New Revision: 11756
Log:
add const
Modified:
trunk/libavformat/mxf.c
Modified: trunk/libavformat/mxf.c
==============================================================================
--- trunk/libavformat/mxf.c (original)
+++ trunk/libavformat/mxf.c Fri Feb 1 15:58:35 2008
@@ -244,7 +244,8 @@ static int mxf_get_stream_index(AVFormat
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 */
More information about the ffmpeg-cvslog
mailing list