Go to:
Gentoo Home
Documentation
Forums
Lists
Bugs
Planet
Store
Wiki
Get Gentoo!
Gentoo's Bugzilla – Attachment 353770 Details for
Bug 476530
media-video/ffdiaporama-1.6 fails with media-video/ffmpeg-2.0
Home
|
New
–
[Ex]
|
Browse
|
Search
|
Privacy Policy
|
[?]
|
Reports
|
Requests
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
ffdiaporama-1.6-ffmpeg2.patch
ffdiaporama-1.6-ffmpeg2.patch (text/plain), 1.26 KB, created by
laurantino
on 2013-07-21 12:55:09 UTC
(
hide
)
Description:
ffdiaporama-1.6-ffmpeg2.patch
Filename:
MIME Type:
Creator:
laurantino
Created:
2013-07-21 12:55:09 UTC
Size:
1.26 KB
patch
obsolete
>--- src/engine/cDeviceModelDef.h 2013-06-19 18:22:52.000000000 +0200 >+++ src/engine/cDeviceModelDef.h 2013-07-21 14:11:48.014827071 +0200 >@@ -64,6 +64,11 @@ > #include <libavformat/avformat.h> > #include <libavformat/avio.h> > >+ #if (LIBAVCODEC_VERSION_INT>=AV_VERSION_INT(55,18,0)) >+ typedef AVCodecID CodecID; >+ #define AVCODEC_MAX_AUDIO_FRAME_SIZE 192 >+ #endif >+ > #if ((LIBAVUTIL_VERSION_INT>=AV_VERSION_INT(51,73,0))&&(LIBAVCODEC_VERSION_INT>=AV_VERSION_INT(54,31,0))&&(LIBAVFORMAT_VERSION_INT>=AV_VERSION_INT(54,19,0))) > #define LIBAV_09 > #if defined(USELIBAVRESAMPLE) > >--- src/engine/cBaseMediaFile.cpp 2013-06-19 18:22:52.000000000 +0200 >+++ src/engine/cBaseMediaFile.cpp 2013-07-21 14:15:18.754228717 +0200 >@@ -2167,7 +2167,11 @@ > } > > #else >- int Ret=av_buffersrc_add_frame(VideoFilterIn,FrameBufferYUV,0); >+ #if (LIBAVFILTER_VERSION_INT < AV_VERSION_INT(3,79,0)) >+ int Ret=av_buffersrc_add_frame(VideoFilterIn,FrameBufferYUV,0); >+ #else >+ int Ret=av_buffersrc_add_frame(VideoFilterIn,FrameBufferYUV); >+ #endif > if (Ret<0) { > ToLog(LOGMSG_CRITICAL,QString("Error in cVideoFile::VideoFilter_Process : av_buffersrc_add_frame")); > return VC_ERROR;
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 476530
:
353088
| 353770