[libav-commits] lavc: add video/audio/encoding flags to global_quality option

2011-09-30 Thread Anton Khirnov
Module: libav Branch: master Commit: b036a7180cf1f4926084d2f5b7ede09a041f309b Author:Anton Khirnov Committer: Anton Khirnov Date: Fri Sep 30 17:12:13 2011 +0200 lavc: add video/audio/encoding flags to global_quality option --- libavcodec/options.c |2 +- 1 files changed, 1 inser

[libav-commits] libvpxenc: use libvpx's own defaults for some parameters

2011-09-30 Thread Luca Barbato
Module: libav Branch: master Commit: 6450f26c9ac90bda7c7e58ff75020d0dd2ed0aa2 Author:Luca Barbato Committer: Anton Khirnov Date: Fri Sep 30 12:15:59 2011 +0200 libvpxenc: use libvpx's own defaults for some parameters Specifically, qmin/qmax, gop_size and keyint_min. Fixes bug 47. Si

[libav-commits] vpxenc: add private options

2011-09-30 Thread Luca Barbato
Module: libav Branch: master Commit: e3eb015ba47ace8aff8db18e80d20704e7306b66 Author:Luca Barbato Committer: Anton Khirnov Date: Mon Sep 26 10:22:38 2011 +0200 vpxenc: add private options Make libvpx support close to the libx264 one. Thanks to Jan Gerber for the support. Signed-off-

[libav-commits] dpcm: move codec-specific variable declarations to their corresponding decoding blocks .

2011-09-30 Thread Justin Ruggles
Module: libav Branch: master Commit: fc6faee0d1d8bfea642be462c7fd6dcc964f6110 Author:Justin Ruggles Committer: Justin Ruggles Date: Sun Sep 11 12:13:13 2011 -0400 dpcm: move codec-specific variable declarations to their corresponding decoding blocks. --- libavcodec/dpcm.c |8 ++

[libav-commits] dpcm: replace short with int16_t

2011-09-30 Thread Justin Ruggles
Module: libav Branch: master Commit: f47f7efd14fa57e298886a20920b7679c975afc1 Author:Justin Ruggles Committer: Justin Ruggles Date: Sun Sep 11 12:41:48 2011 -0400 dpcm: replace short with int16_t --- libavcodec/dpcm.c |7 +++ 1 files changed, 3 insertions(+), 4 deletions(-)

[libav-commits] dpcm: use sol_table_16 directly instead of through the DPCMContext.

2011-09-30 Thread Justin Ruggles
Module: libav Branch: master Commit: 5a54d5101780421cdcb71c018eea157e3d4d3c8f Author:Justin Ruggles Committer: Justin Ruggles Date: Sun Sep 11 12:43:03 2011 -0400 dpcm: use sol_table_16 directly instead of through the DPCMContext. --- libavcodec/dpcm.c |5 ++--- 1 files changed,

[libav-commits] dpcm: remove unnecessary variable by using bytestream functions.

2011-09-30 Thread Justin Ruggles
Module: libav Branch: master Commit: 1de8401c569b55abc86b2a06f35c5b3fc72c98ed Author:Justin Ruggles Committer: Justin Ruggles Date: Sun Sep 11 12:24:03 2011 -0400 dpcm: remove unnecessary variable by using bytestream functions. Uses 'buf' directly instead of a separate iterator variab

[libav-commits] dpcm: misc pretty-printing

2011-09-30 Thread Justin Ruggles
Module: libav Branch: master Commit: 4bad464e7f5731e2f554ea673f54e8d770bc109e Author:Justin Ruggles Committer: Justin Ruggles Date: Sun Sep 11 12:37:17 2011 -0400 dpcm: misc pretty-printing --- libavcodec/dpcm.c | 40 1 files changed, 20 in

[libav-commits] dpcm: use smaller data types for static tables

2011-09-30 Thread Justin Ruggles
Module: libav Branch: master Commit: 0354fb7ebe13e44b889ba7672e4336ee377f Author:Justin Ruggles Committer: Justin Ruggles Date: Sun Sep 11 12:46:06 2011 -0400 dpcm: use smaller data types for static tables --- libavcodec/dpcm.c | 10 +- 1 files changed, 5 insertions(+)

[libav-commits] dpcm: return error if packet is too small

2011-09-30 Thread Justin Ruggles
Module: libav Branch: master Commit: 08bd22a61b820160bff5f98cd51d2e0135d02e00 Author:Justin Ruggles Committer: Justin Ruggles Date: Sun Sep 11 13:18:51 2011 -0400 dpcm: return error if packet is too small --- libavcodec/dpcm.c |5 - 1 files changed, 4 insertions(+), 1 deleti

[libav-commits] dpcm: check to make sure channels is 1 or 2.

2011-09-30 Thread Justin Ruggles
Module: libav Branch: master Commit: 8d77d12a2be10e8564599ccbfcdd804ff432d885 Author:Justin Ruggles Committer: Justin Ruggles Date: Sun Sep 11 12:40:40 2011 -0400 dpcm: check to make sure channels is 1 or 2. --- libavcodec/dpcm.c |5 + 1 files changed, 5 insertions(+), 0 del

[libav-commits] dpcm: calculate and check actual output data size prior to decoding.

2011-09-30 Thread Justin Ruggles
Module: libav Branch: master Commit: 76db17dc7d4f19f9a03bdd6de79c2ea37b76888f Author:Justin Ruggles Committer: Justin Ruggles Date: Sun Sep 11 11:51:08 2011 -0400 dpcm: calculate and check actual output data size prior to decoding. --- libavcodec/dpcm.c | 50 ++

[libav-commits] dpcm: factor out the stereo flag calculation

2011-09-30 Thread Justin Ruggles
Module: libav Branch: master Commit: 3db8db406ff213bf177cc23c44f6cbc8778b1bea Author:Justin Ruggles Committer: Justin Ruggles Date: Sun Sep 11 11:19:00 2011 -0400 dpcm: factor out the stereo flag calculation --- libavcodec/dpcm.c | 29 +++-- 1 files changed

[libav-commits] dpcm: consistently use the variable name 'n' for the next input byte.

2011-09-30 Thread Justin Ruggles
Module: libav Branch: master Commit: 989bb7bd0477ef467f374dd8464a88d039f86ebe Author:Justin Ruggles Committer: Justin Ruggles Date: Sun Sep 11 12:08:38 2011 -0400 dpcm: consistently use the variable name 'n' for the next input byte. --- libavcodec/dpcm.c | 12 +--- 1 files

[libav-commits] dpcm: cosmetics: rename channel_number to ch

2011-09-30 Thread Justin Ruggles
Module: libav Branch: master Commit: b09c7eefb77263b2b1292faa65c292e74c04ff43 Author:Justin Ruggles Committer: Justin Ruggles Date: Sun Sep 11 11:13:04 2011 -0400 dpcm: cosmetics: rename channel_number to ch Make the code easier to read. --- libavcodec/dpcm.c | 46 +++

[libav-commits] dpcm: output AV_SAMPLE_FMT_U8 for Sol DPCM subcodecs 1 and 2.

2011-09-30 Thread Justin Ruggles
Module: libav Branch: master Commit: 04b24cf94b3582f94a94e28506368d3ee54daad7 Author:Justin Ruggles Committer: Justin Ruggles Date: Sun Sep 11 12:04:46 2011 -0400 dpcm: output AV_SAMPLE_FMT_U8 for Sol DPCM subcodecs 1 and 2. Uses the native sample format for the codec instead of left-

[libav-commits] avserver: Fix a bug where the socket is IPv4, but IPv6 is autoselected for the loopback address.

2011-09-30 Thread Nathan Caldwell
Module: libav Branch: master Commit: f5e717f3c735af5c941b458d42615c97028aa916 Author:Nathan Caldwell Committer: Anton Khirnov Date: Tue Sep 27 18:48:43 2011 -0600 avserver: Fix a bug where the socket is IPv4, but IPv6 is autoselected for the loopback address. This fixes bind(8080): A

[libav-commits] lavf: Avoid using av_malloc(0) in av_dump_format

2011-09-30 Thread Martin Storsjö
Module: libav Branch: master Commit: e81e5e8ad2bb5746df0c343c396019aca165cf66 Author:Martin Storsjö Committer: Martin Storsjö Date: Fri Sep 30 20:30:35 2011 +0300 lavf: Avoid using av_malloc(0) in av_dump_format On OS X, av_malloc(0) returns pointers that cause crashes when freed. Si

[libav-commits] dxva2_h264: pass the correct 8x8 scaling lists

2011-09-30 Thread Carl Eugen Hoyos
Module: libav Branch: master Commit: bcb15554894e13d1575d5f6e7ff833812a315004 Author:Carl Eugen Hoyos Committer: Janne Grunau Date: Wed Sep 21 20:42:48 2011 + dxva2_h264: pass the correct 8x8 scaling lists Copy the Inter 8x8 scaling list as second 8x8 matrix into DXVA2's quantizat

[libav-commits] dca: NEON optimised high freq VQ decoding

