[vlc-commits] access: remove info.i_pos
Rémi Denis-Courmont
git at videolan.org
Wed Sep 2 21:54:14 CEST 2015
vlc | branch: master | Rémi Denis-Courmont <remi at remlab.net> | Wed Sep 2 19:58:04 2015 +0300| [9c389564d4ffa18019412d208d476e096bb0e3cd] | committer: Rémi Denis-Courmont
access: remove info.i_pos
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=9c389564d4ffa18019412d208d476e096bb0e3cd
---
include/vlc_access.h | 2 --
1 file changed, 2 deletions(-)
diff --git a/include/vlc_access.h b/include/vlc_access.h
index 72834bf..e5a5749 100644
--- a/include/vlc_access.h
+++ b/include/vlc_access.h
@@ -103,7 +103,6 @@ struct access_t
/* Access has to maintain them uptodate */
struct
{
- uint64_t i_pos; /* idem */
bool b_eof; /* idem */
bool b_dir_sorted; /* Set it to true if items returned by
@@ -232,7 +231,6 @@ static inline int access_GetSize( access_t *p_access, uint64_t *size )
static inline void access_InitFields( access_t *p_a )
{
- p_a->info.i_pos = 0;
p_a->info.b_eof = false;
}
More information about the vlc-commits
mailing list