formats: Rename queue filename to match class name
It's just good practice to always have the files named the same as the class to make finding the files easier.
This commit is contained in:
parent
d325fac7a3
commit
ed8f37eb85
|
@ -36,7 +36,7 @@ target_sources(${PROJECT_NAME} PRIVATE
|
|||
src/multicast.cc
|
||||
src/reception_flow.cc
|
||||
src/poll.cc
|
||||
src/queue.cc
|
||||
src/frame_queue.cc
|
||||
src/random.cc
|
||||
src/rtcp.cc
|
||||
src/rtp.cc
|
||||
|
@ -82,7 +82,7 @@ target_sources(${PROJECT_NAME} PRIVATE
|
|||
src/poll.hh
|
||||
src/rtp.hh
|
||||
src/zrtp.hh
|
||||
src/queue.hh
|
||||
src/frame_queue.hh
|
||||
|
||||
src/formats/h26x.hh
|
||||
src/formats/h264.hh
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
#include "h264.hh"
|
||||
|
||||
#include "../queue.hh"
|
||||
#include "../frame_queue.hh"
|
||||
#include "../rtp.hh"
|
||||
|
||||
#include "uvgrtp/debug.hh"
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
#include "../srtp/srtcp.hh"
|
||||
#include "../rtp.hh"
|
||||
#include "../queue.hh"
|
||||
#include "../frame_queue.hh"
|
||||
|
||||
#include "uvgrtp/debug.hh"
|
||||
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
#include "h266.hh"
|
||||
|
||||
#include "../rtp.hh"
|
||||
#include "../queue.hh"
|
||||
#include "../frame_queue.hh"
|
||||
|
||||
#include "uvgrtp/frame.hh"
|
||||
#include "uvgrtp/debug.hh"
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
#include "h26x.hh"
|
||||
|
||||
#include "../rtp.hh"
|
||||
#include "../queue.hh"
|
||||
#include "../frame_queue.hh"
|
||||
|
||||
#include "uvgrtp/socket.hh"
|
||||
#include "uvgrtp/debug.hh"
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
#include "media.hh"
|
||||
|
||||
#include "../rtp.hh"
|
||||
#include "../queue.hh"
|
||||
#include "../frame_queue.hh"
|
||||
|
||||
#include "uvgrtp/socket.hh"
|
||||
#include "uvgrtp/debug.hh"
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
#include "queue.hh"
|
||||
#include "frame_queue.hh"
|
||||
|
||||
#include "formats/h264.hh"
|
||||
#include "formats/h265.hh"
|
Loading…
Reference in New Issue