String pointers of ogg_codec_t should have const attribute.

Originally committed as revision 11860 to svn://svn.ffmpeg.org/ffmpeg/trunk
pull/126/head
Reimar Döffinger 17 years ago
parent 23ef05756e
commit c901197693
  1. 4
      libavformat/oggdec.h

@ -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);

Loading…
Cancel
Save