| Commit message (Expand) | Author | Age | Files | Lines |
* | Don't allow to sync on packets of zero-size length, since these are never | Ronald S. Bultje | 2009-03-21 | 1 | -1/+1 |
* | Move "- 12" statement up a bit. See "[PATCH] rmdec.c: prevent zero-length | Ronald S. Bultje | 2009-03-21 | 1 | -4/+1 |
* | Add byte reordering for the SIPRO audio codec. See "rmdec.c: add SIPR codec | Ronald S. Bultje | 2009-03-20 | 1 | -7/+62 |
* | rmdec: fix crash at end of file | Måns Rullgård | 2009-03-16 | 1 | -1/+2 |
* | More reindent, forgotten in previous commit. | Ronald S. Bultje | 2009-03-16 | 1 | -3/+3 |
* | Parse index chunk so that seeking in modern .rm files becomes a lot faster. | Ronald S. Bultje | 2009-03-16 | 1 | -2/+54 |
* | Reindent after r18010. | Ronald S. Bultje | 2009-03-16 | 1 | -1/+1 |
* | Mark the first output audio frame as keyframe (separate patch from previous, | Ronald S. Bultje | 2009-03-16 | 1 | -0/+4 |
* | Remove packet returning in ff_rm_parse_packet() if we're using the packet | Ronald S. Bultje | 2009-03-16 | 1 | -13/+5 |
* | Reindent after r18005. | Ronald S. Bultje | 2009-03-16 | 1 | -15/+15 |
* | Merge code for packet reading in "old" (.ra, audio-only) Realmedia files and | Ronald S. Bultje | 2009-03-16 | 1 | -40/+17 |
* | Fix index generation in the way that it was supposed to be used. See the | Ronald S. Bultje | 2009-03-15 | 1 | -9/+11 |
* | Correctly skip complete INDX chunks, i.e. read the 32-bit header correctly | Ronald S. Bultje | 2009-03-10 | 1 | -1/+13 |
* | Prevent (negative) overflow of rm->remaining_len. This evaluation really only | Ronald S. Bultje | 2009-03-09 | 1 | -1/+1 |
* | Revert to r17908. | Ronald S. Bultje | 2009-03-09 | 1 | -13/+32 |
* | Prevent (negative) overflow of rm->remaining_len. This evaluation really only | Ronald S. Bultje | 2009-03-09 | 1 | -1/+1 |
* | Replace separate packet parsing for "old_format" .ra files by a call to | Ronald S. Bultje | 2009-03-09 | 1 | -31/+12 |
* | Move frame discarding out of the ff_rm_parse_packet() loop, and respect | Ronald S. Bultje | 2009-03-09 | 1 | -6/+10 |
* | remove now useless get_str16() from rmdec.c | Aurelien Jacobs | 2009-02-17 | 1 | -5/+0 |
* | use new metadata API in rm (de)muxer | Aurelien Jacobs | 2009-02-17 | 1 | -13/+14 |
* | Add a context to av_log() calls. | Benoit Fouet | 2009-02-16 | 1 | -3/+3 |
* | Use more descriptive format long_names. | Diego Biurrun | 2009-02-12 | 1 | -1/+1 |
* | Reformat rdt_demuxer AVCodec struct sanely. | Michael Niedermayer | 2009-02-03 | 1 | -1/+4 |
* | cosmetics: Remove pointless period after copyright statement non-sentences. | Diego Biurrun | 2009-01-19 | 1 | -1/+1 |
* | Fix build: Add intreadwrite.h and bswap.h #includes where necessary. | Diego Biurrun | 2009-01-11 | 1 | -0/+1 |
* | Fix a compiler warning: | Dominique Leuenberger | 2009-01-07 | 1 | -1/+1 |
* | 10l set AVPacket.size to the true size of the returned data instead of | Michael Niedermayer | 2008-12-31 | 1 | -1/+1 |
* | Fix indention which was off by 1 space. | Michael Niedermayer | 2008-12-31 | 1 | -9/+9 |
* | Replace buffer by AVPacket and avoid a memcpy() for video when the number | Michael Niedermayer | 2008-12-31 | 1 | -20/+22 |
* | Merge videobuf and audiobuf. | Michael Niedermayer | 2008-12-31 | 1 | -20/+18 |
* | Simplify the top of rm_assemble_video_frame(). | Michael Niedermayer | 2008-12-30 | 1 | -26/+14 |
* | Add a few error checks to rm_assemble_video_frame() | Michael Niedermayer | 2008-12-30 | 1 | -0/+6 |
* | All non zero returns of rm_assemble_video_frame() are errors, check things | Michael Niedermayer | 2008-12-30 | 1 | -1/+1 |
* | av_free() -> av_freep(), patch by Reimar Doffinger, see discussion in | Reimar Döffinger | 2008-12-28 | 1 | -2/+2 |
* | Fix double free which happens for playback of .rm files after r16365. See | Ronald S. Bultje | 2008-12-28 | 1 | -1/+0 |
* | Add audio_pkt_cnt return value to ff_rm_retrieve_cache(). See discussion in | Ronald S. Bultje | 2008-12-28 | 1 | -1/+3 |
* | Add RMStream object as function argument to public functions so that non-.rm | Ronald S. Bultje | 2008-12-28 | 1 | -16/+14 |
* | Implement RMStream stream-specific private data object in the RM demuxer. | Ronald S. Bultje | 2008-12-28 | 1 | -74/+101 |
* | Use get_buffer() and url_fskip() for some loops of get_byte()s. See discussio... | Ronald S. Bultje | 2008-12-14 | 1 | -14/+6 |
* | Reindent something that looks weird. | Ronald S. Bultje | 2008-12-14 | 1 | -1/+2 |
* | Split RMContext into RMDemux/MuxContext and make them private in rmdec/enc.c. | Ronald S. Bultje | 2008-12-13 | 1 | -13/+34 |
* | Don't access RMContext directly in rdt.c. Rather, use the return value of | Ronald S. Bultje | 2008-12-13 | 1 | -1/+1 |
* | Fix indenting. | Ronald S. Bultje | 2008-12-11 | 1 | -3/+3 |
* | Add ByteIOContext argument to public ff_rm_* functions so that we can | Ronald S. Bultje | 2008-11-17 | 1 | -17/+16 |
* | Check sub_packet_size against 0 to avoid div by zero later. | Michael Niedermayer | 2008-10-29 | 1 | -0/+5 |
* | add ok parts to the rm demuxer for SIPRO support | Benjamin Larsson | 2008-09-26 | 1 | -2/+4 |
* | Add support for RVTR fourCC | Vitor Sessak | 2008-09-23 | 1 | -1/+2 |
* | Add dynamic payload handlers to rdt.c. These follow the same API as the ones | Ronald S. Bultje | 2008-09-07 | 1 | -0/+7 |
* | Move av_set_pts_info() inside the mdpr_read_codecdata() call, so that it is | Ronald S. Bultje | 2008-09-03 | 1 | -1/+1 |
* | Use chunk-size in function calling mdpr_read_codecdata() rather than in the | Ronald S. Bultje | 2008-09-03 | 1 | -4/+3 |