[libav-devel] [PATCH] lavf: rename err_filter option and document resulting (f_)err_detect options

2012-01-20 Thread Dustin Brody
--- libavformat/options.c |9 ++--- 1 files changed, 6 insertions(+), 3 deletions(-) diff --git a/libavformat/options.c b/libavformat/options.c index a9e2c1c..39847db 100644 --- a/libavformat/options.c +++ b/libavformat/options.c @@ -109,10 +109,13 @@ static const AVOption options[]={

[libav-devel] [PATCH] lavc: rename err_filter option to err_detect and document it

2012-01-20 Thread Dustin Brody
--- libavcodec/options.c | 10 +- 1 files changed, 5 insertions(+), 5 deletions(-) diff --git a/libavcodec/options.c b/libavcodec/options.c index 00d80e0..0d41da5 100644 --- a/libavcodec/options.c +++ b/libavcodec/options.c @@ -208,11 +208,11 @@ static const AVOption options[]={

[libav-devel] [PATCH] avidec: migrate last of lavf from FF_ER_* to AV_EF_*

2012-01-18 Thread Dustin Brody
--- libavformat/avidec.c |7 --- 1 files changed, 4 insertions(+), 3 deletions(-) diff --git a/libavformat/avidec.c b/libavformat/avidec.c index b45224f..b4ccfb5 100644 --- a/libavformat/avidec.c +++ b/libavformat/avidec.c @@ -666,9 +666,9 @@ static int avi_read_header(AVFormatContext

[libav-devel] [PATCH 2/3] lavc: internally document err_detect flags

2012-01-17 Thread Dustin Brody
--- libavcodec/options.c | 10 +- 1 files changed, 5 insertions(+), 5 deletions(-) diff --git a/libavcodec/options.c b/libavcodec/options.c index 00d80e0..0d41da5 100644 --- a/libavcodec/options.c +++ b/libavcodec/options.c @@ -208,11 +208,11 @@ static const AVOption options[]={

[libav-devel] [PATCH 1/3] avidec: migrate last of lavf from FF_ER_* to AV_EF_*

2012-01-17 Thread Dustin Brody
--- libavformat/avidec.c |4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/libavformat/avidec.c b/libavformat/avidec.c index b45224f..3f0d1a3 100644 --- a/libavformat/avidec.c +++ b/libavformat/avidec.c @@ -666,7 +666,7 @@ static int avi_read_header(AVFormatContext *s,

[libav-devel] [PATCH 3/3] lavf: rename and internally document (f_)err_detect option

2012-01-17 Thread Dustin Brody
--- libavformat/options.c | 13 ++--- 1 files changed, 10 insertions(+), 3 deletions(-) diff --git a/libavformat/options.c b/libavformat/options.c index a9e2c1c..2f34a7b 100644 --- a/libavformat/options.c +++ b/libavformat/options.c @@ -109,10 +109,17 @@ static const AVOption

[libav-devel] [PATCH 4/4] avconv: add master err_detect option controlling c_err_detect and f_err_detect

2012-01-16 Thread Dustin Brody
--- avconv.c |7 +++ 1 files changed, 7 insertions(+), 0 deletions(-) diff --git a/avconv.c b/avconv.c index 2246851..7d30b99 100644 --- a/avconv.c +++ b/avconv.c @@ -295,6 +295,7 @@ typedef struct OptionsContext { /* input options */ int64_t input_ts_offset; int rate_emu;

[libav-devel] [PATCH 2/4] lavf: migrate deprecated FF_ER_* to AV_EF_*

2012-01-16 Thread Dustin Brody
--- libavformat/avformat.h |2 +- libavformat/avidec.c |4 ++-- libavformat/options.c |8 +--- 3 files changed, 8 insertions(+), 6 deletions(-) diff --git a/libavformat/avformat.h b/libavformat/avformat.h index fff911a..155fc03 100644 --- a/libavformat/avformat.h +++

[libav-devel] [PATCH 3/4] lavc: rename and add help documentation to error detection option

2012-01-16 Thread Dustin Brody
--- libavcodec/options.c | 10 +- 1 files changed, 5 insertions(+), 5 deletions(-) diff --git a/libavcodec/options.c b/libavcodec/options.c index 00d80e0..fd8a90b 100644 --- a/libavcodec/options.c +++ b/libavcodec/options.c @@ -208,11 +208,11 @@ static const AVOption options[]={

[libav-devel] [PATCH] lavc: convert MPEG codec states from deprecated error_recognition to err_recognition bitmask

2011-12-07 Thread Dustin Brody
--- libavcodec/error_resilience.c |8 libavcodec/h263dec.c |2 +- libavcodec/h264.c |2 +- libavcodec/ituh263dec.c |2 +- libavcodec/mpeg4video.h |2 +- libavcodec/mpeg4videodec.c|4 ++-- libavcodec/mpegvideo.c|2 +-

[libav-devel] [PATCH 1/4] add -err_filter AVOptions to access flag-based error recognition

2011-10-22 Thread Dustin Brody
--- libavcodec/options.c |9 +++-- 1 files changed, 7 insertions(+), 2 deletions(-) diff --git a/libavcodec/options.c b/libavcodec/options.c index 65d57d3..1f0223f 100644 --- a/libavcodec/options.c +++ b/libavcodec/options.c @@ -200,14 +200,19 @@ static const AVOption options[]={

[libav-devel] [PATCH 4/4] lavc: document -err_filter

2011-10-22 Thread Dustin Brody
--- doc/avconv.texi | 14 ++ doc/ffmpeg.texi | 14 ++ 2 files changed, 28 insertions(+), 0 deletions(-) diff --git a/doc/avconv.texi b/doc/avconv.texi index c298dc5..2c13016 100644 --- a/doc/avconv.texi +++ b/doc/avconv.texi @@ -444,6 +444,20 @@ FF_ER_AGGRESSIVE

[libav-devel] [PATCH 3/4] lavc: replace references to deprecated AVCodecContext.error_recognition to use AVCodecContext.err_recognition

2011-10-22 Thread Dustin Brody
--- libavcodec/aacdec.c |2 +- libavcodec/ac3dec.c |2 +- libavcodec/alsdec.c |6 +++--- libavcodec/h261dec.c |2 +- libavcodec/h263dec.c |2 +- libavcodec/h264.c |4 ++-- libavcodec/h264_refs.c|2 +- libavcodec/mjpegbdec.c|

[libav-devel] [PATCH 2/4] lavc: translate non-flag-based er options into flag-based ef options at codec open

2011-10-22 Thread Dustin Brody
--- libavcodec/utils.c | 10 ++ 1 files changed, 10 insertions(+), 0 deletions(-) diff --git a/libavcodec/utils.c b/libavcodec/utils.c index 3e49262..35c9eeb 100644 --- a/libavcodec/utils.c +++ b/libavcodec/utils.c @@ -576,6 +576,16 @@ int attribute_align_arg

[libav-devel] [PATCH] lavc: add -err_filter AVOptions to access flag-based error recognition

2011-10-21 Thread Dustin Brody
--- libavcodec/options.c |9 +++-- 1 files changed, 7 insertions(+), 2 deletions(-) diff --git a/libavcodec/options.c b/libavcodec/options.c index 65d57d3..1f0223f 100644 --- a/libavcodec/options.c +++ b/libavcodec/options.c @@ -200,14 +200,19 @@ static const AVOption options[]={

Re: [libav-devel] [PATCH 5/5] lavc: replace references to deprecated AVCodecContext.error_recognition to use AVCodecContext.err_recognition

2011-10-17 Thread Dustin Brody
On 10/17/2011 1:03 AM, Ronald S. Bultje wrote: This is great work and we should merge it (as in: patch LGTM). Now, as for explode, the distinction between explode and bitstream appears to be mostly one of stuff that used to be there before you touched it and stuff you touched. Not that I

[libav-devel] [PATCH 1/2] lavc: rename deprecation symbol FF_API_VERY_AGGRESSIVE to FF_API_ER

2011-10-14 Thread Dustin Brody
--- libavcodec/avcodec.h |4 ++-- libavcodec/options.c |4 ++-- libavcodec/version.h |4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h index 5a69c24..56d48a4 100644 --- a/libavcodec/avcodec.h +++ b/libavcodec/avcodec.h

[libav-devel] [PATCH 1/2] lavc: rename deprecation symbol FF_API_VERY_AGGRESSIVE to FF_API_ER

2011-10-13 Thread Dustin Brody
--- libavcodec/avcodec.h |4 ++-- libavcodec/options.c |4 ++-- libavcodec/version.h |4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h index 5a69c24..56d48a4 100644 --- a/libavcodec/avcodec.h +++ b/libavcodec/avcodec.h

[libav-devel] [PATCH 2/2] lavc: add a flag-based error_recognition field to AVCodecContext and deprecate non-flag-based ER field

2011-10-13 Thread Dustin Brody
--- libavcodec/avcodec.h | 21 + 1 files changed, 17 insertions(+), 4 deletions(-) diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h index 56d48a4..750a208 100644 --- a/libavcodec/avcodec.h +++ b/libavcodec/avcodec.h @@ -1465,21 +1465,19 @@ typedef struct

[libav-devel] [PATCH] lavc: deprecate FF_ER_AGGRESSIVE and rename deprecation symbol FF_API_VERY_AGGRESSIVE to FF_API_ER

2011-10-06 Thread Dustin Brody
--- doc/avconv.texi |6 ++ doc/ffmpeg.texi |4 +--- libavcodec/avcodec.h |6 +++--- libavcodec/mpeg12.c |3 +-- libavcodec/mpegaudiodec.c |2 +- libavcodec/options.c |4 ++-- libavcodec/version.h |4 ++-- 7 files changed, 12

[libav-devel] [PATCH 1/2] libavcodec: rename FF_API_AGGRESSIVE depreciation symbol to FF_API_ER

2011-10-04 Thread Dustin Brody
--- libavcodec/avcodec.h |9 ++--- libavcodec/options.c |4 ++-- libavcodec/version.h |4 ++-- 3 files changed, 10 insertions(+), 7 deletions(-) diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h index 2e37f5a..c327182 100644 --- a/libavcodec/avcodec.h +++

[libav-devel] [PATCH 2/2] libavcodec, libavformat: ifdef-template error-recognition API use

2011-10-04 Thread Dustin Brody
--- libavcodec/aacdec.c |4 +++ libavcodec/ac3dec.c |4 +++ libavcodec/alsdec.c | 12 ++ libavcodec/h261dec.c |4 +++ libavcodec/h263dec.c |4 +++ libavcodec/h264.c |8 +++ libavcodec/h264_refs.c|4 +++

Re: [libav-devel] [PATCH] [RFC] matroskadec: bail on parsing of incorrect seek index segments

2011-09-10 Thread Dustin Brody
On 9/11/2011 12:13 AM, Ronald S. Bultje wrote: Shouldn't this be dependent on the error resilience, as per the other patches? If we want to try to recover (i.e. !explode), then maybe the rest of the file is still valid even though the seek segment is not. (I'm not sure how realistic it is,

[libav-devel] [PATCH] [RFC] matroskadec: bail on parsing of incorrect seek index segments

2011-09-08 Thread Dustin Brody
--- libavformat/matroskadec.c |4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/libavformat/matroskadec.c b/libavformat/matroskadec.c index 0379977..01c9a7b 100644 --- a/libavformat/matroskadec.c +++ b/libavformat/matroskadec.c @@ -1148,7 +1148,7 @@ static int

[libav-devel] [PATCH] mpeg12: fix spacing around assignments

2011-09-06 Thread Dustin Brody
--- libavcodec/mpeg12.c | 176 +- 1 files changed, 88 insertions(+), 88 deletions(-) diff --git a/libavcodec/mpeg12.c b/libavcodec/mpeg12.c index 574f69a..1188df8 100644 --- a/libavcodec/mpeg12.c +++ b/libavcodec/mpeg12.c @@ -91,16 +91,16 @@

Re: [libav-devel] [PATCH] mpeg12: fix spacing around assignments

2011-09-06 Thread Dustin Brody
On 9/6/2011 2:57 AM, Diego Biurrun wrote: On Tue, Sep 06, 2011 at 02:17:48AM -0400, Dustin Brody wrote: --- libavcodec/mpeg12.c | 176 +- 1 files changed, 88 insertions(+), 88 deletions(-) LGTM, but ... --- a/libavcodec/mpeg12.c +++ b

[libav-devel] [PATCH] mpeg12: fix spacing around assignments

2011-09-06 Thread Dustin Brody
--- libavcodec/mpeg12.c | 224 +- 1 files changed, 112 insertions(+), 112 deletions(-) diff --git a/libavcodec/mpeg12.c b/libavcodec/mpeg12.c index 574f69a..a85d3ca 100644 --- a/libavcodec/mpeg12.c +++ b/libavcodec/mpeg12.c @@ -91,31 +91,31 @@

[libav-devel] [PATCH] mpeg12: pass more real return values through chunk decode error return propagation and fix some indentation

2011-09-03 Thread Dustin Brody
--- libavcodec/mpeg12.c | 41 +++-- 1 files changed, 19 insertions(+), 22 deletions(-) diff --git a/libavcodec/mpeg12.c b/libavcodec/mpeg12.c index 4b20610..13dd867 100644 --- a/libavcodec/mpeg12.c +++ b/libavcodec/mpeg12.c @@ -1912,7 +1912,7 @@ static int

[libav-devel] [PATCH] mpeg12: propagate more real return values through chunk decode error return and fix some indentation

2011-09-03 Thread Dustin Brody
--- libavcodec/mpeg12.c | 40 +++- 1 files changed, 19 insertions(+), 21 deletions(-) diff --git a/libavcodec/mpeg12.c b/libavcodec/mpeg12.c index 4b20610..574f69a 100644 --- a/libavcodec/mpeg12.c +++ b/libavcodec/mpeg12.c @@ -1912,7 +1912,7 @@ static int

[libav-devel] [PATCH] mjpeg: treat external huffman table setup failure as codec init failure if external huffman table use requested

2011-08-25 Thread Dustin Brody
--- libavcodec/mjpegdec.c |4 ++-- libavcodec/mxpegdec.c |4 +--- 2 files changed, 3 insertions(+), 5 deletions(-) diff --git a/libavcodec/mjpegdec.c b/libavcodec/mjpegdec.c index 81effb4..b9db777 100644 --- a/libavcodec/mjpegdec.c +++ b/libavcodec/mjpegdec.c @@ -101,8 +101,8 @@ av_cold

[libav-devel] [PATCH] h264: hide reference frame errors unless requested

2011-08-17 Thread Dustin Brody
--- libavcodec/h264_refs.c |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/libavcodec/h264_refs.c b/libavcodec/h264_refs.c index b7e43e7..ce29caf 100644 --- a/libavcodec/h264_refs.c +++ b/libavcodec/h264_refs.c @@ -655,7 +655,7 @@ int

[libav-devel] [PATCH] mjpeg: treat external huffman table setup failure as codec init failure if external huffman table use requested

2011-08-17 Thread Dustin Brody
--- libavcodec/mjpegdec.c |4 ++-- libavcodec/mxpegdec.c |4 +--- 2 files changed, 3 insertions(+), 5 deletions(-) diff --git a/libavcodec/mjpegdec.c b/libavcodec/mjpegdec.c index 81effb4..9f987b7 100644 --- a/libavcodec/mjpegdec.c +++ b/libavcodec/mjpegdec.c @@ -101,8 +101,8 @@ av_cold

[libav-devel] [PATCH] mpeg12: propagate chunk decode errors and fix conditional indentation

2011-08-16 Thread Dustin Brody
--- libavcodec/mpeg12.c | 28 1 files changed, 24 insertions(+), 4 deletions(-) diff --git a/libavcodec/mpeg12.c b/libavcodec/mpeg12.c index 91eb3f5..4b20610 100644 --- a/libavcodec/mpeg12.c +++ b/libavcodec/mpeg12.c @@ -1911,6 +1911,8 @@ static int

[libav-devel] [PATCH] vp6: partially propagate huffman tree building errors during coeff model parsing

2011-08-16 Thread Dustin Brody
--- libavcodec/vp6.c |8 1 files changed, 4 insertions(+), 4 deletions(-) diff --git a/libavcodec/vp6.c b/libavcodec/vp6.c index 33cd43a..7ee6340 100644 --- a/libavcodec/vp6.c +++ b/libavcodec/vp6.c @@ -215,8 +215,8 @@ static int vp6_huff_cmp(const void *va, const void *vb)

[libav-devel] [PATCH] vp6: partially propagate huffman tree building errors during coeff model parsing and fix misspelling

2011-08-16 Thread Dustin Brody
--- libavcodec/vp6.c | 10 +- 1 files changed, 5 insertions(+), 5 deletions(-) diff --git a/libavcodec/vp6.c b/libavcodec/vp6.c index 33cd43a..657a5da 100644 --- a/libavcodec/vp6.c +++ b/libavcodec/vp6.c @@ -215,8 +215,8 @@ static int vp6_huff_cmp(const void *va, const void *vb)

[libav-devel] [PATCH] mpeg12: propagate chunk decode errors and fix conditional indentation

2011-08-16 Thread Dustin Brody
--- libavcodec/mpeg12.c | 26 ++ 1 files changed, 22 insertions(+), 4 deletions(-) diff --git a/libavcodec/mpeg12.c b/libavcodec/mpeg12.c index 91eb3f5..200289a 100644 --- a/libavcodec/mpeg12.c +++ b/libavcodec/mpeg12.c @@ -1911,6 +1911,8 @@ static int

[libav-devel] [PATCH] svq3: propagate codec context memory allocation failure in threaded decode

2011-08-12 Thread Dustin Brody
--- libavcodec/svq3.c |5 - 1 files changed, 4 insertions(+), 1 deletions(-) diff --git a/libavcodec/svq3.c b/libavcodec/svq3.c index f6f9fc1..3cd95ba 100644 --- a/libavcodec/svq3.c +++ b/libavcodec/svq3.c @@ -924,7 +924,10 @@ static av_cold int svq3_decode_init(AVCodecContext *avctx)

[libav-devel] [PATCH] svq3: propagate codec memory allocation failure in context init

2011-08-12 Thread Dustin Brody
--- libavcodec/svq3.c |5 - 1 files changed, 4 insertions(+), 1 deletions(-) diff --git a/libavcodec/svq3.c b/libavcodec/svq3.c index f6f9fc1..3cd95ba 100644 --- a/libavcodec/svq3.c +++ b/libavcodec/svq3.c @@ -924,7 +924,10 @@ static av_cold int svq3_decode_init(AVCodecContext *avctx)

Re: [libav-devel] [PATCH] svq3: propagate codec context memory allocation failure in threaded decode

2011-08-12 Thread Dustin Brody
On 8/12/2011 12:20 PM, Ronald S. Bultje wrote: Hi, On Fri, Aug 12, 2011 at 9:01 AM, Dustin Brody li...@parsoma.net wrote: --- libavcodec/svq3.c |5 - 1 files changed, 4 insertions(+), 1 deletions(-) diff --git a/libavcodec/svq3.c b/libavcodec/svq3.c index f6f9fc1..3cd95ba 100644

[libav-devel] [PATCH] h264: notice memory allocation failure

2011-08-11 Thread Dustin Brody
--- libavcodec/h264.c | 10 -- 1 files changed, 8 insertions(+), 2 deletions(-) diff --git a/libavcodec/h264.c b/libavcodec/h264.c index 9ab2498..c2229ff 100644 --- a/libavcodec/h264.c +++ b/libavcodec/h264.c @@ -1138,7 +1138,10 @@ static int decode_update_thread_context(AVCodecContext

[libav-devel] [PATCH] mpeg12: remove code disabled since May 2002 in mpeg_decode_frame

2011-08-11 Thread Dustin Brody
--- libavcodec/mpeg12.c | 12 1 files changed, 0 insertions(+), 12 deletions(-) diff --git a/libavcodec/mpeg12.c b/libavcodec/mpeg12.c index cb3b815..91eb3f5 100644 --- a/libavcodec/mpeg12.c +++ b/libavcodec/mpeg12.c @@ -2260,18 +2260,6 @@ static int

[libav-devel] [PATCH] lavf: add support for error_recognition, use it in avidec, and bump minor API version

2011-08-05 Thread Dustin Brody
--- libavformat/avformat.h |8 libavformat/avidec.c |6 -- libavformat/options.c |3 +++ libavformat/version.h |2 +- 4 files changed, 16 insertions(+), 3 deletions(-) diff --git a/libavformat/avformat.h b/libavformat/avformat.h index 2f68aba..cad0ac1 100644 ---

[libav-devel] [PATCH] lavc: fix misspelling in comment

2011-08-05 Thread Dustin Brody
--- libavcodec/avcodec.h |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h index eaf63e8..74a60ae 100644 --- a/libavcodec/avcodec.h +++ b/libavcodec/avcodec.h @@ -1440,7 +1440,7 @@ typedef struct AVCodecContext { float

[libav-devel] [PATCH 1/2] lavf: add support for error_recognition, use it in avidec, and bump minor API version

2011-08-05 Thread Dustin Brody
--- libavformat/avformat.h |8 libavformat/avidec.c |6 -- libavformat/options.c |3 +++ libavformat/version.h |2 +- 4 files changed, 16 insertions(+), 3 deletions(-) diff --git a/libavformat/avformat.h b/libavformat/avformat.h index 2f68aba..957039f 100644 ---

[libav-devel] [PATCH 2/2] APIchanges: note error_recognition in lavf

2011-08-05 Thread Dustin Brody
--- doc/APIchanges |3 +++ 1 files changed, 3 insertions(+), 0 deletions(-) diff --git a/doc/APIchanges b/doc/APIchanges index 09a12fe..5bbeb44 100644 --- a/doc/APIchanges +++ b/doc/APIchanges @@ -13,6 +13,9 @@ libavutil: 2011-04-18 API changes, most recent first: +2011-08-06 -

[libav-devel] [PATCH] h264: propagate error return values for AV_LOG_ERROR-triggering events

2011-08-04 Thread Dustin Brody
--- libavcodec/h264.c | 32 +++- libavcodec/h264_refs.c |8 ++-- 2 files changed, 25 insertions(+), 15 deletions(-) diff --git a/libavcodec/h264.c b/libavcodec/h264.c index e8513e8..8415540 100644 --- a/libavcodec/h264.c +++ b/libavcodec/h264.c @@

[libav-devel] [PATCH] aac: propagate error return values for AV_LOG_ERROR-triggering events

2011-08-04 Thread Dustin Brody
--- libavcodec/aacdec.c |4 +++- 1 files changed, 3 insertions(+), 1 deletions(-) diff --git a/libavcodec/aacdec.c b/libavcodec/aacdec.c index 783bf99..5740d6c 100644 --- a/libavcodec/aacdec.c +++ b/libavcodec/aacdec.c @@ -589,7 +589,9 @@ static av_cold int aac_decode_init(AVCodecContext

[libav-devel] [PATCH] h263dec: Propagate AV_LOG_ERRORs from slice decoding through frame decoding with sufficient error reporting

2011-07-27 Thread Dustin Brody
--- doc/ffmpeg.texi |2 ++ libavcodec/avcodec.h |1 + libavcodec/h263dec.c |6 +++--- libavcodec/options.c |1 + 4 files changed, 7 insertions(+), 3 deletions(-) diff --git a/doc/ffmpeg.texi b/doc/ffmpeg.texi index 5a783e3..4dca5d8 100644 --- a/doc/ffmpeg.texi +++

[libav-devel] [PATCH] h263dec: Propagate AV_LOG_ERRORs from slice decoding through frame decoding with sufficient error recognition

2011-07-27 Thread Dustin Brody
--- doc/ffmpeg.texi |2 ++ libavcodec/avcodec.h |1 + libavcodec/h263dec.c |6 +++--- libavcodec/options.c |1 + 4 files changed, 7 insertions(+), 3 deletions(-) diff --git a/doc/ffmpeg.texi b/doc/ffmpeg.texi index 5a783e3..4dca5d8 100644 --- a/doc/ffmpeg.texi +++

[libav-devel] [PATCH] mpeg4videodec: remove dead code that would have detected erroneous encoding

2011-07-27 Thread Dustin Brody
--- libavcodec/mpeg4videodec.c | 22 -- 1 files changed, 0 insertions(+), 22 deletions(-) diff --git a/libavcodec/mpeg4videodec.c b/libavcodec/mpeg4videodec.c index b1abb61..4d5e970 100644 --- a/libavcodec/mpeg4videodec.c +++ b/libavcodec/mpeg4videodec.c @@ -990,28 +990,6

Re: [libav-devel] [PATCH] Propagate AV_LOG_ERRORs from slice decoding through frame decoding

2011-07-19 Thread Dustin Brody
On 7/19/2011 9:46 PM, Ronald S. Bultje wrote: Is there a particular problem that is fixed by this? The idea would be (if I understand all this correctly) that for those mp4 subtypes that support it, to recover slice decoding for the next slice even if the past one failed, so that at least part

[libav-devel] [PATCH] Propagate AV_LOG_ERRORs from slice decoding through frame decoding

2011-07-18 Thread Dustin Brody
--- libavcodec/h263dec.c |4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/libavcodec/h263dec.c b/libavcodec/h263dec.c index 6eea8de..feeca74 100644 --- a/libavcodec/h263dec.c +++ b/libavcodec/h263dec.c @@ -638,7 +638,7 @@ retry: s-mb_x=0; s-mb_y=0; -