mux: remove unused LIST_ID

The 'LIST' fourcc is not a well known value in the context of webp.

Change-Id: I6a571f5f3acd6463cf3cad7c5d5ffa89d0597fb6
This commit is contained in:
James Zern 2012-04-25 18:18:25 -07:00
parent 6a0abdaa3a
commit dee466926b
2 changed files with 2 additions and 3 deletions

View File

@ -84,7 +84,7 @@ typedef enum {
UNKNOWN_ID,
NIL_ID,
LIST_ID
LAST_TAG_ID
} TAG_ID;
// Maximum chunk payload (data) size such that adding the header and padding
@ -103,7 +103,7 @@ typedef struct {
uint32_t chunkSize;
} ChunkInfo;
extern const ChunkInfo kChunks[LIST_ID + 1];
extern const ChunkInfo kChunks[LAST_TAG_ID];
//------------------------------------------------------------------------------
// Helper functions.

View File

@ -31,7 +31,6 @@ const ChunkInfo kChunks[] = {
{"unknown", mktag('U', 'N', 'K', 'N'), UNKNOWN_ID, UNDEFINED_CHUNK_SIZE},
{NULL, NIL_TAG, NIL_ID, UNDEFINED_CHUNK_SIZE},
{"list", mktag('L', 'I', 'S', 'T'), LIST_ID, UNDEFINED_CHUNK_SIZE}
};
//------------------------------------------------------------------------------