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.