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

github.com/mpc-hc/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2014-06-27mpeg: Change ff_convert_matrix() to take an MpegEncContext parameterDiego Biurrun
This will come in handy during dsputil splitting.
2014-06-27dv: Properly split decoder and encoder initializationDiego Biurrun
2014-06-27dsputil: Move MMX/SSE2-optimized IDCT bits to the x86 subdirectoryDiego Biurrun
2014-06-27fate: Add dependencies for dct/fft/mdct/rdft testsDiego Biurrun
2014-06-26indeo4: B-frames decodingDirk Ausserhaus
Signed-off-by: Kostya Shishkov <kostya.shishkov@gmail.com>
2014-06-26indeo2: rename stride to pitch for consistency with other Indeo decodersKostya Shishkov
2014-06-26output example: free the muxing format context properlyAnton Khirnov
2014-06-26output example: rewrite encoding logicAnton Khirnov
Properly generate pts for the frames sent to the encoder, avoid using private and deprecated AVStream.pts.
2014-06-26output example: store the scaling context in the stream contextAnton Khirnov
2014-06-26output example: use a macro instead of a static variableAnton Khirnov
2014-06-26output example: allocate the audio frame only onceAnton Khirnov
2014-06-26output example: use OutputStream for audio streams as wellAnton Khirnov
2014-06-26output example: use the new AVFrame API to allocate audio framesAnton Khirnov
2014-06-26output example: set output channel layoutAnton Khirnov
2014-06-26output example: use a struct to bundle the video stream variables togetherAnton Khirnov
2014-06-26output example: use the new AVFrame API for allocating the video frameAnton Khirnov
2014-06-26dump_stream: print the timebase as is, do not reduce itAnton Khirnov
It makes more sense to print the timebase exactly as it is set. Also, this avoids a divide by zero when av_dump_format() is called on a format context before writing the header.
2014-06-26lavc: do not allocate edges in the default get_buffer2()Anton Khirnov
2014-06-26hevc: remove unused array min_cb_addr_zsGildas Cocherel
Signed-off-by: Anton Khirnov <anton@khirnov.net>
2014-06-26hevc: Allow out of bound values for num_reorder_picsKieran Kunhya
This fixes decoding for a sample that cannot be shared Signed-off-by: Anton Khirnov <anton@khirnov.net>
2014-06-26dv: Replace a magic number by sizeof()Diego Biurrun
2014-06-26x86: h264dsp: Fix link failure with optimizations disabledDiego Biurrun
With optimzations disabled compilers have trouble doing dead code elimination on 'if (foo && 0)' expressions, while 'if (0 && foo)' still works, so use the latter to avoid problems. Bug-Id: 707
2014-06-24mjpegdec: Properly set the context colorspace infoDerek Buitenhuis
The JPEG spec requires it to be this. Signed-off-by: Derek Buitenhuis <derek.buitenhuis@gmail.com>
2014-06-24h264: error out from decode_nal_units() when AV_EF_EXPLODE is setVittorio Giovara
Signed-off-by: Vittorio Giovara <vittorio.giovara@gmail.com>
2014-06-24jpeg2000: fix dereferencing invalid pointers during cleanupVittorio Giovara
CC: libav-stable@libav.org Found-by: Laurent Butti <laurentb@gmail.com> Signed-off-by: Vittorio Giovara <vittorio.giovara@gmail.com>
2014-06-24pixfmt: mark the reserved valuesVittorio Giovara
2014-06-23dsputil: Split off global motion compensation bits into a separate contextDiego Biurrun
2014-06-23h264: avoid using uninitialized memory in NEON chroma mcJanne Grunau
Adapt commit 982b596ea6640bfe218a31f6c3fc542d9fe61c31 for the arm and aarch64 NEON asm. 5-10% faster on Cortex-A9.
2014-06-23lzo: Handle integer overflowLuca Barbato
get_len can overflow for specially crafted payload. Reported-By: Don A. Baley <donb@securitymouse.com> CC: libav-stable@libav.org
2014-06-23indeo45: use is_indeo4 context flag instead of checking codec IDDirk Ausserhaus
Signed-off-by: Kostya Shishkov <kostya.shishkov@gmail.com>
2014-06-23dsputil: Split bswap*_buf() off into a separate contextDiego Biurrun
2014-06-23mpeg: Split error resilience bits off into a separate fileDiego Biurrun
2014-06-23Check mp3 header before calling avpriv_mpegaudio_decode_header().Justin Ruggles
As indicated in the function documentation, the header MUST be checked prior to calling it because no consistency check is done there. CC:libav-stable@libav.org
2014-06-23Check if an mp3 header is using a reserved sample rate.Justin Ruggles
Fixes an invalid read past the end of avpriv_mpa_freq_tab. Fixes divide-by-zero due to sample_rate being set to 0. Bug-Id: 705 CC:libav-stable@libav.org
2014-06-23Differentiate assembler and assembly in documentation and commentsDiego Biurrun
The language and the program that consumes the language are not the same.
2014-06-22libx264: Correctly manage constant rate factor paramsLuca Barbato
By default they are set to -1.
2014-06-22Replace av_malloc() and memset(0) by av_mallocz()Diego Biurrun
2014-06-22ape: Replace memset(0) by zero initializationDiego Biurrun
2014-06-22mpeg: Mark ff_mpeg_set_erpic() staticDiego Biurrun
It is not used outside of the file.
2014-06-22configure: Drop stray error resilience dependenciesDiego Biurrun
2014-06-22build: Record explicit dependency of intrax8 on error resilienceDiego Biurrun
2014-06-22build: Have the eatqi decoder depend on the MPEG-1 decoderDiego Biurrun
eatqi uses more than just the shared mpegvideo bits.
2014-06-22build: Add missing object files for webm muxerDiego Biurrun
2014-06-22build: Add missing object files for Matroska demuxerDiego Biurrun
2014-06-22build: Add missing replaygain object file for CAF demuxerDiego Biurrun
2014-06-22dsputil: Split audio operations off into a separate contextDiego Biurrun
2014-06-20h264: fix build when error resilience is disabledVittorio Giovara
2014-06-20Add av_image_check_sar() and use it to validate SARJustin Ruggles
2014-06-20dv: cosmetics, reindentAnton Khirnov
2014-06-20dv: get rid of global non-const tablesAnton Khirnov
Instead, store them in the context and compute on each parameter change.