]> git.sesse.net Git - ffmpeg/log
ffmpeg
8 years agovaapi: define a unique pixel format for VA-API (AV_PIX_FMT_VAAPI).
Gwenole Beauchesne [Tue, 28 Jul 2015 08:16:59 +0000 (10:16 +0200)]
vaapi: define a unique pixel format for VA-API (AV_PIX_FMT_VAAPI).

Deprecate older VA pixel formats (MOCO, IDCT) as it is now very unlikely
to ever be useful in the future. Only keep plain AV_PIX_FMT_VAAPI format
that is aliased to the older VLD variant.

This is an API change.

Signed-off-by: Gwenole Beauchesne <gwenole.beauchesne@intel.com>
8 years agoavcodec/qsvenc: Added PicTiming SEI
Sven Dueking [Wed, 19 Aug 2015 08:17:40 +0000 (09:17 +0100)]
avcodec/qsvenc: Added PicTiming SEI

Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
8 years agolibavformat/matroskaenc.c: fix small memory leaks on error
Neil Birkbeck [Wed, 19 Aug 2015 08:06:56 +0000 (01:06 -0700)]
libavformat/matroskaenc.c: fix small memory leaks on error

Fixing small leaks that can occur when mkv_write_tracks fails in mkv_write_header
(e.g., if video track has unknown codec). Also changing mkv_write_seekhead to take
the MatroskaMuxContext to avoid having dangling pointers.

Signed-off-by: Neil Birkbeck <neil.birkbeck@gmail.com>
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
8 years agoavfilter/vf_histogram: make it possible to pick color components for levels mode
Paul B Mahol [Wed, 19 Aug 2015 10:05:33 +0000 (10:05 +0000)]
avfilter/vf_histogram: make it possible to pick color components for levels mode

Signed-off-by: Paul B Mahol <onemda@gmail.com>
8 years agolavfi: fix compilation with FF_API_OLD_FILTER_OPTS=0.
Ronald S. Bultje [Mon, 17 Aug 2015 02:26:16 +0000 (22:26 -0400)]
lavfi: fix compilation with FF_API_OLD_FILTER_OPTS=0.

8 years agofate: Force simple idct for fate-asf-repldata
Michael Niedermayer [Wed, 19 Aug 2015 01:07:12 +0000 (03:07 +0200)]
fate: Force simple idct for fate-asf-repldata

otherwise it can fail when a different idct is used on some platform

Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
8 years agodoc/indevs: fix fbdev typos
Lou Logan [Tue, 18 Aug 2015 20:55:15 +0000 (12:55 -0800)]
doc/indevs: fix fbdev typos

Fixes ticket #4784 as found by rodarmor.

Signed-off-by: Lou Logan <lou@lrcd.com>
Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
8 years agoswscale: Fixed typos
Pedro Arthur [Tue, 18 Aug 2015 18:06:49 +0000 (15:06 -0300)]
swscale: Fixed typos

Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
8 years agoswscale: fixed compiler warnings
Pedro Arthur [Tue, 18 Aug 2015 18:06:49 +0000 (15:06 -0300)]
swscale: fixed compiler warnings

Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
8 years agoswscale: add license headers and copyrights
Pedro Arthur [Tue, 18 Aug 2015 18:06:49 +0000 (15:06 -0300)]
swscale: add license headers and copyrights

Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
8 years agolibx264: Add option to force IDR frames
Derek Buitenhuis [Tue, 18 Aug 2015 20:39:01 +0000 (17:39 -0300)]
libx264: Add option to force IDR frames

Currently, when forcing an I frame, via API, or via the ffmpeg cli,
using -force_key_frames, we still let x264 decide what sort of
keyframe to user. In some cases, it is useful to be able to force
an IDR frame, e.g. for cutting streams.

Signed-off-by: Derek Buitenhuis <derek.buitenhuis@gmail.com>
8 years agolavu: disable wrong value check in get_version() upon api bump.
Ronald S. Bultje [Sun, 16 Aug 2015 23:41:17 +0000 (19:41 -0400)]
lavu: disable wrong value check in get_version() upon api bump.

8 years agolavc: move vdpau decoders under FF_API_VDPAU.
wm4 [Mon, 17 Aug 2015 21:05:34 +0000 (17:05 -0400)]
lavc: move vdpau decoders under FF_API_VDPAU.

Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
8 years agolavc: put remaining bits of vdpau-in-decoder under FF_API_CAP_VDPAU.
Ronald S. Bultje [Sun, 16 Aug 2015 23:35:59 +0000 (19:35 -0400)]
lavc: put remaining bits of vdpau-in-decoder under FF_API_CAP_VDPAU.

