summaryrefslogtreecommitdiff
path: root/firmware/mpeg.c
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/mpeg.c')
-rw-r--r--firmware/mpeg.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/firmware/mpeg.c b/firmware/mpeg.c
index 115d590f65..5496ace9ac 100644
--- a/firmware/mpeg.c
+++ b/firmware/mpeg.c
@@ -1019,11 +1019,13 @@ static bool swap_one_chunk(void)
1019} 1019}
1020#endif 1020#endif
1021 1021
1022#ifdef HAVE_RECORDING
1022const unsigned char empty_id3_header[] = 1023const unsigned char empty_id3_header[] =
1023{ 1024{
1024 'I', 'D', '3', 0x03, 0x00, 0x00, 1025 'I', 'D', '3', 0x03, 0x00, 0x00,
1025 0x00, 0x00, 0x1f, 0x76 /* Size is 4096 minus 10 bytes for the header */ 1026 0x00, 0x00, 0x1f, 0x76 /* Size is 4096 minus 10 bytes for the header */
1026}; 1027};
1028#endif
1027 1029
1028static void mpeg_thread(void) 1030static void mpeg_thread(void)
1029{ 1031{