| 934 | } |
| 935 | |
| 936 | void avcodec_init(void) |
| 937 | { |
| 938 | static int initialized = 0; |
| 939 | |
| 940 | if (initialized != 0) |
| 941 | return; |
| 942 | initialized = 1; |
| 943 | |
| 944 | dsputil_static_init(); |
| 945 | } |
| 946 | |
| 947 | void avcodec_flush_buffers(AVCodecContext *avctx) |
| 948 | { |
no test coverage detected