[NUT-devel] [nut]: r258 - in trunk/libnut: demuxer.c libnut.h

ods15 subversion at mplayerhq.hu
Tue Nov 21 08:20:09 CET 2006


Author: ods15
Date: Tue Nov 21 08:20:08 2006
New Revision: 258

Modified:
   trunk/libnut/demuxer.c
   trunk/libnut/libnut.h

Log:
rename demuxer option from 'priv' to 'info_priv'


Modified: trunk/libnut/demuxer.c
==============================================================================
--- trunk/libnut/demuxer.c	(original)
+++ trunk/libnut/demuxer.c	Tue Nov 21 08:20:08 2006
@@ -626,7 +626,7 @@
 				return -1;
 			case INFO_STARTCODE: if (nut->dopts.new_info && !nut->seek_status) {
 				CHECK(get_info_header(nut, &info));
-				nut->dopts.new_info(nut->dopts.priv, &info);
+				nut->dopts.new_info(nut->dopts.info_priv, &info);
 				return -1;
 			} // else - fall through!
 			default:

Modified: trunk/libnut/libnut.h
==============================================================================
--- trunk/libnut/libnut.h	(original)
+++ trunk/libnut/libnut.h	Tue Nov 21 08:20:08 2006
@@ -112,7 +112,7 @@
 	nut_alloc_t alloc;
 	int read_index; // implies cache_syncpoints
 	int cache_syncpoints;
-	void * priv;
+	void * info_priv;
 	void (*new_info)(void * priv, nut_info_packet_t * info);
 } nut_demuxer_opts_t;
 



More information about the NUT-devel mailing list