diff options
author | Michael Niedermayer <michael@niedermayer.cc> | 2019-06-30 17:54:45 +0200 |
---|---|---|
committer | Michael Niedermayer <michael@niedermayer.cc> | 2020-07-01 12:11:55 +0200 |
commit | cea8e10a0fd26904933f3ca15d1bd967447437cd (patch) | |
tree | a3a7f9a1251d6d6a038beaab14cf5fdeabcc9c49 | |
parent | b735adcec5ef80bde216e20552a661b1221d3899 (diff) | |
download | ffmpeg-cea8e10a0fd26904933f3ca15d1bd967447437cd.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 917ea54e14..73b1447fb9 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) { |