OSDN Git Service

android-x86/external-ffmpeg.git
12 years agoindeo4: check motion vetors.
Michael Niedermayer [Thu, 22 Mar 2012 21:44:54 +0000 (22:44 +0100)]
indeo4: check motion vetors.

Fixes out of heap array read.

Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
12 years agopngenc: make max_packet_size 64bit check check it.
Michael Niedermayer [Thu, 22 Mar 2012 20:09:03 +0000 (21:09 +0100)]
pngenc: make max_packet_size 64bit check check it.

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
12 years agopng: make ff_png_pass_mask local to pngdec.
Clément Bœsch [Thu, 22 Mar 2012 21:52:55 +0000 (22:52 +0100)]
png: make ff_png_pass_mask local to pngdec.

12 years agoFix libgsm.c compilation after typo in 67b8c8.
Carl Eugen Hoyos [Thu, 22 Mar 2012 21:00:58 +0000 (22:00 +0100)]
Fix libgsm.c compilation after typo in 67b8c8.

12 years agoMerge remote-tracking branch 'qatar/master'
Michael Niedermayer [Thu, 22 Mar 2012 19:58:56 +0000 (20:58 +0100)]
Merge remote-tracking branch 'qatar/master'

* qatar/master:
  FATE: Add ZeroCodec test
  oggparseogm: fix order of arguments of avpriv_set_pts_info().
  pngenc: better upper bound for encoded frame size.
  aiffdec: set block_duration to 1 for PCM codecs that are supported in AIFF-C
  aiffdec: factor out handling of integer PCM for AIFF-C and plain AIFF
  aiffdec: use av_get_audio_frame_duration() to set block_duration for AIFF-C
  aiffdec: do not set bit rate if block duration is unknown
  wmall: output packet only if we have decoded some samples

Conflicts:
libavcodec/pngenc.c
tests/fate/lossless-video.mak

Merged-by: Michael Niedermayer <michaelni@gmx.at>
12 years agodcaenc: switch to encode2()
Paul B Mahol [Thu, 22 Mar 2012 19:27:19 +0000 (19:27 +0000)]
dcaenc: switch to encode2()

Signed-off-by: Paul B Mahol <onemda@gmail.com>
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
12 years agoSupport dropping audio dts/pts via -async -1.
Reimar Döffinger [Thu, 22 Mar 2012 19:17:42 +0000 (20:17 +0100)]
Support dropping audio dts/pts via -async -1.

Allows working around issue #605.
Note: as a side effect this fixes that -vsync drop
as far as I could tell would not drop pts/dts values
when duplicating frames or when flushing encoder delay.

Signed-off-by: Reimar Döffinger <Reimar.Doeffinger@gmx.de>
12 years agoFATE: Add ZeroCodec test
Derek Buitenhuis [Mon, 19 Mar 2012 22:23:42 +0000 (18:23 -0400)]
FATE: Add ZeroCodec test

Signed-off-by: Derek Buitenhuis <derek.buitenhuis@gmail.com>
Signed-off-by: Anton Khirnov <anton@khirnov.net>
12 years agooggparseogm: fix order of arguments of avpriv_set_pts_info().
Michael Niedermayer [Thu, 8 Mar 2012 20:11:37 +0000 (21:11 +0100)]
oggparseogm: fix order of arguments of avpriv_set_pts_info().

Signed-off-by: Anton Khirnov <anton@khirnov.net>
12 years agopngenc: better upper bound for encoded frame size.
Anton Khirnov [Wed, 21 Mar 2012 08:48:26 +0000 (09:48 +0100)]
pngenc: better upper bound for encoded frame size.

Fixes encoding very large pictures.

Thanks to Костя for providing the formula.

12 years agolibutvideoenc: switch to ff_alloc_packet2().
Michael Niedermayer [Thu, 22 Mar 2012 18:31:18 +0000 (19:31 +0100)]
libutvideoenc: switch to ff_alloc_packet2().

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
12 years agolavc: limit realloc() on encoding to the libav compatibility API.
Michael Niedermayer [Thu, 22 Mar 2012 18:12:11 +0000 (19:12 +0100)]
lavc: limit realloc() on encoding to the libav compatibility API.

Neither the old nor new need it.

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
12 years agoVC1: Fix skiploopfilter=all.
Reimar Döffinger [Wed, 21 Mar 2012 21:52:33 +0000 (22:52 +0100)]
VC1: Fix skiploopfilter=all.

