diff src/impl/hoofbaby/codec/libav/avutil.d @ 4:a1202aac1124

Started implementing separate encoder class
author fraserofthenight
date Wed, 08 Jul 2009 19:16:39 -0700
parents 3425707ddbf6
children
line wrap: on
line diff
--- a/src/impl/hoofbaby/codec/libav/avutil.d	Wed Jul 08 07:29:48 2009 -0700
+++ b/src/impl/hoofbaby/codec/libav/avutil.d	Wed Jul 08 19:16:39 2009 -0700
@@ -83,10 +83,6 @@
 	PIX_FMT_NB = 60,
 }
 
-alias char* function(void*) _BCD_func__901;
-alias void function(void*, int, char*, char*) _BCD_func__880;
-alias int function() _BCD_func__823;
-
 alias int AVRounding;
 enum : AVRounding
 {
@@ -100,7 +96,7 @@
 struct AVClass
 {
 	char* class_name;
-	_BCD_func__901 item_name;
+	char* function(void*) item_name;
 	void* option;
 }
 
@@ -119,7 +115,7 @@
 extern(C)
 {
 	void av_log_default_callback(void*, int, char*, char*);
-	void av_log_set_callback(_BCD_func__880);
+	void av_log_set_callback(void function(void*, int, char*, char*));
 	void av_log_set_level(int);
 	int av_log_get_level();
 	void av_vlog(void*, int, char*, char*);