Browse Source

Mark "matroska" probe data string constant.

Originally committed as revision 14949 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.5
Reimar Döffinger 17 years ago
parent
commit
7b571fd7a4
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavformat/matroskadec.c

+ 1
- 1
libavformat/matroskadec.c View File

@@ -805,7 +805,7 @@ static int matroska_probe(AVProbeData *p)
{ {
uint64_t total = 0; uint64_t total = 0;
int len_mask = 0x80, size = 1, n = 1; int len_mask = 0x80, size = 1, n = 1;
char probe_data[] = "matroska";
static const char probe_data[] = "matroska";


/* EBML header? */ /* EBML header? */
if (AV_RB32(p->buf) != EBML_ID_HEADER) if (AV_RB32(p->buf) != EBML_ID_HEADER)


Loading…
Cancel
Save