8 years agoPrepare for removal of obsolete FF_IDCT_* members.
Ronald S. Bultje [Sun, 16 Aug 2015 23:37:46 +0000 (19:37 -0400)]
Prepare for removal of obsolete FF_IDCT_* members.

8 years agompeg4video: use ff_dlog instead of av_log under debug&FF_DEBUG_PTS.
Ronald S. Bultje [Tue, 18 Aug 2015 00:44:53 +0000 (20:44 -0400)]
mpeg4video: use ff_dlog instead of av_log under debug&FF_DEBUG_PTS.

This fixes compilation with FF_API_UNUSED_MEMBERS=0.

8 years agoconfigure: force -mconsole when linking SDL under MinGW
Stephen Hutchinson [Tue, 18 Aug 2015 16:00:06 +0000 (12:00 -0400)]
configure: force -mconsole when linking SDL under MinGW

When building SDL with MinGW, it sets -mwindows with the
assumption that the application is a GUI application. If this
is linked without passing -mconsole to configure via
--extra-ldflags, stdout will be silenced from cmd.exe while
running FFmpeg.

The -mwindows flag that causes this behavior is included in the
sdl_libs variable, so append -mconsole there rather than create
an sdl_ldflags case just to insert it (especially if -mconsole
must come *after* -mwindows in order to be effective).

Reviewed-by: Timothy Gu <timothygu99@gmail.com>
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
8 years agoUndeprecate av_opt_set_defaults2().
Ronald S. Bultje [Sun, 16 Aug 2015 23:40:48 +0000 (19:40 -0400)]
Undeprecate av_opt_set_defaults2().

8 years agolavc: fix compilation with FF_API_XVMC.
Ronald S. Bultje [Mon, 17 Aug 2015 11:40:01 +0000 (07:40 -0400)]
lavc: fix compilation with FF_API_XVMC.

8 years agooptions: mark av_get_{int,double,q} as deprecated.
Ronald S. Bultje [Sun, 16 Aug 2015 20:11:13 +0000 (16:11 -0400)]
options: mark av_get_{int,double,q} as deprecated.

Convert last users to av_opt_get_*() counterparts.

8 years agolibvpxenc: make flags i64 instead of dbl.
Ronald S. Bultje [Mon, 17 Aug 2015 21:10:56 +0000 (17:10 -0400)]
libvpxenc: make flags i64 instead of dbl.

8 years agoFF_OPT_TYPE_* -> AV_OPT_TYPE_*.
Ronald S. Bultje [Sun, 16 Aug 2015 23:34:13 +0000 (19:34 -0400)]
FF_OPT_TYPE_* -> AV_OPT_TYPE_*.

8 years agoReplace av_dlog with ff_dlog.
Ronald S. Bultje [Tue, 18 Aug 2015 00:45:35 +0000 (20:45 -0400)]
Replace av_dlog with ff_dlog.

ff_dlog checks compilability, and is non-public. av_dlog is deprecated
and no longer exists if FF_API_DLOG=0.

8 years agolavfi: add error message to help users convert to new lavfi syntax.
Ronald S. Bultje [Tue, 18 Aug 2015 00:04:57 +0000 (20:04 -0400)]
lavfi: add error message to help users convert to new lavfi syntax.

8 years agoscale2ref: override request_frame() and correctly connect them to the corresponding...
Michael Niedermayer [Tue, 18 Aug 2015 13:10:30 +0000 (15:10 +0200)]
scale2ref: override request_frame() and correctly connect them to the corresponding inputs

Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
8 years agoavfilter/vf_scale: Set scale2ref ref output timebase
Michael Niedermayer [Tue, 18 Aug 2015 13:06:10 +0000 (15:06 +0200)]
avfilter/vf_scale: Set scale2ref ref output timebase

Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
8 years agoMove ff_dlog from lavc to lavu.
Ronald S. Bultje [Tue, 18 Aug 2015 00:27:25 +0000 (20:27 -0400)]
Move ff_dlog from lavc to lavu.

8 years agoconfigure: Use pkg-config for libkvazaar.
Arttu Ylä-Outinen [Tue, 18 Aug 2015 06:04:41 +0000 (09:04 +0300)]
configure: Use pkg-config for libkvazaar.

Signed-off-by: Arttu Ylä-Outinen <arttu.yla-outinen@tut.fi>
Liked-by: wm4 <nfxjfg@googlemail.com>
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
8 years agoMerge commit '317cfaa5e09755ed0b34af512ec687963a67bdbf'
Hendrik Leppkes [Tue, 18 Aug 2015 07:35:56 +0000 (09:35 +0200)]
Merge commit '317cfaa5e09755ed0b34af512ec687963a67bdbf'

* commit '317cfaa5e09755ed0b34af512ec687963a67bdbf':
  asfdec: prevent the memory leak in the asf_read_metada_obj

Merged-by: Hendrik Leppkes <h.leppkes@gmail.com>
8 years agoMerge commit '58c3720a3cc71142b5d48d8ccdc9213f9a66cd33'
Hendrik Leppkes [Tue, 18 Aug 2015 07:34:53 +0000 (09:34 +0200)]
Merge commit '58c3720a3cc71142b5d48d8ccdc9213f9a66cd33'

* commit '58c3720a3cc71142b5d48d8ccdc9213f9a66cd33':
  fate: Make sure a corner-case for ASF is covered

Adjusted fate ref to match the different timebase of the ffasf demuxer

Merged-by: Hendrik Leppkes <h.leppkes@gmail.com>
8 years agoMerge commit '72839fce6457fdb5d51b4a5381ac52914ee66389'
Hendrik Leppkes [Tue, 18 Aug 2015 07:22:41 +0000 (09:22 +0200)]
Merge commit '72839fce6457fdb5d51b4a5381ac52914ee66389'

* commit '72839fce6457fdb5d51b4a5381ac52914ee66389':
  hlsenc: Use AV_TIME_BASE units for all the computations

Not merged, duration/time computation is handled quite differently in ffmpeg's hlsenc

Merged-by: Hendrik Leppkes <h.leppkes@gmail.com>
8 years agoMerge commit '7bf9647264308d2df74b2b50669f2d02a7ecc90b'
Hendrik Leppkes [Tue, 18 Aug 2015 07:14:08 +0000 (09:14 +0200)]
Merge commit '7bf9647264308d2df74b2b50669f2d02a7ecc90b'

* commit '7bf9647264308d2df74b2b50669f2d02a7ecc90b':
  vp7: bound checking in vp7_decode_frame_header

Only partially merged, see 46f72ea507afee6adb0d2324848159063d0e7afc

Merged-by: Hendrik Leppkes <h.leppkes@gmail.com>
8 years agoMerge commit 'f34b152eb7b7e8d2aee57c710a072cf74173fbe1'
Hendrik Leppkes [Tue, 18 Aug 2015 07:09:55 +0000 (09:09 +0200)]
Merge commit 'f34b152eb7b7e8d2aee57c710a072cf74173fbe1'

* commit 'f34b152eb7b7e8d2aee57c710a072cf74173fbe1':
  libfdk-aacdec: Clean up properly if the init fails

Merged-by: Hendrik Leppkes <h.leppkes@gmail.com>
8 years agoMerge commit '1b90433f79de857550d4d8c35c89fbe954920594'
Hendrik Leppkes [Tue, 18 Aug 2015 07:05:54 +0000 (09:05 +0200)]
Merge commit '1b90433f79de857550d4d8c35c89fbe954920594'

* commit '1b90433f79de857550d4d8c35c89fbe954920594':
  libfdk-aacdec: Always decode into an intermediate buffer

Conflicts:
libavcodec/libfdk-aacdec.c

Merged-by: Hendrik Leppkes <h.leppkes@gmail.com>
8 years agoMerge commit '87de6ddb7b7674e329d5c96677bd8685bc7f7855'
Hendrik Leppkes [Tue, 18 Aug 2015 07:02:15 +0000 (09:02 +0200)]
Merge commit '87de6ddb7b7674e329d5c96677bd8685bc7f7855'

* commit '87de6ddb7b7674e329d5c96677bd8685bc7f7855':
  libfdk-aacdec: Bump the max number of channels to 8

Merged-by: Hendrik Leppkes <h.leppkes@gmail.com>
8 years agoMerge commit 'cb2dbe2c762dae44d890aa26620bcdd9022fd0f3'
Hendrik Leppkes [Tue, 18 Aug 2015 07:02:01 +0000 (09:02 +0200)]
Merge commit 'cb2dbe2c762dae44d890aa26620bcdd9022fd0f3'

* commit 'cb2dbe2c762dae44d890aa26620bcdd9022fd0f3':
  configure: arm: Assume softfp ABI on darwin

