[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

Bug#1004631: marked as done (xjadeo: FTBFS with ffmpeg 5.0)



Your message dated Sun, 03 Apr 2022 16:19:43 +0000
with message-id <E1nb2x5-0005WE-RJ@fasolo.debian.org>
and subject line Bug#1004631: fixed in xjadeo 0.8.11-1
has caused the Debian Bug report #1004631,
regarding xjadeo: FTBFS with ffmpeg 5.0
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact owner@bugs.debian.org
immediately.)


-- 
1004631: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1004631
Debian Bug Tracking System
Contact owner@bugs.debian.org with problems
--- Begin Message ---
Source: xjadeo
Version: 0.8.9-1
Severity: important
X-Debbugs-Cc: sramacher@debian.org
Tags: sid bookworm ftbfs
Usertags: ffmpeg5.0

xjadeo FTBFS with ffmpeg 5.0 (available in experimental):
| gcc -DHAVE_CONFIG_H -I. -I../..   -Wdate-time -D_FORTIFY_SOURCE=2 -Wall -g -O3 -pthread -I/usr/include/x86_64-linux-gnu -I/usr/include/freetype2 -I/usr/include/libpng16 -D_GNU_SOURCE=1 -D_REENTRANT -I/usr/include/SDL "-DSUBVERSION=\"\"" "-DSHAREDIR=\"/usr/share\""    -g -O2 -ffile-prefix-map=/<<PKGBUILDDIR>>=. -fstack-protector-strong -Wformat -Werror=format-security -c -o xjadeo-jack.o `test -f 'jack.c' || echo './'`jack.c
| xjadeo.c: In function ‘event_loop’:
| xjadeo.c:240:25: warning: variable ‘we_know_transport_is_not_rolling’ set but not used [-Wunused-but-set-variable]
|   240 |                 uint8_t we_know_transport_is_not_rolling = 0;
|       |                         ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
| xjadeo.c: In function ‘init_moviebuffer’:
| xjadeo.c:438:20: warning: implicit declaration of function ‘avpicture_get_size’ [-Wimplicit-function-declaration]
|   438 |         vbufsize = avpicture_get_size (render_fmt, movie_width, movie_height);
|       |                    ^~~~~~~~~~~~~~~~~~
| xjadeo.c:444:17: warning: implicit declaration of function ‘avpicture_fill’ [-Wimplicit-function-declaration]
|   444 |                 avpicture_fill ((AVPicture *)pFrameFMT, buffer, render_fmt, movie_width, movie_height);
|       |                 ^~~~~~~~~~~~~~
| xjadeo.c:444:34: error: ‘AVPicture’ undeclared (first use in this function); did you mean ‘AVPictureType’?
|   444 |                 avpicture_fill ((AVPicture *)pFrameFMT, buffer, render_fmt, movie_width, movie_height);
|       |                                  ^~~~~~~~~
|       |                                  AVPictureType
| xjadeo.c:444:34: note: each undeclared identifier is reported only once for each function it appears in
| xjadeo.c:444:45: error: expected expression before ‘)’ token
|   444 |                 avpicture_fill ((AVPicture *)pFrameFMT, buffer, render_fmt, movie_width, movie_height);
|       |                                             ^
| xjadeo.c: In function ‘avinit’:
| xjadeo.c:451:9: warning: implicit declaration of function ‘av_register_all’ [-Wimplicit-function-declaration]
|   451 |         av_register_all ();
|       |         ^~~~~~~~~~~~~~~
| xjadeo.c:455:9: warning: implicit declaration of function ‘avcodec_register_all’ [-Wimplicit-function-declaration]
|   455 |         avcodec_register_all ();
|       |         ^~~~~~~~~~~~~~~~~~~~
| xjadeo.c: In function ‘parse_pts_from_frame’:
| xjadeo.c:476:23: warning: implicit declaration of function ‘av_frame_get_best_effort_timestamp’ [-Wimplicit-function-declaration]
|   476 |                 pts = av_frame_get_best_effort_timestamp (f);
|       |                       ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
| xjadeo.c:488:26: error: ‘AVFrame’ has no member named ‘pkt_pts’; did you mean ‘pkt_dts’?
|   488 |                 pts = f->pkt_pts;
|       |                          ^~~~~~~
|       |                          pkt_dts
| xjadeo.c: In function ‘seek_frame’:
| xjadeo.c:589:33: warning: implicit declaration of function ‘av_free_packet’; did you mean ‘av_get_packet’? [-Wimplicit-function-declaration]
|   589 |                                 av_free_packet (packet);
|       |                                 ^~~~~~~~~~~~~~
|       |                                 av_get_packet
| xjadeo.c:616:23: warning: implicit declaration of function ‘avcodec_decode_video2’; did you mean ‘avcodec_decode_subtitle2’? [-Wimplicit-function-declaration]
|   616 |                 err = avcodec_decode_video2 (pCodecCtx, pFrame, &frameFinished, packet);
|       |                       ^~~~~~~~~~~~~~~~~~~~~
|       |                       avcodec_decode_subtitle2
| xjadeo.c: In function ‘index_frames’:
| xjadeo.c:952:37: warning: implicit declaration of function ‘av_frame_get_pkt_pos’ [-Wimplicit-function-declaration]
|   952 |                 fidx[i].frame_pos = av_frame_get_pkt_pos (pFrame);
|       |                                     ^~~~~~~~~~~~~~~~~~~~
| xjadeo.c: In function ‘open_movie’:
| xjadeo.c:1303:43: error: ‘AVStream’ has no member named ‘codec’
|  1303 |                 if (pFormatCtx->streams[i]->codec->codec_type == AVMEDIA_TYPE_VIDEO) {
|       |                                           ^~
| xjadeo.c:1333:33: warning: implicit declaration of function ‘av_stream_get_r_frame_rate’; did you mean ‘av_stream_get_side_data’? [-Wimplicit-function-declaration]
|  1333 |                 AVRational fr = av_stream_get_r_frame_rate (av_stream);
|       |                                 ^~~~~~~~~~~~~~~~~~~~~~~~~~
|       |                                 av_stream_get_side_data
| xjadeo.c:1333:33: error: invalid initializer
| xjadeo.c:1399:51: error: ‘AVStream’ has no member named ‘codec’
|  1399 |         pCodecCtx=pFormatCtx->streams[videoStream]->codec;
|       |                                                   ^~
| xjadeo.c:1421:27: error: ‘AVStream’ has no member named ‘codec’
|  1421 |         else if (av_stream->codec->sample_aspect_ratio.num)
|       |                           ^~
| xjadeo.c:1422:50: error: ‘AVStream’ has no member named ‘codec’
|  1422 |                 sample_aspect = av_q2d (av_stream->codec->sample_aspect_ratio);
|       |                                                  ^~
| xjadeo.c:1455:15: warning: assignment discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers]
|  1455 |         pCodec=avcodec_find_decoder (pCodecCtx->codec_id);
|       |               ^
| xjadeo.c:1516:27: error: ‘AVStream’ has no member named ‘codec’
|  1516 |         else if (av_stream->codec->sample_aspect_ratio.num)
|       |                           ^~
| xjadeo.c:1518:42: error: ‘AVStream’ has no member named ‘codec’
|  1518 |                                 av_stream->codec->sample_aspect_ratio.num, av_stream->codec->sample_aspect_ratio.den);
|       |                                          ^~
| xjadeo.c:1518:85: error: ‘AVStream’ has no member named ‘codec’
|  1518 |                                 av_stream->codec->sample_aspect_ratio.num, av_stream->codec->sample_aspect_ratio.den);
|       |                                                                                     ^~
| make[5]: *** [Makefile:612: xjadeo-xjadeo.o] Error 1

