Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2013-02-16 16:13:42 +0400
committerMichael Niedermayer <michaelni@gmx.at>2013-02-16 16:13:42 +0400
commitbb29ee62e9ef30c26988f386e7c3be7affe836f9 (patch)
treeb09b40010a8fd2096190cfcf34c7682fc55b63d8 /cmdutils.c
parent1c5b8b916d3d068aef9b8d0842d9258eb6cb978d (diff)
parentd2a25c4032ce6ceabb0f51b5c1e6ca865395a793 (diff)
Merge commit 'd2a25c4032ce6ceabb0f51b5c1e6ca865395a793'
* commit 'd2a25c4032ce6ceabb0f51b5c1e6ca865395a793': get_buffer(): do not initialize the data. Conflicts: libavcodec/utils.c Merged-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'cmdutils.c')
-rw-r--r--cmdutils.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/cmdutils.c b/cmdutils.c
index bd6ad449f7..7c2117637e 100644
--- a/cmdutils.c
+++ b/cmdutils.c
@@ -1853,11 +1853,6 @@ static int alloc_buffer(FrameBuffer **pool, AVCodecContext *s, FrameBuffer **pbu
av_log(s, AV_LOG_ERROR, "alloc_buffer: av_image_alloc() failed\n");
return ret;
}
- /* XXX this shouldn't be needed, but some tests break without this line
- * those decoders are buggy and need to be fixed.
- * the following tests fail:
- */
- memset(buf->base[0], 128, ret);
avcodec_get_chroma_sub_sample(s->pix_fmt, &h_chroma_shift, &v_chroma_shift);
for (i = 0; i < FF_ARRAY_ELEMS(buf->data); i++) {