| 146 | } |
| 147 | |
| 148 | av_cold struct SwrContext *swr_alloc(void){ |
| 149 | SwrContext *s= av_mallocz(sizeof(SwrContext)); |
| 150 | if(s){ |
| 151 | s->av_class= &av_class; |
| 152 | av_opt_set_defaults(s); |
| 153 | s->firstpts = AV_NOPTS_VALUE; |
| 154 | } |
| 155 | return s; |
| 156 | } |
no test coverage detected