Do not transmit MediaCodec flags

Since PTS handling has been fixed, the recorder do not associate a PTS
to a wrong frame anymore, so PTS of "configuration packets" (which never
produce a frame), are never read by the recorder. Therefore, there is no
need to ignore them explicitly, so we can remove the MediaCodec flags
completely.
This commit is contained in:
Romain Vimont
2018-11-11 00:35:53 +01:00
parent 27e8a9a79d
commit 475912a39c
3 changed files with 11 additions and 20 deletions

View File

@@ -17,7 +17,6 @@ struct decoder {
struct recorder *recorder;
uint64_t next_pts;
uint64_t pts;
uint32_t buffer_info_flags;
int remaining;
};