]> git.sesse.net Git - ffmpeg/blobdiff - libavcodec/cavs.c
Allow matching timestamps to be removed by fetch_timestamp().
[ffmpeg] / libavcodec / cavs.c
index 2867c06799413db2da1732007def92c0e74e726e..60219d4a340eddbc6942229e8b4d9caad35a2ec7 100644 (file)
@@ -668,7 +668,7 @@ void ff_cavs_init_top_lines(AVSContext *h) {
     h->block        = av_mallocz(64*sizeof(DCTELEM));
 }
 
-int ff_cavs_init(AVCodecContext *avctx) {
+av_cold int ff_cavs_init(AVCodecContext *avctx) {
     AVSContext *h = avctx->priv_data;
     MpegEncContext * const s = &h->s;
 
@@ -699,7 +699,7 @@ int ff_cavs_init(AVCodecContext *avctx) {
     return 0;
 }
 
-int ff_cavs_end(AVCodecContext *avctx) {
+av_cold int ff_cavs_end(AVCodecContext *avctx) {
     AVSContext *h = avctx->priv_data;
 
     av_free(h->top_qp);