aboutsummaryrefslogtreecommitdiffstats
path: root/libavcodec/snow.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2005-01-23 18:09:06 +0000
committerMichael Niedermayer <michaelni@gmx.at>2005-01-23 18:09:06 +0000
commit934982c4ace1a3d5d627b518782ed092a456c49e (patch)
tree2710f7ff4b0238136300d02da7baf234ed48cc01 /libavcodec/snow.c
parent884182b383ed8b70a67634dc7f91395c402b58d7 (diff)
downloadffmpeg-934982c4ace1a3d5d627b518782ed092a456c49e.tar.gz
avoid buf_size == 0 checks in every decoder
Originally committed as revision 3872 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/snow.c')
-rw-r--r--libavcodec/snow.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/libavcodec/snow.c b/libavcodec/snow.c
index 13c596d36a..3566b72fba 100644
--- a/libavcodec/snow.c
+++ b/libavcodec/snow.c
@@ -2911,11 +2911,6 @@ static int decode_frame(AVCodecContext *avctx, void *data, int *data_size, uint8
int bytes_read;
AVFrame *picture = data;
int level, orientation, plane_index;
-
-
- /* no supplementary picture */
- if (buf_size == 0)
- return 0;
ff_init_range_decoder(c, buf, buf_size);
ff_build_rac_states(c, 0.05*(1LL<<32), 256-8);