Revision e4141433 libavformat/wc3movie.c
libavformat/wc3movie.c | ||
---|---|---|
125 | 125 |
static int wc3_read_header(AVFormatContext *s, |
126 | 126 |
AVFormatParameters *ap) |
127 | 127 |
{ |
128 |
Wc3DemuxContext *wc3 = (Wc3DemuxContext *)s->priv_data;
|
|
128 |
Wc3DemuxContext *wc3 = s->priv_data; |
|
129 | 129 |
ByteIOContext *pb = &s->pb; |
130 | 130 |
unsigned int fourcc_tag; |
131 | 131 |
unsigned int size; |
... | ... | |
271 | 271 |
static int wc3_read_packet(AVFormatContext *s, |
272 | 272 |
AVPacket *pkt) |
273 | 273 |
{ |
274 |
Wc3DemuxContext *wc3 = (Wc3DemuxContext *)s->priv_data;
|
|
274 |
Wc3DemuxContext *wc3 = s->priv_data; |
|
275 | 275 |
ByteIOContext *pb = &s->pb; |
276 | 276 |
unsigned int fourcc_tag; |
277 | 277 |
unsigned int size; |
... | ... | |
376 | 376 |
|
377 | 377 |
static int wc3_read_close(AVFormatContext *s) |
378 | 378 |
{ |
379 |
Wc3DemuxContext *wc3 = (Wc3DemuxContext *)s->priv_data;
|
|
379 |
Wc3DemuxContext *wc3 = s->priv_data; |
|
380 | 380 |
|
381 | 381 |
av_free(wc3->palettes); |
382 | 382 |
|
Also available in: Unified diff