Cheers
-- 
Sebastian Ramacher

Attachment: signature.asc
Description: PGP signature


--- End Message ---
--- Begin Message ---
Source: xjadeo
Source-Version: 0.8.11-1
Done: Sebastian Ramacher <sramacher@debian.org>

We believe that the bug you reported is fixed in the latest version of
xjadeo, which is due to be installed in the Debian FTP archive.

A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to 1004631@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Sebastian Ramacher <sramacher@debian.org> (supplier of updated xjadeo package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing ftpmaster@ftp-master.debian.org)


-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA512

Format: 1.8
Date: Sun, 03 Apr 2022 18:06:57 +0200
Source: xjadeo
Architecture: source
Version: 0.8.11-1
Distribution: unstable
Urgency: medium
Maintainer: Debian Multimedia Maintainers <debian-multimedia@lists.debian.org>
Changed-By: Sebastian Ramacher <sramacher@debian.org>
Closes: 1004631
Changes:
 xjadeo (0.8.11-1) unstable; urgency=medium
 .
   * Team upload
   * New upstream version 0.8.11
     - Fix build with ffmpeg 5.0 (Closes: #1004631)
Checksums-Sha1:
 f5d319e9bc6d28892e0bac4cedcb0722519518a3 2215 xjadeo_0.8.11-1.dsc
 f3af12d3afabf3ad08407c864a489ef8b81e1264 540087 xjadeo_0.8.11.orig.tar.gz
 3c10273d5fd7be750763e6fdded3c840714b5144 7076 xjadeo_0.8.11-1.debian.tar.xz
Checksums-Sha256:
 4013bf862e0e079204bed3c023368846c90b0d9a7456fc244cd02a013560fd56 2215 xjadeo_0.8.11-1.dsc
 015d874b57ba83a919b17e463bbbda038fd24cabf0d8dc43273e8e492fd59942 540087 xjadeo_0.8.11.orig.tar.gz
 0fa83624f5c7d268f9d2e938e0778d6fa9b30058b2c2cdde6f7bf9aa149c495d 7076 xjadeo_0.8.11-1.debian.tar.xz
Files:
 1ad65ce74929a219ee26d811b22b717c 2215 video optional xjadeo_0.8.11-1.dsc
 b0ecd39d526e819c583e5ea51c9b25f7 540087 video optional xjadeo_0.8.11.orig.tar.gz
 607bba5907c462ba9ac3e26dcf7a67b1 7076 video optional xjadeo_0.8.11-1.debian.tar.xz

-----BEGIN PGP SIGNATURE-----

iQIzBAEBCgAdFiEE94y6B4F7sUmhHTOQafL8UW6nGZMFAmJJxpQACgkQafL8UW6n
GZNfnw//X3A5FmL8o6pmt7s8jfNlV47Mfdw5gpy/k7QH00lWuEjDZqEwlsMmlhYg
VAl1QCMrl/Fk+tnmrAtrFCOr+nNLutqyCIqaRh5vuSPOelLm9B986QrfXXQpOrTC
bYAZ3lfDXR3D1x4/6ZzcfQrQPtOIe7YlP+B1JTDfAGLykNIrb2xRs9iB9lvgoEM4
fcR+957mcZ/Nhx9x56Ez8NTfYsAe30YItaOGsBOeFtU5g1jgT+1zwZRMxYMzsdBt
UD4sQmsDjl/paSGzpvBlaf6cFvfawzrymWHdsgB9pl8KUtKynyB/ZYPsBlCw4+n/
bJ6o4Eza6qCxAbe+tamLUsF0w12Pl4ZP6A+K7ieUAvUUtzc7Aco/S8GajmK7vUTY
Arg8WzYQW7apGquTwSfRVt2K12+pqAm8sQUf3f5QJleo7p4jiAQMSejq+3b54gGB
hDJ2h1ROzsiSi5jPYnHrHUAI050qYzNm9qDmwP6oBwrxaW+z8n0l3fgocXu0l/pc
4222geqF0epIcT0IJ3MR2SzCClvRqmuL/5mK6b035nT1RJWWYyjYsS7NzybfX+dG
IyoV/lpS51tcptWRtA5Ivt0pnhu0707R1ofudkA1tDJSLgux9D23YJMjU2F4Ypu7
0UDRgV/thv9FktEQ0oV+yXOseoaTukm//V0oYwkXjwESmIM8r8Y=
=7J5k
-----END PGP SIGNATURE-----

--- End Message ---

Reply to: