summaryrefslogtreecommitdiff
path: root/libavformat/rmdec.c
Commit message (Collapse)AuthorAge
...
* TypoRoberto Togni2007-12-04
| | | | Originally committed as revision 11165 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Revert r10892, it's wrong and no longer needed to prevent crashesRoberto Togni2007-12-02
| | | | Originally committed as revision 11127 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use dynamically allocated ByteIOContext in AVFormatContextBjörn Axelsson2007-11-21
| | | | | | | patch by: Björn Axelsson, bjorn d axelsson a intinor d se thread: [PATCH] Remove static ByteIOContexts, 06 nov 2007 Originally committed as revision 11071 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Replace realloc with free+malloc, the previous content of the buffer isRoberto Togni2007-11-19
| | | | | | not needed Originally committed as revision 11065 to svn://svn.ffmpeg.org/ffmpeg/trunk
* CosmeticsRoberto Togni2007-11-19
| | | | Originally committed as revision 11056 to svn://svn.ffmpeg.org/ffmpeg/trunk
* No need to update pos, it's not used after that lineRoberto Togni2007-11-19
| | | | Originally committed as revision 11055 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Cleanup: remove ssizeRoberto Togni2007-11-18
| | | | Originally committed as revision 11054 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Check for memory allocation failure of temp bufferRoberto Togni2007-11-18
| | | | Originally committed as revision 11053 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Optimize memory management to create an av_packet from multiple slices:Roberto Togni2007-11-18
| | | | | | | | | - remove memmove to pack the data, instead copy only the used areas from the temp buffer in their final position - use the minimum possible size for the av_packet (relevant when some slices are missing) Originally committed as revision 11052 to svn://svn.ffmpeg.org/ffmpeg/trunk
* 1000l: Fix check for max slice numberRoberto Togni2007-11-15
| | | | Originally committed as revision 11040 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move dnet-ac3 byte-swapping code close to audio packet read codeRoberto Togni2007-11-15
| | | | | | | Fixed version of patch in [FFmpeg-devel] [PATCH 5/6] rmdec.c: move around rm_ac3_swap_bytes() Originally committed as revision 11039 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Split ac3 byte swapping into a separate function.Ronald S. Bultje2007-11-08
| | | | | | | | Patch by Ronald S. Bultje: rsbultje gmail com Original thread: Re: [FFmpeg-devel] [PATCH 4/6] rmdec.c: rm_ac3_swap_bytes() Date: 11/05/2007 09:27 PM Originally committed as revision 10964 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Isolate caching of audio frames in its own function.Ronald S. Bultje2007-11-08
| | | | | | | | Patch by Ronald S. Bultje: rsbultje gmail com Original thread: Re: [FFmpeg-devel] [PATCH 3/6] rmdec.c: ff_rm_retrieve_cache() Date: 11/05/2007 09:25 PM Originally committed as revision 10963 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Change a stream indexer.Ronald S. Bultje2007-11-08
| | | | | | Patch by Ronald S. Bultje: rsbultje gmail com Originally committed as revision 10962 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Split out the packet parsing from the main function body in rmdec.cRonald S. Bultje2007-11-08
| | | | | | | | | into its own function Patch by Ronald S. Bultje: rsbultje gmail com Original thread: Re: [FFmpeg-devel] [PATCH 2/6] rmdec.c: ff_rm_parse_frame() Date: 11/05/2007 09:23 PM Originally committed as revision 10961 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Change parse indexer.Ronald S. Bultje2007-11-08
| | | | | | Patch by Ronald S. Bultje: rsbultje gmail com Originally committed as revision 10960 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Change ff_rm_read_mdpr_codecdata to get back to old behavior.Benoit Fouet2007-11-08
| | | | Originally committed as revision 10954 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Split out the MDPR chunk reading into its own function.Ronald S. Bultje2007-11-06
| | | | | | | | Patch by Ronald S. Bultje: rsbultje gmail com Original thread:[FFmpeg-devel] [PATCH 1/6] rmdec.c: ff_rm_read_mdpr_codecdata() Date: 11/05/2007 09:21 PM Originally committed as revision 10934 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Seek regression for RM demuxer fixKostya Shishkov2007-11-03
| | | | Originally committed as revision 10907 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Revert get_num() to old behaviour in order to handleKostya Shishkov2007-11-01
| | | | | | incorrect RMs generated by lavf muxer. Originally committed as revision 10892 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Demux full frames instead of sliced for RealVideo.Kostya Shishkov2007-10-21
| | | | | | Some changes by Roberto Togni and blessed by him on IRC. Originally committed as revision 10823 to svn://svn.ffmpeg.org/ffmpeg/trunk
* dnet audio needs avparser to work with the lavc ac3 decoder.Justin Ruggles2007-10-01
| | | | | | | Fixes issue 121 Patch by Justin Ruggles Originally committed as revision 10634 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Set correct length for last slice in frame subpacketKostya Shishkov2007-09-06
| | | | Originally committed as revision 10420 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Merge get_str() and get_str8() functions.Ronald S. Bultje2007-07-28
| | | | | | patch by Ronald S. Bultje, rsbultje gmail com Originally committed as revision 9818 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix get_str/get_str8() to also work if the target string is not long enough toRonald S. Bultje2007-07-28
| | | | | | | | fit all data from the container string, and allow NULL as a string also to simply skip the string altogether. patch by Ronald S. Bultje, rsbultje gmail com Originally committed as revision 9817 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Replace all occurrences of AVERROR_IO with AVERROR(EIO).Panagiotis Issaris2007-07-19
| | | | Originally committed as revision 9760 to svn://svn.ffmpeg.org/ffmpeg/trunk
* avoid uninitialised variable warning and clarify codeMåns Rullgård2007-07-08
| | | | Originally committed as revision 9543 to svn://svn.ffmpeg.org/ffmpeg/trunk
* use new string functionsMåns Rullgård2007-06-23
| | | | | | based on patch by Reimar Döffinger Originally committed as revision 9401 to svn://svn.ffmpeg.org/ffmpeg/trunk
* use FFSWAP()Aurelien Jacobs2007-05-30
| | | | Originally committed as revision 9158 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics: indentationAurelien Jacobs2007-05-30
| | | | Originally committed as revision 9157 to svn://svn.ffmpeg.org/ffmpeg/trunk
* split rm muxer and demuxer in their own filesAurelien Jacobs2007-05-30
Originally committed as revision 9156 to svn://svn.ffmpeg.org/ffmpeg/trunk