[libbluray-devel] [Git][videolan/libbluray][master] 3 commits: Update .gitignore
Petri Hintukainen (@hpi)
gitlab at videolan.org
Sun Oct 2 10:07:35 UTC 2022
Petri Hintukainen pushed to branch master at VideoLAN / libbluray
Commits:
41e4d182 by Petri Hintukainen at 2022-10-02T13:02:48+03:00
Update .gitignore
- - - - -
b08a4625 by Petri Hintukainen at 2022-10-02T13:03:08+03:00
Update ChangeLog
- - - - -
43728232 by Petri Hintukainen at 2022-10-02T13:03:20+03:00
bits: comment out unused function
- - - - -
4 changed files:
- .gitignore
- ChangeLog
- src/util/bits.c
- src/util/bits.h
Changes:
=====================================
.gitignore
=====================================
@@ -25,11 +25,11 @@ libtool
.deps
.libs
src/libbluray/bluray-version.h
-bdsplice
+bd_splice
clpi_dump
index_dump
libbluray_test
-list_titles
+bd_list_titles
mobj_dump
mpls_dump
sound_dump
=====================================
ChangeLog
=====================================
@@ -1,3 +1,8 @@
+- Improve API documentation.
+- Improve JVM probing.
+- Improve support for FreeBSD and Solaris.
+- Improve .jar file search.
+
2022-09-19: Version 1.3.3
- Initial support for Java 18.
- Add support for OpenBSD operating system.
=====================================
src/util/bits.c
=====================================
@@ -83,6 +83,7 @@ int bs_init( BITSTREAM *bs, BD_FILE_H *fp )
return _bs_read(bs);
}
+#if 0
void bb_seek( BITBUFFER *bb, int64_t off, int whence)
{
int64_t b;
@@ -109,6 +110,7 @@ void bb_seek( BITBUFFER *bb, int64_t off, int whence)
bb->i_left = i_tmp;
}
}
+#endif
static int _bs_seek( BITSTREAM *bs, int64_t off, int whence)
{
=====================================
src/util/bits.h
=====================================
@@ -56,7 +56,7 @@ typedef struct {
BD_PRIVATE void bb_init( BITBUFFER *bb, const uint8_t *p_data, size_t i_data );
BD_PRIVATE int bs_init( BITSTREAM *bs, BD_FILE_H *fp ) BD_USED;
-BD_PRIVATE void bb_seek( BITBUFFER *bb, int64_t off, int whence);
+//BD_PRIVATE void bb_seek( BITBUFFER *bb, int64_t off, int whence);
//BD_PRIVATE void bs_seek( BITSTREAM *bs, int64_t off, int whence);
//BD_PRIVATE void bb_seek_byte( BITBUFFER *bb, int64_t off);
BD_PRIVATE int bs_seek_byte( BITSTREAM *s, int64_t off) BD_USED;
View it on GitLab: https://code.videolan.org/videolan/libbluray/-/compare/427988decb3728460a1f95544e977d6b28703bfb...437282329e67937fdeda93c864395d50a6f58519
--
View it on GitLab: https://code.videolan.org/videolan/libbluray/-/compare/427988decb3728460a1f95544e977d6b28703bfb...437282329e67937fdeda93c864395d50a6f58519
You're receiving this email because of your account on code.videolan.org.
VideoLAN code repository instance
More information about the libbluray-devel
mailing list