Merged-by: Hendrik Leppkes <h.leppkes@gmail.com>
8 years agoMerge commit '44b44441203177690305c294be6eff8d9c668954'
Hendrik Leppkes [Tue, 18 Aug 2015 07:01:35 +0000 (09:01 +0200)]
Merge commit '44b44441203177690305c294be6eff8d9c668954'

* commit '44b44441203177690305c294be6eff8d9c668954':
  x86inc: Various minor backports from x264

Merged-by: Hendrik Leppkes <h.leppkes@gmail.com>
8 years agoMerge commit '26ac22e5e7394346e9d59f800e7d4e91f4518d33'
Hendrik Leppkes [Tue, 18 Aug 2015 06:50:22 +0000 (08:50 +0200)]
Merge commit '26ac22e5e7394346e9d59f800e7d4e91f4518d33'

* commit '26ac22e5e7394346e9d59f800e7d4e91f4518d33':
  movenc: Add a new flag for writing global sidx indexes for dash

Conflicts:
libavformat/movenc.c
libavformat/movenc.h

Merged-by: Hendrik Leppkes <h.leppkes@gmail.com>
8 years agoswscale: process horizontal lines in batches
Pedro Arthur [Mon, 17 Aug 2015 20:07:53 +0000 (17:07 -0300)]
swscale: process horizontal lines in batches

Process more lines in a single pass to improve performance

Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
8 years agoswscale: refactor horizontal scaling
Pedro Arthur [Mon, 17 Aug 2015 20:03:20 +0000 (17:03 -0300)]
swscale: refactor horizontal scaling

+ split color conversion from scaling
- disabled gamma correction, until it's refactored too

Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
8 years agofate: add -fflags +bitexact in a few places.
Ronald S. Bultje [Mon, 17 Aug 2015 19:47:20 +0000 (15:47 -0400)]
fate: add -fflags +bitexact in a few places.

This improves results after FF_API_LAVF_BITEXACT=0. It still doesn't
pass, because of mov rtphint track which I don't understand (yet).

8 years agofate: explicitly specify audio bitrate for adpcm/mp2fixed tests.
Ronald S. Bultje [Mon, 17 Aug 2015 15:50:12 +0000 (11:50 -0400)]
fate: explicitly specify audio bitrate for adpcm/mp2fixed tests.

They picked up defaults, which changes from 128 to 200 when we remove
FF_API_OLD_AVOPTIONS.

8 years agofate: move -flags +mv0 -> -mpv_flags +mv0.
Ronald S. Bultje [Mon, 17 Aug 2015 20:08:50 +0000 (16:08 -0400)]
fate: move -flags +mv0 -> -mpv_flags +mv0.

Fixes associated fate tests when FF_API_MV0=0.

8 years agoavfilter: add scale2ref filter
Michael Niedermayer [Sat, 15 Aug 2015 16:38:06 +0000 (18:38 +0200)]
avfilter: add scale2ref filter

This filter can be used to scale one stream to match another or based on
another, useful to scale subtitles or other things to be overlayed

Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
8 years agolavc/mjpegdec: Detect more CMYK images.
Carl Eugen Hoyos [Mon, 17 Aug 2015 13:53:41 +0000 (15:53 +0200)]
lavc/mjpegdec: Detect more CMYK images.

Fixes ticket #4772.

8 years agoswscale/swscale-test: Fix slice height in random reference data creation.
Michael Niedermayer [Mon, 17 Aug 2015 01:08:10 +0000 (03:08 +0200)]
swscale/swscale-test: Fix slice height in random reference data creation.

Found-by: Pedro Arthur <bygrandao@gmail.com>
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
8 years agoavcodec/rv30: fix switching back to the original resolution
Michael Niedermayer [Sun, 16 Aug 2015 23:50:20 +0000 (01:50 +0200)]
avcodec/rv30: fix switching back to the original resolution

Fixes part of Ticket1388

Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
8 years agoffmpeg_vdpau: Ignore decoder's max supported level
Philip Langdale [Wed, 24 Jun 2015 03:37:08 +0000 (20:37 -0700)]
ffmpeg_vdpau: Ignore decoder's max supported level

The h264 decoder reports 4.1 as its maximum level, but it will decode
5.1 4K video just fine. In practice, the published level limits in
vdpau do not communicate anything that's actually useful.

8 years agobuffersink: introduce FIFO_INIT_ELEMENT_SIZE to complement FIFO_INIT_SIZE
Andreas Cadhalpun [Sun, 16 Aug 2015 15:57:36 +0000 (17:57 +0200)]
buffersink: introduce FIFO_INIT_ELEMENT_SIZE to complement FIFO_INIT_SIZE