It is currently only handled in the parser code for WMV/ASF style
header, but not the one used in the bytestream format used when
muxed into MPEG-TS as on e.g. BluRay.

Signed-off-by: Reimar Döffinger <Reimar.Doeffinger@gmx.de>
12 years agoReplace SSE2 instruction in scalarproduct_float_sse() by SSE equivalent.
ami_stuff [Thu, 22 Mar 2012 18:28:52 +0000 (19:28 +0100)]
Replace SSE2 instruction in scalarproduct_float_sse() by SSE equivalent.

Fixes an AAC decoding issue with the sample from ticket #213 on machines
with SSE but without SSE2.
Based on 89411a by Reimar.

12 years agolavc: Redesign the internal encoding API.
Michael Niedermayer [Thu, 22 Mar 2012 17:07:57 +0000 (18:07 +0100)]
lavc: Redesign the internal encoding API.

The new API allows (optionally and on by default) using a internal buffer to encode, avoiding
the need to allocate large buffers or risking failure on too small buffers.

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
12 years agoavcodec_encode_audio2: use ff_alloc_packet2()
Michael Niedermayer [Thu, 22 Mar 2012 15:29:23 +0000 (16:29 +0100)]
avcodec_encode_audio2: use ff_alloc_packet2()

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
12 years agozmbvenc: switch to ff_alloc_packet2().
Michael Niedermayer [Thu, 22 Mar 2012 14:00:50 +0000 (15:00 +0100)]
zmbvenc: switch to ff_alloc_packet2().

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
12 years agoyuv4enc: switch to ff_alloc_packet2().
Michael Niedermayer [Thu, 22 Mar 2012 14:00:50 +0000 (15:00 +0100)]
yuv4enc: switch to ff_alloc_packet2().

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
12 years agoy41penc: switch to ff_alloc_packet2().
Michael Niedermayer [Thu, 22 Mar 2012 14:00:50 +0000 (15:00 +0100)]
y41penc: switch to ff_alloc_packet2().

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
12 years agoxwdenc: switch to ff_alloc_packet2().
Michael Niedermayer [Thu, 22 Mar 2012 14:00:50 +0000 (15:00 +0100)]
xwdenc: switch to ff_alloc_packet2().

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
12 years agoxbmenc: switch to ff_alloc_packet2().
Michael Niedermayer [Thu, 22 Mar 2012 14:00:50 +0000 (15:00 +0100)]
xbmenc: switch to ff_alloc_packet2().

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
12 years agowmaenc: switch to ff_alloc_packet2().
Michael Niedermayer [Thu, 22 Mar 2012 14:00:50 +0000 (15:00 +0100)]
wmaenc: switch to ff_alloc_packet2().

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
12 years agovorbisenc: switch to ff_alloc_packet2().
Michael Niedermayer [Thu, 22 Mar 2012 14:00:49 +0000 (15:00 +0100)]
vorbisenc: switch to ff_alloc_packet2().

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
12 years agov410enc: switch to ff_alloc_packet2().
Michael Niedermayer [Thu, 22 Mar 2012 14:00:49 +0000 (15:00 +0100)]
v410enc: switch to ff_alloc_packet2().

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
12 years agov408enc: switch to ff_alloc_packet2().
Michael Niedermayer [Thu, 22 Mar 2012 14:00:49 +0000 (15:00 +0100)]
v408enc: switch to ff_alloc_packet2().

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
12 years agov308enc: switch to ff_alloc_packet2().
Michael Niedermayer [Thu, 22 Mar 2012 14:00:49 +0000 (15:00 +0100)]
v308enc: switch to ff_alloc_packet2().

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
12 years agov210enc: switch to ff_alloc_packet2().
Michael Niedermayer [Thu, 22 Mar 2012 14:00:49 +0000 (15:00 +0100)]
v210enc: switch to ff_alloc_packet2().

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
12 years agotiffenc: switch to ff_alloc_packet2().
Michael Niedermayer [Thu, 22 Mar 2012 14:00:49 +0000 (15:00 +0100)]
tiffenc: switch to ff_alloc_packet2().

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
12 years agotiffenc: fix return value.
Michael Niedermayer [Thu, 22 Mar 2012 15:17:30 +0000 (16:17 +0100)]
tiffenc: fix return value.

