diff options
author | Muhammad Faiz <mfcc64@gmail.com> | 2017-04-22 15:55:45 +0700 |
---|---|---|
committer | Muhammad Faiz <mfcc64@gmail.com> | 2017-04-23 14:30:53 +0700 |
commit | 9f030ee00f049a09cb3b74dbd0314bcf626bef10 (patch) | |
tree | 5624beb5b1b77ca943a564629c1eadd786c63cc8 /libavformat | |
parent | 31f61b0d4f8d452becb44f044c739f9057900159 (diff) | |
download | ffmpeg-9f030ee00f049a09cb3b74dbd0314bcf626bef10.tar.gz |
avformat: do not use AVFrame accessor
Reviewed-by: wm4 <nfxjfg@googlemail.com>
Signed-off-by: Muhammad Faiz <mfcc64@gmail.com>
Diffstat (limited to 'libavformat')
-rw-r--r-- | libavformat/mux.c | 2 | ||||
-rw-r--r-- | libavformat/uncodedframecrcenc.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/libavformat/mux.c b/libavformat/mux.c index 3a5e876913..4e21083a2b 100644 --- a/libavformat/mux.c +++ b/libavformat/mux.c @@ -1422,7 +1422,7 @@ static int av_write_uncoded_frame_internal(AVFormatContext *s, int stream_index, pkt.size = UNCODED_FRAME_PACKET_SIZE; pkt.pts = pkt.dts = frame->pts; - pkt.duration = av_frame_get_pkt_duration(frame); + pkt.duration = frame->pkt_duration; pkt.stream_index = stream_index; pkt.flags |= AV_PKT_FLAG_UNCODED_FRAME; } diff --git a/libavformat/uncodedframecrcenc.c b/libavformat/uncodedframecrcenc.c index ecc42d2869..2f1a14ca97 100644 --- a/libavformat/uncodedframecrcenc.c +++ b/libavformat/uncodedframecrcenc.c @@ -79,7 +79,7 @@ static void audio_frame_cksum(AVBPrint *bp, AVFrame *frame) int nb_planes, nb_samples, p; const char *name; - nb_planes = av_frame_get_channels(frame); + nb_planes = frame->channels; nb_samples = frame->nb_samples; if (!av_sample_fmt_is_planar(frame->format)) { nb_samples *= nb_planes; |