diff options
author | Diego Biurrun <diego@biurrun.de> | 2005-12-17 18:14:38 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2005-12-17 18:14:38 +0000 |
commit | 115329f16062074e11ccf3b89ead6176606c9696 (patch) | |
tree | e98aa993905a702688bf821737ab9a443969fc28 /libavcodec/libgsm.c | |
parent | d76319b1ab716320f6e6a4d690b85fe4504ebd5b (diff) | |
download | ffmpeg-115329f16062074e11ccf3b89ead6176606c9696.tar.gz |
COSMETICS: Remove all trailing whitespace.
Originally committed as revision 4749 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/libgsm.c')
-rw-r--r-- | libavcodec/libgsm.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libavcodec/libgsm.c b/libavcodec/libgsm.c index c9f137e176..28610fb4d6 100644 --- a/libavcodec/libgsm.c +++ b/libavcodec/libgsm.c @@ -16,7 +16,7 @@ * License along with this library; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ - + /** * @file libgsm.c * Interface to libgsm for gsm encoding/decoding @@ -37,10 +37,10 @@ static int libgsm_init(AVCodecContext *avctx) { avctx->block_align = GSM_BLOCK_SIZE; avctx->priv_data = gsm_create(); - + avctx->coded_frame= avcodec_alloc_frame(); avctx->coded_frame->key_frame= 1; - + return 0; } |