]> git.sesse.net Git - ffmpeg/log
ffmpeg
9 years agoavformat/mxfdec: Change version byte for JPEG2000 to match mxf.c and RP224v12
Michael Niedermayer [Mon, 15 Jun 2015 12:13:22 +0000 (14:13 +0200)]
avformat/mxfdec: Change version byte for JPEG2000 to match mxf.c and RP224v12

This should make no difference as the byte is ignored

Found-by: tim nicholson <nichot20@yahoo.com>
Reviewed-by: tim nicholson <nichot20@yahoo.com>
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
9 years agoavcodec/flacenc: Fix Invalid Rice order
George Boyle [Tue, 16 Jun 2015 07:25:01 +0000 (08:25 +0100)]
avcodec/flacenc: Fix Invalid Rice order

Fixes ticket #4628.

The problem arose, in the sample file at least, in the last block where the
minimum and maximum Rice partition orders were both 0. In that case, and any
other where pmax == pmin, the original UINT32_MAX placeholder value for
bits[opt_porder] was getting overwritten before the comparison to check if the
current partition order is a new optimal, so the correct partition order and
RiceContext params were not being set.

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
9 years agodoc/muxers.texi: properly insert {}s in example
James Zern [Tue, 16 Jun 2015 06:04:45 +0000 (23:04 -0700)]
doc/muxers.texi: properly insert {}s in example

use '@{' / '@}', fixes compile errors:
*** '{' without macro. Before: 1:-'.'}
*** '}' without opening '{' before:

since:
907ac20 avformat/hlsenc: added HLS encryption

Signed-off-by: James Zern <jzern@google.com>
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
9 years agoavformat/hlsenc: added HLS encryption
Christian Suloway [Mon, 15 Jun 2015 18:58:07 +0000 (10:58 -0800)]
avformat/hlsenc: added HLS encryption

Added HLS encryption with -hls_key_info_file <key_info_file> option. The
first line of key_info_file specifies the key URI written to the
playlist. The key URL is used to access the encryption key during
playback. The second line specifies the path to the key file used to
obtain the key during the encryption process. The key file is read as a
single packed array of 16 octets in binary format. The optional third
line specifies the initialization vector (IV) as a hexadecimal string to
be used instead of the segment sequence number (default) for encryption.
Changes to key_info_file will result in segment encryption with the new
key/IV and an entry in the playlist for the new key URI/IV.

Key info file format:
<key URI>
<key file path>
<IV> (optional)

Example key URIs:
http://server/file.key
/path/to/file.key
file.key

Example key file paths:
file.key
/path/to/file.key

Example IV:
0123456789ABCDEF0123456789ABCDEF

Example:
ffmpeg -f lavfi -i testsrc -c:v h264 -hls_key_info_file file.keyinfo
foo.m3u8

file.keyinfo:
http://server/file.key
/path/to/file.key
0123456789ABCDEF0123456789ABCDEF

Example shell script:
BASE_URL=${1:-'.'}
openssl rand 16 > file.key
echo $BASE_URL/file.key > file.keyinfo
echo file.key >> file.keyinfo
echo $(openssl rand -hex 16) >> file.keyinfo
ffmpeg -f lavfi -re -i testsrc -c:v h264 -hls_flags delete_segments \
  -hls_key_info_file file.keyinfo out.m3u8
--

Signed-off-by: Christian Suloway <csuloway@globaleagleent.com>
Signed-off-by: Dan Dennedy <dan@dennedy.org>
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
9 years agoavcodec/jpeg2000dec: increase tile part limit to 32
Michael Niedermayer [Mon, 15 Jun 2015 20:45:25 +0000 (22:45 +0200)]
avcodec/jpeg2000dec: increase tile part limit to 32

Fixes Ticket4629

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
9 years agoavfilter/af_afade: add couple of more curves
Paul B Mahol [Sun, 14 Jun 2015 20:24:18 +0000 (20:24 +0000)]
avfilter/af_afade: add couple of more curves

Signed-off-by: Paul B Mahol <onemda@gmail.com>
9 years agoMerge commit 'a4fbd55d6e03eabdbecc3b7892ec09eb8062d066'
Michael Niedermayer [Mon, 15 Jun 2015 20:29:47 +0000 (22:29 +0200)]
Merge commit 'a4fbd55d6e03eabdbecc3b7892ec09eb8062d066'

* commit 'a4fbd55d6e03eabdbecc3b7892ec09eb8062d066':
  h264: er: Copy from the previous reference only if compatible

See: fdc64a104410f5fcc7f35b62287b0ae502b7061a
Merged-by: Michael Niedermayer <michaelni@gmx.at>
9 years agoMerge commit '9af7e8045e3e63ab39adedae9a7c11b1c410af26'
Michael Niedermayer [Mon, 15 Jun 2015 20:11:43 +0000 (22:11 +0200)]
Merge commit '9af7e8045e3e63ab39adedae9a7c11b1c410af26'

* commit '9af7e8045e3e63ab39adedae9a7c11b1c410af26':
  lavc: Clarify the behaviour of dimension and format context fields

