]> git.pld-linux.org Git - packages/ffmpeg.git/blame - ffmpeg-utvideo.patch
- release 3 (by relup.sh)
[packages/ffmpeg.git] / ffmpeg-utvideo.patch
CommitLineData
ad057c0a
JB
1--- ffmpeg-2.8.3/libavcodec/libutvideodec.cpp.orig 2015-09-09 03:17:45.000000000 +0200
2+++ ffmpeg-2.8.3/libavcodec/libutvideodec.cpp 2015-11-29 21:45:43.984039667 +0100
3@@ -150,7 +150,7 @@
4 pic->key_frame = 1;
5
6 /* Decode the frame */
7- utv->codec->DecodeFrame(utv->buffer, avpkt->data, true);
8+ utv->codec->DecodeFrame(utv->buffer, avpkt->data);
9
10 /* Set the output data depending on the colorspace */
11 switch (avctx->pix_fmt) {
12--- ffmpeg-2.8.3/libavcodec/libutvideoenc.cpp.orig 2015-11-27 14:41:23.000000000 +0100
13+++ ffmpeg-2.8.3/libavcodec/libutvideoenc.cpp 2015-11-30 17:01:44.241128916 +0100
14@@ -122,8 +122,7 @@
15 /* Get extradata from encoder */
16 avctx->extradata_size = utv->codec->EncodeGetExtraDataSize();
17 utv->codec->EncodeGetExtraData(info, avctx->extradata_size, in_format,
18- avctx->width, avctx->height,
19- CBGROSSWIDTH_WINDOWS);
20+ avctx->width, avctx->height);
21 avctx->extradata = (uint8_t *)info;
22
23 /* Set flags */
This page took 0.040015 seconds and 4 git commands to generate.