Message ID | 1475338662-16821-2-git-send-email-cus@passwd.hu |
---|---|
State | Accepted |
Commit | 4fdcd2f1889a79155d5c182c836b9ba968b1eca9 |
Headers | show |
On 01/10/2016 17:17, Marton Balint wrote: > Signed-off-by: Marton Balint <cus@passwd.hu> > --- > ffplay.c | 9 --------- > 1 file changed, 9 deletions(-) > > diff --git a/ffplay.c b/ffplay.c > index a7a6785..6d43191 100644 > --- a/ffplay.c > +++ b/ffplay.c > @@ -230,9 +230,6 @@ typedef struct VideoState { > Decoder viddec; > Decoder subdec; > > - int viddec_width; > - int viddec_height; > - > int audio_stream; > > int av_sync_type; > @@ -1780,9 +1777,6 @@ static int get_video_frame(VideoState *is, AVFrame *frame) > > frame->sample_aspect_ratio = av_guess_sample_aspect_ratio(is->ic, is->video_st, frame); > > - is->viddec_width = frame->width; > - is->viddec_height = frame->height; > - > if (framedrop>0 || (framedrop && get_master_sync_type(is) != AV_SYNC_VIDEO_MASTER)) { > if (frame->pts != AV_NOPTS_VALUE) { > double diff = dpts - get_master_clock(is); > @@ -2687,9 +2681,6 @@ static int stream_component_open(VideoState *is, int stream_index) > is->video_stream = stream_index; > is->video_st = ic->streams[stream_index]; > > - is->viddec_width = avctx->width; > - is->viddec_height = avctx->height; > - > decoder_init(&is->viddec, avctx, &is->videoq, is->continue_read_thread); > if ((ret = decoder_start(&is->viddec, video_thread, is)) < 0) > goto out; > LGTM. -- Josh
diff --git a/ffplay.c b/ffplay.c index a7a6785..6d43191 100644 --- a/ffplay.c +++ b/ffplay.c @@ -230,9 +230,6 @@ typedef struct VideoState { Decoder viddec; Decoder subdec; - int viddec_width; - int viddec_height; - int audio_stream; int av_sync_type; @@ -1780,9 +1777,6 @@ static int get_video_frame(VideoState *is, AVFrame *frame) frame->sample_aspect_ratio = av_guess_sample_aspect_ratio(is->ic, is->video_st, frame); - is->viddec_width = frame->width; - is->viddec_height = frame->height; - if (framedrop>0 || (framedrop && get_master_sync_type(is) != AV_SYNC_VIDEO_MASTER)) { if (frame->pts != AV_NOPTS_VALUE) { double diff = dpts - get_master_clock(is); @@ -2687,9 +2681,6 @@ static int stream_component_open(VideoState *is, int stream_index) is->video_stream = stream_index; is->video_st = ic->streams[stream_index]; - is->viddec_width = avctx->width; - is->viddec_height = avctx->height; - decoder_init(&is->viddec, avctx, &is->videoq, is->continue_read_thread); if ((ret = decoder_start(&is->viddec, video_thread, is)) < 0) goto out;
Signed-off-by: Marton Balint <cus@passwd.hu> --- ffplay.c | 9 --------- 1 file changed, 9 deletions(-)