Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
FFmpeg
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
libremedia
Tethys
FFmpeg
Commits
5d8122db
Commit
5d8122db
authored
13 years ago
by
Mans Rullgard
Browse files
Options
Downloads
Patches
Plain Diff
get_bits: remove strange/obsolete comments
Signed-off-by:
Mans Rullgard
<
mans@mansr.com
>
parent
e42bb0ee
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
libavcodec/get_bits.h
+1
-9
1 addition, 9 deletions
libavcodec/get_bits.h
with
1 addition
and
9 deletions
libavcodec/get_bits.h
+
1
−
9
View file @
5d8122db
...
@@ -49,8 +49,6 @@
...
@@ -49,8 +49,6 @@
#define UNCHECKED_BITSTREAM_READER !CONFIG_SAFE_BITSTREAM_READER
#define UNCHECKED_BITSTREAM_READER !CONFIG_SAFE_BITSTREAM_READER
#endif
#endif
/* bit input */
/* buffer, buffer_end and size_in_bits must be present and used by every reader */
typedef
struct
GetBitContext
{
typedef
struct
GetBitContext
{
const
uint8_t
*
buffer
,
*
buffer_end
;
const
uint8_t
*
buffer
,
*
buffer_end
;
int
index
;
int
index
;
...
@@ -157,7 +155,6 @@ for examples see get_bits, show_bits, skip_bits, get_vlc
...
@@ -157,7 +155,6 @@ for examples see get_bits, show_bits, skip_bits, get_vlc
#endif
#endif
// FIXME name?
#if UNCHECKED_BITSTREAM_READER
#if UNCHECKED_BITSTREAM_READER
# define SKIP_COUNTER(name, gb, num) name##_index += (num)
# define SKIP_COUNTER(name, gb, num) name##_index += (num)
#else
#else
...
@@ -200,7 +197,6 @@ static inline void skip_bits_long(GetBitContext *s, int n){
...
@@ -200,7 +197,6 @@ static inline void skip_bits_long(GetBitContext *s, int n){
* read mpeg1 dc style vlc (sign bit + mantisse with no MSB).
* read mpeg1 dc style vlc (sign bit + mantisse with no MSB).
* if MSB not set it is negative
* if MSB not set it is negative
* @param n length in bits
* @param n length in bits
* @author BERO
*/
*/
static
inline
int
get_xbits
(
GetBitContext
*
s
,
int
n
)
static
inline
int
get_xbits
(
GetBitContext
*
s
,
int
n
)
{
{
...
@@ -254,7 +250,6 @@ static inline unsigned int show_bits(GetBitContext *s, int n)
...
@@ -254,7 +250,6 @@ static inline unsigned int show_bits(GetBitContext *s, int n)
static
inline
void
skip_bits
(
GetBitContext
*
s
,
int
n
)
static
inline
void
skip_bits
(
GetBitContext
*
s
,
int
n
)
{
{
//Note gcc seems to optimize this to s->index+=n for the ALT_READER :))
OPEN_READER
(
re
,
s
);
OPEN_READER
(
re
,
s
);
UPDATE_CACHE
(
re
,
s
);
UPDATE_CACHE
(
re
,
s
);
LAST_SKIP_BITS
(
re
,
s
,
n
);
LAST_SKIP_BITS
(
re
,
s
,
n
);
...
@@ -344,9 +339,6 @@ static inline int check_marker(GetBitContext *s, const char *msg)
...
@@ -344,9 +339,6 @@ static inline int check_marker(GetBitContext *s, const char *msg)
* @param buffer bitstream buffer, must be FF_INPUT_BUFFER_PADDING_SIZE bytes larger than the actual read bits
* @param buffer bitstream buffer, must be FF_INPUT_BUFFER_PADDING_SIZE bytes larger than the actual read bits
* because some optimized bitstream readers read 32 or 64 bit at once and could read over the end
* because some optimized bitstream readers read 32 or 64 bit at once and could read over the end
* @param bit_size the size of the buffer in bits
* @param bit_size the size of the buffer in bits
*
* While GetBitContext stores the buffer size, for performance reasons you are
* responsible for checking for the buffer end yourself (take advantage of the padding)!
*/
*/
static
inline
void
init_get_bits
(
GetBitContext
*
s
,
const
uint8_t
*
buffer
,
static
inline
void
init_get_bits
(
GetBitContext
*
s
,
const
uint8_t
*
buffer
,
int
bit_size
)
int
bit_size
)
...
@@ -462,7 +454,7 @@ void free_vlc(VLC *vlc);
...
@@ -462,7 +454,7 @@ void free_vlc(VLC *vlc);
/**
/**
* Parse a vlc code
, faster than get_vlc()
.
* Parse a vlc code.
* @param bits is the number of bits which will be read at once, must be
* @param bits is the number of bits which will be read at once, must be
* identical to nb_bits in init_vlc()
* identical to nb_bits in init_vlc()
* @param max_depth is the number of times bits bits must be read to completely
* @param max_depth is the number of times bits bits must be read to completely
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment