Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | raw demuxer: initialize end of partial packets | Janne Grunau | 2012-12-05 | 1 | -0/+4 |
| | |||||
* | rawdec: remove ff_raw_read_header | Luca Barbato | 2012-10-25 | 1 | -70/+0 |
| | | | | It is not used anymore and is a kludge. | ||||
* | g722: refactor out of rawdec.c | Luca Barbato | 2012-10-25 | 1 | -12/+0 |
| | |||||
* | Replace PIX_FMT_* -> AV_PIX_FMT_*, PixelFormat -> AVPixelFormat | Anton Khirnov | 2012-10-08 | 1 | -2/+2 |
| | |||||
* | Replace all CODEC_ID_* with AV_CODEC_ID_* | Anton Khirnov | 2012-08-07 | 1 | -10/+10 |
| | |||||
* | lavf: deprecate r_frame_rate. | Anton Khirnov | 2012-07-29 | 1 | -1/+4 |
| | | | | | | | | | | | | | | | | | | | | According to its description, it is supposed to be the LCM of all the frame durations. The usability of such a thing is vanishingly small, especially since we cannot determine it with any amount of reliability. Therefore get rid of it after the next bump. Replace it with the average framerate where it makes sense. FATE results for the wtv and xmv demux tests change. In the wtv case this is caused by the file being corrupted (or possibly badly cut) and containing invalid timestamps. This results in lavf estimating the framerate wrong and making up wrong frame durations. In the xmv case the file contains pts jumps, so again the estimated framerate is far from anything sane and lavf again makes up different frame durations. In some other tests lavf starts making up frame durations from different frame. | ||||
* | cosmetics: Align muxer/demuxer declarations | Martin Storsjö | 2012-04-06 | 1 | -9/+9 |
| | | | | | | | Also add missing trailing commas, break long codec_tag lines and add spaces in codec_tag declarations. Signed-off-by: Martin Storsjö <martin@martin.st> | ||||
* | rawdec: set timebase to 1/fps. | Anton Khirnov | 2012-02-26 | 1 | -1/+1 |
| | |||||
* | lavf: rename AVInputFormat.value to raw_codec_id. | Anton Khirnov | 2012-01-31 | 1 | -8/+8 |
| | | | | It's only used by raw demuxers for storing the codec id. | ||||
* | lavf: remove AVFormatParameters from AVFormatContext.read_header signature | Anton Khirnov | 2012-01-27 | 1 | -5/+3 |
| | |||||
* | rawdec: Set start_time to 0 for raw audio files. | Reimar Döffinger | 2012-01-01 | 1 | -0/+1 |
| | | | | | | | None of the raw audio files have timestamps, thus setting start_time to 0 should be reasonable. Signed-off-by: Anton Khirnov <anton@khirnov.net> | ||||
* | rawdec: don't set codec timebase. | Anton Khirnov | 2011-12-10 | 1 | -1/+1 |
| | | | | | It's not supposed to be set outside of lavc. Set r_frame_rate and avg_frame_rate instead. | ||||
* | lavf: make av_set_pts_info private. | Anton Khirnov | 2011-11-30 | 1 | -3/+4 |
| | | | | It's supposed to be called only from (de)muxers. | ||||
* | Create separate functions for the raw GSM demuxer. | Justin Ruggles | 2011-11-02 | 1 | -12/+0 |
| | | | | | Put the new raw GSM demuxer in its own file. Fixes raw GSM demuxing. | ||||
* | lavf,lavd: replace av_new_stream->avformat_new_stream part I. | Anton Khirnov | 2011-10-19 | 1 | -3/+3 |
| | | | | | Trivial replacements with sed are done in this commit: sed 's/av_new_stream(\([^)]*\), 0)/avformat_new_stream(\1, NULL)/' | ||||
* | shn: do not allow seeking in the raw shn demuxer. | Justin Ruggles | 2011-10-13 | 1 | -1/+1 |
| | | | | | | The demuxer does not read the seektable, a parser is not possible without a full decode, and no shorten decoder can handle random seeking because it needs side info from the seektable. | ||||
* | AVOptions: rename FF_OPT_TYPE_* => AV_OPT_TYPE_* | Anton Khirnov | 2011-10-12 | 1 | -1/+1 |
| | |||||
* | Add LATM demuxer | Janne Grunau | 2011-09-22 | 1 | -0/+12 |
| | | | | | This is a raw demuxer for the AAC LATM decoder and thus limited to single stream LOAS. | ||||
* | rawdec: refactor private option for raw video demuxers | Anton Khirnov | 2011-09-17 | 1 | -13/+2 |
| | | | | | | | | pixel_format/video_size only apply to 'rawvideo' (==uncompressed) demuxer and make no sense for the other raw (== containerless) demuxers. Keep only the framerate option for those. Also use unique classes for all raw video demuxers | ||||
* | pcmdec: use unique classes for all pcm demuxers. | Anton Khirnov | 2011-09-17 | 1 | -13/+0 |
| | |||||
* | rawdec: g722 is always 1 channel/16kHz | Anton Khirnov | 2011-09-17 | 1 | -4/+5 |
| | |||||
* | lavf,lavd: remove all usage of AVFormatParameters from demuxers. | Anton Khirnov | 2011-08-15 | 1 | -21/+1 |
| | | | | | | AVFormatParameters are converted into corresponding private options in av_open_input_file/stream() compat wrappers, so accessing them from demuxers is redundant. | ||||
* | lavf: use designated initialisers for all (de)muxers. | Anton Khirnov | 2011-07-17 | 1 | -30/+21 |
| | | | | It's more readable and less prone to breakage. | ||||
* | lavf,lavc: free avoptions in a generic way. | Anton Khirnov | 2011-06-05 | 1 | -4/+0 |
| | | | | | | It's simpler and less error-prone. Fixes some memleaks along the way. | ||||
* | rawdec: add framerate private option. | Anton Khirnov | 2011-06-04 | 1 | -18/+30 |
| | |||||
* | rawdec: initialize return value to 0. | Anton Khirnov | 2011-06-03 | 1 | -1/+1 |
| | |||||
* | rawdec: don't leak option strings. | Anton Khirnov | 2011-06-03 | 1 | -1/+0 |
| | |||||
* | rawdec: add a pixel_format private option. | Anton Khirnov | 2011-05-27 | 1 | -10/+19 |
| | |||||
* | rawdec: factor video demuxer definitions into a macro. | Anton Khirnov | 2011-05-27 | 1 | -21/+2 |
| | |||||
* | rawdec: add video_size private option. | Anton Khirnov | 2011-05-27 | 1 | -3/+37 |
| | |||||
* | lavf: deprecate AVFormatParameters.{channels,sample_rate}. | Anton Khirnov | 2011-05-25 | 1 | -0/+2 |
| | |||||
* | rawdec: add sample_rate/channels private options. | Anton Khirnov | 2011-05-25 | 1 | -5/+31 |
| | |||||
* | Replace FFmpeg with Libav in licence headers | Mans Rullgard | 2011-03-19 | 1 | -4/+4 |
| | | | | Signed-off-by: Mans Rullgard <mans@mansr.com> | ||||
* | avio: add avio_tell macro as a replacement for url_ftell | Anton Khirnov | 2011-03-04 | 1 | -1/+1 |
| | | | | Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com> | ||||
* | avio: make get_partial_buffer internal. | Anton Khirnov | 2011-02-21 | 1 | -1/+2 |
| | | | | Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com> | ||||
* | Prefix all _demuxer, _muxer, _protocol from libavformat and libavdevice. | Diego Elio Pettenò | 2011-01-26 | 1 | -7/+7 |
| | | | | | 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. | ||||
* | Add a muxer and demuxer for raw G.722 | Martin Storsjö | 2010-09-09 | 1 | -0/+14 |
| | | | | Originally committed as revision 25087 to svn://svn.ffmpeg.org/ffmpeg/trunk | ||||
* | split raw.c into rawdec.c and rawenc.c | Aurelien Jacobs | 2010-08-30 | 1 | -0/+221 |
Originally committed as revision 24997 to svn://svn.ffmpeg.org/ffmpeg/trunk |