Commit 3e962f31 authored by David Conrad's avatar David Conrad

Fix "warning: assignment discards qualifiers from pointer target type"

Originally committed as revision 19424 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 870ee6f7
...@@ -47,7 +47,7 @@ typedef struct TheoraContext{ ...@@ -47,7 +47,7 @@ typedef struct TheoraContext{
*/ */
static int concatenate_packet(unsigned int* offset, AVCodecContext* avc_context, const ogg_packet* packet) static int concatenate_packet(unsigned int* offset, AVCodecContext* avc_context, const ogg_packet* packet)
{ {
char* message = NULL; const char* message = NULL;
uint8_t* newdata = NULL; uint8_t* newdata = NULL;
int newsize = avc_context->extradata_size + 2 + packet->bytes; int newsize = avc_context->extradata_size + 2 + packet->bytes;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment