comparison fifo.c @ 566:34198f8250cf libavutil

Cosmetics: remove a redundant and misplaced doxy.
author stefano
date Tue, 19 Aug 2008 22:17:13 +0000
parents a0dab9157d6a
children 5a8d0e6cdcfb
comparison
equal deleted inserted replaced
565:a0dab9157d6a 566:34198f8250cf
50 { 50 {
51 return av_fifo_generic_read(f, buf_size, NULL, buf); 51 return av_fifo_generic_read(f, buf_size, NULL, buf);
52 } 52 }
53 53
54 #if LIBAVUTIL_VERSION_MAJOR < 50 54 #if LIBAVUTIL_VERSION_MAJOR < 50
55 /**
56 * Resizes a FIFO.
57 */
58 void av_fifo_realloc(AVFifoBuffer *f, unsigned int new_size) { 55 void av_fifo_realloc(AVFifoBuffer *f, unsigned int new_size) {
59 av_fifo_realloc2(f, new_size); 56 av_fifo_realloc2(f, new_size);
60 } 57 }
61 #endif 58 #endif
62 59