summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* use ber4 length for descriptors preferred by specsBaptiste Coudurier2009-07-04
| | | | Originally committed as revision 19337 to svn://svn.ffmpeg.org/ffmpeg/trunk
* write profile and level local tag in mpeg descriptorBaptiste Coudurier2009-07-04
| | | | Originally committed as revision 19336 to svn://svn.ffmpeg.org/ffmpeg/trunk
* H.264: Check the return value of decode_vui_parameters()Alexander Strange2009-07-04
| | | | | | | | | Files with invalid VUI are now rejected like other invalid SPS are. Fixes issue1231. Originally committed as revision 19335 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Replace invalid Theora frame rate by 25 FPS.Reimar Döffinger2009-07-03
| | | | | | Avoids division by 0 due to e.g. time_base denominator being 0. Originally committed as revision 19334 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Check for failed extradata malloc, fixes a crash in out-of-memory conditionsReimar Döffinger2009-07-03
| | | | | | or with extremely large extradata. Originally committed as revision 19333 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Check size of "strf" header against size of enclosing "LIST" if there is one.Reimar Döffinger2009-07-03
| | | | Originally committed as revision 19332 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix indentationReimar Döffinger2009-07-03
| | | | Originally committed as revision 19331 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Avoid divisions by 0 in the ASF demuxer if packet_size is not valid.Reimar Döffinger2009-07-03
| | | | Originally committed as revision 19330 to svn://svn.ffmpeg.org/ffmpeg/trunk
* H.264: Don't set data_partitioning for invalid NAL_DPA.Alexander Strange2009-07-03
| | | | | | | | | | | Before, the decoder could interpret a corrupt frame as a NAL_DPA and NAL_DPC, and then start decoding even if decode_slice_header() returned an error. This frequently caused crashes. Fixes issue1228, issue1229, and partially issue1238. Originally committed as revision 19328 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Cleanup properly at the end of MPEG Audio parsing.Art Clarke2009-07-02
| | | | | | Patch by Art Clarke (aclarke AT xuggle com) Originally committed as revision 19327 to svn://svn.ffmpeg.org/ffmpeg/trunk
* If either of num or den is 0 make both 0 in av_set_pts_info().Michael Niedermayer2009-07-02
| | | | Originally committed as revision 19326 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make sure av_set_pts_info() does not set the fields of a timebase toMichael Niedermayer2009-07-01
| | | | | | negative values. Originally committed as revision 19325 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Revert r19317, "simplify slice_end, return size of output frame".Baptiste Coudurier2009-07-01
| | | | | | It returns non decodable B-frames. Originally committed as revision 19324 to svn://svn.ffmpeg.org/ffmpeg/trunk
* indentMichael Niedermayer2009-07-01
| | | | Originally committed as revision 19323 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make sure we dont read over the end.Michael Niedermayer2009-07-01
| | | | | | Fixes issue1237. Originally committed as revision 19322 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add an explanation and complete the metadata usage example.Stefano Sabatini2009-07-01
| | | | Originally committed as revision 19320 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make arguments of av_set_pts_info() unsigned.Michael Niedermayer2009-07-01
| | | | | | Fixes issue1240/mpeg1/smclockmpeg1.avi.3.1 Originally committed as revision 19319 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix potentially unaligned accesses in ff_copy_bits()Måns Rullgård2009-07-01
| | | | | | | | | | | A pointer should never be assigned a value which may have less than the required alignment of the target type. Compilers may assume pointer values have the required alignment, and emit normal load/store instructions. Unaligned pointers should use a character type or compiler-specific type modifiers. Originally committed as revision 19318 to svn://svn.ffmpeg.org/ffmpeg/trunk
* simplify slice_end, return size of output frameBaptiste Coudurier2009-07-01
| | | | Originally committed as revision 19317 to svn://svn.ffmpeg.org/ffmpeg/trunk
* RV3/4 intra types array causes alignment issues (at least on ARM5), thus changeKostya Shishkov2009-07-01
| | | | | | its stride and offset to always have align 4. Originally committed as revision 19316 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use slightly more appropriate format strings for printing decimal values.Frank Barchard2009-07-01
| | | | | | patch by Frank Barchard, fbarchard google com Originally committed as revision 19315 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use enum PixelFormat in sws_format_name() prototypeMåns Rullgård2009-07-01
| | | | Originally committed as revision 29409 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Fix argument type mismatches for av_picture_crop and av_picture_fillMåns Rullgård2009-07-01
| | | | Originally committed as revision 19314 to svn://svn.ffmpeg.org/ffmpeg/trunk
* add missing \n to error messageBaptiste Coudurier2009-07-01
| | | | Originally committed as revision 19313 to svn://svn.ffmpeg.org/ffmpeg/trunk
* ADPCM: remove unreachable break statement after returnMåns Rullgård2009-07-01
| | | | Originally committed as revision 19312 to svn://svn.ffmpeg.org/ffmpeg/trunk
* ARM: use gcc inline asm in bswap.h only when availableMåns Rullgård2009-07-01
| | | | Originally committed as revision 19311 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix libx264.c to not drop SEI userdata from x264 encoder.Jason Garrett-Glaser2009-06-30
| | | | | | | Most muxers in ffmpeg ignore the SEI if it is placed in extradata, so instead it has to be catted to the front of the first video frame. Originally committed as revision 19310 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use more portable 'PRId64' instead of 'llx' as conversion/length specifier.Frank Barchard2009-06-30
| | | | | | patch by Frank Barchard, fbarchard google com Originally committed as revision 19309 to svn://svn.ffmpeg.org/ffmpeg/trunk
* ARM: enable fast_unaligned when --cpu=armv[67] is specifiedMåns Rullgård2009-06-30
| | | | Originally committed as revision 19308 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix nalsize check to avoid an integer overflow that made the checkReimar Döffinger2009-06-30
| | | | | | incorrect for nalsize > INT_MAX - buf_index Originally committed as revision 19307 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Update seek regression checksums due to:Michael Niedermayer2009-06-30
| | | | | | | | r19300 Rewrite mp3 parser. New code is much simpler and does not drop stuff at random. Originally committed as revision 19306 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics, change case and comments alignmentBaptiste Coudurier2009-06-30
| | | | Originally committed as revision 19305 to svn://svn.ffmpeg.org/ffmpeg/trunk
* correctly compute frame flags with closed gopBaptiste Coudurier2009-06-30
| | | | Originally committed as revision 19304 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fix slice header checkingStefan Gehrer2009-06-30
| | | | Originally committed as revision 19303 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Drop code that attempts to decode frames that are prefixed by junk.Michael Niedermayer2009-06-30
| | | | | | | | | Too often it ends up decoding random data into noise without detecting it (for example after seeking of some MP3 data with oddly often occurring startcode emulation). Fixes issue1154. Originally committed as revision 19302 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Support RGB48 PNG decodingKostya Shishkov2009-06-30
| | | | Originally committed as revision 19301 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Rewrite mp3 parser. New code is much simpler and does not dropMichael Niedermayer2009-06-30
| | | | | | stuff at random. Originally committed as revision 19300 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use av_log_missing_feature in the ADTS encoder. (Pseudo reverts r19173).Alex Converse2009-06-29
| | | | Originally committed as revision 19299 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix build on Net/OpenBSDMåns Rullgård2009-06-29
| | | | | | The renaming in r19293 missed a few things. Originally committed as revision 19298 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Cosmetics: group together indev/outdev dependencies.Stefano Sabatini2009-06-29
| | | | Originally committed as revision 19297 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add doxy to av_log_missing_feature() etc. stating that the function isRonald S. Bultje2009-06-29
| | | | | | primarily intended for internal use in lavc/lavf, not for use in apps. Originally committed as revision 19296 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move av_log_missing_feature() from the internal.h to the public avcodec.hRonald S. Bultje2009-06-29
| | | | | | header file. Originally committed as revision 19295 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Rename ff_log_missing_feature() to av_log_missing_feature().Ronald S. Bultje2009-06-29
| | | | Originally committed as revision 19294 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make the configure script select the input/output devices usingStefano Sabatini2009-06-29
| | | | | | | --enable-indev, --enable-outdev rather than --enable-demuxer, --enable-muxer as before, same for disabling them. Originally committed as revision 19293 to svn://svn.ffmpeg.org/ffmpeg/trunk
* indentMichael Niedermayer2009-06-29
| | | | Originally committed as revision 19292 to svn://svn.ffmpeg.org/ffmpeg/trunk
* id3v2.4.0 uses syncsafe integers for sizes of frames.Michael Niedermayer2009-06-29
| | | | | | | Fixes issue1234 Fixes regression introduced in r19275 Originally committed as revision 19291 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Revert r19149 "Disable native Vorbis encoder"David Conrad2009-06-29
| | | | Originally committed as revision 19290 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove inconsistent use of a @brief command in av_write_trailer()Stefano Sabatini2009-06-28
| | | | | | doxy. Originally committed as revision 19289 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use consistently the third person in doxy, as recommended by theStefano Sabatini2009-06-28
| | | | | | javadoc specs. Originally committed as revision 19288 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix braino.Stefano Sabatini2009-06-28
| | | | Originally committed as revision 19287 to svn://svn.ffmpeg.org/ffmpeg/trunk