12 years agotargaenc: switch to ff_alloc_packet2().
Michael Niedermayer [Thu, 22 Mar 2012 14:00:49 +0000 (15:00 +0100)]
targaenc: switch to ff_alloc_packet2().

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
12 years agosvq1enc: switch to ff_alloc_packet2().
Michael Niedermayer [Thu, 22 Mar 2012 14:00:49 +0000 (15:00 +0100)]
svq1enc: switch to ff_alloc_packet2().

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
12 years agosunrastenc: switch to ff_alloc_packet2().
Michael Niedermayer [Thu, 22 Mar 2012 14:00:49 +0000 (15:00 +0100)]
sunrastenc: switch to ff_alloc_packet2().

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
12 years agosgienc: switch to ff_alloc_packet2().
Michael Niedermayer [Thu, 22 Mar 2012 14:00:49 +0000 (15:00 +0100)]
sgienc: switch to ff_alloc_packet2().

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
12 years agor210enc: switch to ff_alloc_packet2().
Michael Niedermayer [Thu, 22 Mar 2012 14:00:49 +0000 (15:00 +0100)]
r210enc: switch to ff_alloc_packet2().

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
12 years agoqtrleenc: switch to ff_alloc_packet2().
Michael Niedermayer [Thu, 22 Mar 2012 14:00:49 +0000 (15:00 +0100)]
qtrleenc: switch to ff_alloc_packet2().

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
12 years agoproresenc_kostya: switch to ff_alloc_packet2().
Michael Niedermayer [Thu, 22 Mar 2012 14:00:49 +0000 (15:00 +0100)]
proresenc_kostya: switch to ff_alloc_packet2().

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
12 years agoproresenc_anatoliy: switch to ff_alloc_packet2().
Michael Niedermayer [Thu, 22 Mar 2012 14:00:49 +0000 (15:00 +0100)]
proresenc_anatoliy: switch to ff_alloc_packet2().

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
12 years agopnmenc: switch to ff_alloc_packet2().
Michael Niedermayer [Thu, 22 Mar 2012 14:00:49 +0000 (15:00 +0100)]
pnmenc: switch to ff_alloc_packet2().

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
12 years agopngenc: switch to ff_alloc_packet2().
Michael Niedermayer [Thu, 22 Mar 2012 14:00:48 +0000 (15:00 +0100)]
pngenc: switch to ff_alloc_packet2().

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
12 years agopcxenc: switch to ff_alloc_packet2().
Michael Niedermayer [Thu, 22 Mar 2012 14:00:48 +0000 (15:00 +0100)]
pcxenc: switch to ff_alloc_packet2().

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
12 years agopcm: switch to ff_alloc_packet2().
Michael Niedermayer [Thu, 22 Mar 2012 14:00:48 +0000 (15:00 +0100)]
pcm: switch to ff_alloc_packet2().

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
12 years agopamenc: switch to ff_alloc_packet2().
Michael Niedermayer [Thu, 22 Mar 2012 14:00:48 +0000 (15:00 +0100)]
pamenc: switch to ff_alloc_packet2().

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
12 years agonellymoserenc: switch to ff_alloc_packet2().
Michael Niedermayer [Thu, 22 Mar 2012 14:00:48 +0000 (15:00 +0100)]
nellymoserenc: switch to ff_alloc_packet2().

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
12 years agomsvideo1enc: switch to ff_alloc_packet2().
Michael Niedermayer [Thu, 22 Mar 2012 14:00:48 +0000 (15:00 +0100)]
msvideo1enc: switch to ff_alloc_packet2().

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
12 years agompegaudioenc: switch to ff_alloc_packet2().
Michael Niedermayer [Thu, 22 Mar 2012 14:00:48 +0000 (15:00 +0100)]
mpegaudioenc: switch to ff_alloc_packet2().

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
12 years agoljpegenc: switch to ff_alloc_packet2().
Michael Niedermayer [Thu, 22 Mar 2012 14:00:48 +0000 (15:00 +0100)]
ljpegenc: switch to ff_alloc_packet2().

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
12 years agolibxvidff: switch to ff_alloc_packet2().
Michael Niedermayer [Thu, 22 Mar 2012 14:00:48 +0000 (15:00 +0100)]
libxvidff: switch to ff_alloc_packet2().

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
12 years agolibxavs: switch to ff_alloc_packet2().
Michael Niedermayer [Thu, 22 Mar 2012 14:00:48 +0000 (15:00 +0100)]
libxavs: switch to ff_alloc_packet2().

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
12 years agolibx264: switch to ff_alloc_packet2().
Michael Niedermayer [Thu, 22 Mar 2012 14:00:48 +0000 (15:00 +0100)]
libx264: switch to ff_alloc_packet2().

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
12 years agolibvpxenc: switch to ff_alloc_packet2().
Michael Niedermayer [Thu, 22 Mar 2012 14:00:48 +0000 (15:00 +0100)]
libvpxenc: switch to ff_alloc_packet2().

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
12 years agolibvorbis: switch to ff_alloc_packet2().
Michael Niedermayer [Thu, 22 Mar 2012 14:00:48 +0000 (15:00 +0100)]
libvorbis: switch to ff_alloc_packet2().

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
12 years agolibvo-amrwbenc: switch to ff_alloc_packet2().
Michael Niedermayer [Thu, 22 Mar 2012 14:00:48 +0000 (15:00 +0100)]
libvo-amrwbenc: switch to ff_alloc_packet2().

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
12 years agolibvo-aacenc: switch to ff_alloc_packet2().
Michael Niedermayer [Thu, 22 Mar 2012 14:00:47 +0000 (15:00 +0100)]
libvo-aacenc: switch to ff_alloc_packet2().

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
12 years agolibtheoraenc: switch to ff_alloc_packet2().
Michael Niedermayer [Thu, 22 Mar 2012 14:00:47 +0000 (15:00 +0100)]
libtheoraenc: switch to ff_alloc_packet2().

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
12 years agolibspeexenc: switch to ff_alloc_packet2().
Michael Niedermayer [Thu, 22 Mar 2012 14:00:47 +0000 (15:00 +0100)]
libspeexenc: switch to ff_alloc_packet2().

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
12 years agolibschroedingerenc: switch to ff_alloc_packet2().
Michael Niedermayer [Thu, 22 Mar 2012 14:00:47 +0000 (15:00 +0100)]
libschroedingerenc: switch to ff_alloc_packet2().

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
12 years agolibopencore-amr: switch to ff_alloc_packet2().
Michael Niedermayer [Thu, 22 Mar 2012 14:00:47 +0000 (15:00 +0100)]
libopencore-amr: switch to ff_alloc_packet2().

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
12 years agolibmp3lame: switch to ff_alloc_packet2().
Michael Niedermayer [Thu, 22 Mar 2012 14:00:47 +0000 (15:00 +0100)]
libmp3lame: switch to ff_alloc_packet2().

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
12 years agolibgsm: switch to ff_alloc_packet2().
Michael Niedermayer [Thu, 22 Mar 2012 14:00:47 +0000 (15:00 +0100)]
libgsm: switch to ff_alloc_packet2().

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
12 years agolibfaac: switch to ff_alloc_packet2().
Michael Niedermayer [Thu, 22 Mar 2012 14:00:47 +0000 (15:00 +0100)]
libfaac: switch to ff_alloc_packet2().

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
12 years agoac3enc: switch to ff_alloc_packet2().
Michael Niedermayer [Thu, 22 Mar 2012 13:59:23 +0000 (14:59 +0100)]
ac3enc: switch to ff_alloc_packet2().

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
12 years agoa64multienc: switch to ff_alloc_packet2()
Michael Niedermayer [Thu, 22 Mar 2012 03:19:23 +0000 (04:19 +0100)]
a64multienc: switch to ff_alloc_packet2()

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
12 years agosnowenc: switch to ff_alloc_packet2()
Michael Niedermayer [Thu, 22 Mar 2012 03:26:59 +0000 (04:26 +0100)]
snowenc: switch to ff_alloc_packet2()

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
12 years agoroqaudioenc: switch to ff_alloc_packet2()
Michael Niedermayer [Thu, 22 Mar 2012 03:26:41 +0000 (04:26 +0100)]
roqaudioenc: switch to ff_alloc_packet2()

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
12 years agoroqvideoenc: switch to ff_alloc_packet2()
Michael Niedermayer [Thu, 22 Mar 2012 03:26:20 +0000 (04:26 +0100)]
roqvideoenc: switch to ff_alloc_packet2()

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
12 years agorawenc: : switch to ff_alloc_packet2()
Michael Niedermayer [Thu, 22 Mar 2012 03:26:07 +0000 (04:26 +0100)]
rawenc: : switch to ff_alloc_packet2()

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
12 years agora144enc: switch to ff_alloc_packet2()
Michael Niedermayer [Thu, 22 Mar 2012 03:25:51 +0000 (04:25 +0100)]
ra144enc: switch to ff_alloc_packet2()

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
12 years agompegvideo_enc: : switch to ff_alloc_packet2()
Michael Niedermayer [Thu, 22 Mar 2012 03:25:31 +0000 (04:25 +0100)]
mpegvideo_enc: : switch to ff_alloc_packet2()

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
12 years agolclenc: switch to ff_alloc_packet2()
Michael Niedermayer [Thu, 22 Mar 2012 03:25:20 +0000 (04:25 +0100)]
lclenc: switch to ff_alloc_packet2()

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
12 years agojpeglsenc: switch to ff_alloc_packet2()
Michael Niedermayer [Thu, 22 Mar 2012 03:25:06 +0000 (04:25 +0100)]
jpeglsenc: switch to ff_alloc_packet2()

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
12 years agoj2kenc: switch to ff_alloc_packet2()
Michael Niedermayer [Thu, 22 Mar 2012 03:24:55 +0000 (04:24 +0100)]
j2kenc: switch to ff_alloc_packet2()

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
12 years agohuffyuvenc: switch to ff_alloc_packet2()
Michael Niedermayer [Thu, 22 Mar 2012 03:24:41 +0000 (04:24 +0100)]
huffyuvenc: switch to ff_alloc_packet2()

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
12 years agogifenc: switch to ff_alloc_packet2()
Michael Niedermayer [Thu, 22 Mar 2012 03:24:30 +0000 (04:24 +0100)]
gifenc: switch to ff_alloc_packet2()

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
12 years agog726enc: switch to ff_alloc_packet2()
Michael Niedermayer [Thu, 22 Mar 2012 03:24:16 +0000 (04:24 +0100)]
g726enc: switch to ff_alloc_packet2()

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
12 years agog722enc: switch to ff_alloc_packet2()
Michael Niedermayer [Thu, 22 Mar 2012 03:24:04 +0000 (04:24 +0100)]
g722enc: switch to ff_alloc_packet2()

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
12 years agoflashv2enc: switch to ff_alloc_packet2()
Michael Niedermayer [Thu, 22 Mar 2012 03:23:36 +0000 (04:23 +0100)]
flashv2enc: switch to ff_alloc_packet2()

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
12 years agoflashvenc: switch to ff_alloc_packet2()
Michael Niedermayer [Thu, 22 Mar 2012 03:23:20 +0000 (04:23 +0100)]
flashvenc: switch to ff_alloc_packet2()

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
12 years agoflacenc: switch to ff_alloc_packet2()
Michael Niedermayer [Thu, 22 Mar 2012 03:23:06 +0000 (04:23 +0100)]
flacenc: switch to ff_alloc_packet2()

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
12 years agoffv1enc: switch to ff_alloc_packet2()
Michael Niedermayer [Thu, 22 Mar 2012 03:22:49 +0000 (04:22 +0100)]
ffv1enc: switch to ff_alloc_packet2()

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
12 years agodvenc: switch to ff_alloc_packet2()
Michael Niedermayer [Thu, 22 Mar 2012 03:22:33 +0000 (04:22 +0100)]
dvenc: switch to ff_alloc_packet2()

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
12 years agodpxenc: switch to ff_alloc_packet2()
Michael Niedermayer [Thu, 22 Mar 2012 03:22:17 +0000 (04:22 +0100)]
dpxenc: switch to ff_alloc_packet2()

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
12 years agodnxhdenc: switch to ff_alloc_packet2()
Michael Niedermayer [Thu, 22 Mar 2012 03:21:57 +0000 (04:21 +0100)]
dnxhdenc: switch to ff_alloc_packet2()

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
12 years agocljrenc: switch to ff_alloc_packet2()
Michael Niedermayer [Thu, 22 Mar 2012 03:21:43 +0000 (04:21 +0100)]
cljrenc: switch to ff_alloc_packet2()

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
12 years agobmpenc: switch to ff_alloc_packet2()
Michael Niedermayer [Thu, 22 Mar 2012 03:21:32 +0000 (04:21 +0100)]
bmpenc: switch to ff_alloc_packet2()

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
12 years agoalacenc: switch to ff_alloc_packet2()
Michael Niedermayer [Thu, 22 Mar 2012 03:21:13 +0000 (04:21 +0100)]
alacenc: switch to ff_alloc_packet2()

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
12 years agosv1enc: switch to ff_alloc_packet2()
Michael Niedermayer [Thu, 22 Mar 2012 03:20:57 +0000 (04:20 +0100)]
sv1enc: switch to ff_alloc_packet2()

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
12 years agoadxenc: switch to ff_alloc_packet2()
Michael Niedermayer [Thu, 22 Mar 2012 03:20:20 +0000 (04:20 +0100)]
adxenc: switch to ff_alloc_packet2()

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
12 years agoadpcmenc: switch to ff_alloc_packet2()
Michael Niedermayer [Thu, 22 Mar 2012 03:20:07 +0000 (04:20 +0100)]
adpcmenc: switch to ff_alloc_packet2()

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
12 years agoaacenc: switch to ff_alloc_packet2()
Michael Niedermayer [Thu, 22 Mar 2012 03:19:52 +0000 (04:19 +0100)]
aacenc: switch to ff_alloc_packet2()

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
12 years agolavc: add ff_alloc_packet2().
Michael Niedermayer [Thu, 22 Mar 2012 02:55:21 +0000 (03:55 +0100)]
lavc: add ff_alloc_packet2().

