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

Bug#1004826: marked as done (harvid: FTBFS with ffmpeg 5.0)



Your message dated Sun, 03 Apr 2022 16:19:14 +0000
with message-id <E1nb2wc-0005UT-BA@fasolo.debian.org>
and subject line Bug#1004826: fixed in harvid 0.9.0-1
has caused the Debian Bug report #1004826,
regarding harvid: 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.)


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

harvid FTBFS with ffmpeg 5.0 in experimental:

cc -c -o vinfo.o -g -O2 -ffile-prefix-map=/<<PKGBUILDDIR>>=. -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2   `pkg-config --cflags libavcodec libavformat libavutil libswscale` vinfo.c
ffdecoder.c: In function ‘ff_picture_bytesize’:
ffdecoder.c:91:18: warning: implicit declaration of function ‘avpicture_get_size’; did you mean ‘ff_picture_bytesize’? [-Wimplicit-function-declaration]
   91 |   const int bs = avpicture_get_size(render_fmt, w, h);
      |                  ^~~~~~~~~~~~~~~~~~
      |                  ff_picture_bytesize
ffdecoder.c: In function ‘ff_init_moviebuffer’:
ffdecoder.c:261:3: warning: implicit declaration of function ‘avpicture_fill’ [-Wimplicit-function-declaration]
  261 |   avpicture_fill((AVPicture *)ff->pFrameFMT, ff->buffer, ff->render_fmt, ff->out_width, ff->out_height);
      |   ^~~~~~~~~~~~~~
ffdecoder.c:261:19: error: ‘AVPicture’ undeclared (first use in this function); did you mean ‘AVPictureType’?
  261 |   avpicture_fill((AVPicture *)ff->pFrameFMT, ff->buffer, ff->render_fmt, ff->out_width, ff->out_height);
      |                   ^~~~~~~~~
      |                   AVPictureType
ffdecoder.c:261:19: note: each undeclared identifier is reported only once for each function it appears in
ffdecoder.c:261:30: error: expected expression before ‘)’ token
  261 |   avpicture_fill((AVPicture *)ff->pFrameFMT, ff->buffer, ff->render_fmt, ff->out_width, ff->out_height);
      |                              ^
ffdecoder.c: In function ‘ff_initialize’:
ffdecoder.c:266:3: warning: implicit declaration of function ‘av_register_all’ [-Wimplicit-function-declaration]
  266 |   av_register_all();
      |   ^~~~~~~~~~~~~~~
ffdecoder.c:267:3: warning: implicit declaration of function ‘avcodec_register_all’ [-Wimplicit-function-declaration]
  267 |   avcodec_register_all();
      |   ^~~~~~~~~~~~~~~~~~~~
ffdecoder.c: In function ‘ff_set_framerate’:
ffdecoder.c:321:21: warning: implicit declaration of function ‘av_stream_get_r_frame_rate’; did you mean ‘av_stream_get_side_data’? [-Wimplicit-function-declaration]
  321 |     AVRational fr = av_stream_get_r_frame_rate (av_stream);
      |                     ^~~~~~~~~~~~~~~~~~~~~~~~~~
      |                     av_stream_get_side_data
ffdecoder.c:321:21: error: invalid initializer
ffdecoder.c: In function ‘ff_open_movie’:
ffdecoder.c:410:34: error: ‘AVStream’ has no member named ‘codec’
  410 |     if(ff->pFormatCtx->streams[i]->codec->codec_type == AVMEDIA_TYPE_VIDEO)
      |                                  ^~
ffdecoder.c:461:59: error: ‘AVStream’ has no member named ‘codec’
  461 |   ff->pCodecCtx = ff->pFormatCtx->streams[ff->videoStream]->codec;
      |                                                           ^~
ffdecoder.c:488:10: warning: assignment discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers]
  488 |   pCodec = avcodec_find_decoder(ff->pCodecCtx->codec_id);
      |          ^
ffdecoder.c: In function ‘parse_pts_from_frame’:
ffdecoder.c:538:11: warning: implicit declaration of function ‘av_frame_get_best_effort_timestamp’ [-Wimplicit-function-declaration]
  538 |     pts = av_frame_get_best_effort_timestamp (f);
      |           ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
ffdecoder.c:550:14: error: ‘AVFrame’ has no member named ‘pkt_pts’; did you mean ‘pkt_dts’?
  550 |     pts = f->pkt_pts;
      |              ^~~~~~~
      |              pkt_dts
ffdecoder.c: In function ‘my_seek_frame’:
ffdecoder.c:620:9: warning: implicit declaration of function ‘av_free_packet’; did you mean ‘av_get_packet’? [-Wimplicit-function-declaration]
  620 |         av_free_packet (packet);
      |         ^~~~~~~~~~~~~~
      |         av_get_packet
ffdecoder.c:635:11: warning: implicit declaration of function ‘avcodec_decode_video2’; did you mean ‘avcodec_decode_subtitle2’? [-Wimplicit-function-declaration]
  635 |     err = avcodec_decode_video2 (ff->pCodecCtx, ff->pFrame, &frameFinished, packet);
      |           ^~~~~~~~~~~~~~~~~~~~~
      |           avcodec_decode_subtitle2
