Mercurial > libavcodec.hg
comparison adpcm.c @ 9900:681cf949c1cf libavcodec
ADPCM: remove unreachable break statement after return
author | mru |
---|---|
date | Wed, 01 Jul 2009 00:55:17 +0000 |
parents | ee966d1064a2 |
children | 7955db355703 |
comparison
equal
deleted
inserted
replaced
9899:06ab8ac1a593 | 9900:681cf949c1cf |
---|---|
189 } | 189 } |
190 avctx->frame_size = 512 * (avctx->sample_rate / 11025); | 190 avctx->frame_size = 512 * (avctx->sample_rate / 11025); |
191 break; | 191 break; |
192 default: | 192 default: |
193 return -1; | 193 return -1; |
194 break; | |
195 } | 194 } |
196 | 195 |
197 avctx->coded_frame= avcodec_alloc_frame(); | 196 avctx->coded_frame= avcodec_alloc_frame(); |
198 avctx->coded_frame->key_frame= 1; | 197 avctx->coded_frame->key_frame= 1; |
199 | 198 |