Coverage Report

Created: 2026-05-16 07:49

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/theora/lib/encinfo.c
Line
Count
Source
1
#include <stdlib.h>
2
#include <string.h>
3
#include "state.h"
4
#include "enquant.h"
5
#include "huffenc.h"
6
7
8
9
/*Packs a series of octets from a given byte array into the pack buffer.
10
  _opb: The pack buffer to store the octets in.
11
  _buf: The byte array containing the bytes to pack.
12
  _len: The number of octets to pack.*/
13
11.5k
static void oc_pack_octets(oggpack_buffer *_opb,const char *_buf,int _len){
14
11.5k
  int i;
15
198k
  for(i=0;i<_len;i++)oggpackB_write(_opb,_buf[i],8);
16
11.5k
}
17
18
19
20
int oc_state_flushheader(oc_theora_state *_state,int *_packet_state,
21
 oggpack_buffer *_opb,const th_quant_info *_qinfo,
22
 const th_huff_code _codes[TH_NHUFFMAN_TABLES][TH_NDCT_TOKENS],
23
11.5k
 const char *_vendor,th_comment *_tc,ogg_packet *_op){
24
11.5k
  unsigned char *packet;
25
11.5k
  int            b_o_s;
26
11.5k
  if(_op==NULL)return TH_EFAULT;
27
11.5k
  switch(*_packet_state){
28
    /*Codec info header.*/
29
2.87k
    case OC_PACKET_INFO_HDR:{
30
2.87k
      if(_state==NULL)return TH_EFAULT;
31
2.87k
      oggpackB_reset(_opb);
32
      /*Mark this packet as the info header.*/
33
2.87k
      oggpackB_write(_opb,0x80,8);
34
      /*Write the codec string.*/
35
2.87k
      oc_pack_octets(_opb,"theora",6);
36
      /*Write the codec bitstream version.*/
37
2.87k
      oggpackB_write(_opb,TH_VERSION_MAJOR,8);
38
2.87k
      oggpackB_write(_opb,TH_VERSION_MINOR,8);
39
2.87k
      oggpackB_write(_opb,TH_VERSION_SUB,8);
40
      /*Describe the encoded frame.*/
41
2.87k
      oggpackB_write(_opb,_state->info.frame_width>>4,16);
42
2.87k
      oggpackB_write(_opb,_state->info.frame_height>>4,16);
43
2.87k
      oggpackB_write(_opb,_state->info.pic_width,24);
44
2.87k
      oggpackB_write(_opb,_state->info.pic_height,24);
45
2.87k
      oggpackB_write(_opb,_state->info.pic_x,8);
46
2.87k
      oggpackB_write(_opb,_state->info.pic_y,8);
47
2.87k
      oggpackB_write(_opb,_state->info.fps_numerator,32);
48
2.87k
      oggpackB_write(_opb,_state->info.fps_denominator,32);
49
2.87k
      oggpackB_write(_opb,_state->info.aspect_numerator,24);
50
2.87k
      oggpackB_write(_opb,_state->info.aspect_denominator,24);
51
2.87k
      oggpackB_write(_opb,_state->info.colorspace,8);
52
2.87k
      oggpackB_write(_opb,_state->info.target_bitrate,24);
53
2.87k
      oggpackB_write(_opb,_state->info.quality,6);
54
2.87k
      oggpackB_write(_opb,_state->info.keyframe_granule_shift,5);
55
2.87k
      oggpackB_write(_opb,_state->info.pixel_fmt,2);
56
      /*Spare configuration bits.*/
57
2.87k
      oggpackB_write(_opb,0,3);
58
2.87k
      b_o_s=1;
59
2.87k
    }break;
60
    /*Comment header.*/
61
2.87k
    case OC_PACKET_COMMENT_HDR:{
62
2.87k
      int vendor_len;
63
2.87k
      int i;
64
2.87k
      if(_tc==NULL)return TH_EFAULT;
65
2.87k
      vendor_len=strlen(_vendor);
66
2.87k
      oggpackB_reset(_opb);
67
      /*Mark this packet as the comment header.*/
68
2.87k
      oggpackB_write(_opb,0x81,8);
69
      /*Write the codec string.*/
70
2.87k
      oc_pack_octets(_opb,"theora",6);
71
      /*Write the vendor string.*/
72
2.87k
      oggpack_write(_opb,vendor_len,32);
73
2.87k
      oc_pack_octets(_opb,_vendor,vendor_len);
74
2.87k
      oggpack_write(_opb,_tc->comments,32);
75
2.87k
      for(i=0;i<_tc->comments;i++){
76
0
        if(_tc->user_comments[i]!=NULL){
77
0
          oggpack_write(_opb,_tc->comment_lengths[i],32);
78
0
          oc_pack_octets(_opb,_tc->user_comments[i],_tc->comment_lengths[i]);
79
0
        }
80
0
        else oggpack_write(_opb,0,32);
81
0
      }
82
2.87k
      b_o_s=0;
83
2.87k
    }break;
84
    /*Codec setup header.*/
85
2.87k
    case OC_PACKET_SETUP_HDR:{
86
2.87k
      int ret;
87
2.87k
      oggpackB_reset(_opb);
88
      /*Mark this packet as the setup header.*/
89
2.87k
      oggpackB_write(_opb,0x82,8);
90
      /*Write the codec string.*/
91
2.87k
      oc_pack_octets(_opb,"theora",6);
92
      /*Write the quantizer tables.*/
93
2.87k
      oc_quant_params_pack(_opb,_qinfo);
94
      /*Write the huffman codes.*/
95
2.87k
      ret=oc_huff_codes_pack(_opb,_codes);
96
      /*This should never happen, because we validate the tables when they
97
         are set.
98
        If you see, it's a good chance memory is being corrupted.*/
99
2.87k
      if(ret<0)return ret;
100
2.87k
      b_o_s=0;
101
2.87k
    }break;
102
    /*No more headers to emit.*/
103
2.87k
    default:return 0;
104
11.5k
  }
105
  /*This is kind of fugly: we hand the user a buffer which they do not own.
106
    We will overwrite it when the next packet is output, so the user better be
107
     done with it by then.
108
    Vorbis is little better: it hands back buffers that it will free the next
109
     time the headers are requested, or when the encoder is cleared.
110
    Hopefully libogg2 will make this much cleaner.*/
111
8.62k
  packet=oggpackB_get_buffer(_opb);
112
  /*If there's no packet, malloc failed while writing.*/
113
8.62k
  if(packet==NULL)return TH_EFAULT;
114
8.62k
  _op->packet=packet;
115
8.62k
  _op->bytes=oggpackB_bytes(_opb);
116
8.62k
  _op->b_o_s=b_o_s;
117
8.62k
  _op->e_o_s=0;
118
8.62k
  _op->granulepos=0;
119
8.62k
  _op->packetno=*_packet_state+3;
120
8.62k
  return ++(*_packet_state)+3;
121
8.62k
}