Re: [FFmpeg-devel] [PATCH] ffprobe: report unavailable SAR correctly in stream info

2018-04-17 Thread Rostislav Pehlivanov
On 14 April 2018 at 21:20, Rostislav Pehlivanov wrote: > > > On 12 April 2018 at 09:07, Timo Teräs wrote: > >> av_guess_sample_aspect_ratio() will return undefined or missing >> value as {0,1}. This fixes show_stream() to check numerator to >> display

Re: [FFmpeg-devel] [PATCH] ffprobe: report unavailable SAR correctly in stream info

2018-04-14 Thread Rostislav Pehlivanov
On 12 April 2018 at 09:07, Timo Teräs wrote: > av_guess_sample_aspect_ratio() will return undefined or missing > value as {0,1}. This fixes show_stream() to check numerator to > display 'N/A' when appropriate. show_frame() does this already > correctly. > > Signed-off-by: Timo

Re: [FFmpeg-devel] [PATCH] ffprobe: report unavailable SAR correctly in stream info

2018-04-12 Thread Timo Teras
On Thu, 12 Apr 2018 11:07:36 +0300 Timo Teräs wrote: > av_guess_sample_aspect_ratio() will return undefined or missing > value as {0,1}. This fixes show_stream() to check numerator to > display 'N/A' when appropriate. show_frame() does this already > correctly. > >

[FFmpeg-devel] [PATCH] ffprobe: report unavailable SAR correctly in stream info

2018-04-12 Thread Timo Teräs
av_guess_sample_aspect_ratio() will return undefined or missing value as {0,1}. This fixes show_stream() to check numerator to display 'N/A' when appropriate. show_frame() does this already correctly. Signed-off-by: Timo Teräs --- fftools/ffprobe.c | 2 +- 1 file changed, 1