/
| 48 | } |
| 49 | /*********************************************/ |
| 50 | AVFrame *my_frame_alloc(void) |
| 51 | { |
| 52 | AVFrame *pic; |
| 53 | #if ( MYFFVER >= 55000) |
| 54 | pic = av_frame_alloc(); |
| 55 | #else |
| 56 | pic = avcodec_alloc_frame(); |
| 57 | #endif |
| 58 | return pic; |
| 59 | } |
| 60 | /*********************************************/ |
| 61 | void my_frame_free(AVFrame *frame) |
| 62 | { |
no outgoing calls
no test coverage detected