summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* flvenc: store delay and last_ts per-stream.Justin Ruggles2011-10-211-12/+22
|
* h264: fix ppc/altivec buildMans Rullgard2011-10-211-2/+2
| | | | Signed-off-by: Mans Rullgard <mans@mansr.com>
* Enable multithreding when decoding with libopenjpegJean First2011-10-211-9/+36
| | | | | | | Enable multithreding when decoding with libopenjpeg Signed-off-by: Michael Niedermayer <michaelni@gmx.at> Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
* h264: mark some MC functions with av_always_inline instead of inline.Ronald S. Bultje2011-10-211-27/+33
| | | | | This actually causes them to be inlined, leading to a significant speedup (1-1.5% in my measurements).
* H264: have hl_motion() and its callees take a chroma_idc argument.Ronald S. Bultje2011-10-211-52/+98
|
* H264: change weight/biweight functions to take a height argument.Ronald S. Bultje2011-10-2110-592/+337
| | | | Neon parts by Mans Rullgard <mans@mansr.com>.
* Support for lossless and inter H264 4:2:2.Ronald S. Bultje2011-10-214-17/+103
|
* h264: 4:2:2 intra decoding supportBaptiste Coudurier2011-10-2124-133/+673
| | | | | Signed-off-by: Diego Biurrun <diego@biurrun.de> Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
* sws/pixfmt/pixdesc: add support for yuv420p9le/be.Ronald S. Bultje2011-10-2111-0/+48
|
* Revert d1d421cbc0d13b08535f7fc08d179572ee352072: change to ↵Ronald S. Bultje2011-10-211-1/+1
| | | | fate-lavfi-crop_scale.
* vp8: fix up handling of segmentation_maps in reference frames.Ronald S. Bultje2011-10-212-14/+65
| | | | | | | | | Associate segmentation_map[] with reference frame, rather than decoding instance. This fixes cases where the map would be free()'ed on e.g. a size change in one thread, whereas the other thread was still accessing it. Also, it fixes cases where threads overwrite data that is still being referenced by the previous thread, who thinks that it's part of the frame previously decoded by the next thread.
* swscale: prevent overflow in coefficient calculation.Ronald S. Bultje2011-10-211-11/+12
|
* lavc: hide private symbols.Anton Khirnov2011-10-201-7/+6
| | | | Overhead as reported by rbelf-size goes from 90860 to 20204.
* lavc: deprecate img_get_alpha_info().Anton Khirnov2011-10-203-0/+8
| | | | | | It's never been touched or used in any way since it was added in 2003 and only works for PIX_FMT_PAL8, which makes me conclude that nobody's ever used it.
* lavc: use avpriv_ prefix for ff_toupper4.Anton Khirnov2011-10-204-6/+6
| | | | It's used in lavf.
* lavc: use avpriv_ prefix for ff_copy_bits and align_put_bits.Anton Khirnov2011-10-2022-38/+38
| | | | They are used in lavf.
* lavc: use avpriv_ prefix for ff_ac3_parse_header.Anton Khirnov2011-10-204-5/+5
| | | | It's used in lavf.
* lavc: use avpriv_ prefix for ff_frame_rate_tab.Anton Khirnov2011-10-208-17/+17
| | | | It's used in lavf.
* lavc: rename ff_find_start_code to avpriv_mpv_find_start_codeAnton Khirnov2011-10-208-11/+11
| | | | It's used in lavf.
* lavc: use avpriv_ prefix for ff_split_xiph_headers.Anton Khirnov2011-10-207-9/+9
| | | | It's used in lavf.
* lavc: use avpriv_ prefix for ff_dirac_parse_sequence_header.Anton Khirnov2011-10-203-4/+4
| | | | It's used in lavf.
* lavc: use avpriv_ prefix for some dv symbols used in lavf.Anton Khirnov2011-10-205-12/+12
| | | | Specifically, ff_dv_frame_profile and ff_dv_codec_profile.
* lavc: use avpriv_ prefix for some flac symbols used in lavf.Anton Khirnov2011-10-207-21/+21
| | | | | Specifically, ff_flac_parse_streaminfo, ff_flac_is_extradata_valid and ff_flac_parse_block_header
* lavc: use avpriv_ prefix for some mpeg4audio symbols used in lavf.Anton Khirnov2011-10-2016-25/+25
| | | | | Specifically, ff_mpeg4audio_sample_rates, ff_mpeg4audio_get_config and ff_copy_pce_data
* lavc: use avpriv_ prefix for some mpegaudio symbols used in lavf.Anton Khirnov2011-10-2012-29/+29
| | | | | Specifically, ff_mpa_freq_tab, ff_mpa_bitrate_tab, ff_mpa_decode_header, ff_mpegaudio_decode_header.
* lavc: use avpriv_ prefix for ff_aac_parse_header().Anton Khirnov2011-10-207-7/+7
| | | | It's used in lavf.
* lavf: hide private symbols.Anton Khirnov2011-10-201-5/+21
| | | | Overhead as reported by rbelf-size goes from 40147 to 20877.
* lavf: use avpriv_ prefix for some dv functions.Anton Khirnov2011-10-205-18/+18
| | | | They are used in libavdevice.
* lavf: use avpriv_ prefix for ff_new_chapter().Anton Khirnov2011-10-209-11/+11
| | | | It's used in libavdevice.
* avcodec: add CODEC_CAP_DELAY note to avcodec_decode_audio3() documentationJustin Ruggles2011-10-201-0/+4
|
* avcodec: clarify the CODEC_CAP_DELAY note in avcodec_decode_video2()Justin Ruggles2011-10-201-2/+3
|
* avcodec: clarify documentation of CODEC_CAP_DELAYJustin Ruggles2011-10-201-2/+4
|
* shorten: fix end-of-stream decoding.Justin Ruggles2011-10-202-15/+34
| | | | | | | | | | | | enable CODEC_CAP_DELAY to flush any remaining frames in the buffer. Stop decoding when the FN_QUIT command is found so that a trailing seek table isn't decoded as a normal frame. decode all channels in the same call to avcodec_decode_audio3() so that decoding will not stop after the first channel of the last frame. Updated FATE reference. More valid audio is now decoded.
* shorten: do not use block size to determine whether to read the header.Justin Ruggles2011-10-201-2/+4
|
* shorten: check output buffer size before decodingJustin Ruggles2011-10-201-1/+7
|
* shorten: use av_clip_int16() for output sample clippingJustin Ruggles2011-10-201-1/+1
|
* shorten: use bytestream functions to decode the embedded WAVE headerJustin Ruggles2011-10-201-26/+17
|
* shorten: add some commentsJustin Ruggles2011-10-201-0/+18
|
* shorten: merge decoding of FN_DIFF* subblocks into decode_subframe_lpc()Justin Ruggles2011-10-201-44/+39
|
* cosmetics: remove some needless commented-out stuffJustin Ruggles2011-10-201-2/+0
|
* shorten: validate block sizeJustin Ruggles2011-10-201-2/+15
|
* shorten: move declaration of 'ret' to top of shorten_decode_frame()Justin Ruggles2011-10-201-2/+2
|
* shorten: pass on error value from allocate_buffers() instead of returning -1Justin Ruggles2011-10-201-3/+3
|
* shorten: check for realloc failureJustin Ruggles2011-10-201-3/+17
|
* shorten: move decoding of prediction order and applying of global offset toJustin Ruggles2011-10-201-17/+27
| | | | decode_subframe_lpc().
* shorten: only calculate output size when returning decoded samples, otherwiseJustin Ruggles2011-10-201-4/+6
| | | | just set data_size to zero.
* cosmetics: reindentJustin Ruggles2011-10-201-81/+81
|
* shorten: separate processing of audio commands from non-audio commandsJustin Ruggles2011-10-201-34/+39
|
* shorten: skip some fields in the WAV header embedded in the shorten header.Justin Ruggles2011-10-201-3/+4
| | | | | fixes incorrect bitrate reporting and potential misreporting of the number of channels.
* shorten: split reading of file header into a separate functionsJustin Ruggles2011-10-201-61/+70
|
OpenPOWER on IntegriCloud