Skip to content
Snippets Groups Projects
utils.c 29.4 KiB
Newer Older
  • Learn to ignore specific revisions
  •     static int print_prefix=1;
    
    Michael Niedermayer's avatar
    Michael Niedermayer committed
        AVClass* avc= ptr ? *(AVClass**)ptr : NULL;
    
    Michael Niedermayer's avatar
    Michael Niedermayer committed
        if(print_prefix && avc) {
    	    fprintf(stderr, "[%s @ %p]", avc->item_name(ptr), avc);
    
    Falk Hüffner's avatar
    Falk Hüffner committed
        print_prefix= strstr(fmt, "\n") != NULL;
    
    static void (*av_log_callback)(void*, int, const char*, va_list) = av_log_default_callback;
    
    void av_log(void* avcl, int level, const char *fmt, ...)
    
    void av_vlog(void* avcl, int level, const char *fmt, va_list vl)
    
        av_log_callback(avcl, level, fmt, vl);
    
    }
    
    int av_log_get_level(void)
    {
        return av_log_level;
    }
    
    void av_log_set_level(int level)
    {
        av_log_level = level;
    }
    
    
    void av_log_set_callback(void (*callback)(void*, int, const char*, va_list))
    
    int avcodec_thread_init(AVCodecContext *s, int thread_count){
        return -1;
    }
    #endif
    
    
    unsigned int av_xiphlacing(unsigned char *s, unsigned int v)
    {
        unsigned int n = 0;
    
        while(v >= 0xff) {
            *s++ = 0xff;
            v -= 0xff;
            n++;
        }
        *s = v;
        n++;
        return n;
    }