diff options
author | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2010-05-03 00:03:49 +0200 |
---|---|---|
committer | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2011-04-12 01:37:00 +0200 |
commit | 3338be24e83c49196cc13ff4d49c402bc27ace90 (patch) | |
tree | 88a8aaeae63178c9b1c7763eeba6023b2f84b3fe | |
parent | 1979d3b8a5821a48c30c0dec3ac9aa183d52c577 (diff) | |
download | ffmpeg-3338be24e83c49196cc13ff4d49c402bc27ace90.tar.gz |
ffplay: rename output_picture2() to output_picture()
The "2" suffix is confusing.
Signed-off-by: Stefano Sabatini <stefano.sabatini-lala@poste.it>
-rw-r--r-- | ffplay.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -1478,7 +1478,7 @@ static int queue_picture(VideoState *is, AVFrame *src_frame, double pts, int64_t * compute the exact PTS for the picture if it is omitted in the stream * @param pts1 the dts of the pkt / pts of the frame */ -static int output_picture2(VideoState *is, AVFrame *src_frame, double pts1, int64_t pos) +static int output_picture(VideoState *is, AVFrame *src_frame, double pts1, int64_t pos) { double frame_delay, pts; @@ -1859,9 +1859,9 @@ static int video_thread(void *arg) pts = pts_int*av_q2d(is->video_st->time_base); #if CONFIG_AVFILTER - ret = output_picture2(is, frame, pts, pos); + ret = output_picture(is, frame, pts, pos); #else - ret = output_picture2(is, frame, pts, pkt.pos); + ret = output_picture(is, frame, pts, pkt.pos); av_free_packet(&pkt); #endif if (ret < 0) |