diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2014-12-18 20:40:34 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2014-12-18 20:40:39 +0100 |
commit | 5d97af0cb2a67ba7f708477dc3f0b5220ac27f43 (patch) | |
tree | da8743aa9cc59997c9f824919ec839912c54f9d2 | |
parent | 7c0ab0a3b8e49d0cab3f023e7d9cd49e5d9485be (diff) | |
parent | df07c07b3de0a5e8890078944de1eb5cb8372ef8 (diff) | |
download | ffmpeg-5d97af0cb2a67ba7f708477dc3f0b5220ac27f43.tar.gz |
Merge commit 'df07c07b3de0a5e8890078944de1eb5cb8372ef8'
* commit 'df07c07b3de0a5e8890078944de1eb5cb8372ef8':
rtpdec_h263_rfc2190: Clear the stored bits if discarding buffered data
Merged-by: Michael Niedermayer <michaelni@gmx.at>
-rw-r--r-- | libavformat/rtpdec_h263_rfc2190.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavformat/rtpdec_h263_rfc2190.c b/libavformat/rtpdec_h263_rfc2190.c index a2279013dc..8a36e5334c 100644 --- a/libavformat/rtpdec_h263_rfc2190.c +++ b/libavformat/rtpdec_h263_rfc2190.c @@ -83,6 +83,7 @@ static int h263_handle_packet(AVFormatContext *ctx, PayloadContext *data, avio_close_dyn_buf(data->buf, &p); av_free(p); data->buf = NULL; + data->endbyte_bits = 0; } if (len < 4) { |