| 450 | } |
| 451 | |
| 452 | AVFrame *avcodec_alloc_frame(void){ |
| 453 | AVFrame *pic= av_malloc(sizeof(AVFrame)); |
| 454 | |
| 455 | if(pic==NULL) return NULL; |
| 456 | |
| 457 | avcodec_get_frame_defaults(pic); |
| 458 | |
| 459 | return pic; |
| 460 | } |
| 461 | |
| 462 | int attribute_align_arg avcodec_open(AVCodecContext *avctx, AVCodec *codec) |
| 463 | { |
no test coverage detected