From 0ba9fb3e066d27054dbbe164824751b007925ed3 Mon Sep 17 00:00:00 2001
From: Thomas Guillem <thomas@gllm.fr>
Date: Fri, 8 Oct 2021 14:53:55 +0200
Subject: [PATCH] core: move block.c to frame.c

No functional changes

Refs #18762
---
 po/POTFILES.in                | 2 +-
 src/Makefile.am               | 2 +-
 src/misc/{block.c => frame.c} | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)
 rename src/misc/{block.c => frame.c} (99%)

diff --git a/po/POTFILES.in b/po/POTFILES.in
index 353033436614..7492dc9e80b1 100644
--- a/po/POTFILES.in
+++ b/po/POTFILES.in
@@ -88,11 +88,11 @@ src/libvlc.c
 src/libvlc.h
 src/libvlc-module.c
 src/misc/actions.c
-src/misc/block.c
 src/misc/cpu.c
 src/misc/es_format.c
 src/misc/events.c
 src/misc/filter_chain.c
+src/misc/frame.c
 src/misc/image.c
 src/misc/md5.c
 src/misc/messages.c
diff --git a/src/Makefile.am b/src/Makefile.am
index b5197fdb1e29..4bcc2703f730 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -363,7 +363,7 @@ libvlccore_la_SOURCES = \
 	misc/probe.c \
 	misc/rand.c \
 	misc/mtime.c \
-	misc/block.c \
+	misc/frame.c \
 	misc/fifo.c \
 	misc/fourcc.c \
 	misc/fourcc_list.h \
diff --git a/src/misc/block.c b/src/misc/frame.c
similarity index 99%
rename from src/misc/block.c
rename to src/misc/frame.c
index a3b57cace50c..bb2f6a03eecf 100644
--- a/src/misc/block.c
+++ b/src/misc/frame.c
@@ -1,5 +1,5 @@
 /*****************************************************************************
- * block.c: Data blocks management functions
+ * frame.c: frames management functions
  *****************************************************************************
  * Copyright (C) 2003-2004 VLC authors and VideoLAN
  * Copyright (C) 2007-2009 Rémi Denis-Courmont
-- 
GitLab