Mercurial > libavformat.hg
changeset 2821:5a12b619e974 libavformat
remove useless declaration
author | bcoudurier |
---|---|
date | Sun, 16 Dec 2007 18:24:32 +0000 |
parents | 95ce00ad6f3e |
children | bdb887c3e9e9 |
files | mov.c |
diffstat | 1 files changed, 1 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- a/mov.c Sun Dec 16 18:20:27 2007 +0000 +++ b/mov.c Sun Dec 16 18:24:32 2007 +0000 @@ -135,12 +135,10 @@ 0: continue to parse next atom -1: error occured, exit */ -typedef int (*mov_parse_function)(MOVContext *ctx, ByteIOContext *pb, MOV_atom_t atom); - /* links atom IDs to parse functions */ typedef struct MOVParseTableEntry { uint32_t type; - mov_parse_function func; + int (*func)(MOVContext *ctx, ByteIOContext *pb, MOV_atom_t atom); } MOVParseTableEntry; static const MOVParseTableEntry mov_default_parse_table[];