summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2023-09-04 15:41:27 +0200
committerAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2023-09-07 00:28:01 +0200
commit8d3f721e0bd4bff50a55177e0dd86f93aa698a97 (patch)
treeb848534449386517f442d1b6e501f5a6109efc17
parenta7443421f269b957b2a76dbe275ca045468b3f44 (diff)
avcodec/rv34_parser: Remove unused ParseContext
This parser does not do frame packetization at all. Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
-rw-r--r--libavcodec/rv34_parser.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/libavcodec/rv34_parser.c b/libavcodec/rv34_parser.c
index fbc764c64f..2997a4db70 100644
--- a/libavcodec/rv34_parser.c
+++ b/libavcodec/rv34_parser.c
@@ -24,11 +24,10 @@
* RV30/40 parser
*/
-#include "parser.h"
+#include "avcodec.h"
#include "libavutil/intreadwrite.h"
typedef struct RV34ParseContext {
- ParseContext pc;
int64_t key_dts;
int key_pts;
} RV34ParseContext;