[issue1260] ffserver on Solaris NetBSD: Address family not supported by Protocol Family

2011-01-25 Thread Rocksteady

Rocksteady i...@thetube.ch added the comment:

This fix works for me. Thanks.
SunOS osol134 5.11 snv_134 i86pc i386 i86pc Solaris
Fserver version 0.6.1


FFmpeg issue tracker iss...@roundup.ffmpeg.org
https://roundup.ffmpeg.org/issue1260



[issue2570] configure incorrectly enables #define HAVE_AMD3DNOW 1 in config.h

2011-01-25 Thread Ronald S. Bultje

Ronald S. Bultje rsbul...@gmail.com added the comment:

Hi,

HAVE_AMD3DNOW means it can be assembled, not that the CPU supports it. Use 
enable-runtime-cpudetect configure flag to use runtime cpu detection 
which should fix this.


FFmpeg issue tracker iss...@roundup.ffmpeg.org
https://roundup.ffmpeg.org/issue2570



[issue2563] AVI encoder create a file (contains multiple video and audio streams) with uncorrect fourcc tag

2011-01-25 Thread Ronald S. Bultje

Ronald S. Bultje rsbul...@gmail.com added the comment:

Here is a forward from ffmpeg-devel. Please adjust the patch so it has 
the correct message and MAX_STREAMS (100, not 99, since they're numbered 
from 0 onwards, not 1 onwards), and then it's OK.

2011/1/24 Måns Rullgård m...@mansr.com:
 Ronald S. Bultje rsbul...@gmail.com writes:

 Hi guys,

 posting next patch:

 longstone zhibing@hotmail.com added the comment:
 Add error check in avi_write_header() function.

 Looks fine to me, although I guess 99 should be 100 (100 streams 
means
 IDs 00-99).

 Correct.

 Ronald

 Index: libavformat/avi.h
 ===
 --- libavformat/avi.h (revision 26402)
 +++ libavformat/avi.h (working copy)
 @@ -32,6 +32,7 @@

  #define AVI_MAX_RIFF_SIZE       0x4000LL
  #define AVI_MASTER_INDEX_SIZE   256
 +#define AVI_MAX_STREAM_COUNT  99             //AVI format is able to 
assign stream ID for at most 99 streams

 Wrong value and useless comment.

  /* index flags */
  #define AVIIF_INDEX             0x10
 Index: libavformat/avienc.c
 ===
 --- libavformat/avienc.c      (revision 26402)
 +++ libavformat/avienc.c      (working copy)
 @@ -85,8 +85,8 @@

  static char* avi_stream2fourcc(char* tag, int index, enum 
AVMediaType type)
  {
 -    tag[0] = '0';
 -    tag[1] = '0' + index;
 +    tag[0] = '0' + (index/10);
 +    tag[1] = '0' + (index%10);

 Lose the ().

      if (type == AVMEDIA_TYPE_VIDEO) {
          tag[2] = 'd';
          tag[3] = 'c';
 @@ -158,6 +158,12 @@
      int64_t list1, list2, strh, strf;
      AVMetadataTag *t = NULL;

 +    /* check the total stream number */

 Useless comment.

 +    if (s-nb_streams  AVI_MAX_STREAM_COUNT) {
 +        av_log(s, AV_LOG_ERROR, Too many streams for avi format 
file. Please limit the number to be less than 100.\n);
 +        return -1;
 +    }

 Wrong message.

 --
 Måns Rullgård
 m...@mansr.com
 ___
 ffmpeg-devel mailing list
 ffmpeg-de...@mplayerhq.hu
 https://lists.mplayerhq.hu/mailman/listinfo/ffmpeg-devel



FFmpeg issue tracker iss...@roundup.ffmpeg.org
https://roundup.ffmpeg.org/issue2563



[issue2570] configure incorrectly enables #define HAVE_AMD3DNOW 1 in config.h

2011-01-25 Thread John Van Sickle

John Van Sickle john.vansic...@gmail.com added the comment:

Hi rbultje,

Thanks for responding. The solution you mention is, IMO, a rather poor one. How
are users supposed to know that they need --enable-runtime-cpudetect? Because
for me it took:

1) Having FFmpeg crash with any '-vf scale'
2) Build ffmpeg_g and backtrace
3) Build and test with --disable-amd3dnow --disable-amd3dnowext
4) File bug report
5) Dev responds

Here's what should have happened.

1) FFmpeg's ./configure tests if my system can use 3dnow. [no]

I'm not cross compiling here, the only thing I pass to ./configure is
--enable-gpl and the $PATH to up-to-date gcc and as. 

Is it unreasonable to expect FFmpeg to build a binary that won't crash trying to
using SIMD instructions my system doesn't support?


FFmpeg issue tracker iss...@roundup.ffmpeg.org
https://roundup.ffmpeg.org/issue2570



[issue2447] FFProbe (FFMPEG) support for AMR audio bitrate and length

2011-01-25 Thread pawel

pawel p.kub...@gmail.com added the comment:

So it's possible to retrieve information from ffprobe about bitrate and length
of AMR file?

--
priority: wish - normal


FFmpeg issue tracker iss...@roundup.ffmpeg.org
https://roundup.ffmpeg.org/issue2447



[issue2572] FFMpeg can't identify or decode Mediaroom IPTV streams

2011-01-25 Thread Robert Johnston

New submission from Robert Johnston anae...@gmail.com:

ffprobe -loglevel debug report is at http://pastebin.com/WZVLX2Hq

Attached is a Wireshark dump of this stream, so you can play it back on your own
system and try and debug this.
File 'StreamCapture' not attached - you can download it from 
https://roundup.ffmpeg.org/file1329.

--
files: StreamCapture
messages: 13556
priority: normal
status: new
substatus: new
title: FFMpeg can't identify or decode Mediaroom IPTV streams
type: bug


FFmpeg issue tracker iss...@roundup.ffmpeg.org
https://roundup.ffmpeg.org/issue2572



[issue2563] AVI encoder create a file (contains multiple video and audio streams) with uncorrect fourcc tag

2011-01-25 Thread longstone

longstone zhibing@hotmail.com added the comment:

The patch has been adjusted as requested:
1. The comment and log info have been removed; 
2. The max stream count has been defined as 100.


FFmpeg issue tracker iss...@roundup.ffmpeg.org
https://roundup.ffmpeg.org/issue2563


[Issue_2563]_AdjustedPatch.patch
Description: Binary data