Conflicts:
libavcodec/avcodec.h

Merged-by: Michael Niedermayer <michaelni@gmx.at>
9 years agoMerge commit '03ca6d70df192125a772dadd01acfe3905aa653f'
Michael Niedermayer [Mon, 15 Jun 2015 19:56:26 +0000 (21:56 +0200)]
Merge commit '03ca6d70df192125a772dadd01acfe3905aa653f'

* commit '03ca6d70df192125a772dadd01acfe3905aa653f':
  x264: Factor out the reconfiguration code

Conflicts:
libavcodec/libx264.c

Merged-by: Michael Niedermayer <michaelni@gmx.at>
9 years agoMerge commit '24ad3ac6a3e20350214e6c3f7a931635f264ae07'
Michael Niedermayer [Mon, 15 Jun 2015 19:31:09 +0000 (21:31 +0200)]
Merge commit '24ad3ac6a3e20350214e6c3f7a931635f264ae07'

* commit '24ad3ac6a3e20350214e6c3f7a931635f264ae07':
  nut: Drop doxygen markers

Conflicts:
libavformat/nut.h

Merged-by: Michael Niedermayer <michaelni@gmx.at>
9 years agolibvpxenc: remove stray '\'s
James Zern [Sat, 13 Jun 2015 17:12:20 +0000 (10:12 -0700)]
libvpxenc: remove stray '\'s

Signed-off-by: James Zern <jzern@google.com>
9 years agolibvpxenc: cosmetics: reindent after 2c70436
James Zern [Sat, 13 Jun 2015 17:10:54 +0000 (10:10 -0700)]
libvpxenc: cosmetics: reindent after 2c70436

Signed-off-by: James Zern <jzern@google.com>
9 years agoMerge commit '07b2db81d06e1cd6b1718d3e2dd7a42e8bccf8c0'
Michael Niedermayer [Mon, 15 Jun 2015 19:09:33 +0000 (21:09 +0200)]
Merge commit '07b2db81d06e1cd6b1718d3e2dd7a42e8bccf8c0'

* commit '07b2db81d06e1cd6b1718d3e2dd7a42e8bccf8c0':
  riff: Add MNM4 FourCC as mpeg4

Merged-by: Michael Niedermayer <michaelni@gmx.at>
9 years agoencoders.texi: update libvpx documentation
James Zern [Wed, 10 Jun 2015 03:36:33 +0000 (20:36 -0700)]
encoders.texi: update libvpx documentation

modeled after the libx264 section.

Reviewed-by: Lou Logan <lou@lrcd.com>
Reviewed-by: Stefano Sabatini <stefasab@gmail.com>
Signed-off-by: James Zern <jzern@google.com>
9 years agoavcodec/jpeg2000dec: Omit mqc reinit after the last pass
Michael Niedermayer [Mon, 15 Jun 2015 18:29:32 +0000 (20:29 +0200)]
avcodec/jpeg2000dec: Omit mqc reinit after the last pass

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
9 years agodoc/filters: add one more compand example found in the wild
Paul B Mahol [Mon, 15 Jun 2015 17:20:23 +0000 (17:20 +0000)]
doc/filters: add one more compand example found in the wild

Signed-off-by: Paul B Mahol <onemda@gmail.com>
9 years agoexamples/demuxing_decoding: use properties from frame instead of video_dec_ctx
Andreas Cadhalpun [Sun, 14 Jun 2015 18:34:16 +0000 (20:34 +0200)]
examples/demuxing_decoding: use properties from frame instead of video_dec_ctx

This is more robust.

And only check if there is actually a frame returned.

Reviewed-by: Michael Niedermayer <michaelni@gmx.at>
Signed-off-by: Andreas Cadhalpun <Andreas.Cadhalpun@googlemail.com>
9 years agoh264: er: Copy from the previous reference only if compatible
Andreas Cadhalpun [Sun, 14 Jun 2015 10:40:18 +0000 (12:40 +0200)]
h264: er: Copy from the previous reference only if compatible

Also use the frame pixel format instead of the one from the codec
context, which is more robust.

Signed-off-by: Luca Barbato <lu_zero@gentoo.org>
Reviewed-by: Michael Niedermayer <michaelni@gmx.at>
Signed-off-by: Andreas Cadhalpun <Andreas.Cadhalpun@googlemail.com>
9 years agoavcodec/jpeg2000dec: Fix Vertically causal context formation
Michael Niedermayer [Mon, 15 Jun 2015 16:00:19 +0000 (18:00 +0200)]
avcodec/jpeg2000dec: Fix Vertically causal context formation

Fixes Ticket4626

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
9 years agoavcodec/mqcdec: set raw flag at the begin of ff_mqc_initdec()
Michael Niedermayer [Mon, 15 Jun 2015 15:11:01 +0000 (17:11 +0200)]
avcodec/mqcdec: set raw flag at the begin of ff_mqc_initdec()

This way it is available to any functions called from ff_mqc_initdec()

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
9 years agoh264: er: Copy from the previous reference only if compatible
Andreas Cadhalpun [Sun, 14 Jun 2015 10:40:18 +0000 (12:40 +0200)]
h264: er: Copy from the previous reference only if compatible

Also use the frame pixel format instead of the one from the codec
context, which is more robust.

Signed-off-by: Andreas Cadhalpun <Andreas.Cadhalpun@googlemail.com>
Signed-off-by: Luca Barbato <lu_zero@gentoo.org>
9 years agolavc: Clarify the behaviour of dimension and format context fields
Luca Barbato [Sun, 14 Jun 2015 09:45:54 +0000 (11:45 +0200)]
lavc: Clarify the behaviour of dimension and format context fields

The AVCodecContext width, height, coded_width, coded_height and format
are used mainly as decoding hints and they get internally overwritten
during the data parsing stage.

Do not assume they match the last AVFrame provided by
avcodec_decode_video2 and assimilated functions since multi-threading
and other frame reordering might make those values to refer to frames
that will be outputted in the future.

CC: libav-stable@libav.org
9 years agox264: Factor out the reconfiguration code
Luca Barbato [Thu, 11 Jun 2015 22:08:49 +0000 (00:08 +0200)]
x264: Factor out the reconfiguration code

9 years agonut: Drop doxygen markers
Luca Barbato [Thu, 11 Jun 2015 00:40:34 +0000 (02:40 +0200)]
nut: Drop doxygen markers

9 years agoavcodec/jpeg2000dec: Improve readability of SOP check
Michael Niedermayer [Mon, 15 Jun 2015 02:21:40 +0000 (04:21 +0200)]
avcodec/jpeg2000dec: Improve readability of SOP check

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
9 years agoriff: Add MNM4 FourCC as mpeg4
Vittorio Giovara [Fri, 12 Jun 2015 18:12:05 +0000 (19:12 +0100)]
riff: Add MNM4 FourCC as mpeg4

9 years agoavcodec/jpeg2000dec: Remove redundant check
Michael Niedermayer [Mon, 15 Jun 2015 01:11:58 +0000 (03:11 +0200)]
avcodec/jpeg2000dec: Remove redundant check

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
9 years agoavcodec/jpeg2000dec: Check reslevelno in RPCL
Michael Niedermayer [Mon, 15 Jun 2015 01:00:53 +0000 (03:00 +0200)]
avcodec/jpeg2000dec: Check reslevelno in RPCL

Fixes out of array read
Fixes Ticket4627

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
9 years agoavcodec/jpeg2000dec: Skip SOP
Michael Niedermayer [Mon, 15 Jun 2015 00:32:45 +0000 (02:32 +0200)]
avcodec/jpeg2000dec: Skip SOP

Fixes Ticket4625

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
9 years agoavcodec/jpeg2000dec: Use <0 instead of != 0 for error checking
Michael Niedermayer [Mon, 15 Jun 2015 00:19:48 +0000 (02:19 +0200)]
avcodec/jpeg2000dec: Use <0 instead of != 0 for error checking

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
9 years agoavcodec/jpeg2000dec: Also include remaining length in "Block length" error message
Michael Niedermayer [Sun, 14 Jun 2015 22:32:01 +0000 (00:32 +0200)]
avcodec/jpeg2000dec: Also include remaining length in "Block length" error message

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
9 years agoMerge commit '74ea1167d91ccb2e1f2943efa030f2c278b598be'
Michael Niedermayer [Sun, 14 Jun 2015 23:30:36 +0000 (01:30 +0200)]
Merge commit '74ea1167d91ccb2e1f2943efa030f2c278b598be'

* commit '74ea1167d91ccb2e1f2943efa030f2c278b598be':
  tls_gnutls: fix hang on disconnection

See: 2222f419da99ef85d49ab04e7e15b76612f4d054
Merged-by: Michael Niedermayer <michaelni@gmx.at>
9 years agoavcodec/jpeg2000: Fix regression with multiple tiles
Michael Niedermayer [Sun, 14 Jun 2015 19:05:38 +0000 (21:05 +0200)]
avcodec/jpeg2000: Fix regression with multiple tiles

Fixes Ticket 4624

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
9 years agoavcodec/jpeg2000: Change codeblock coords to same origin as bands
Michael Niedermayer [Sun, 14 Jun 2015 18:02:06 +0000 (20:02 +0200)]
avcodec/jpeg2000: Change codeblock coords to same origin as bands

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
9 years agoavcodec/jpeg2000: Change precinct coords to same origin as bands
Michael Niedermayer [Sun, 14 Jun 2015 17:53:39 +0000 (19:53 +0200)]
avcodec/jpeg2000: Change precinct coords to same origin as bands

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
9 years agoavcodec/jpeg2000: Fix band coords
Michael Niedermayer [Sun, 14 Jun 2015 17:43:08 +0000 (19:43 +0200)]
avcodec/jpeg2000: Fix band coords

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
9 years agoavcodec/jpeg2000dec: Print warning if the mqc pointer mismatches at the end
Michael Niedermayer [Sun, 14 Jun 2015 19:19:40 +0000 (21:19 +0200)]
avcodec/jpeg2000dec: Print warning if the mqc pointer mismatches at the end