ffdecoder.c: In function ‘ff_set_bufferptr’:
ffdecoder.c:773:19: error: ‘AVPicture’ undeclared (first use in this function); did you mean ‘AVPictureType’?
  773 |   avpicture_fill((AVPicture *)ff->pFrameFMT, ff->buffer, ff->render_fmt, ff->out_width, ff->out_height);
      |                   ^~~~~~~~~
      |                   AVPictureType
ffdecoder.c:773:30: error: expected expression before ‘)’ token
  773 |   avpicture_fill((AVPicture *)ff->pFrameFMT, ff->buffer, ff->render_fmt, ff->out_width, ff->out_height);
      |                              ^
make[3]: *** [Makefile:84: ffdecoder.o] Error 1

Cheers
-- 
Sebastian Ramacher

Attachment: signature.asc
Description: PGP signature


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

We believe that the bug you reported is fixed in the latest version of
harvid, 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 1004826@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 harvid 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:14:03 +0200
Source: harvid
Architecture: source
Version: 0.9.0-1
Distribution: unstable
Urgency: medium
Maintainer: Debian Multimedia Maintainers <debian-multimedia@lists.debian.org>
Changed-By: Sebastian Ramacher <sramacher@debian.org>
Closes: 964148 1004826
Changes:
 harvid (0.9.0-1) unstable; urgency=medium
 .
   * Team upload
 .
   [ IOhannes m zmölnig (Debian/GNU) ]
   * Add salsa-ci configuration
   * Fix FTCBFS: Make pkg-config substitutable.
     Thanks to Helmut Grohne <helmut@subdivi.de> (Closes: #964148)
   * Fix FTCBFS: Pass PKG_CONFIG to all targets.
     Thanks to Helmut Grohne <helmut@subdivi.de> (Closes: #964148)
 .
   [ Sebastian Ramacher ]
   * New upstream version 0.9.0
     - Fix build with ffmpeg 5.0 (Closes: #1004826)
   * debian/patches: Refresh patches
Checksums-Sha1:
 bce819d684511695f670c170cd993885b0ca0220 2056 harvid_0.9.0-1.dsc
 b422bbc5210103bab346b92e05683d06b3933a35 116909 harvid_0.9.0.orig.tar.gz
 670cbef35c7fe5873122db8538e40a3eac1fd69c 5368 harvid_0.9.0-1.debian.tar.xz
Checksums-Sha256:
 fae233f80e92869be73ecef62c051106b7c96d7568cfa0f336f378bf99649b4d 2056 harvid_0.9.0-1.dsc
 8a4b97271fe88f95bdd42cc48089674b5b36f5c16741be6da06c825d818fc8f3 116909 harvid_0.9.0.orig.tar.gz
 6a47121ed85998e91de1d8c1833090bdab93605f0cd35eac294b2df91d81c799 5368 harvid_0.9.0-1.debian.tar.xz
Files:
 74eb11eafd9521c0ef72d3eaedc8ff02 2056 video optional harvid_0.9.0-1.dsc
 1a3287becfc7ca5ea8a9b00b449cc65d 116909 video optional harvid_0.9.0.orig.tar.gz
 8f71877426c8cef4069670bad0e4b0ca 5368 video optional harvid_0.9.0-1.debian.tar.xz

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

iQIzBAEBCgAdFiEE94y6B4F7sUmhHTOQafL8UW6nGZMFAmJJyBsACgkQafL8UW6n
GZPWbw//a+1lK1/yu1lK2K/9aGQ/0VrxJ1yDdx78wlGoPR5mrai9kRNPbDK63HSa
wsn3dMDlJlPVD9dRbUNu3Lcf+uNGUwTxo0y5pe0kn764FUL1X6X5PbosHi3xBbo1
OHPKE12FLvT14yC3mhwH4754HR3kio5OfObrnqckloIJiQUWE7FhIodBT4rVvEfu
AhtLcdnFFJA0U96eG9XawjNf1jzUJ/4vA4pYWZRRVA5ycwqispZ82TWGBCTqlT+q
lFuMQasQ5HHgTHNxRSgRhPL91FwaIQVUkAQZGFdact2CltrF3+iZPquCOTzN3ThA
+UCFZboZn4JFXCwpiMMbLyaJDxZKv3qs/1JVCH20rgla+IIN0PJvhK2xgyoUebt0
5tV/Wy4QK4Kb35O2V59IvWSfkWh5eGmUWLfFUxTJ+mHT3WtdfxMJsl77V1UqhY5x
hFE08lh+GugfmYCC/qqR2K0SQLSxi9ITYwVqHLVfZ/CIafYMYnQ4sprahZ6f22my
2C7Hdz/B1jVR+fy922s78Cg/bK5WsRWjJSKqBlnY6W4SgbU2kWNk407ifnKc3IUT
zxOC0Jw8svS4o7dEwPtGBYy/WkAsf1GCXP9Fol+hVPfX3D6HFF/spMAebN8H01WI
QmfrHWV0hysYPXJQIW1Q2U+pdN9waWrHNfvOH0mEAqj/dVh6Wk8=
=d7eq
-----END PGP SIGNATURE-----

--- End Message ---

Reply to: