Mercurial > libavcodec.hg
comparison dca_parser.c @ 6517:48759bfbd073 libavcodec
Apply 'cold' attribute to init/uninit functions in libavcodec
| author | zuxy |
|---|---|
| date | Fri, 21 Mar 2008 03:11:20 +0000 |
| parents | 0d1cc37d9430 |
| children | 05987f234569 |
comparison
equal
deleted
inserted
replaced
| 6516:dbb902bb2347 | 6517:48759bfbd073 |
|---|---|
| 82 pc->frame_start_found = start_found; | 82 pc->frame_start_found = start_found; |
| 83 pc->state = state; | 83 pc->state = state; |
| 84 return END_NOT_FOUND; | 84 return END_NOT_FOUND; |
| 85 } | 85 } |
| 86 | 86 |
| 87 static int dca_parse_init(AVCodecParserContext * s) | 87 static av_cold int dca_parse_init(AVCodecParserContext * s) |
| 88 { | 88 { |
| 89 DCAParseContext *pc1 = s->priv_data; | 89 DCAParseContext *pc1 = s->priv_data; |
| 90 | 90 |
| 91 pc1->lastmarker = 0; | 91 pc1->lastmarker = 0; |
| 92 return 0; | 92 return 0; |
