[FFmpeg-cvslog] ffmpeg: use AVFrame accessor.

Nicolas George git at videolan.org
Thu May 3 19:05:31 CEST 2012


ffmpeg | branch: master | Nicolas George <nicolas.george at normalesup.org> | Sun Apr 29 11:16:03 2012 +0200| [ae344b2c5e2861af21f1a15f07bd931b1415eeff] | committer: Nicolas George

ffmpeg: use AVFrame accessor.

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

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

diff --git a/ffmpeg.c b/ffmpeg.c
index f395a44..ff02d8d 100644
--- a/ffmpeg.c
+++ b/ffmpeg.c
@@ -2570,7 +2570,7 @@ static int transcode_video(InputStream *ist, AVPacket *pkt, int *got_output, int
     AVFrame *decoded_frame;
     void *buffer_to_free = NULL;
     int i, ret = 0, resample_changed;
-    int64_t *best_effort_timestamp;
+    int64_t best_effort_timestamp;
     AVRational *frame_sample_aspect;
     float quality;
 
@@ -2599,9 +2599,9 @@ static int transcode_video(InputStream *ist, AVPacket *pkt, int *got_output, int
         return ret;
     }
 
-    best_effort_timestamp= av_opt_ptr(avcodec_get_frame_class(), decoded_frame, "best_effort_timestamp");
-    if(*best_effort_timestamp != AV_NOPTS_VALUE)
-        ist->next_pts = ist->pts = decoded_frame->pts = *best_effort_timestamp;
+    best_effort_timestamp= av_frame_get_best_effort_timestamp(decoded_frame);
+    if(best_effort_timestamp != AV_NOPTS_VALUE)
+        ist->next_pts = ist->pts = decoded_frame->pts = best_effort_timestamp;
 
     pkt->size = 0;
 



More information about the ffmpeg-cvslog mailing list