Go to:
Gentoo Home
Documentation
Forums
Lists
Bugs
Planet
Store
Wiki
Get Gentoo!
Gentoo's Bugzilla – Attachment 284811 Details for
Bug 354159
transcode reports import_ffmpeg.so: undefined symbol: avcodec_init
Home
|
New
–
[Ex]
|
Browse
|
Search
|
Privacy Policy
|
[?]
|
Reports
|
Requests
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Fix libavcodec_decode_video
transcode-1.1.5-decode-video2.patch (text/plain), 641 bytes, created by
Amir Aupov
on 2011-08-27 17:37:59 UTC
(
hide
)
Description:
Fix libavcodec_decode_video
Filename:
MIME Type:
Creator:
Amir Aupov
Created:
2011-08-27 17:37:59 UTC
Size:
641 bytes
patch
obsolete
>--- transcode-1.1.5-old/import/import_ffmpeg.c 2011-08-27 21:00:01.813384739 +0400 >+++ transcode-1.1.5/import/import_ffmpeg.c 2011-08-27 20:58:27.873246965 +0400 >@@ -543,8 +543,12 @@ > retry: > do { > TC_LOCK_LIBAVCODEC; >- len = avcodec_decode_video(lavc_dec_context, &picture, >- &got_picture, buffer, bytes_read); >+ AVPacket pkt; >+ av_init_packet( &pkt ); >+ pkt.data = buffer; >+ pkt.size = bytes_read; >+ len = avcodec_decode_video2(lavc_dec_context, &picture, >+ &got_picture, &pkt); > TC_UNLOCK_LIBAVCODEC; > > if (len < 0) {
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 354159
:
275977
|
275979
| 284811