Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2011-09-08WTV muxer (1_extract_wtv_common_code.patch)zhentan feng
2011-05-01WTV: Add ff_ prefix to the moved fields.zhentan feng
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2011-05-01WTV:move the common variable used by wtvdec.c and wtvenc.c to a new file ↵zhentan feng
wtv.h and wtv.c. Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2011-05-01rename wtv.c to wtvdec.czhentan feng
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2011-04-15Merge commit 'a3a0af4fb1237bed0af75868073f9a63db8b1864'Michael Niedermayer
* commit 'a3a0af4fb1237bed0af75868073f9a63db8b1864': avutil: make aes and sha api public handle malloc failures in ff_get_wav_header add xWMA demuxer mpegts: force the default timebase libavcodec: Bump micro after adding the dtx AVOptions Merged-by: Michael Niedermayer <michaelni@gmx.at>
2011-04-14handle malloc failures in ff_get_wav_headerMax Horn
ff_get_wav_header is reading data from a WAVE file and then uses it (without validation) to malloc a buffer. It then proceeded to read data into the buffer, without verifying that the allocation succeeded. To address this, change ff_get_wav_header to return an error if allocation failed, and adapted all calling code to handle that error. Signed-off-by: Luca Barbato <lu_zero@gentoo.org>
2011-04-07move PRI_GUID, ARG_GUID, AVCodecGuid, ff_codec_guid_get_id, ↵Peter Ross
MEDIASUBTYPE_BASE_GUID and audio_guids[] to riff.c/h (add FF_ prefix to PRI_GUID, ARG_GUID, and MEDIASUBTYPE_BASE_GUID; rename audio_guids to ff_codec_wav_guids) Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2011-04-07Merge remote branch 'qatar/master'Michael Niedermayer
* qatar/master: Fix parser: mark av_parser_parse() for removal on next major bump swscale: postpone sws_getContext removal until next major bump. fate: add AAC LATM test mmst: get rid of deprecated AVERRORs lxfdec: use AVERROR(ENOMEM) instead of deprecated AVERROR_NOMEM. Reemove remaining uses of deprecated AVERROR_NOTSUPP. REIMPLEMENTED in 2 lines of code: lavf: if id3v2 tag is present and all else fails, guess by file extension Conflicts: libavformat/utils.c Merged-by: Michael Niedermayer <michaelni@gmx.at>
2011-04-06Reemove remaining uses of deprecated AVERROR_NOTSUPP.Anton Khirnov
2011-03-23Merge remote-tracking branch 'newdev/master'Michael Niedermayer
* newdev/master: (33 commits) Fix an infinite loop when RoQ encoded generated a frame with a size greater than the maximum valid size. Add kbdwin.o to AC3 decoder Detect byte-swapped AC-3 and support decoding it directly. cosmetics: indentation Always copy input data for AC3 decoder. ac3enc: make sym_quant() branch-free cosmetics: indentation Add a CPU flag for the Atom processor. id3v2: skip broken tags with invalid size id3v2: don't explicitly skip padding Make sure kbhit() is in conio.h fate: update wmv8-drm reference vc1: make P-frame deblock filter bit-exact. configure: Add the -D parameter to the dlltool command amr: Set the AVFMT_GENERIC_INDEX flag amr: Set the pkt->pos field properly to the start of the packet amr: Set the codec->bit_rate field based on the last packet rtsp: Specify unicast for TCP interleaved streams, too Set the correct target for mingw64 dlltool applehttp: Change the variable for stream position in seconds into int64_t ... Conflicts: ffmpeg.c ffplay.c libavcodec/ac3dec.c libavformat/avio.h libavformat/id3v2.c Merged-by: Michael Niedermayer <michaelni@gmx.at>
2011-03-21lavf: replace some more avio_seek(SEEK_CUR) with avio_skipAnton Khirnov
Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
2011-03-19Replace FFmpeg with Libav in licence headersMans Rullgard
Signed-off-by: Mans Rullgard <mans@mansr.com>
2011-03-17Merge remote-tracking branch 'newdev/master'Michael Niedermayer
Conflicts: Changelog doc/APIchanges doc/optimization.txt libavformat/avio.h Merged-by: Michael Niedermayer <michaelni@gmx.at>
2011-03-17lavf: replace avio_seek(SEEK_CUR) with avio_skip where it makes senseAnton Khirnov
Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
2011-03-15Merge remote-tracking branch 'newdev/master'Michael Niedermayer
Merged-by: Michael Niedermayer <michaelni@gmx.at>
2011-03-15avio: deprecate url_ferrorAnton Khirnov
AVIOContext.error should be used directly instead. Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
2011-03-08avio: deprecate url_feofAnton Khirnov
AVIOContext.eof_reached should be used directly instead. Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
2011-03-05avio: add avio_tell macro as a replacement for url_ftellAnton Khirnov
Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com> (cherry picked from commit a2704c9712ad35cc22e7e0d8a79b581c07fa383b)
2011-03-04avio: add avio_tell macro as a replacement for url_ftellAnton Khirnov
Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
2011-03-03lavf: replace all uses of url_fskip with avio_seekAnton Khirnov
Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com> (cherry picked from commit e356fc57a2e9887370caec58d8aafeafd1f336dc)
2011-03-03avio: avio_ prefix for url_fseekAnton Khirnov
Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com> (cherry picked from commit 6b4aa5dac8f41aa452d0ce9a1bede9e59a303060)
2011-03-01lavf: replace all uses of url_fskip with avio_seekAnton Khirnov
Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
2011-03-01avio: avio_ prefix for url_fseekAnton Khirnov
Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
2011-02-22avio: avio_ prefixes for get_* functionsAnton Khirnov
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> (cherry picked from commit b7effd4e8338f6ed5bda630ad7ed0809bf458648)
2011-02-22avio: rename av_alloc_put_byte -> avio_alloc_context for consistencyAnton Khirnov
Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com> (cherry picked from commit 8d9ac969cb4ac3e3e18f6425703af4d7aec6c513)
2011-02-21avio: avio_ prefixes for get_* functionsAnton Khirnov
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>
2011-02-21avio: rename av_alloc_put_byte -> avio_alloc_context for consistencyAnton Khirnov
Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
2011-02-20avio: rename ByteIOContext to AVIOContext.Anton Khirnov
Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com> (cherry picked from commit ae628ec1fd7f54c102bf9e667a3edd404b9b9128)
2011-02-20avio: rename ByteIOContext to AVIOContext.Anton Khirnov
Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
2011-02-15wtv: ignore empty data_guid chunksPeter Ross
Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com> (cherry picked from commit 1a973feb45826a1998b4286ecfe1fa7a602b8780)
2011-02-14wtv: ignore empty data_guid chunksPeter Ross
Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
2011-02-11wtv: mark streams intended for hearing or visual impaired personsPeter Ross
Signed-off-by: Janne Grunau <janne-ffmpeg@jannau.net> (cherry picked from commit 68137ba386933243a84fc65f0deb3ad0ce5ff0ea)
2011-02-11wtv: mark streams intended for hearing or visual impaired personsPeter Ross
Signed-off-by: Janne Grunau <janne-ffmpeg@jannau.net>
2011-02-06reindent after last commitPeter Ross
Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com> (cherry picked from commit 74571e333cc9abf3fe3fde3735698def1547db71)
2011-02-06wtv: do not use flag in stream_guid chunk to determine if stream is valid, ↵Peter Ross
as this method is unreliable This fixes roundup issue 2556. Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com> (cherry picked from commit e4f85b849913794395bb03dfc09546cd41b10882)
2011-02-06add ff_index_search_timestamp and ff_add_index_entryPeter Ross
Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com> (cherry picked from commit e6fb5a4f78a67ed815e39ba8ac3893fd631b9b1a)
2011-02-06wtv: filesystem implementationPeter Ross
Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com> (cherry picked from commit f61dee2fe4bc6a614079f37c25af1f92e90bc35b)
2011-02-06reindent after last commitPeter Ross
Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
2011-02-06wtv: do not use flag in stream_guid chunk to determine if stream is valid, ↵Peter Ross
as this method is unreliable This fixes roundup issue 2556. Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
2011-02-04add ff_index_search_timestamp and ff_add_index_entryPeter Ross
Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
2011-02-04wtv: filesystem implementationPeter Ross
Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
2011-01-28Prefix all _demuxer, _muxer, _protocol from libavformat and libavdevice.Diego Elio Pettenò
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. (cherry picked from commit c6610a216ed2948885772154a2eed696e0cb4aca)
2011-01-27Prefix all _demuxer, _muxer, _protocol from libavformat and libavdevice.Diego Elio Pettenò
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.
2011-01-14wtv: ignore VIDEOINFOHEADER2 picture aspect ratio information, as it is ↵Peter Ross
unreliable Originally committed as revision 26327 to svn://svn.ffmpeg.org/ffmpeg/trunk
2011-01-09fix indentationPeter Ross
Originally committed as revision 26278 to svn://svn.ffmpeg.org/ffmpeg/trunk
2011-01-09wtv: only process timestamp_guid chunks for streams that we know aboutPeter Ross
Originally committed as revision 26277 to svn://svn.ffmpeg.org/ffmpeg/trunk
2011-01-09wtv: do not repopulate codec information after we have seen data chunksPeter Ross
Originally committed as revision 26276 to svn://svn.ffmpeg.org/ffmpeg/trunk
2011-01-09wtv: stop processing chunks if length is smaller than chunk headerPeter Ross
Originally committed as revision 26275 to svn://svn.ffmpeg.org/ffmpeg/trunk
2011-01-09wtv: fix typoPeter Ross
Originally committed as revision 26274 to svn://svn.ffmpeg.org/ffmpeg/trunk
2011-01-04wtv: obtain codec information from stream2_guid chunks, if presentPeter Ross
Originally committed as revision 26208 to svn://svn.ffmpeg.org/ffmpeg/trunk