This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #define bistream_read_count(bb) ({\ | |
| int _ret = bitstream_read_count(bb); \ | |
| printf("%s:%d %s, read_count %d\n", __FILE__, __LINE__, __func__, _ret); \ | |
| _ret; \ | |
| }) | |
| #define bistream_read_bit(bb) ({\ | |
| int _ret = bitstream_read_bit(bb); \ | |
| printf("%s:%d %s, read_bit %d\n", __FILE__, __LINE__, __func__, _ret); \ | |
| _ret; \ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| commit e329bfbb3c38e803b16c3ef9015f4a65b0d05987 | |
| Author: Alexandra Khirnova <[email protected]> | |
| Date: Fri Apr 11 11:17:38 2014 +0200 | |
| avconv: Add loop option. | |
| diff --git a/avconv.c b/avconv.c | |
| index 13e6778..9a1a0f6 100644 | |
| --- a/avconv.c | |
| +++ b/avconv.c |