Use sizeof(void *) as its value, because AVFilterBufferRef is deprecated.

Reviewed-by: Michael Niedermayer <michael@niedermayer.cc>
Signed-off-by: Andreas Cadhalpun <Andreas.Cadhalpun@googlemail.com>
8 years agoasfdec: prevent the memory leak in the asf_read_metada_obj
Alexandra Hájková [Thu, 13 Aug 2015 08:16:20 +0000 (10:16 +0200)]
asfdec: prevent the memory leak in the asf_read_metada_obj

also do not return the error code but just break reading
metadata object in the case of the aspect ratio reading failure

Signed-off-by: Luca Barbato <lu_zero@gentoo.org>
8 years agofate: Make sure a corner-case for ASF is covered
Alexandra Hájková [Fri, 14 Aug 2015 09:42:26 +0000 (11:42 +0200)]
fate: Make sure a corner-case for ASF is covered

Test the demuxer for the case when the replicated data length in
a sample is 0.

Sample-ID: https://samples.libav.org/mplayer-bugs/bug821/bug821-2.asf

Signed-off-by: Luca Barbato <lu_zero@gentoo.org>
8 years agohlsenc: Use AV_TIME_BASE units for all the computations
Luca Barbato [Fri, 14 Aug 2015 20:01:45 +0000 (22:01 +0200)]
hlsenc: Use AV_TIME_BASE units for all the computations

Do not risk mixing different timebases.

CC: libav-stable@libav.org
Signed-off-by: Luca Barbato <lu_zero@gentoo.org>
8 years agovp7: bound checking in vp7_decode_frame_header
Federico Tomassetti [Thu, 13 Aug 2015 13:35:53 +0000 (15:35 +0200)]
vp7: bound checking in vp7_decode_frame_header

CC: libav-stable@libav.org
8 years agoffmpeg: use av_buffersrc_add_frame instead of av_buffersrc_add_ref
Andreas Cadhalpun [Sat, 8 Aug 2015 08:41:32 +0000 (10:41 +0200)]
ffmpeg: use av_buffersrc_add_frame instead of av_buffersrc_add_ref

Reviewed-by: Michael Niedermayer <michael@niedermayer.cc>
Signed-off-by: Andreas Cadhalpun <Andreas.Cadhalpun@googlemail.com>
8 years agoavfilter/avfiltergraph: Implement and use find_best_sample_fmt_of_2()
Michael Niedermayer [Sun, 16 Aug 2015 12:59:18 +0000 (14:59 +0200)]
avfilter/avfiltergraph: Implement and use find_best_sample_fmt_of_2()

Similar to the pixel format code

Fixes Ticket3847

Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
8 years agolavf/matroskadec: Fully parse and repack MP3 packets
Rodger Combs [Sun, 16 Aug 2015 08:06:04 +0000 (03:06 -0500)]
lavf/matroskadec: Fully parse and repack MP3 packets

Fixes https://trac.ffmpeg.org/ticket/4776

Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
8 years agodoc/filter_design: Remove reference to the deprecated and unused cur_buf_copy
Michael Niedermayer [Sun, 16 Aug 2015 02:00:26 +0000 (04:00 +0200)]
doc/filter_design: Remove reference to the deprecated and unused cur_buf_copy

Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
8 years agodoc/examples: rename avio_list_dir -> avio_dir_cmd
Mariusz Szczepańczyk [Sat, 15 Aug 2015 15:59:17 +0000 (17:59 +0200)]
doc/examples: rename avio_list_dir -> avio_dir_cmd

Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
8 years agolibfdk-aacdec: Clean up properly if the init fails
Martin Storsjö [Fri, 14 Aug 2015 08:33:03 +0000 (11:33 +0300)]
libfdk-aacdec: Clean up properly if the init fails

Previously most of the error paths leaked.

Also add FF_CODEC_CAP_INIT_THREADSAFE while adding caps_internal;
this decoder wrapper doesn't have any static data that is initialized.

Signed-off-by: Martin Storsjö <martin@martin.st>
8 years agolibfdk-aacdec: Always decode into an intermediate buffer
Martin Storsjö [Fri, 14 Aug 2015 08:05:30 +0000 (11:05 +0300)]
libfdk-aacdec: Always decode into an intermediate buffer

For ADTS streams, the output format (number of channels, frame size)
can change at any point (with the latest version of fdk-aac, the decoder
seems to change format after a handful of frames, not outputting the
right format immediately, for cases that worked fine with the earlier
version of the lib).

