diff options
| author | Carl Hetherington <cth@carlh.net> | 2021-03-01 21:36:36 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2021-03-02 15:40:18 +0100 |
| commit | 04e94f01295463f2c910ba2b4306c1b76e340a45 (patch) | |
| tree | 4ea19f5000304a6966b5432de0161380d3e1e11f /src/lib/ffmpeg_decoder.h | |
| parent | b9cee5bab06b073cff91b8ca618a6452a354a45e (diff) | |
Rename some subtitle decoding / processing methods.
Diffstat (limited to 'src/lib/ffmpeg_decoder.h')
| -rw-r--r-- | src/lib/ffmpeg_decoder.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lib/ffmpeg_decoder.h b/src/lib/ffmpeg_decoder.h index a0a93c9a0..bd35814df 100644 --- a/src/lib/ffmpeg_decoder.h +++ b/src/lib/ffmpeg_decoder.h @@ -62,10 +62,10 @@ private: bool decode_video_packet (AVPacket* packet); void decode_audio_packet (AVPacket* packet); - void decode_subtitle_packet (AVPacket* packet); + void decode_and_process_subtitle_packet (AVPacket* packet); - void decode_bitmap_subtitle (AVSubtitleRect const * rect, dcpomatic::ContentTime from); - void decode_ass_subtitle (std::string ass, dcpomatic::ContentTime from); + void process_bitmap_subtitle (AVSubtitleRect const * rect, dcpomatic::ContentTime from); + void process_ass_subtitle (std::string ass, dcpomatic::ContentTime from); void maybe_add_subtitle (); std::shared_ptr<AudioBuffers> deinterleave_audio (std::shared_ptr<FFmpegAudioStream> stream) const; |