This contains a AVCodecContext thus allowing us to prevent the
error message duplication

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
12 years agoavcodec_encode_audio2: add missing padding to realloc()
Michael Niedermayer [Thu, 22 Mar 2012 01:17:32 +0000 (02:17 +0100)]
avcodec_encode_audio2: add missing padding to realloc()

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
12 years agoudp: lock all operations on shared variables.
Nicolas George [Thu, 15 Mar 2012 12:35:27 +0000 (13:35 +0100)]
udp: lock all operations on shared variables.

12 years agoudp: return the error code instead of generic EIO.
Nicolas George [Thu, 15 Mar 2012 12:42:34 +0000 (13:42 +0100)]
udp: return the error code instead of generic EIO.

12 years agoudp: call av_fifo_space directly as needed.
Nicolas George [Thu, 15 Mar 2012 12:11:06 +0000 (13:11 +0100)]
udp: call av_fifo_space directly as needed.

The comment seemed to indicate that left was used
to limit the size of the recv, but it was not so.

12 years agoudp: use non-blocking read instead of select.
Nicolas George [Thu, 15 Mar 2012 12:07:10 +0000 (13:07 +0100)]
udp: use non-blocking read instead of select.

12 years agoudp: use pthread_cancel instead of a shared flag.
Nicolas George [Thu, 15 Mar 2012 12:03:38 +0000 (13:03 +0100)]
udp: use pthread_cancel instead of a shared flag.

It allows to exit the thread immediately instead of waiting
for select to timeout (one second in the current code).

12 years agoaiffdec: set block_duration to 1 for PCM codecs that are supported in AIFF-C
Justin Ruggles [Wed, 21 Mar 2012 18:51:50 +0000 (14:51 -0400)]
aiffdec: set block_duration to 1 for PCM codecs that are supported in AIFF-C

12 years agoaiffdec: factor out handling of integer PCM for AIFF-C and plain AIFF
Justin Ruggles [Wed, 21 Mar 2012 18:48:35 +0000 (14:48 -0400)]
aiffdec: factor out handling of integer PCM for AIFF-C and plain AIFF

12 years agoaiffdec: use av_get_audio_frame_duration() to set block_duration for AIFF-C
Justin Ruggles [Wed, 21 Mar 2012 18:36:33 +0000 (14:36 -0400)]
aiffdec: use av_get_audio_frame_duration() to set block_duration for AIFF-C

12 years agoaiffdec: do not set bit rate if block duration is unknown
Justin Ruggles [Wed, 21 Mar 2012 18:30:33 +0000 (14:30 -0400)]
aiffdec: do not set bit rate if block duration is unknown

CC: libav-stable@libav.org