summaryrefslogtreecommitdiff
path: root/libavformat/electronicarts.c
Commit message (Collapse)AuthorAge
* lavf: remove AVFormatParameters from AVFormatContext.read_header signatureAnton Khirnov2012-01-27
|
* electronicarts: check bytes per sample for validityJanne Grunau2012-01-07
| | | | Prevents division by zero.
* lavf: make av_set_pts_info private.Anton Khirnov2011-11-30
| | | | It's supposed to be called only from (de)muxers.
* lavf,lavd: replace av_new_stream->avformat_new_stream part I.Anton Khirnov2011-10-19
| | | | | Trivial replacements with sed are done in this commit: sed 's/av_new_stream(\([^)]*\), 0)/avformat_new_stream(\1, NULL)/'
* lavf: use designated initialisers for all (de)muxers.Anton Khirnov2011-07-17
| | | | It's more readable and less prone to breakage.
* Replace FFmpeg with Libav in licence headersMans Rullgard2011-03-19
| | | | Signed-off-by: Mans Rullgard <mans@mansr.com>
* lavf: replace avio_seek(SEEK_CUR) with avio_skip where it makes senseAnton Khirnov2011-03-16
| | | | Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
* avio: deprecate url_feofAnton Khirnov2011-03-07
| | | | | | AVIOContext.eof_reached should be used directly instead. Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
* avio: add avio_tell macro as a replacement for url_ftellAnton Khirnov2011-03-04
| | | | Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
* lavf: replace all uses of url_fskip with avio_seekAnton Khirnov2011-03-01
| | | | Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
* avio: avio_ prefix for url_fseekAnton Khirnov2011-03-01
| | | | Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
* avio: avio_ prefixes for get_* functionsAnton Khirnov2011-02-21
| | | | | | | | | | | | | | In the name of consistency: get_byte -> avio_r8 get_<type> -> avio_r<type> get_buffer -> avio_read get_partial_buffer will be made private later get_strz is left out becase I want to change it later to return something useful. Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
* avio: rename ByteIOContext to AVIOContext.Anton Khirnov2011-02-20
| | | | Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
* Prefix all _demuxer, _muxer, _protocol from libavformat and libavdevice.Diego Elio Pettenò2011-01-26
| | | | | This also lists the objects from those two libraries as internal (by adding the ff_ prefix) so that they can then be hidden via linker scripts.
* electronicarts: prevent endless loop opportunity in ↵Peter Ross2011-01-11
| | | | | | | | process_audio_header_elements() Fixes issue2529. Originally committed as revision 26307 to svn://svn.ffmpeg.org/ffmpeg/trunk
* revert r26302Peter Ross2011-01-10
| | | | Originally committed as revision 26305 to svn://svn.ffmpeg.org/ffmpeg/trunk
* electronicarts: prevent endless loop opportunity in ↵Peter Ross2011-01-10
| | | | | | | | process_audio_header_elements() Fixes issue2529. Originally committed as revision 26302 to svn://svn.ffmpeg.org/ffmpeg/trunk
* electronicarts: only apply audio sanity checks when audio stream is presentPeter Ross2011-01-10
| | | | Originally committed as revision 26301 to svn://svn.ffmpeg.org/ffmpeg/trunk
* perform sanity check on sample rate in electronicarts demuxerDaniel Kang2011-01-10
| | | | | | | Fixes issue2525 Original patch by Daniel Kang, daniel.d.kang at gmail Originally committed as revision 26298 to svn://svn.ffmpeg.org/ffmpeg/trunk
* perform sanity check on number of channels in electronicarts demuxerDaniel Kang2011-01-10
| | | | | | | Fixes issue2514 Original patch by Daniel Kang, daniel.d.kang at gmail Originally committed as revision 26296 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add av_ prefix to bswap macrosMåns Rullgård2010-07-10
| | | | Originally committed as revision 24170 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove explicit filename from Doxygen @file commands.Diego Biurrun2010-04-20
| | | | | | | | Passing an explicit filename to this command is only necessary if the documentation in the @file block refers to a file different from the one the block resides in. Originally committed as revision 22921 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Replace all occurences of PKT_FLAG_KEY with AV_PKT_FLAG_KEY.Jean-Daniel Dupas2010-03-31
| | | | | | Patch by Jean-Daniel Dupas, devlists shadowlab org Originally committed as revision 22744 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Define AVMediaType enum, and use it instead of enum CodecType, whichStefano Sabatini2010-03-30
| | | | | | is deprecated and will be dropped at the next major bump. Originally committed as revision 22735 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use enum CodecID where appropriate.Carl Eugen Hoyos2010-01-10
| | | | Originally committed as revision 21119 to svn://svn.ffmpeg.org/ffmpeg/trunk
* do not create Electronic Arts audio stream when unsupported revision2 audio ↵Peter Ross2010-01-10
| | | | | | codec is present [issue1516] Originally committed as revision 21116 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Slightly improve probe for ea format by checking that it is possible toReimar Döffinger2009-09-17
| | | | | | guess whether the file is little- or big-endian. Originally committed as revision 19896 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Electronic Arts demuxer: support Madcow video tagPeter Ross2009-06-13
| | | | Originally committed as revision 19179 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove unused audio_pts field from ea demuxer structReimar Döffinger2009-04-16
| | | | Originally committed as revision 18538 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move ea demuxer messages that are irrelevant to ordinary users fromReimar Döffinger2009-04-12
| | | | | | AV_LOG_INFO to AV_LOG_DEBUG. Originally committed as revision 18464 to svn://svn.ffmpeg.org/ffmpeg/trunk
* ReindentReimar Döffinger2009-04-11
| | | | Originally committed as revision 18429 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make electronicarts demuxer return partial frames, this is the defaultReimar Döffinger2009-04-11
| | | | | | | | behaviour of av_get_packet and should not be override without good reason. As a side effect this fixes the memleak described in issue 956. Also return the exact error code from av_get_packet instead of AVERROR(EIO). Originally committed as revision 18428 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add av_uninit macro to variable to avoid false positive warning:Diego Biurrun2009-02-11
| | | | | | | libavformat/electronicarts.c: In function ‘ea_read_packet’: libavformat/electronicarts.c:447: warning: ‘num_samples’ may be used uninitialized in this function Originally committed as revision 17157 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Electronic Arts demuxer: support TQI video tagPeter Ross2009-02-05
| | | | Originally committed as revision 17003 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use full internal pathname in doxygen @file directives.Diego Biurrun2009-02-01
| | | | | | | Otherwise doxygen complains about ambiguous filenames when files exist under the same name in different subdirectories. Originally committed as revision 16912 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix build: Add intreadwrite.h and bswap.h #includes where necessary.Diego Biurrun2009-01-11
| | | | Originally committed as revision 16556 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Electronic Arts demuxer: support TGQ video tagsPeter Ross2008-11-08
| | | | Originally committed as revision 15791 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Bump Major version, this commit is almost just renaming bits_per_sample toLuca Abeni2008-09-08
| | | | | | | | | | | bits_per_coded_sample but that cannot be done seperately. Patch by Luca Abeni Also reset the minor version and fix the forgotton change to libfaad. Note: The API/ABI should not be considered stable yet, there still may be a change done here or there if some developer has some cleanup ideas and patches! Originally committed as revision 15262 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Support Electronic Arts files containing MP3 audio.Peter Ross2008-08-18
| | | | Originally committed as revision 14824 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Electronic Arts demuxer: support SxEN audio tags found in 'Need for Speed: ↵Peter Ross2008-08-12
| | | | | | Pro Street' computer game. Originally committed as revision 14713 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Electronic Arts demuxer: perform identification of ADPCM EA R2 codec using ↵Peter Ross2008-08-12
| | | | | | revision2 flag. Originally committed as revision 14710 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Electronic Arts demuxer: ignore PTxx platform ID values.Peter Ross2008-08-12
| | | | Originally committed as revision 14709 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Support Electronic Arts files containing MPEG2VIDEO.Peter Ross2008-08-12
| | | | Originally committed as revision 14708 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add MDEC tags to Electronic Arts demuxer.Peter Ross2008-08-10
| | | | Originally committed as revision 14679 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add Electronic Arts TGV chunk tags to EA demuxer.Peter Ross2008-08-06
| | | | Originally committed as revision 14643 to svn://svn.ffmpeg.org/ffmpeg/trunk
* EA Demuxer: make rev2 flag optionalPeter Ross2008-07-30
| | | | Originally committed as revision 14474 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Electronic Arts CMV demuxerPeter Ross2008-07-08
| | | | Originally committed as revision 14111 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make long_names in lavf/lavdev optional depending on CONFIG_SMALL.Stefano Sabatini2008-06-03
| | | | | | | patch by Stefano Sabatini, stefano.sabatini-lala poste.it along with some spelling/consistency fixes for the long names by me Originally committed as revision 13649 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix icc warning #188: enumerated type mixed with another typeCarl Eugen Hoyos2008-05-13
| | | | Originally committed as revision 13144 to svn://svn.ffmpeg.org/ffmpeg/trunk
* add pcm_s16le_planar support for electronicarts filesAurelien Jacobs2007-11-25
| | | | Originally committed as revision 11092 to svn://svn.ffmpeg.org/ffmpeg/trunk