Previously, the decoder decoded straight into the output frame once the
number of channels and frame size was known. This obviously does not
work if the number of channels or frame size changes.

The alternative would be to allocate the AVFrame with the maximum number
of channels and frame size, and change them afterward decoding into it,
but that may cause confusion to users e.g. of the get_buffer callback.
This solution should be more robust.

CC: libav-stable@libav.org
Signed-off-by: Martin Storsjö <martin@martin.st>
8 years agolibfdk-aacdec: Bump the max number of channels to 8
Martin Storsjö [Fri, 14 Aug 2015 07:55:54 +0000 (10:55 +0300)]
libfdk-aacdec: Bump the max number of channels to 8

In the latest version of fdk-aac, the decoder can output up to 8
channels; take this into account when preallocating buffers that
need to fit the output from any packet.

CC: libav-stable@libav.org
Signed-off-by: Martin Storsjö <martin@martin.st>
8 years agoconfigure: arm: Assume softfp ABI on darwin
Martin Storsjö [Fri, 14 Aug 2015 06:47:21 +0000 (09:47 +0300)]
configure: arm: Assume softfp ABI on darwin

Don't try to detect the float ABI by checking at the toolchain
name or by trying to assemble and link files with eabi_attributes.

This fixes the float ABI detection when building using clang
with -fembed-bitcode, where the current eabi_attributes check
accidentally passes.

This issue was pointed out by James Howe <james.howe@hp.com>.

CC: libav-stable@libav.org
Signed-off-by: Martin Storsjö <martin@martin.st>
8 years agoffmpeg: Use the decoders dimensions in sub2video_get_blank_frame()
Michael Niedermayer [Sat, 15 Aug 2015 15:28:21 +0000 (17:28 +0200)]
ffmpeg: Use the decoders dimensions in sub2video_get_blank_frame()

Fixes Ticket4744 part3

Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
8 years agoffmpeg: Use actual frame dimensions in checks in sub2video_update()
Michael Niedermayer [Sat, 15 Aug 2015 15:28:16 +0000 (17:28 +0200)]
ffmpeg: Use actual frame dimensions in checks in sub2video_update()

Fixes Ticket4744 part2

Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
8 years agoffmpeg: Print sub2video: rectangle coordinates in case of overflows
Michael Niedermayer [Wed, 12 Aug 2015 22:45:06 +0000 (00:45 +0200)]
ffmpeg: Print sub2video: rectangle coordinates in case of overflows

Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
8 years agoffmpeg_filter: Do not override the dimensions in sub2video_prepare()
Michael Niedermayer [Sat, 15 Aug 2015 15:27:25 +0000 (17:27 +0200)]
ffmpeg_filter: Do not override the dimensions in sub2video_prepare()

Fixes ticket4744 part1

Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
8 years agoavcodec/flashsvenc: Correct max dimension in error message
Michael Niedermayer [Sat, 15 Aug 2015 13:21:04 +0000 (15:21 +0200)]
avcodec/flashsvenc: Correct max dimension in error message

Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
8 years agoavcodec/svq1enc: Check dimensions
Michael Niedermayer [Sat, 15 Aug 2015 12:54:36 +0000 (14:54 +0200)]
avcodec/svq1enc: Check dimensions

Fixes assertion failure

Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
8 years agomovtextdec: Add support for automatic text wrapping
Niklesh [Fri, 14 Aug 2015 14:49:51 +0000 (20:19 +0530)]
movtextdec: Add support for automatic text wrapping

The value of wrap_flag in the Text Wrap Box specifies if the text is to
be wrapped or not. Uses 'end of line wrap' amongst the wrap styles
supported by ASS if the text is to be wrapped, i.e; fill as much text
in a line as possible, then break to next line.

The 3GPP spec has no provision for smart wrapping.

Signed-off-by: Niklesh <niklesh.lalwani@iitb.ac.in>
8 years agoexamples/avio_list_dir: add move and delete methods
Mariusz Szczepańczyk [Sat, 15 Aug 2015 00:01:20 +0000 (02:01 +0200)]
examples/avio_list_dir: add move and delete methods

Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
8 years agoavfilter/avf_avectorscope: add polar mode
Paul B Mahol [Fri, 14 Aug 2015 15:24:56 +0000 (17:24 +0200)]
avfilter/avf_avectorscope: add polar mode

