Yes, y Tr3wory wrote > > Can't I just set some pointer in a context or somewhere else what I > can use in the callback like in most other callback driven library? >
Yes, you can. Generally, you call av_log(/*log level*/, /* context pointer */, "message", /*other arguments*/ ); Default log callback casts context pointer from void * to AVClass * and extracts all necessary information from it. You can create your own variable of type AVClass and pass its pointer to the log. -- View this message in context: http://libav-users.943685.n4.nabble.com/Libav-user-Questions-about-using-libav-in-a-multi-threaded-application-tp4297394p4299173.html Sent from the libav-users mailing list archive at Nabble.com. _______________________________________________ Libav-user mailing list [email protected] http://ffmpeg.org/mailman/listinfo/libav-user