If this occurs on valid and correctly decoded files it should be reduced to debug
level

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
9 years agotls_gnutls: fix hang on disconnection
wm4 [Sat, 13 Jun 2015 21:55:21 +0000 (23:55 +0200)]
tls_gnutls: fix hang on disconnection

GNUTLS_SHUT_RDWR means GnuTLS will keep waiting for the server's
termination reply. But since we don't shutdown the TCP connection at
this point yet, GnuTLS will just keep skipping actual data from the
server, which basically is perceived as hang.

Use GNUTLS_SHUT_WR instead, which doesn't have this problem.

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
9 years agoavcodec/jpeg2000dec: Show the progression order at debug level for all variants
Michael Niedermayer [Sun, 14 Jun 2015 17:43:38 +0000 (19:43 +0200)]
avcodec/jpeg2000dec: Show the progression order at debug level for all variants

It was previously shown just for some, this makes it consistent

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
9 years agoavfilter/af_afade: use av_clipd() instead of nested FFMAX & FFMIN
Paul B Mahol [Sun, 14 Jun 2015 17:08:43 +0000 (17:08 +0000)]
avfilter/af_afade: use av_clipd() instead of nested FFMAX & FFMIN

Signed-off-by: Paul B Mahol <onemda@gmail.com>
9 years agotls_gnutls: fix hang on disconnection
wm4 [Sun, 14 Jun 2015 15:12:53 +0000 (17:12 +0200)]
tls_gnutls: fix hang on disconnection

GNUTLS_SHUT_RDWR means GnuTLS will keep waiting for the server's
termination reply. But since we don't shutdown the TCP connection at
this point yet, GnuTLS will just keep skipping actual data from the
server, which basically is perceived as hang.

Use GNUTLS_SHUT_WR instead, which doesn't have this problem.

Signed-off-by: Martin Storsjö <martin@martin.st>
9 years agoavcodec/jpeg2000dec: Print error messages for more error conditions
Michael Niedermayer [Sun, 14 Jun 2015 13:00:45 +0000 (15:00 +0200)]
avcodec/jpeg2000dec: Print error messages for more error conditions

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
9 years agodoc: fix spelling errors
Andreas Cadhalpun [Sat, 13 Jun 2015 19:34:40 +0000 (21:34 +0200)]
doc: fix spelling errors

Neccessary -> Necessary
formated   -> formatted
thee       -> the
eventhough -> even though
seperately -> separately

Reviewed-by: Michael Niedermayer <michaelni@gmx.at>
Signed-off-by: Andreas Cadhalpun <Andreas.Cadhalpun@googlemail.com>
9 years agoavcodec/jpeg2000dec: Handle format that has planes matching YUVA420P structure but...
Michael Niedermayer [Sun, 14 Jun 2015 02:45:02 +0000 (04:45 +0200)]
avcodec/jpeg2000dec: Handle format that has planes matching YUVA420P structure but seems not to be that

Outputs something for p0_05.j2k

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
9 years agoavcodec/jpeg2000dec: Print all cdx/cdy values not just the 2nd and 3rd
Michael Niedermayer [Sun, 14 Jun 2015 02:44:33 +0000 (04:44 +0200)]
avcodec/jpeg2000dec: Print all cdx/cdy values not just the 2nd and 3rd

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
9 years agoavfilter: bump minor after colorkey addition
Clément Bœsch [Sun, 14 Jun 2015 09:20:42 +0000 (11:20 +0200)]
avfilter: bump minor after colorkey addition

9 years agoavcodec/hevc: Track long and short term RPS size for VDPAU
Philip Langdale [Sat, 13 Jun 2015 16:34:43 +0000 (09:34 -0700)]
avcodec/hevc: Track long and short term RPS size for VDPAU

Today, we track the short term RPS size for DXVA, but only if the
SliceHeader RPS is being used. Otherwise it's left uninitialized.

NVIDIA's VDPAU implementation requires that the size be accurately
tracked even if an SPS RPS is being used. In this case, it's really
counting the size of the RPS idx information, but you end up with
mangled output if the value is not accurate.

VDPAU also needs the size of the long term RPS.

Signed-off-by: Philip Langdale <philipl@overt.org>
9 years agoavcodec/nvenc: Enable YV12 input format
Philip Langdale [Sun, 7 Jun 2015 03:28:22 +0000 (20:28 -0700)]
avcodec/nvenc: Enable YV12 input format

This has been enabled by recent nvidia driver releases.

Signed-off-by: Philip Langdale <philipl@overt.org>
9 years agoavcodec/jpeg2000dec: Implement "Reset context probabilities on coding pass boundaries"
Michael Niedermayer [Sun, 14 Jun 2015 01:28:07 +0000 (03:28 +0200)]
avcodec/jpeg2000dec: Implement "Reset context probabilities on coding pass boundaries"

No testcase with just this feature known

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
9 years agosoftfloat: make av_div_sf() inline
James Almer [Sat, 13 Jun 2015 03:20:37 +0000 (00:20 -0300)]
softfloat: make av_div_sf() inline

Removes a defined but not used warning on files including softfloat.h

Reviewed-by: Michael Niedermayer <michaelni@gmx.at>
Signed-off-by: James Almer <jamrial@gmail.com>
9 years agoavcodec/jpeg2000dec: Support RPCL
Michael Niedermayer [Sun, 14 Jun 2015 00:41:53 +0000 (02:41 +0200)]
avcodec/jpeg2000dec: Support RPCL

Fixes Ticket 2792

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
9 years agoavfilter/vf_colorkey: Add colorkey video filter
Timo Rothenpieler [Sat, 13 Jun 2015 13:09:07 +0000 (15:09 +0200)]
avfilter/vf_colorkey: Add colorkey video filter

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
9 years agoavformat/singlejpeg: fix standalone compilation
James Almer [Sat, 13 Jun 2015 20:47:13 +0000 (17:47 -0300)]
avformat/singlejpeg: fix standalone compilation

9 years agoavcodec/jpeg200dsp: add ff_rct_int_{sse2,avx2}
James Almer [Sat, 13 Jun 2015 16:13:10 +0000 (13:13 -0300)]
avcodec/jpeg200dsp: add ff_rct_int_{sse2,avx2}

Reviewed-by: Michael Niedermayer <michaelni@gmx.at>
Signed-off-by: James Almer <jamrial@gmail.com>
9 years agoavcodec/jpeg200dsp: add ff_ict_float_{sse,avx}
James Almer [Sat, 13 Jun 2015 16:11:51 +0000 (13:11 -0300)]
avcodec/jpeg200dsp: add ff_ict_float_{sse,avx}

Original intrinsics version by Nicolas Bertrand.

Reviewed-by: Michael Niedermayer <michaelni@gmx.at>
Signed-off-by: James Almer <jamrial@gmail.com>
9 years agoavfilter/drawutils: Assert av_pix_fmt_desc_get() return value in ff_fill_line_with_co...
Michael Niedermayer [Fri, 12 Jun 2015 21:40:09 +0000 (23:40 +0200)]
avfilter/drawutils: Assert av_pix_fmt_desc_get() return value in ff_fill_line_with_color()

Theres currently no case where this could be triggered

Found-by: Daemon404
Reviewed-by: Nicolas George <george@nsup.org>
Reviewed-by: Paul B Mahol <onemda@gmail.com>
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
9 years agoavfilter/lut3d: assert on pixel format descriptor
Clément Bœsch [Sat, 13 Jun 2015 18:49:42 +0000 (20:49 +0200)]
avfilter/lut3d: assert on pixel format descriptor

inlink->format is supposed to be set to a valid format controlled by query_formats().

9 years agoavfilter/geq: assert on pixel format descriptor
Clément Bœsch [Sat, 13 Jun 2015 18:49:32 +0000 (20:49 +0200)]
avfilter/geq: assert on pixel format descriptor

inlink->format is supposed to be set to a valid format controlled by query_formats().

9 years agoconfigure: only disable VSX for !ppc64el
Andreas Cadhalpun [Sat, 13 Jun 2015 11:09:21 +0000 (13:09 +0200)]
configure: only disable VSX for !ppc64el

This reverts commit 04f0002, which made it impossible to enable VSX with
a generic cpu.

This changes the behavior back to what it was before commit b0af404.

Reviewed-by: Michael Niedermayer <michaelni@gmx.at>
Signed-off-by: Andreas Cadhalpun <Andreas.Cadhalpun@googlemail.com>
9 years agoavcodec/ass_split: check ASSSplitContext alloc
Clément Bœsch [Sat, 13 Jun 2015 18:39:57 +0000 (20:39 +0200)]
avcodec/ass_split: check ASSSplitContext alloc

9 years agoavcodec/jpeg2000dec: Support PCRL
Michael Niedermayer [Sat, 13 Jun 2015 11:56:23 +0000 (13:56 +0200)]
avcodec/jpeg2000dec: Support PCRL

Fixes Ticket4603

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
9 years agoavcodec/jpeg2000dec: Try to fix remaining DCinema hardcoded TODOs in CPRL
Michael Niedermayer [Sat, 13 Jun 2015 11:22:05 +0000 (13:22 +0200)]
avcodec/jpeg2000dec: Try to fix remaining DCinema hardcoded TODOs in CPRL

Again, no testcase

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
9 years agoavcodec/jpeg2000dec: try to correct tile location in CPRL code
Michael Niedermayer [Sat, 13 Jun 2015 10:58:45 +0000 (12:58 +0200)]
avcodec/jpeg2000dec: try to correct tile location in CPRL code

No testcase

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
9 years agoavcodec/jpeg2000dec: Factorize component out of CPRL loop
Michael Niedermayer [Sat, 13 Jun 2015 10:38:49 +0000 (12:38 +0200)]
avcodec/jpeg2000dec: Factorize component out of CPRL loop

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
9 years agoavcodec/jpeg2000dec: Fix x/y step TODO for CPRL
Michael Niedermayer [Sat, 13 Jun 2015 10:19:22 +0000 (12:19 +0200)]
avcodec/jpeg2000dec: Fix x/y step TODO for CPRL

No testcase known

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
9 years agoRemove a few occurences of "long long" from the libraries.
Carl Eugen Hoyos [Sat, 13 Jun 2015 07:28:41 +0000 (09:28 +0200)]
Remove a few occurences of "long long" from the libraries.

9 years agoavcodec/mips: MSA (MIPS-SIMD-Arch) optimizations for AVC qpel functions
Shivraj Patil [Thu, 11 Jun 2015 06:01:12 +0000 (11:31 +0530)]
avcodec/mips: MSA (MIPS-SIMD-Arch) optimizations for AVC qpel functions

This patch adds MSA (MIPS-SIMD-Arch) optimizations for AVC qpel functions in new file h264qpel_msa.c
Adds new generic macros (needed for this patch) in libavutil/mips/generic_macros_msa.h

Added const to local static array.

Signed-off-by: Shivraj Patil <shivraj.patil@imgtec.com>
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
9 years agoexamples/decoding_encoding: Use the AVFrame width/height for processing images after...
Michael Niedermayer [Wed, 10 Jun 2015 20:00:30 +0000 (22:00 +0200)]
examples/decoding_encoding: Use the AVFrame width/height for processing images after decoding

This is what FFmpeg / FFplay do and it is more robust

Reviewed-by: Stefano Sabatini <stefasab@gmail.com>
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
9 years agoffprobe: check av_asprintf() for failure
Michael Niedermayer [Fri, 12 Jun 2015 23:08:16 +0000 (01:08 +0200)]
ffprobe: check av_asprintf() for failure

Found-by: Daemon404
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
9 years agoavcodec/smvjpegdec: assert that the pixel format that has been set by our decoder...
Michael Niedermayer [Fri, 12 Jun 2015 22:27:21 +0000 (00:27 +0200)]
avcodec/smvjpegdec: assert that the pixel format that has been set by our decoder is valid

If we do check av_pix_fmt_desc_get() then we should fail and
not continue with an invalid pix_fmt

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
9 years agoavfilter/drawutils: Fix format validity check in ff_draw_init()
Michael Niedermayer [Fri, 12 Jun 2015 22:06:28 +0000 (00:06 +0200)]
avfilter/drawutils: Fix format validity check in ff_draw_init()

Found-by: Daemon404
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
9 years agoavutil/imgutils: Simplify pix_fmt validity check in av_image_get_linesize()
Michael Niedermayer [Fri, 12 Jun 2015 21:23:59 +0000 (23:23 +0200)]
avutil/imgutils: Simplify pix_fmt validity check in av_image_get_linesize()

Found-by: Daemon404
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
9 years agoMerge commit '3b73d5c942f44b37f0e44276ebcfd66c8b12c02d'
Michael Niedermayer [Fri, 12 Jun 2015 21:11:15 +0000 (23:11 +0200)]
Merge commit '3b73d5c942f44b37f0e44276ebcfd66c8b12c02d'

* commit '3b73d5c942f44b37f0e44276ebcfd66c8b12c02d':
  fft-test: Use the float fabs() version

Merged-by: Michael Niedermayer <michaelni@gmx.at>
9 years agoMerge commit '2d5176fad1a4556d209cbfb0f681712c7eada4fd'
Michael Niedermayer [Fri, 12 Jun 2015 21:03:12 +0000 (23:03 +0200)]
Merge commit '2d5176fad1a4556d209cbfb0f681712c7eada4fd'

* commit '2d5176fad1a4556d209cbfb0f681712c7eada4fd':
  on2avc: Use the integer abs() version

Merged-by: Michael Niedermayer <michaelni@gmx.at>
9 years agoMerge commit 'a7ac1a7b94447f33ae95be4d6d186e2775977f91'
Michael Niedermayer [Fri, 12 Jun 2015 20:55:49 +0000 (22:55 +0200)]
Merge commit 'a7ac1a7b94447f33ae95be4d6d186e2775977f91'

* commit 'a7ac1a7b94447f33ae95be4d6d186e2775977f91':
  flv: Name an enum and use its type

Conflicts:
libavformat/flvdec.c

Merged-by: Michael Niedermayer <michaelni@gmx.at>
9 years agoMerge commit '30dfc1dad4285e7362ce3f596d7c5d5d9b7fb33d'
Michael Niedermayer [Fri, 12 Jun 2015 20:45:53 +0000 (22:45 +0200)]
Merge commit '30dfc1dad4285e7362ce3f596d7c5d5d9b7fb33d'

* commit '30dfc1dad4285e7362ce3f596d7c5d5d9b7fb33d':
  cws2fws: Close file handles on error

Merged-by: Michael Niedermayer <michaelni@gmx.at>
9 years agoMerge commit 'a9b2a51178ea446909015f061ab5df65e3b66bf6'
Michael Niedermayer [Fri, 12 Jun 2015 20:34:53 +0000 (22:34 +0200)]
Merge commit 'a9b2a51178ea446909015f061ab5df65e3b66bf6'

* commit 'a9b2a51178ea446909015f061ab5df65e3b66bf6':
  avconv_opt: Check localtime() return value

Conflicts:
ffmpeg_opt.c

See: 8e91d9652ea5048d9014e7636e12c6ed4732d7b7
Merged-by: Michael Niedermayer <michaelni@gmx.at>
9 years agoMerge commit '8a78ae2d2101622fd244b99178d8bc61175c878e'
Michael Niedermayer [Fri, 12 Jun 2015 20:10:34 +0000 (22:10 +0200)]
Merge commit '8a78ae2d2101622fd244b99178d8bc61175c878e'

* commit '8a78ae2d2101622fd244b99178d8bc61175c878e':
  segment: Check open_null_ctx() return value

Merged-by: Michael Niedermayer <michaelni@gmx.at>
9 years agoMerge commit 'b7a4127a45b780d76e6b09427a3d0197c4bc1cdb'
Michael Niedermayer [Fri, 12 Jun 2015 19:55:24 +0000 (21:55 +0200)]
Merge commit 'b7a4127a45b780d76e6b09427a3d0197c4bc1cdb'

* commit 'b7a4127a45b780d76e6b09427a3d0197c4bc1cdb':
  h264_qpel: Use the correct header

Merged-by: Michael Niedermayer <michaelni@gmx.at>
9 years agoMerge commit '5e87080f2c73186066df0b9c43877b4af0beef3a'
Michael Niedermayer [Fri, 12 Jun 2015 19:44:33 +0000 (21:44 +0200)]
Merge commit '5e87080f2c73186066df0b9c43877b4af0beef3a'

* commit '5e87080f2c73186066df0b9c43877b4af0beef3a':
  h264_weight: Fix SSSE3 biweight code with weights of 128

Conflicts:
libavcodec/x86/h264_weight.asm

See: e1009665759d4a3938dd2dd07b7e84d8bc9c5290
See: fb2288834ba8a51e8934cfe8b82ac468144a34df
Merged-by: Michael Niedermayer <michaelni@gmx.at>
9 years agoMerge commit '64a2e844166d62093b45e680874eea8bd1facf5b'
Michael Niedermayer [Fri, 12 Jun 2015 19:42:36 +0000 (21:42 +0200)]
Merge commit '64a2e844166d62093b45e680874eea8bd1facf5b'

* commit '64a2e844166d62093b45e680874eea8bd1facf5b':
  eamad: Use the correct headers

Merged-by: Michael Niedermayer <michaelni@gmx.at>
9 years agoMerge commit '8606e881b02bec2ac24943d22c8afe11d641fac8'
Michael Niedermayer [Fri, 12 Jun 2015 19:33:53 +0000 (21:33 +0200)]
Merge commit '8606e881b02bec2ac24943d22c8afe11d641fac8'

* commit '8606e881b02bec2ac24943d22c8afe11d641fac8':
  mpeg12: Move the vlc bits to a stand alone file

Merged-by: Michael Niedermayer <michaelni@gmx.at>
9 years agoMerge commit 'f1fa1eed2abdc8dfb0af318a43f5d293b81141bd'
Michael Niedermayer [Fri, 12 Jun 2015 19:14:34 +0000 (21:14 +0200)]
Merge commit 'f1fa1eed2abdc8dfb0af318a43f5d293b81141bd'

* commit 'f1fa1eed2abdc8dfb0af318a43f5d293b81141bd':
  mpegvideo: Expand macro

Merged-by: Michael Niedermayer <michaelni@gmx.at>
9 years agoh264: update avctx width/height/pix_fmt when returning frame
Andreas Cadhalpun [Tue, 9 Jun 2015 21:38:26 +0000 (23:38 +0200)]
h264: update avctx width/height/pix_fmt when returning frame

Inconsistencies between the dimensions/pixel format of avctx and the
frame can confuse API users.
For example this can crash the demuxing_decoding example.

Back up the previous values and restore them, when decoding the next
frame. This is necessary, because these can be different between the
returned frame and the last decoded frame.

Reviewed-by: Michael Niedermayer <michaelni@gmx.at>
Signed-off-by: Andreas Cadhalpun <Andreas.Cadhalpun@googlemail.com>
9 years agoMerge commit 'e7af52a68dde9144b273a9598b60bf0f56e1323b'
Michael Niedermayer [Fri, 12 Jun 2015 19:05:09 +0000 (21:05 +0200)]
Merge commit 'e7af52a68dde9144b273a9598b60bf0f56e1323b'

* commit 'e7af52a68dde9144b273a9598b60bf0f56e1323b':
  mpegvideo: rv10: Move function declaration to a separate header

Merged-by: Michael Niedermayer <michaelni@gmx.at>
9 years agoMerge commit 'e3d0f49abb20a551bf6d885f75c354d6d0bbeb9d'
Michael Niedermayer [Fri, 12 Jun 2015 18:57:37 +0000 (20:57 +0200)]
Merge commit 'e3d0f49abb20a551bf6d885f75c354d6d0bbeb9d'

* commit 'e3d0f49abb20a551bf6d885f75c354d6d0bbeb9d':
  mpegvideo: h263: Move all tables to a single file

Conflicts:
libavcodec/h263.h
libavcodec/h263data.h

Merged-by: Michael Niedermayer <michaelni@gmx.at>
9 years agoMerge commit '8b5007a31b8d1ddbe3661bf45a732336450b7d25'
Michael Niedermayer [Fri, 12 Jun 2015 18:47:14 +0000 (20:47 +0200)]
Merge commit '8b5007a31b8d1ddbe3661bf45a732336450b7d25'

* commit '8b5007a31b8d1ddbe3661bf45a732336450b7d25':
  mpegvideo: Move ER functions to a separate file

Conflicts:
libavcodec/mpegvideo.c

Merged-by: Michael Niedermayer <michaelni@gmx.at>
9 years agolibavcodec/imgconvert.c: support left band while cropping
Przemysław Sobala [Fri, 12 Jun 2015 16:38:05 +0000 (18:38 +0200)]
libavcodec/imgconvert.c: support left band while cropping

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
9 years agoavformat/mxfdec: Detect jpeg2000 through codec_ul too
Michael Niedermayer [Fri, 12 Jun 2015 16:56:02 +0000 (18:56 +0200)]
avformat/mxfdec: Detect jpeg2000 through codec_ul too

Fixes Ticket2345

Reviewed-by: Paul B Mahol <onemda@gmail.com>
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
9 years agodoc/filters: add one more zoompan example
Paul B Mahol [Fri, 12 Jun 2015 17:33:13 +0000 (17:33 +0000)]
doc/filters: add one more zoompan example

Signed-off-by: Paul B Mahol <onemda@gmail.com>
9 years agomatroskadec: verify seekhead IDs
wm4 [Fri, 12 Jun 2015 11:11:41 +0000 (13:11 +0200)]
matroskadec: verify seekhead IDs

Some files have SeekHead elements with broken IDs. They mismatch with
the ID of the destination element. These files are written by
"IDMmkvlib0.1" (as identified by the MuxingApp and WritingApp elements),
and the SeekHead IDs are actually endian-swapped.

This confuses the SeekHead logic of the demuxer. It will read some
elements twice, because the SeekHead ID is used to identify and remember
already read elements. With the file at hand, the stream list was
duplicated by reading the Tracks element twice.

Fix this by rejecting invalid EBML IDs in SeekHead entries. (This fix is
relatively specific to the broken file at hand, and doesn't protect
against some other cases of broken SeekHead, such as valid but
mismatching target element IDs.)

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
9 years agoavfilter/vf_zoompan: support planar rgb pixel formats
Paul B Mahol [Fri, 12 Jun 2015 17:14:08 +0000 (17:14 +0000)]
avfilter/vf_zoompan: support planar rgb pixel formats

Signed-off-by: Paul B Mahol <onemda@gmail.com>
9 years agofft-test: Use the float fabs() version
Vittorio Giovara [Fri, 12 Jun 2015 16:04:20 +0000 (17:04 +0100)]
fft-test: Use the float fabs() version

Fixes clang warning "absolute value function 'fabsf' given an argument
of type 'double' but has parameter of type 'float' which may cause
truncation of value [-Wabsolute-value]".

9 years agoon2avc: Use the integer abs() version
Vittorio Giovara [Fri, 12 Jun 2015 11:32:38 +0000 (12:32 +0100)]
on2avc: Use the integer abs() version

Fixes clang warning "floating point absolute value function 'fabsf'
when argument is of integer type [-Wabsolute-value]".

9 years agoflv: Name an enum and use its type
Vittorio Giovara [Thu, 11 Jun 2015 13:27:27 +0000 (14:27 +0100)]
flv: Name an enum and use its type

9 years agocws2fws: Close file handles on error
Vittorio Giovara [Fri, 12 Jun 2015 13:01:22 +0000 (14:01 +0100)]
cws2fws: Close file handles on error

Reported-By: infer
9 years agoavconv_opt: Check localtime() return value
Vittorio Giovara [Fri, 12 Jun 2015 12:39:17 +0000 (13:39 +0100)]
avconv_opt: Check localtime() return value

Reported-By: infer
9 years agosegment: Check open_null_ctx() return value
Vittorio Giovara [Fri, 12 Jun 2015 12:39:16 +0000 (13:39 +0100)]
segment: Check open_null_ctx() return value

Reported-By: infer
9 years agoh264_qpel: Use the correct header
Vittorio Giovara [Fri, 12 Jun 2015 11:29:07 +0000 (12:29 +0100)]
h264_qpel: Use the correct header

9 years agoh264_weight: Fix SSSE3 biweight code with weights of 128
Michael Niedermayer [Fri, 12 Jun 2015 11:58:42 +0000 (12:58 +0100)]
h264_weight: Fix SSSE3 biweight code with weights of 128

CC: libav-stable@libav.org
Sample-Id: test_bref.mp4

Signed-off-by: Vittorio Giovara <vittorio.giovara@gmail.com>