Commit 1a7ea0c2 authored by reimar's avatar reimar

String pointers of ogg_codec_t should have const attribute.


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@11860 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 24a110ad
......@@ -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