Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mpc-hc/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRamiro Polla <ramiro.polla@gmail.com>2008-07-13 18:27:48 +0400
committerRamiro Polla <ramiro.polla@gmail.com>2008-07-13 18:27:48 +0400
commit6647ab80e36aa2484a145029141984843958b246 (patch)
tree48875bae682ea15a8e2ef0163cef880fc63f49f2 /libavcodec/msmpeg4.c
parentf9bd305694747b0bb51700c8fe1745beaaf886e3 (diff)
bitstream: move put_sbits() from flacenc.c to bitstream.h and use it
throughout libavcodec. Originally committed as revision 14204 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/msmpeg4.c')
-rw-r--r--libavcodec/msmpeg4.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/msmpeg4.c b/libavcodec/msmpeg4.c
index 214ebb4b93..16fdd8608c 100644
--- a/libavcodec/msmpeg4.c
+++ b/libavcodec/msmpeg4.c
@@ -957,7 +957,7 @@ else
put_bits(&s->pb, s->esc3_level_length, level);
}else{
put_bits(&s->pb, 6, run);
- put_bits(&s->pb, 8, slevel & 0xff);
+ put_sbits(&s->pb, 8, slevel);
}
} else {
/* second escape */