8 years agoavcodec/qsvenc: Set MaxKpbs to rc_max_rate for CBR and VBR (bitrate is equal to rc_ma...
Sven Dueking [Fri, 14 Aug 2015 10:46:22 +0000 (12:46 +0200)]
avcodec/qsvenc: Set MaxKpbs to rc_max_rate for CBR and VBR (bitrate is equal to rc_max_rate for CBR)

Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
8 years agomxfdec: set AVFMT_SEEK_TO_PTS demuxer flag
Marton Balint [Sun, 9 Aug 2015 18:32:02 +0000 (20:32 +0200)]
mxfdec: set AVFMT_SEEK_TO_PTS demuxer flag

Since 53f2ef2c4afb1d49a679dea9163cb0e4671f3117 seeking is done using PTS.

Signed-off-by: Marton Balint <cus@passwd.hu>
8 years agoavcodec/faxcompr: negate uncompressed runs
Michael Niedermayer [Fri, 14 Aug 2015 11:37:36 +0000 (13:37 +0200)]
avcodec/faxcompr: negate uncompressed runs

Fixes remaining part of Ticket700

Found-by: ami_stuff
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
8 years agoavcodec/faxcompr: Factor decode_uncompressed() out
Michael Niedermayer [Fri, 14 Aug 2015 11:06:08 +0000 (13:06 +0200)]
avcodec/faxcompr: Factor decode_uncompressed() out

Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
8 years agolavf/mpegts: apply misc option description fixes
Stefano Sabatini [Fri, 14 Aug 2015 09:11:32 +0000 (11:11 +0200)]
lavf/mpegts: apply misc option description fixes

Use impersonal form, drop capitalization and ending dot.

8 years agodoc/demuxers/mpegts: apply a minor grammar fix to option description
Stefano Sabatini [Thu, 13 Aug 2015 11:27:24 +0000 (13:27 +0200)]
doc/demuxers/mpegts: apply a minor grammar fix to option description

Consistently use impersonal form.

8 years agodoc/demuxers/mpegts: update documentation
Stefano Sabatini [Thu, 13 Aug 2015 11:19:20 +0000 (13:19 +0200)]
doc/demuxers/mpegts: update documentation

The description is yet crappy, it merely copies the description of the
added and undocumented options and their value range. More descriptive
documentation is welcome.

8 years agoffmpeg_opt: Prefer audio streams with packets
Michael Niedermayer [Fri, 14 Aug 2015 03:07:11 +0000 (05:07 +0200)]
ffmpeg_opt: Prefer audio streams with packets

Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
8 years agoavformat/rmdec: MLTI with multiple MDPR support
Michael Niedermayer [Fri, 14 Aug 2015 02:37:08 +0000 (04:37 +0200)]
avformat/rmdec: MLTI with multiple MDPR support

Fixes Ticket4496

Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
8 years agoavformat/rmdec: Move MLTI handling out of ff_rm_read_mdpr_codecdata()
Michael Niedermayer [Fri, 14 Aug 2015 01:20:40 +0000 (03:20 +0200)]
avformat/rmdec: Move MLTI handling out of ff_rm_read_mdpr_codecdata()

Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
8 years agolavf/ftp: implement NLST method
Mariusz Szczepańczyk [Tue, 16 Jun 2015 18:41:31 +0000 (20:41 +0200)]
lavf/ftp: implement NLST method

Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
8 years agodoc/developer: Suggest everyone to help with patch reviews
Michael Niedermayer [Thu, 13 Aug 2015 15:28:50 +0000 (17:28 +0200)]
doc/developer: Suggest everyone to help with patch reviews

Reviewed-by: Timothy Gu <timothygu99@gmail.com>
Reviewed-by: compn <tempn@mi.rr.com>
Reviewed-by: Ganesh Ajjanagadde <gajjanag@mit.edu>
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
8 years agocrypto_bench: add support for ripemd-128
James Almer [Sun, 2 Aug 2015 20:40:43 +0000 (17:40 -0300)]
crypto_bench: add support for ripemd-128

Reviewed-by: Nicolas George <george@nsup.org>
Signed-off-by: James Almer <jamrial@gmail.com>
8 years agocrypto_bench: add support for xtea
James Almer [Sun, 2 Aug 2015 18:29:35 +0000 (15:29 -0300)]
crypto_bench: add support for xtea

Reviewed-by: Nicolas George <george@nsup.org>
Signed-off-by: James Almer <jamrial@gmail.com>
8 years agocrypto_bench: add support for rc4
James Almer [Sun, 2 Aug 2015 18:23:35 +0000 (15:23 -0300)]
crypto_bench: add support for rc4

Reviewed-by: Nicolas George <george@nsup.org>
Signed-off-by: James Almer <jamrial@gmail.com>
8 years agocrypto_bench: add support for blowfish
James Almer [Sun, 2 Aug 2015 18:13:13 +0000 (15:13 -0300)]
crypto_bench: add support for blowfish

Reviewed-by: Nicolas George <george@nsup.org>
Signed-off-by: James Almer <jamrial@gmail.com>
8 years agoavcodec/tiff: Support uncompressed G3 CCITT fax
Michael Niedermayer [Thu, 13 Aug 2015 15:02:05 +0000 (17:02 +0200)]
avcodec/tiff: Support uncompressed G3 CCITT fax

Fixes part of Ticket700

Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
8 years agoavcodec/faxcompr: Support uncompressed escapes in decode_group3_1d_line()
Michael Niedermayer [Thu, 13 Aug 2015 15:01:11 +0000 (17:01 +0200)]
avcodec/faxcompr: Support uncompressed escapes in decode_group3_1d_line()

Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
8 years agoavcodec/tiff: Support uncompressed G4 CCITT fax
Michael Niedermayer [Thu, 13 Aug 2015 14:11:23 +0000 (16:11 +0200)]
avcodec/tiff: Support uncompressed G4 CCITT fax

Fixes part of ticket700

Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
8 years agoavcodec/faxcompr: Support cmode == 9 && xxx == 7
Michael Niedermayer [Thu, 13 Aug 2015 14:11:00 +0000 (16:11 +0200)]
avcodec/faxcompr: Support cmode == 9 && xxx == 7

Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
8 years agoavcodec/faxcompr: Print the unsupported mode number
Michael Niedermayer [Thu, 13 Aug 2015 12:33:39 +0000 (14:33 +0200)]
avcodec/faxcompr: Print the unsupported mode number

Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
8 years agoavformat/wavdec: Detect wrongly interpreted specification about the sample value...
Michael Niedermayer [Thu, 13 Aug 2015 10:14:53 +0000 (12:14 +0200)]
avformat/wavdec: Detect wrongly interpreted specification about the sample value in the fact chunk

Fixes Ticket703

Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
8 years agoavformat/wavdec: Do not discard sample_count due to rounding
Michael Niedermayer [Thu, 13 Aug 2015 10:13:51 +0000 (12:13 +0200)]
avformat/wavdec: Do not discard sample_count due to rounding

Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
8 years agox86inc: Various minor backports from x264
Henrik Gramner [Tue, 11 Aug 2015 18:56:24 +0000 (20:56 +0200)]
x86inc: Various minor backports from x264

Signed-off-by: Anton Khirnov <anton@khirnov.net>
8 years agoavformat/tls_gnutls: correct version detection for certificate support
Ganesh Ajjanagadde [Thu, 13 Aug 2015 00:06:22 +0000 (20:06 -0400)]
avformat/tls_gnutls: correct version detection for certificate support

Fixes Ticket3748

Signed-off-by: Ganesh Ajjanagadde <gajjanagadde@gmail.com>
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
8 years agoavcodec/dvbsubdec: Print field lens in case they are too lerge
Michael Niedermayer [Wed, 12 Aug 2015 23:50:08 +0000 (01:50 +0200)]
avcodec/dvbsubdec: Print field lens in case they are too lerge

Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
8 years agoavisynth: fix setting stream timebase
Marton Balint [Mon, 10 Aug 2015 20:09:52 +0000 (22:09 +0200)]
avisynth: fix setting stream timebase

Stream timebase should be set using avpriv_set_pts_info, otherwise
avctx->pkt_timebase is not correct.

This should fix ticket #4766.

Patch is only compile tested.

Signed-off-by: Marton Balint <cus@passwd.hu>
Reviewed-by: Stephen Hutchinson <qyot27@gmail.com>
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
8 years agomovtextdec: Use default style information from movtext header
Niklesh [Wed, 12 Aug 2015 12:54:32 +0000 (18:24 +0530)]
movtextdec: Use default style information from movtext header

As suggested, posting the combined patch with the fate changes.
The patch sets the default style in ASS from the default style
information present in the movtext header.

Signed-off-by: Niklesh <niklesh.lalwani@iitb.ac.in>
8 years agoavcodec/mpeg12dec: Check chroma_format
Michael Niedermayer [Wed, 12 Aug 2015 20:26:41 +0000 (22:26 +0200)]
avcodec/mpeg12dec: Check chroma_format

Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>