summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
...
* Fix the seek regressions to match changes in r14956, r14959 and r14960.Aurelien Jacobs2008-08-25
| | | | | | The changes are verified and desired. Originally committed as revision 14969 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Import more MXF muxer code from the SoC treeVitor Sessak2008-08-25
| | | | Originally committed as revision 14968 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Missing static in float_to_int16_altivec declarationLuca Barbato2008-08-25
| | | | Originally committed as revision 14967 to svn://svn.ffmpeg.org/ffmpeg/trunk
* When setting codec_id during codec probe we must also set codec_type.Andreas Öman2008-08-25
| | | | Originally committed as revision 14966 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Little-endian bitstream writerBartlomiej Wolowiec2008-08-25
| | | | Originally committed as revision 14965 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fir_32bands_perfect[] contents were mixed, restore original orderAlexander E. Patrakov2008-08-25
| | | | | | | Patch by Alexander Patrakov ($lastname <whirlpool> gmail.com) Thread: dcadata.h: fir_32bands_perfect[] is wrong Originally committed as revision 14964 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix udp.c compilation with recent glibc (>= 2.8)Luca Abeni2008-08-25
| | | | Originally committed as revision 14963 to svn://svn.ffmpeg.org/ffmpeg/trunk
* ARM: add prefetch function using ARMv5 PLD instructionMåns Rullgård2008-08-25
| | | | Originally committed as revision 14962 to svn://svn.ffmpeg.org/ffmpeg/trunk
* ARM: set STRIDE_ALIGN and DECLARE_ALIGNED_8 to 16 for NEONMåns Rullgård2008-08-25
| | | | Originally committed as revision 14961 to svn://svn.ffmpeg.org/ffmpeg/trunk
* matroskadec: unset matroska->done when seekingAurelien Jacobs2008-08-25
| | | | | | just in case someone try to seek back after reaching the end of file Originally committed as revision 14960 to svn://svn.ffmpeg.org/ffmpeg/trunk
* matroskadec: full seeking support in index-less filesAurelien Jacobs2008-08-25
| | | | | | when trying to seek past the last index entry, just parse more clusters to add them to the index, until an index entry match the desired position Originally committed as revision 14959 to svn://svn.ffmpeg.org/ffmpeg/trunk
* right shift the values by 8 in GAQ remap "B" table. data now fits in int8_t.Justin Ruggles2008-08-25
| | | | Originally committed as revision 14958 to svn://svn.ffmpeg.org/ffmpeg/trunk
* matroskadec: on the fly index construction for index-less filesAurelien Jacobs2008-08-25
| | | | | | | each cluster that is read and that contains a video key frame is added to the index Originally committed as revision 14957 to svn://svn.ffmpeg.org/ffmpeg/trunk
* matroskadec: don't try to seek to negative timestampAurelien Jacobs2008-08-24
| | | | | | matroska timestamps are unsigned Originally committed as revision 14956 to svn://svn.ffmpeg.org/ffmpeg/trunk
* matroskadec: move setting of matroska->done inside matroska_parse_cluster()Aurelien Jacobs2008-08-24
| | | | Originally committed as revision 14955 to svn://svn.ffmpeg.org/ffmpeg/trunk
* restore accidently deleted fileJustin Ruggles2008-08-24
| | | | Originally committed as revision 14954 to svn://svn.ffmpeg.org/ffmpeg/trunk
* 1000l to me. committed to wrong repo. revert last commit.Justin Ruggles2008-08-24
| | | | Originally committed as revision 14953 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics: rename some functions from *get_* to *decode_*Justin Ruggles2008-08-24
| | | | Originally committed as revision 14952 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add ff_ prefix to ogg_codec_t structsReimar Döffinger2008-08-24
| | | | Originally committed as revision 14951 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Mark several libavformat arrays constReimar Döffinger2008-08-24
| | | | Originally committed as revision 14950 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Mark "matroska" probe data string constant.Reimar Döffinger2008-08-24
| | | | Originally committed as revision 14949 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make ogg_codec_t descriptions constReimar Döffinger2008-08-24
| | | | Originally committed as revision 14948 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Change codec_tag type from const struct AVCodecTag ** to const struct ↵Reimar Döffinger2008-08-24
| | | | | | AVCodecTag * const * Originally committed as revision 14947 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove check for @ in tcp.c which removes the authorization data from theRonald S. Bultje2008-08-24
| | | | | | | | actual hostname. This functionality already exists (and always existed) in url_split() and is therefore useless. See discussion in "[PATCH] tcp.c/udp.c memleak?" thread on ffmpeg-devel. Originally committed as revision 14946 to svn://svn.ffmpeg.org/ffmpeg/trunk
* voc: add ff_ prefix to some global const dataAurelien Jacobs2008-08-24
| | | | Originally committed as revision 14945 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove useless empty close functions in mmf and mm demuxers.Reimar Döffinger2008-08-24
| | | | Originally committed as revision 14944 to svn://svn.ffmpeg.org/ffmpeg/trunk
* matroskadec: make aac_profiles array constAurelien Jacobs2008-08-24
| | | | Originally committed as revision 14943 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make the id3v1_genre_str array const, not just the strings it points to.Reimar Döffinger2008-08-24
| | | | Originally committed as revision 14942 to svn://svn.ffmpeg.org/ffmpeg/trunk
* stricter constraints of asm() blocksAlexis Ballier2008-08-24
| | | | | | | | | All these variables are used as left operands of a movd instruction, which does accept only memory or register operands while the "g" constraint also allows immediates. Use "rm" instead. Patch by Alexis Ballier %alexis P ballier A gmail P com% Originally committed as revision 14941 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix index to ff_sine_windows[]. Previously the index was usually in reverseRobert Swain2008-08-24
| | | | | | order. Originally committed as revision 14940 to svn://svn.ffmpeg.org/ffmpeg/trunk
* okayed chunks of AAC encoderKostya Shishkov2008-08-24
| | | | Originally committed as revision 14939 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Import more ok'ed chunks of the mxf muxer from the soc treeVitor Sessak2008-08-24
| | | | Originally committed as revision 14938 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Correct scaling factor in DCA decoder synthesis.Alexander E. Patrakov2008-08-24
| | | | | | | Patch by Alexander Patrakov ($lastname at gmail.com) Thread: dca.c: output scale is a bit off Originally committed as revision 14937 to svn://svn.ffmpeg.org/ffmpeg/trunk
* change eac3dec.c license to LGPLJustin Ruggles2008-08-24
| | | | Originally committed as revision 14936 to svn://svn.ffmpeg.org/ffmpeg/trunk
* document some dsp alignmentsLoren Merritt2008-08-24
| | | | Originally committed as revision 14935 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Ensure that SDL_AddTimer() is never called with a delay of 0 becauseMichael Niedermayer2008-08-24
| | | | | | | | this leads to a runaway creation of timers. We never pass 0 currently but it is safer to check for it explicitly as changes to the code can easily lead to 0 being used. Originally committed as revision 14934 to svn://svn.ffmpeg.org/ffmpeg/trunk
* convert every muxer/demuxer to write/read sample_aspect_ratio from/toAurelien Jacobs2008-08-23
| | | | | | the corresponding AVStream instead of AVCodecContext Originally committed as revision 14933 to svn://svn.ffmpeg.org/ffmpeg/trunk
* export sample_aspect_ratio read by the demuxer in a separate fieldAurelien Jacobs2008-08-23
| | | | | | that the one read by the decoder. Originally committed as revision 14932 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Upgrade 20/24-bit PCM DVD decoder use SAMPLE_FMT_S32. Patch supplied by lars ↵Peter Ross2008-08-23
| | | | | | dot taeuber at gmx dot net. Originally committed as revision 14931 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add raw muxers/demuxers for F64/F32/S32/S24/U32/U24 PCM audio.Peter Ross2008-08-23
| | | | Originally committed as revision 14930 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove unused variablesLuca Barbato2008-08-23
| | | | Originally committed as revision 14929 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Introduce float_to_int16_interleave_altivec, tested with vorbisLuca Barbato2008-08-23
| | | | Originally committed as revision 14928 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Introduce float_to_int16_one_altivecLuca Barbato2008-08-23
| | | | Originally committed as revision 14927 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Cosmetics after previous patches.Ronald S. Bultje2008-08-23
| | | | Originally committed as revision 14926 to svn://svn.ffmpeg.org/ffmpeg/trunk
* On failure, return directly because the fail: case does nothing. This alsoRonald S. Bultje2008-08-23
| | | | | | allows easier control of the actual return value. Originally committed as revision 14925 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move malloc() down until after all initializations, so that the resource isRonald S. Bultje2008-08-23
| | | | | | | only allocated if initialization worked. This means that on failure, we don't have to deallocate it. Originally committed as revision 14924 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix memleak on some OSes in case network initialization fails. SeeRonald S. Bultje2008-08-23
| | | | | | "[PATCH] tcp.c/udp.c memleak?" for discussion. Originally committed as revision 14923 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove useless comments. See "[PATCH] tcp.c/udp.c memleak?" for discussion.Ronald S. Bultje2008-08-23
| | | | Originally committed as revision 14922 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Simple lowpass filter implementation.Kostya Shishkov2008-08-23
| | | | Originally committed as revision 14921 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Do not pass unnecessary arguments to AAC encoder functionsKostya Shishkov2008-08-23
| | | | Originally committed as revision 14920 to svn://svn.ffmpeg.org/ffmpeg/trunk