mirror of https://git.ffmpeg.org/ffmpeg.git
String pointers of ogg_codec_t should have const attribute.
Originally committed as revision 11860 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
23ef05756e
commit
c901197693
|
@ -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…
Reference in New Issue