Commit c9011976 authored by Reimar Döffinger's avatar Reimar Döffinger

String pointers of ogg_codec_t should have const attribute.

Originally committed as revision 11860 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 23ef0575
......@@ -28,9 +28,9 @@
#include "avformat.h"
typedef struct ogg_codec {
int8_t *magic;
const int8_t *magic;
uint8_t magicsize;
int8_t *name;
const int8_t *name;
int (*header)(AVFormatContext *, int);
int (*packet)(AVFormatContext *, int);
uint64_t (*gptopts)(AVFormatContext *, int, uint64_t);
......
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