summaryrefslogtreecommitdiff
path: root/src/lib/ffmpeg_examiner.h
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2021-03-01 21:06:01 +0100
committerCarl Hetherington <cth@carlh.net>2021-03-02 15:40:18 +0100
commit2091311fde159ec39126608327eb93b28898bd6c (patch)
tree1396d4e920de7603b402353c00ba5cce765c33e5 /src/lib/ffmpeg_examiner.h
parent6c092a6abef4bf38fe62112544f7b6247cdb07d0 (diff)
Remove FFmpeg::_packet.
Diffstat (limited to 'src/lib/ffmpeg_examiner.h')
-rw-r--r--src/lib/ffmpeg_examiner.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/ffmpeg_examiner.h b/src/lib/ffmpeg_examiner.h
index 41f517724..0884a6fb8 100644
--- a/src/lib/ffmpeg_examiner.h
+++ b/src/lib/ffmpeg_examiner.h
@@ -82,8 +82,8 @@ public:
}
private:
- bool video_packet (AVCodecContext *, std::string& temporal_reference);
- void audio_packet (AVCodecContext *, std::shared_ptr<FFmpegAudioStream>);
+ bool video_packet (AVCodecContext* context, std::string& temporal_reference, AVPacket* packet);
+ void audio_packet (AVCodecContext* context, std::shared_ptr<FFmpegAudioStream>, AVPacket* packet);
std::string stream_name (AVStream* s) const;
std::string subtitle_stream_name (AVStream* s) const;