diff options
author | Michael Niedermayer <michael@niedermayer.cc> | 2019-06-30 17:54:45 +0200 |
---|---|---|
committer | Michael Niedermayer <michael@niedermayer.cc> | 2019-11-14 23:30:37 +0100 |
commit | 49b4d41ec1b33214aac0f3e51c0ca177e3dfeb37 (patch) | |
tree | fd8e0540f70f894fedd36427128da3925a23e81f | |
parent | bcc19ab7b7d14b7087602bb8e7944035d9493f9a (diff) | |
download | ffmpeg-49b4d41ec1b33214aac0f3e51c0ca177e3dfeb37.tar.gz |
avcodec/golomb: Correct the doxy about get_ue_golomb() and errors
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
(cherry picked from commit 1bb3b3f11c6960e90bcfe685c0ad1e355a3e787e)
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
-rw-r--r-- | libavcodec/golomb.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavcodec/golomb.h b/libavcodec/golomb.h index efb1eff8aa..06f5c69960 100644 --- a/libavcodec/golomb.h +++ b/libavcodec/golomb.h @@ -49,6 +49,8 @@ extern const uint8_t ff_interleaved_dirac_golomb_vlc_code[256]; /** * Read an unsigned Exp-Golomb code in the range 0 to 8190. + * + * @returns the read value or a negative error code. */ static inline int get_ue_golomb(GetBitContext *gb) { |