2011-09-30 Thread Mans Rullgard
Module: libav Branch: master Commit: bf5d46d8e6de1f3035adb63b50924f474fabb578 Author:Mans Rullgard Committer: Mans Rullgard Date: Wed Sep 28 21:53:03 2011 +0100 dca: NEON optimised high freq VQ decoding Signed-off-by: Mans Rullgard --- libavcodec/arm/dca.h | 49 +

[libav-commits] Update Changelog for 0.7.2 release

2011-09-30 Thread Reinhard Tartler
Module: libav Branch: release/0.7 Commit: 58decdb639e8582063807b5ddfb86dada6731f74 Author:Reinhard Tartler Committer: Reinhard Tartler Date: Fri Sep 30 18:14:12 2011 +0200 Update Changelog for 0.7.2 release --- Changelog | 43 +++ 1 files ch

[libav-commits] avcodec: reject audio packets with NULL data and non-zero size

2011-09-30 Thread Justin Ruggles
Module: libav Branch: master Commit: 6326afd5e90cfed9df08b652a1cd6f6a948c239a Author:Justin Ruggles Committer: Justin Ruggles Date: Fri Sep 23 21:54:44 2011 -0400 avcodec: reject audio packets with NULL data and non-zero size There is no valid reason the user should ever send such pac

[libav-commits] Update RELEASE file for 0.7.2

2011-09-30 Thread Reinhard Tartler
Module: libav Branch: release/0.7 Commit: 35feff418aabd9964509e2c718c65314606545e3 Author:Reinhard Tartler Committer: Reinhard Tartler Date: Fri Sep 30 15:44:19 2011 +0200 Update RELEASE file for 0.7.2 --- RELEASE |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --g

[libav-commits] Fix memory (re)allocation in matroskadec.c, related to MSVR-11-0080.

2011-09-30 Thread Michael Niedermayer
Module: libav Branch: release/0.7 Commit: a2443e89d740204c960da0d29c979a9283071a65 Author:Michael Niedermayer Committer: Reinhard Tartler Date: Thu Jul 28 14:59:54 2011 +0200 Fix memory (re)allocation in matroskadec.c, related to MSVR-11-0080. Whitespace of the patch cleaned up by Aur

[libav-commits] fate: separate lavf-mxf_d10 test from lavf-mxf

2011-09-30 Thread Mans Rullgard
Module: libav Branch: release/0.7 Commit: 783f45de4f3ee03a661c7d1479fe1b513bc0a863 Author:Mans Rullgard Committer: Reinhard Tartler Date: Sun Jul 17 15:40:05 2011 +0100 fate: separate lavf-mxf_d10 test from lavf-mxf Signed-off-by: Mans Rullgard (cherry picked from commit 0218808d4980

[libav-commits] lavf: do not set codec_tag for rawvideo

2011-09-30 Thread Mans Rullgard
Module: libav Branch: release/0.7 Commit: e257eebd17fbb7e880cfdde8a80c089434b6cf1f Author:Mans Rullgard Committer: Reinhard Tartler Date: Sun Jul 17 16:02:33 2011 +0100 lavf: do not set codec_tag for rawvideo If the demuxer did not set a codec_tag, there is none and inventing one make

[libav-commits] fate: allow testing with libavfilter disabled

2011-09-30 Thread Reinhard Tartler
Module: libav Branch: release/0.7 Commit: 9bb7a128a34fb5e4abcd265e5dfcb61787ad2f0f Author:Reinhard Tartler Committer: Reinhard Tartler Date: Wed Sep 28 00:50:08 2011 +0200 fate: allow testing with libavfilter disabled This declares dependencies to skip tests using libavfilter when it

[libav-commits] dxva: Add ability to enable workaround for older ATI cards

2011-09-30 Thread Joakim Plate
Module: libav Branch: master Commit: dcce09d64bd13ab13b86307f5a268e5c1e50c7e2 Author:Joakim Plate Committer: Janne Grunau Date: Tue Jul 5 00:18:32 2011 +0200 dxva: Add ability to enable workaround for older ATI cards The workaround needs to be enabled per PCI ID which cannot be detec

[libav-commits] latmenc: Set latmBufferFullness to largest value to indicate it is not used

2011-09-30 Thread Kieran Kunhya
Module: libav Branch: master Commit: d4a544cbc46fd3550e4d21a9871eeb315e036156 Author:Kieran Kunhya Committer: Janne Grunau Date: Fri Sep 23 10:51:07 2011 -0500 latmenc: Set latmBufferFullness to largest value to indicate it is not used Signed-off-by: Janne Grunau --- libavformat/l