mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2026-06-16 04:32:47 +02:00
Merge remote-tracking branch 'qatar/master'
* qatar/master: w32threads: Make pthread_cond_wait follow POSIX cosmetics: Consistently place static, inline and av_cold attributes/keywords. sbrdsp: Use standard multiple inclusion guards. pcm: K&R formatting cosmetics rawdec: Support fourccs YV16 and YV24 rtmp: implement bandwidth notification rtmp: update supported audio codecs value Conflicts: libavcodec/pcm.c Merged-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
+2
-2
@@ -95,7 +95,7 @@ typedef struct {
|
||||
uint8_t *data; ///< framebuffer data
|
||||
} FBDevContext;
|
||||
|
||||
av_cold static int fbdev_read_header(AVFormatContext *avctx)
|
||||
static av_cold int fbdev_read_header(AVFormatContext *avctx)
|
||||
{
|
||||
FBDevContext *fbdev = avctx->priv_data;
|
||||
AVStream *st = NULL;
|
||||
@@ -234,7 +234,7 @@ static int fbdev_read_packet(AVFormatContext *avctx, AVPacket *pkt)
|
||||
return fbdev->frame_size;
|
||||
}
|
||||
|
||||
av_cold static int fbdev_read_close(AVFormatContext *avctx)
|
||||
static av_cold int fbdev_read_close(AVFormatContext *avctx)
|
||||
{
|
||||
FBDevContext *fbdev = avctx->priv_data;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user