Re: [FFmpeg-devel] [PATCH 1/2] decklink: fix: set fps on video stream v2

2016-08-05 Thread Michael Niedermayer
On Fri, Aug 05, 2016 at 06:55:28PM +0200, Matthias Hunstock wrote:
> Am 04.08.2016 um 22:01 schrieb Michael Niedermayer:
> > This doesnt list your full name is that intended ?
> 
> No it wasnt intended - actually I have no idea where this extra line is
> coming from. I used git format-patch, edited some cosmetics in the text
> and then git send-mail.
> It would be fine if you could just drop that line...

droped
applied

thanks


[...]
-- 
Michael GnuPG fingerprint: 9FF2128B147EF6730BADF133611EC787040B0FAB

I know you won't believe me, but the highest form of Human Excellence is
to question oneself and others. -- Socrates


signature.asc
Description: Digital signature
___
ffmpeg-devel mailing list
ffmpeg-devel@ffmpeg.org
http://ffmpeg.org/mailman/listinfo/ffmpeg-devel


Re: [FFmpeg-devel] [PATCH 1/2] decklink: fix: set fps on video stream v2

2016-08-05 Thread Matthias Hunstock
Am 04.08.2016 um 22:01 schrieb Michael Niedermayer:
> This doesnt list your full name is that intended ?

No it wasnt intended - actually I have no idea where this extra line is
coming from. I used git format-patch, edited some cosmetics in the text
and then git send-mail.
It would be fine if you could just drop that line...

Matthias
___
ffmpeg-devel mailing list
ffmpeg-devel@ffmpeg.org
http://ffmpeg.org/mailman/listinfo/ffmpeg-devel


Re: [FFmpeg-devel] [PATCH 1/2] decklink: fix: set fps on video stream v2

2016-08-04 Thread Michael Niedermayer
On Sun, Jul 10, 2016 at 01:02:36PM +0200, Matthias Hunstock wrote:
> From: atze 


This doesnt list your full name is that intended ?

[...]
-- 
Michael GnuPG fingerprint: 9FF2128B147EF6730BADF133611EC787040B0FAB

Those who would give up essential Liberty, to purchase a little
temporary Safety, deserve neither Liberty nor Safety -- Benjamin Franklin


signature.asc
Description: Digital signature
___
ffmpeg-devel mailing list
ffmpeg-devel@ffmpeg.org
http://ffmpeg.org/mailman/listinfo/ffmpeg-devel


Re: [FFmpeg-devel] [PATCH 1/2] decklink: fix: set fps on video stream v2

2016-08-04 Thread Matthias Hunstock
Am 10.07.2016 um 13:02 schrieb Matthias Hunstock:

> Provide the stream with the correct fps information when capturing.
> 
> Signed-off-by: Matthias Hunstock 
> ---
>  libavdevice/decklink_dec.cpp | 1 +
>  1 file changed, 1 insertion(+)
> 
> diff --git a/libavdevice/decklink_dec.cpp b/libavdevice/decklink_dec.cpp
> index fcb024e..78b14f5 100644
> --- a/libavdevice/decklink_dec.cpp
> +++ b/libavdevice/decklink_dec.cpp
> @@ -571,6 +571,7 @@ av_cold int ff_decklink_read_header(AVFormatContext 
> *avctx)
>  
>  st->time_base.den  = ctx->bmd_tb_den;
>  st->time_base.num  = ctx->bmd_tb_num;
> +av_stream_set_r_frame_rate(st, av_make_q(st->time_base.den, 
> st->time_base.num));
>  
>  if (cctx->v210) {
>  st->codecpar->codec_id= AV_CODEC_ID_V210;
> 



bump



Matthias


___
ffmpeg-devel mailing list
ffmpeg-devel@ffmpeg.org
http://ffmpeg.org/mailman/listinfo/ffmpeg-devel


[FFmpeg-devel] [PATCH 1/2] decklink: fix: set fps on video stream v2

2016-07-10 Thread Matthias Hunstock
From: atze 

Provide the stream with the correct fps information when capturing.

Signed-off-by: Matthias Hunstock 
---
 libavdevice/decklink_dec.cpp | 1 +
 1 file changed, 1 insertion(+)

diff --git a/libavdevice/decklink_dec.cpp b/libavdevice/decklink_dec.cpp
index fcb024e..78b14f5 100644
--- a/libavdevice/decklink_dec.cpp
+++ b/libavdevice/decklink_dec.cpp
@@ -571,6 +571,7 @@ av_cold int ff_decklink_read_header(AVFormatContext *avctx)
 
 st->time_base.den  = ctx->bmd_tb_den;
 st->time_base.num  = ctx->bmd_tb_num;
+av_stream_set_r_frame_rate(st, av_make_q(st->time_base.den, 
st->time_base.num));
 
 if (cctx->v210) {
 st->codecpar->codec_id= AV_CODEC_ID_V210;
-- 
2.1.4

___
ffmpeg-devel mailing list
ffmpeg-devel@ffmpeg.org
http://ffmpeg.org/mailman/listinfo/ffmpeg-devel