Searched refs:track (Results 1 - 14 of 14) sorted by relevance

/hardware/intel/img/libdrm/libdrm/radeon/
H A Dradeon_track.c35 void radeon_track_add_event(struct radeon_track *track, argument
43 if (track == NULL) {
61 event->next = track->events;
62 track->events = event;
68 struct radeon_track *track; local
70 track = (struct radeon_track*)calloc(1, sizeof(struct radeon_track));
71 if (track) {
72 track->next = tracker->tracks.next;
73 track->prev = &tracker->tracks;
74 tracker->tracks.next = track;
84 radeon_tracker_remove_track(struct radeon_tracker *tracker, struct radeon_track *track) argument
113 struct radeon_track *track; local
[all...]
H A Dradeon_track.h52 void radeon_track_add_event(struct radeon_track *track,
60 struct radeon_track *track);
H A Dradeon_bo.h51 struct radeon_track *track; member in struct:radeon_bo
110 bo->track = radeon_tracker_add_track(&bom->tracker, bo->handle);
111 radeon_track_add_event(bo->track, file, func, "open", line);
124 radeon_track_add_event(bo->track, file, func, "ref", line);
136 radeon_track_add_event(bo->track, file, func, "unref", line);
138 radeon_tracker_remove_track(&bo->bom->tracker, bo->track);
139 bo->track = NULL;
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/third_party/nestegg/include/nestegg/
H A Dnestegg.h33 unsigned int track;
35 nestegg_packet_track(pkt, &track);
37 // This example decodes the first track only.
38 if (track == 0) {
122 /** Parameters specific to a video track. */
138 /** Parameters specific to an audio track. */
152 block of media is reached. All track metadata has been processed at this point.
183 @param tracks Storage for the queried track count.
211 /** Seek @a track to @a tstamp. Stream seek will terminate at the earliest
215 @param track Zer
[all...]
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/
H A Dwebmdec.c116 uint32_t track; local
126 nestegg_packet_track(webm_ctx->pkt, &track)) {
129 } while (track != webm_ctx->video_track);
164 uint32_t track; local
169 nestegg_packet_track(pkt, &track);
170 if (track == webm_ctx->video_track) {
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/third_party/nestegg/test/
H A Dtest.c88 unsigned int cnt, i, j, track, tracks, pkt_cnt, pkt_track; local
120 fprintf(stderr, "track %u: type: %d codec: %d", i,
161 nestegg_packet_track(pkt, &track);
165 fprintf(stderr, "* t %u pts %f frames %u\n", track, tstamp / 1e9, cnt);
185 nestegg_packet_track(pkt, &track);
189 fprintf(stderr, "* t %u pts %f frames %u\n", track, tstamp / 1e9, cnt);
209 nestegg_packet_track(pkt, &track);
213 fprintf(stderr, "* t %u pts %f frames %u\n", track, tstamp / 1e9, cnt);
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/third_party/nestegg/src/
H A Dnestegg.c248 struct ebml_type track; member in struct:cue_track_positions
311 uint64_t track; member in struct:nestegg_packet
433 E_FIELD(ID_CUE_TRACK, TYPE_UINT, struct cue_track_positions, track),
1226 ne_find_track_entry(nestegg * ctx, unsigned int track) argument
1234 if (track == tracks)
1254 unsigned int i, lacing, track; local
1340 if (ne_map_track_number_to_index(ctx, (unsigned int)track_number, &track) != 0)
1343 entry = ne_find_track_entry(ctx, track);
1359 pkt->track = track;
1468 ne_find_cue_position_for_track(nestegg * ctx, struct ebml_list_node * node, unsigned int track) argument
1493 ne_find_cue_point_for_tstamp(nestegg * ctx, struct ebml_list_node * cue_point, unsigned int track, uint64_t scale, uint64_t tstamp) argument
1703 struct ebml_list_node * track; local
1831 unsigned int track = 0, track_count = 0, track_index; local
1912 nestegg_track_seek(nestegg * ctx, unsigned int track, uint64_t tstamp) argument
1955 nestegg_track_type(nestegg * ctx, unsigned int track) argument
1977 nestegg_track_codec_id(nestegg * ctx, unsigned int track) argument
2005 nestegg_track_codec_data_count(nestegg * ctx, unsigned int track, unsigned int * count) argument
2037 nestegg_track_codec_data(nestegg * ctx, unsigned int track, unsigned int item, unsigned char ** data, size_t * length) argument
2092 nestegg_track_video_params(nestegg * ctx, unsigned int track, nestegg_video_params * params) argument
2149 nestegg_track_audio_params(nestegg * ctx, unsigned int track, nestegg_audio_params * params) argument
2242 nestegg_packet_track(nestegg_packet * pkt, unsigned int * track) argument
[all...]
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/test/
H A Dwebm_video_source.h116 << "failed to get track count";
120 ASSERT_GE(track_type, 0) << "failed to get track type";
139 unsigned int track; local
155 ASSERT_FALSE(nestegg_packet_track(pkt_, &track))
157 } while (track != video_track_);
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/third_party/libwebm/
H A Dmkvmuxer.cpp987 Track* const track = track_entries_[i]; local
988 delete track;
994 bool Tracks::AddTrack(Track* track, int32 number) { argument
998 // This muxer only supports track numbers in the range [1, 126], in
1000 // serialize the block header (of which the track number is a part)
1009 // Check to make sure a track does not already have |track_num|.
1028 // Find the lowest availible track number > 0.
1032 // Check to make sure a track does not already have |track_num|.
1045 track->set_number(track_num);
1048 track_entries_[track_entries_size_] = track;
1074 const Track* const track = GetTrackByNumber(track_number); local
1083 const Track* const track = GetTrackByNumber(track_number); local
1095 const Track* const track = GetTrackByIndex(i); local
1111 const Track* const track = GetTrackByIndex(i); local
2311 Track* const track = new (std::nothrow) Track(&seed_); // NOLINT local
2329 VideoTrack* const track = new (std::nothrow) VideoTrack(&seed_); // NOLINT local
2344 AddCuePoint(uint64 timestamp, uint64 track) argument
2370 AudioTrack* const track = new (std::nothrow) AudioTrack(&seed_); // NOLINT local
2743 const Track* const track = GetTrackByNumber(track_number); local
3014 const Track* const track = tracks_.GetTrackByIndex(i); local
3026 const Track* const track = tracks_.GetTrackByIndex(0); local
[all...]
H A Dmkvmuxer.hpp120 // Mkv track number the data is associated with.
145 void set_track(uint64 track) { track_ = track; } argument
146 uint64 track() const { return track_; } function in class:mkvmuxer::CuePoint
255 // Elements used to describe if the track data has been encrypted or
309 // The |seed| parameter is used to synthesize a UID for the track.
405 // The |seed| parameter is used to synthesize a UID for the track.
439 // Video track element names.
455 // The |seed| parameter is used to synthesize a UID for the track.
474 // Audio track elemen
[all...]
H A Dmkvparser.cpp2677 //track. In principle, the matching track could be on some earlier
2680 //with a list of cue points that apply to a track, and then search
2681 //that track-based structure for a matching cue point.
3057 //First count number of track positions
3095 //Now parse track positions
3200 return NULL; //no matching track number found
4210 //We have the cue point and track position we want,
5794 //a matching track number. We interpret that as an error (which
5870 // block from this track
[all...]
/hardware/libhardware/include/hardware/
H A Dbt_rc.h109 btrc_uid_t track; /* queue position in NowPlaying */ member in union:__anon1185
160 /** Callback for register notification (Play state change/track change/...)
242 /* Response to the register notification request (Play state change/track change/...).
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libwebm/
H A Dmkvparser.cpp2644 //time, and then search for a matching track. In principle, the
2645 //matching track could be on some earlier cue point. So we recheck
2646 //the earlier cue point if the track doesn't match.
3030 //First count number of track positions
3068 //Now parse track positions
3173 return NULL; //no matching track number found
4192 //We have the cue point and track position we want,
4921 //a matching track number. We interpret that as an error (which
4995 // block from this track. One way around this problem is for the
4998 //track
[all...]
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/third_party/x86inc/
H A Dx86inc.asm795 ; I would like to not have to manually keep track of the permutations:

Completed in 1143 milliseconds