comparison utils.c @ 4562:22c4464c8049 libavcodec

Fix typo.
author takis
date Thu, 22 Feb 2007 00:46:36 +0000
parents 4d1b45b20f8c
children 1cb0cac7b19d
comparison
equal deleted inserted replaced
4561:726deec26122 4562:22c4464c8049
1274 dsputil_static_init(); 1274 dsputil_static_init();
1275 init_crcs(); 1275 init_crcs();
1276 } 1276 }
1277 1277
1278 /** 1278 /**
1279 * Flush buffers, should be called when seeking or when swicthing to a different stream. 1279 * Flush buffers, should be called when seeking or when switching to a different stream.
1280 */ 1280 */
1281 void avcodec_flush_buffers(AVCodecContext *avctx) 1281 void avcodec_flush_buffers(AVCodecContext *avctx)
1282 { 1282 {
1283 if(avctx->codec->flush) 1283 if(avctx->codec->flush)
1284 avctx->codec->flush(avctx); 1284 avctx->codec->flush(avctx);