[FFmpeg-cvslog] ffmpeg: remove unneeded ost->picref check.

Clément Bœsch git at videolan.org
Tue Feb 14 00:12:56 CET 2012


ffmpeg | branch: master | Clément Bœsch <ubitux at gmail.com> | Mon Feb 13 23:24:31 2012 +0100| [b986590810fb5f90bc253882fa698bf3b9cf5efa] | committer: Clément Bœsch

ffmpeg: remove unneeded ost->picref check.

If there ost->picref is NULL, it will likely crash anyway a few lines
below by dereferencing it in order to access video attribute.

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=b986590810fb5f90bc253882fa698bf3b9cf5efa
---

 ffmpeg.c |    6 ++----
 1 files changed, 2 insertions(+), 4 deletions(-)

diff --git a/ffmpeg.c b/ffmpeg.c
index 0cb9ba1..c9ef42e 100644
--- a/ffmpeg.c
+++ b/ffmpeg.c
@@ -2141,10 +2141,8 @@ static int transcode_video(InputStream *ist, AVPacket *pkt, int *got_output, int
             }
             filtered_frame = ist->filtered_frame;
             *filtered_frame= *decoded_frame; //for me_threshold
-            if (ost->picref) {
-                avfilter_fill_frame_from_video_buffer_ref(filtered_frame, ost->picref);
-                filtered_frame->pts = av_rescale_q(ost->picref->pts, ist_pts_tb, AV_TIME_BASE_Q);
-            }
+            avfilter_fill_frame_from_video_buffer_ref(filtered_frame, ost->picref);
+            filtered_frame->pts = av_rescale_q(ost->picref->pts, ist_pts_tb, AV_TIME_BASE_Q);
             if (ost->picref->video && !ost->frame_aspect_ratio)
                 ost->st->codec->sample_aspect_ratio = ost->picref->video->sample_aspect_ratio;
             do_video_out(output_files[ost->file_index].ctx, ost, ist, filtered_frame);



More information about the ffmpeg-cvslog mailing list